uikit 3.11.1 → 3.11.2-dev.03e47c2ff
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.
- package/.eslintrc.json +4 -49
- package/.prettierignore +14 -0
- package/.prettierrc.json +13 -0
- package/.webstorm.js +3 -3
- package/CHANGELOG.md +59 -17
- package/build/.eslintrc.json +1 -3
- package/build/build.js +26 -28
- package/build/icons.js +7 -11
- package/build/less.js +48 -36
- package/build/package.json +2 -2
- package/build/prefix.js +21 -18
- package/build/publishDev.js +6 -8
- package/build/release.js +20 -17
- package/build/scope.js +21 -11
- package/build/scss.js +72 -39
- package/build/util.js +71 -62
- package/build/wrapper/icons.js +0 -2
- package/dist/css/uikit-core-rtl.css +127 -201
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +127 -201
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +129 -207
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +129 -207
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +88 -133
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +408 -439
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +1098 -1316
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1144 -1393
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +94 -114
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +345 -362
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +343 -350
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +768 -843
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +343 -350
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +645 -793
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +587 -621
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +324 -356
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +155 -167
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +5430 -6690
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +7 -9
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +8143 -9784
- package/dist/js/uikit.min.js +1 -1
- package/jsconfig.json +1 -1
- package/package.json +64 -60
- package/src/js/api/boot.js +25 -32
- package/src/js/api/component.js +15 -28
- package/src/js/api/global.js +6 -12
- package/src/js/api/hooks.js +14 -33
- package/src/js/api/instance.js +7 -15
- package/src/js/api/state.js +79 -100
- package/src/js/components/countdown.js +24 -50
- package/src/js/components/filter.js +70 -66
- package/src/js/components/index.js +13 -13
- package/src/js/components/internal/lightbox-animations.js +14 -25
- package/src/js/components/internal/slider-preload.js +37 -0
- package/src/js/components/internal/slider-transitioner.js +66 -45
- package/src/js/components/internal/slideshow-animations.js +46 -64
- package/src/js/components/lightbox-panel.js +107 -105
- package/src/js/components/lightbox.js +17 -39
- package/src/js/components/notification.js +49 -43
- package/src/js/components/parallax.js +21 -46
- package/src/js/components/slider-parallax.js +13 -23
- package/src/js/components/slider.js +95 -64
- package/src/js/components/slideshow-parallax.js +1 -1
- package/src/js/components/slideshow.js +15 -13
- package/src/js/components/sortable.js +126 -108
- package/src/js/components/tooltip.js +41 -31
- package/src/js/components/upload.js +52 -63
- package/src/js/core/accordion.js +53 -48
- package/src/js/core/alert.js +9 -17
- package/src/js/core/core.js +74 -53
- package/src/js/core/cover.js +11 -15
- package/src/js/core/drop.js +107 -93
- package/src/js/core/form-custom.js +20 -25
- package/src/js/core/gif.js +3 -7
- package/src/js/core/grid.js +57 -58
- package/src/js/core/height-match.js +16 -29
- package/src/js/core/height-viewport.js +29 -36
- package/src/js/core/icon.js +47 -52
- package/src/js/core/img.js +156 -138
- package/src/js/core/index.js +39 -39
- package/src/js/core/leader.js +9 -18
- package/src/js/core/margin.js +21 -37
- package/src/js/core/modal.js +49 -36
- package/src/js/core/nav.js +2 -4
- package/src/js/core/navbar.js +113 -85
- package/src/js/core/offcanvas.js +49 -53
- package/src/js/core/overflow-auto.js +13 -17
- package/src/js/core/responsive.js +14 -12
- package/src/js/core/scroll.js +10 -20
- package/src/js/core/scrollspy-nav.js +34 -31
- package/src/js/core/scrollspy.js +37 -54
- package/src/js/core/sticky.js +194 -123
- package/src/js/core/svg.js +68 -83
- package/src/js/core/switcher.js +47 -46
- package/src/js/core/tab.js +7 -10
- package/src/js/core/toggle.js +66 -67
- package/src/js/core/video.js +11 -22
- package/src/js/mixin/animate.js +19 -20
- package/src/js/mixin/class.js +2 -4
- package/src/js/mixin/container.js +7 -11
- package/src/js/mixin/internal/animate-fade.js +73 -30
- package/src/js/mixin/internal/animate-slide.js +58 -41
- package/src/js/mixin/internal/slideshow-animations.js +7 -14
- package/src/js/mixin/internal/slideshow-transitioner.js +10 -17
- package/src/js/mixin/media.js +5 -10
- package/src/js/mixin/modal.js +89 -66
- package/src/js/mixin/parallax.js +175 -121
- package/src/js/mixin/position.js +26 -20
- package/src/js/mixin/slider-autoplay.js +12 -21
- package/src/js/mixin/slider-drag.js +64 -65
- package/src/js/mixin/slider-nav.js +26 -35
- package/src/js/mixin/slider-reactive.js +2 -8
- package/src/js/mixin/slider.js +48 -55
- package/src/js/mixin/slideshow.js +13 -19
- package/src/js/mixin/togglable.js +89 -63
- package/src/js/uikit-core.js +2 -4
- package/src/js/uikit.js +2 -4
- package/src/js/util/ajax.js +25 -40
- package/src/js/util/animation.js +77 -75
- package/src/js/util/attr.js +17 -21
- package/src/js/util/class.js +14 -52
- package/src/js/util/dimensions.js +78 -49
- package/src/js/util/dom.js +39 -66
- package/src/js/util/env.js +7 -12
- package/src/js/util/event.js +60 -59
- package/src/js/util/fastdom.js +3 -8
- package/src/js/util/filter.js +17 -34
- package/src/js/util/index.js +0 -1
- package/src/js/util/lang.js +82 -121
- package/src/js/util/mouse.js +19 -17
- package/src/js/util/options.js +35 -49
- package/src/js/util/player.js +41 -36
- package/src/js/util/position.js +54 -46
- package/src/js/util/selector.js +43 -58
- package/src/js/util/style.js +39 -49
- package/src/js/util/viewport.js +81 -66
- package/src/less/components/base.less +10 -33
- package/src/less/components/flex.less +0 -9
- package/src/less/components/form-range.less +48 -95
- package/src/less/components/form.less +0 -1
- package/src/less/components/height.less +3 -0
- package/src/less/components/leader.less +0 -1
- package/src/less/components/lightbox.less +0 -1
- package/src/less/components/modal.less +3 -7
- package/src/less/components/navbar.less +0 -7
- package/src/less/components/progress.less +14 -36
- package/src/less/components/slider.less +0 -3
- package/src/less/components/slideshow.less +0 -3
- package/src/less/components/text.less +16 -32
- package/src/less/components/utility.less +22 -0
- package/src/scss/components/base.scss +10 -33
- package/src/scss/components/flex.scss +0 -9
- package/src/scss/components/form-range.scss +48 -95
- package/src/scss/components/form.scss +3 -4
- package/src/scss/components/height.scss +3 -0
- package/src/scss/components/icon.scss +2 -2
- package/src/scss/components/leader.scss +0 -1
- package/src/scss/components/lightbox.scss +0 -1
- package/src/scss/components/modal.scss +3 -7
- package/src/scss/components/navbar.scss +0 -7
- package/src/scss/components/progress.scss +14 -36
- package/src/scss/components/search.scss +1 -1
- package/src/scss/components/slider.scss +0 -3
- package/src/scss/components/slideshow.scss +0 -3
- package/src/scss/components/text.scss +16 -32
- package/src/scss/components/utility.scss +22 -0
- package/src/scss/mixins-theme.scss +1 -1
- package/src/scss/mixins.scss +1 -1
- package/src/scss/variables-theme.scss +9 -9
- package/src/scss/variables.scss +9 -9
- package/tests/align.html +10 -10
- package/tests/animation.html +2 -2
- package/tests/article.html +2 -2
- package/tests/base.html +3 -3
- package/tests/card.html +10 -10
- package/tests/column.html +3 -3
- package/tests/comment.html +9 -9
- package/tests/dotnav.html +3 -3
- package/tests/image.html +296 -64
- package/tests/images/image-type.avif +0 -0
- package/tests/images/image-type.jpeg +0 -0
- package/tests/images/image-type.webp +0 -0
- package/tests/index.html +8 -8
- package/tests/js/index.js +114 -85
- package/tests/lightbox.html +10 -10
- package/tests/marker.html +2 -2
- package/tests/modal.html +8 -9
- package/tests/navbar.html +2 -2
- package/tests/overlay.html +7 -7
- package/tests/parallax.html +14 -5
- package/tests/position.html +12 -12
- package/tests/slidenav.html +12 -12
- package/tests/slider.html +20 -20
- package/tests/sortable.html +1 -1
- package/tests/sticky-parallax.html +86 -98
- package/tests/sticky.html +56 -24
- package/tests/svg.html +6 -6
- package/tests/table.html +11 -11
- package/tests/thumbnav.html +12 -12
- package/tests/transition.html +30 -30
- package/tests/utility.html +33 -33
- package/tests/video.html +1 -1
- package/tests/width.html +1 -1
- package/src/js/mixin/flex-bug.js +0 -56
- package/src/js/util/promise.js +0 -191
- package/tests/images/animated.gif +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! UIkit 3.11.1 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(Mt,qt){typeof exports=="object"&&typeof module<"u"?module.exports=qt():typeof define=="function"&&define.amd?define("uikit",qt):(Mt=typeof globalThis<"u"?globalThis:Mt||self,Mt.UIkit=qt())})(this,function(){"use strict";var Mt=Object.prototype,qt=Mt.hasOwnProperty;function mt(t,e){return qt.call(t,e)}var Jn=/\B([A-Z])/g,Tt=it(function(t){return t.replace(Jn,"-$1").toLowerCase()}),Zn=/-(\w)/g,Ht=it(function(t){return t.replace(Zn,Pi)}),ve=it(function(t){return t.length?Pi(null,t.charAt(0))+t.slice(1):""});function Pi(t,e){return e?e.toUpperCase():""}var Ke=String.prototype,Qn=Ke.startsWith||function(t){return this.lastIndexOf(t,0)===0};function lt(t,e){return Qn.call(t,e)}var Un=Ke.endsWith||function(t){return this.substr(-t.length)===t};function st(t,e){return Un.call(t,e)}var Xe=Array.prototype,Mi=function(t,e){return!!~this.indexOf(t,e)},tr=Ke.includes||Mi,er=Xe.includes||Mi;function m(t,e){return t&&(C(t)?tr:er).call(t,e)}var ir=Xe.findIndex||function(t){for(var e=arguments,i=0;i<this.length;i++)if(t.call(e[1],this[i],i,this))return i;return-1};function ge(t,e){return ir.call(t,e)}var Q=Array.isArray;function U(t){return typeof t=="function"}function dt(t){return t!==null&&typeof t=="object"}var nr=Mt.toString;function wt(t){return nr.call(t)==="[object Object]"}function Vt(t){return dt(t)&&t===t.window}function Bt(t){return Ze(t)===9}function Je(t){return Ze(t)>=1}function Ot(t){return Ze(t)===1}function Ze(t){return!Vt(t)&&dt(t)&&t.nodeType}function Yt(t){return typeof t=="boolean"}function C(t){return typeof t=="string"}function Qe(t){return typeof t=="number"}function vt(t){return Qe(t)||C(t)&&!isNaN(t-parseFloat(t))}function Ue(t){return!(Q(t)?t.length:dt(t)?Object.keys(t).length:!1)}function Y(t){return t===void 0}function ti(t){return Yt(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Gt(t){var e=Number(t);return isNaN(e)?!1:e}function $(t){return parseFloat(t)||0}var Hi=Array.from||function(t){return Xe.slice.call(t)};function P(t){return w(t)[0]}function w(t){return t&&(Je(t)?[t]:Hi(t).filter(Je))||[]}function Et(t){return Vt(t)?t:(t=P(t),t?(Bt(t)?t:t.ownerDocument).defaultView:window)}function ei(t){return t?st(t,"ms")?$(t):$(t)*1e3:0}function Bi(t,e){return t===e||dt(t)&&dt(e)&&Object.keys(t).length===Object.keys(e).length&&et(t,function(i,n){return i===e[n]})}function ii(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),function(n){return n===e?i:e})}var N=Object.assign||function(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];t=Object(t);for(var n=0;n<e.length;n++){var r=e[n];if(r!==null)for(var o in r)mt(r,o)&&(t[o]=r[o])}return t};function pe(t){return t[t.length-1]}function et(t,e){for(var i in t)if(e(t[i],i)===!1)return!1;return!0}function ni(t,e){return t.slice().sort(function(i,n){var r=i[e];r===void 0&&(r=0);var o=n[e];return o===void 0&&(o=0),r>o?1:o>r?-1:0})}function rr(t,e){var i=new Set;return t.filter(function(n){var r=n[e];return i.has(r)?!1:i.add(r)||!0})}function me(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Gt(t)||0,e),i)}function gt(){}function Oi(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];return[["bottom","top"],["right","left"]].every(function(i){var n=i[0],r=i[1];return Math.min.apply(Math,t.map(function(o){var s=o[n];return s}))-Math.max.apply(Math,t.map(function(o){var s=o[r];return s}))>0})}function ri(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}var we={ratio:function(t,e,i){var n,r=e==="width"?"height":"width";return n={},n[r]=t[e]?Math.round(i*t[r]/t[e]):t[r],n[e]=i,n},contain:function(t,e){var i=this;return t=N({},t),et(t,function(n,r){return t=t[r]>e[r]?i.ratio(t,r,e[r]):t}),t},cover:function(t,e){var i=this;return t=this.contain(t,e),et(t,function(n,r){return t=t[r]<e[r]?i.ratio(t,r,e[r]):t}),t}};function be(t,e,i,n){i===void 0&&(i=0),n===void 0&&(n=!1),e=w(e);var r=e.length;return r?(t=vt(t)?Gt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(P(t)),n?me(t,0,r-1):(t%=r,t<0?t+r:t)):-1}function it(t){var e=Object.create(null);return function(i){return e[i]||(e[i]=t(i))}}function A(t,e,i){if(dt(e)){for(var n in e)A(t,n,e[n]);return}if(Y(i))return t=P(t),t&&t.getAttribute(e);w(t).forEach(function(r){U(i)&&(i=i.call(r,A(r,e))),i===null?oi(r,e):r.setAttribute(e,i)})}function Kt(t,e){return w(t).some(function(i){return i.hasAttribute(e)})}function oi(t,e){t=w(t),e.split(" ").forEach(function(i){return t.forEach(function(n){return n.hasAttribute(i)&&n.removeAttribute(i)})})}function Xt(t,e){for(var i=0,n=[e,"data-"+e];i<n.length;i++)if(Kt(t,n[i]))return A(t,n[i])}var tt=typeof window<"u",$e=tt&&/msie|trident/i.test(window.navigator.userAgent),Jt=tt&&A(document.documentElement,"dir")==="rtl",Dt=tt&&"ontouchstart"in window,zt=tt&&window.PointerEvent,or=tt&&(Dt||window.DocumentTouch&&document instanceof DocumentTouch||navigator.maxTouchPoints),Ft=zt?"pointerdown":Dt?"touchstart":"mousedown",sr=zt?"pointermove":Dt?"touchmove":"mousemove",Lt=zt?"pointerup":Dt?"touchend":"mouseup",ye=zt?"pointerenter":Dt?"":"mouseenter",xe=zt?"pointerleave":Dt?"":"mouseleave",ke=zt?"pointercancel":"touchcancel",ar={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function si(t){return w(t).some(function(e){return ar[e.tagName.toLowerCase()]})}function M(t){return w(t).some(function(e){return e.offsetWidth||e.offsetHeight||e.getClientRects().length})}var Se="input,select,textarea,button";function Di(t){return w(t).some(function(e){return F(e,Se)})}var Te=Se+",a[href],[tabindex]";function ai(t){return F(t,Te)}function D(t){return t=P(t),t&&Ot(t.parentNode)&&t.parentNode}function Zt(t,e){return w(t).filter(function(i){return F(i,e)})}var Ee=tt?Element.prototype:{},ur=Ee.matches||Ee.webkitMatchesSelector||Ee.msMatchesSelector||gt;function F(t,e){return w(t).some(function(i){return ur.call(i,e)})}var cr=Ee.closest||function(t){var e=this;do if(F(e,t))return e;while(e=D(e))};function nt(t,e){return lt(e,">")&&(e=e.slice(1)),Ot(t)?cr.call(t,e):w(t).map(function(i){return nt(i,e)}).filter(Boolean)}function R(t,e){return C(e)?F(t,e)||!!nt(t,e):t===e||(Bt(e)?e.documentElement:P(e)).contains(P(t))}function Qt(t,e){for(var i=[];t=D(t);)(!e||F(t,e))&&i.push(t);return i}function Ct(t,e){t=P(t);var i=t?w(t.children):[];return e?Zt(i,e):i}function ui(t,e){return e?w(t).indexOf(P(e)):Ct(D(t)).indexOf(t)}function pt(t,e){return ci(t,zi(t,e))}function Ut(t,e){return te(t,zi(t,e))}function zi(t,e){return e===void 0&&(e=document),C(t)&&Li(t)||Bt(e)?e:e.ownerDocument}function ci(t,e){return P(Fi(t,e,"querySelector"))}function te(t,e){return w(Fi(t,e,"querySelectorAll"))}function Fi(t,e,i){if(e===void 0&&(e=document),!t||!C(t))return t;t=t.replace(hr,"$1 *"),Li(t)&&(t=dr(t).map(function(n){var r=e;if(n[0]==="!"){var o=n.substr(1).trim().split(" ");r=nt(D(e),o[0]),n=o.slice(1).join(" ").trim()}if(n[0]==="-"){var s=n.substr(1).trim().split(" "),a=(r||e).previousElementSibling;r=F(a,n.substr(1))?a:null,n=s.slice(1).join(" ")}return r?vr(r)+" "+n:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}var fr=/(^|[^\\],)\s*[!>+~-]/,hr=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Li=it(function(t){return t.match(fr)}),lr=/.*?[^\\](?:,|$)/g,dr=it(function(t){return t.match(lr).map(function(e){return e.replace(/,$/,"").trim()})});function vr(t){for(var e=[];t.parentNode;){var i=A(t,"id");if(i){e.unshift("#"+ee(i));break}else{var n=t.tagName;n!=="HTML"&&(n+=":nth-child("+(ui(t)+1)+")"),e.unshift(n),t=t.parentNode}}return e.join(" > ")}var gr=tt&&window.CSS&&CSS.escape||function(t){return t.replace(/([^\x7f-\uFFFF\w-])/g,function(e){return"\\"+e})};function ee(t){return C(t)?gr.call(null,t):""}function H(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var i=Ri(t),n=i[0],r=i[1],o=i[2],s=i[3],a=i[4];return n=Ce(n),s.length>1&&(s=mr(s)),a&&a.self&&(s=wr(s)),o&&(s=pr(o,s)),a=Wi(a),r.split(" ").forEach(function(c){return n.forEach(function(f){return f.addEventListener(c,s,a)})}),function(){return Ii(n,r,s,a)}}function Ii(t,e,i,n){n===void 0&&(n=!1),n=Wi(n),t=Ce(t),e.split(" ").forEach(function(r){return t.forEach(function(o){return o.removeEventListener(r,i,n)})})}function B(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var i=Ri(t),n=i[0],r=i[1],o=i[2],s=i[3],a=i[4],c=i[5],f=H(n,r,o,function(v){var u=!c||c(v);u&&(f(),s(v,u))},a);return f}function E(t,e,i){return Ce(t).reduce(function(n,r){return n&&r.dispatchEvent(fi(e,!0,!0,i))},!0)}function fi(t,e,i,n){if(e===void 0&&(e=!0),i===void 0&&(i=!1),C(t)){var r=document.createEvent("CustomEvent");r.initCustomEvent(t,e,i,n),t=r}return t}function Ri(t){return U(t[2])&&t.splice(2,0,!1),t}function pr(t,e){var i=this;return function(n){var r=t[0]===">"?te(t,n.currentTarget).reverse().filter(function(o){return R(n.target,o)})[0]:nt(n.target,t);r&&(n.current=r,e.call(i,n))}}function mr(t){return function(e){return Q(e.detail)?t.apply(void 0,[e].concat(e.detail)):t(e)}}function wr(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Wi(t){return t&&$e&&!Yt(t)?!!t.capture:t}function ji(t){return t&&"addEventListener"in t}function br(t){return ji(t)?t:P(t)}function Ce(t){return Q(t)?t.map(br).filter(Boolean):C(t)?te(t):ji(t)?[t]:w(t)}function It(t){return t.pointerType==="touch"||!!t.touches}function _e(t){var e=t.touches,i=t.changedTouches,n=e&&e[0]||i&&i[0]||t,r=n.clientX,o=n.clientY;return{x:r,y:o}}var y=tt&&window.Promise||J,qi=function(){var t=this;this.promise=new y(function(e,i){t.reject=i,t.resolve=e})},Vi=0,Yi=1,Ae=2,$r=tt&&window.setImmediate||setTimeout;function J(t){this.state=Ae,this.value=void 0,this.deferred=[];var e=this;try{t(function(i){e.resolve(i)},function(i){e.reject(i)})}catch(i){e.reject(i)}}J.reject=function(t){return new J(function(e,i){i(t)})},J.resolve=function(t){return new J(function(e,i){e(t)})},J.all=function(e){return new J(function(i,n){var r=[],o=0;e.length===0&&i(r);function s(c){return function(f){r[c]=f,o+=1,o===e.length&&i(r)}}for(var a=0;a<e.length;a+=1)J.resolve(e[a]).then(s(a),n)})},J.race=function(e){return new J(function(i,n){for(var r=0;r<e.length;r+=1)J.resolve(e[r]).then(i,n)})};var ie=J.prototype;ie.resolve=function(e){var i=this;if(i.state===Ae){if(e===i)throw new TypeError("Promise settled with itself.");var n=!1;try{var r=e&&e.then;if(e!==null&&dt(e)&&U(r)){r.call(e,function(o){n||i.resolve(o),n=!0},function(o){n||i.reject(o),n=!0});return}}catch(o){n||i.reject(o);return}i.state=Vi,i.value=e,i.notify()}},ie.reject=function(e){var i=this;if(i.state===Ae){if(e===i)throw new TypeError("Promise settled with itself.");i.state=Yi,i.value=e,i.notify()}},ie.notify=function(){var e=this;$r(function(){if(e.state!==Ae)for(;e.deferred.length;){var i=e.deferred.shift(),n=i[0],r=i[1],o=i[2],s=i[3];try{e.state===Vi?U(n)?o(n.call(void 0,e.value)):o(e.value):e.state===Yi&&(U(r)?o(r.call(void 0,e.value)):s(e.value))}catch(a){s(a)}}})},ie.then=function(e,i){var n=this;return new J(function(r,o){n.deferred.push([e,i,r,o]),n.notify()})},ie.catch=function(t){return this.then(void 0,t)};function Gi(t,e){var i=N({data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:gt,responseType:""},e);return y.resolve().then(function(){return i.beforeSend(i)}).then(function(){return yr(t,i)})}function yr(t,e){return new y(function(i,n){var r=e.xhr;for(var o in e)if(o in r)try{r[o]=e[o]}catch{}r.open(e.method.toUpperCase(),t);for(var s in e.headers)r.setRequestHeader(s,e.headers[s]);H(r,"load",function(){r.status===0||r.status>=200&&r.status<300||r.status===304?(e.responseType==="json"&&C(r.response)&&(r=N(xr(r),{response:JSON.parse(r.response)})),i(r)):n(N(Error(r.statusText),{xhr:r,status:r.status}))}),H(r,"error",function(){return n(N(Error("Network Error"),{xhr:r}))}),H(r,"timeout",function(){return n(N(Error("Network Timeout"),{xhr:r}))}),r.send(e.data)})}function Ki(t,e,i){return new y(function(n,r){var o=new Image;o.onerror=function(s){return r(s)},o.onload=function(){return n(o)},i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}function xr(t){var e={};for(var i in t)e[i]=t[i];return e}function kr(t){if(document.readyState!=="loading"){t();return}B(document,"DOMContentLoaded",t)}function Xi(t){return t=b(t),t.innerHTML="",t}function Ne(t,e){return t=b(t),Y(e)?t.innerHTML:rt(t.hasChildNodes()?Xi(t):t,e)}function Sr(t,e){return t=b(t),t.hasChildNodes()?He(e,function(i){return t.insertBefore(i,t.firstChild)}):rt(t,e)}function rt(t,e){return t=b(t),He(e,function(i){return t.appendChild(i)})}function Pe(t,e){return t=b(t),He(e,function(i){return t.parentNode.insertBefore(i,t)})}function Me(t,e){return t=b(t),He(e,function(i){return t.nextSibling?Pe(t.nextSibling,i):rt(t.parentNode,i)})}function He(t,e){return t=C(t)?ne(t):t,t?"length"in t?w(t).map(e):e(t):null}function bt(t){w(t).forEach(function(e){return e.parentNode&&e.parentNode.removeChild(e)})}function Be(t,e){for(e=P(Pe(t,e));e.firstChild;)e=e.firstChild;return rt(e,t),e}function Ji(t,e){return w(w(t).map(function(i){return i.hasChildNodes?Be(w(i.childNodes),e):rt(i,e)}))}function Oe(t){w(t).map(D).filter(function(e,i,n){return n.indexOf(e)===i}).forEach(function(e){Pe(e,e.childNodes),bt(e)})}var Tr=/^\s*<(\w+|!)[^>]*>/,Er=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function ne(t){var e=Er.exec(t);if(e)return document.createElement(e[1]);var i=document.createElement("div");return Tr.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,i.childNodes.length>1?w(i.childNodes):i.firstChild}function $t(t,e){if(!!Ot(t))for(e(t),t=t.firstElementChild;t;){var i=t.nextElementSibling;$t(t,e),t=i}}function b(t,e){return Zi(t)?P(ne(t)):ci(t,e)}function W(t,e){return Zi(t)?w(ne(t)):te(t,e)}function Zi(t){return C(t)&&(t[0]==="<"||t.match(/^\s*</))}function k(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];Qi(t,e,"add")}function j(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];Qi(t,e,"remove")}function De(t,e){A(t,"class",function(i){return(i||"").replace(new RegExp("\\b"+e+"\\b","g"),"")})}function hi(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];e[0]&&j(t,e[0]),e[1]&&k(t,e[1])}function S(t,e){var i;i=li(e),e=i[0];for(var n=w(t),r=0;r<n.length;r++)if(e&&n[r].classList.contains(e))return!0;return!1}function G(t,e,i){e=li(e);for(var n=w(t),r=0;r<n.length;r++)for(var o=n[r].classList,s=0;s<e.length;s++)Y(i)?o.toggle(e[s]):ze.Force?o.toggle(e[s],!!i):o[i?"add":"remove"](e[s])}function Qi(t,e,i){var n;e=e.reduce(function(a,c){return a.concat(li(c))},[]);for(var r=w(t),o=function(a){ze.Multiple?(n=r[a].classList)[i].apply(n,e):e.forEach(function(c){return r[a].classList[i](c)})},s=0;s<r.length;s++)o(s)}function li(t){return String(t).split(/\s|,/).filter(Boolean)}var ze={get Multiple(){return this.get("Multiple")},get Force(){return this.get("Force")},get:function(t){var e=document.createElement("_"),i=e.classList;return i.add("a","b"),i.toggle("c",!1),ze={Multiple:i.contains("b"),Force:!i.contains("c")},ze[t]}},Cr={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function l(t,e,i,n){return n===void 0&&(n=""),w(t).map(function(r){if(C(e)){if(e=Fe(e),Y(i))return Ui(r,e);!i&&!Qe(i)?r.style.removeProperty(e):r.style.setProperty(e,vt(i)&&!Cr[e]?i+"px":i,n)}else if(Q(e)){var o=di(r);return e.reduce(function(s,a){return s[a]=o[Fe(a)],s},{})}else dt(e)&&(n=i,et(e,function(s,a){return l(r,a,s,n)}));return r})[0]}function di(t,e){return Et(t).getComputedStyle(t,e)}function Ui(t,e,i){return di(t,i)[e]}var _r=it(function(t){var e=rt(document.documentElement,ne("<div>"));k(e,"uk-"+t);var i=Ui(e,"content",":before");return bt(e),i}),Ar=/^\s*(["'])?(.*?)\1\s*$/;function vi(t){return($e?_r(t):di(document.documentElement).getPropertyValue("--uk-"+t)).replace(Ar,"$2")}var Fe=it(function(t){return Nr(t)}),tn=["webkit","moz","ms"];function Nr(t){t=Tt(t);var e=document.documentElement,i=e.style;if(t in i)return t;for(var n=tn.length,r;n--;)if(r="-"+tn[n]+"-"+t,r in i)return r}function en(t,e,i,n){return i===void 0&&(i=400),n===void 0&&(n="linear"),y.all(w(t).map(function(r){return new y(function(o,s){for(var a in e){var c=l(r,a);c===""&&l(r,a,c)}var f=setTimeout(function(){return E(r,"transitionend")},i);B(r,"transitionend transitioncanceled",function(v){var u=v.type;clearTimeout(f),j(r,"uk-transition"),l(r,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),u==="transitioncanceled"?s():o(r)},{self:!0}),k(r,"uk-transition"),l(r,N({transitionProperty:Object.keys(e).map(Fe).join(","),transitionDuration:i+"ms",transitionTimingFunction:n},e))})}))}var yt={start:en,stop:function(t){return E(t,"transitionend"),y.resolve()},cancel:function(t){E(t,"transitioncanceled")},inProgress:function(t){return S(t,"uk-transition")}},re="uk-animation-";function gi(t,e,i,n,r){return i===void 0&&(i=200),y.all(w(t).map(function(o){return new y(function(s,a){E(o,"animationcanceled");var c=setTimeout(function(){return E(o,"animationend")},i);B(o,"animationend animationcanceled",function(f){var v=f.type;clearTimeout(c),v==="animationcanceled"?a():s(o),l(o,"animationDuration",""),De(o,re+"\\S*")},{self:!0}),l(o,"animationDuration",i+"ms"),k(o,e,re+(r?"leave":"enter")),lt(e,re)&&(n&&k(o,"uk-transform-origin-"+n),r&&k(o,re+"reverse"))})}))}var Pr=new RegExp(re+"(enter|leave)"),at={in:gi,out:function(t,e,i,n){return gi(t,e,i,n,!0)},inProgress:function(t){return Pr.test(A(t,"class"))},cancel:function(t){E(t,"animationcanceled")}},xt={width:["left","right"],height:["top","bottom"]};function ut(t){var e=Ot(t)?P(t).getBoundingClientRect():{height:L(t),width:se(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function _(t,e){var i=ut(t);if(t){var n=Et(t),r=n.pageYOffset,o=n.pageXOffset,s={height:r,width:o};for(var a in xt)for(var c in xt[a])i[xt[a][c]]+=s[a]}if(!e)return i;var f=l(t,"position");et(l(t,["left","top"]),function(v,u){return l(t,u,e[u]-i[u]+$(f==="absolute"&&v==="auto"?nn(t)[u]:v))})}function nn(t){for(var e=_(t),i=e.top,n=e.left,r=P(t),o=r.ownerDocument,s=o.body,a=o.documentElement,c=r.offsetParent,f=c||a;f&&(f===s||f===a)&&l(f,"position")==="static";)f=f.parentNode;if(Ot(f)){var v=_(f);i-=v.top+$(l(f,"borderTopWidth")),n-=v.left+$(l(f,"borderLeftWidth"))}return{top:i-$(l(t,"marginTop")),left:n-$(l(t,"marginLeft"))}}function oe(t){var e=[0,0];t=P(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,l(t,"position")==="fixed"){var i=Et(t);return e[0]+=i.pageYOffset,e[1]+=i.pageXOffset,e}while(t=t.offsetParent);return e}var L=rn("height"),se=rn("width");function rn(t){var e=ve(t);return function(i,n){if(Y(n)){if(Vt(i))return i["inner"+e];if(Bt(i)){var r=i.documentElement;return Math.max(r["offset"+e],r["scroll"+e])}return i=P(i),n=l(i,t),n=n==="auto"?i["offset"+e]:$(n)||0,n-Rt(i,t)}else return l(i,t,!n&&n!==0?"":+n+Rt(i,t)+"px")}}function Rt(t,e,i){return i===void 0&&(i="border-box"),l(t,"boxSizing")===i?xt[e].map(ve).reduce(function(n,r){return n+$(l(t,"padding"+r))+$(l(t,"border"+r+"Width"))},0):0}function pi(t){for(var e in xt)for(var i in xt[e])if(xt[e][i]===t)return xt[e][1-i];return t}function kt(t,e,i,n){return e===void 0&&(e="width"),i===void 0&&(i=window),n===void 0&&(n=!1),vt(t)?+t:st(t,"vh")?mi(L(Et(i)),t):st(t,"vw")?mi(se(Et(i)),t):st(t,"%")?mi(n?i["offset"+ve(e)]:ut(i)[e],t):$(t)}function mi(t,e){return t*$(e)/100}var I={reads:[],writes:[],read:function(t){return this.reads.push(t),bi(),t},write:function(t){return this.writes.push(t),bi(),t},clear:function(t){sn(this.reads,t),sn(this.writes,t)},flush:wi};function wi(t){t===void 0&&(t=1),on(I.reads),on(I.writes.splice(0)),I.scheduled=!1,(I.reads.length||I.writes.length)&&bi(t+1)}var Mr=4;function bi(t){I.scheduled||(I.scheduled=!0,t&&t<Mr?y.resolve().then(function(){return wi(t)}):requestAnimationFrame(function(){return wi()}))}function on(t){for(var e;e=t.shift();)try{e()}catch(i){console.error(i)}}function sn(t,e){var i=t.indexOf(e);return~i&&t.splice(i,1)}function $i(){}$i.prototype={positions:[],init:function(){var t=this;this.positions=[];var e;this.unbind=H(document,"mousemove",function(i){return e=_e(i)}),this.interval=setInterval(function(){!e||(t.positions.push(e),t.positions.length>5&&t.positions.shift())},50)},cancel:function(){this.unbind&&this.unbind(),this.interval&&clearInterval(this.interval)},movesTo:function(t){if(this.positions.length<2)return!1;var e=t.getBoundingClientRect(),i=e.left,n=e.right,r=e.top,o=e.bottom,s=this.positions,a=s[0],c=pe(this.positions),f=[a,c];if(ri(c,e))return!1;var v=[[{x:i,y:r},{x:n,y:o}],[{x:i,y:o},{x:n,y:r}]];return v.some(function(u){var h=Hr(f,u);return h&&ri(h,e)})}};function Hr(t,e){var i=t[0],n=i.x,r=i.y,o=t[1],s=o.x,a=o.y,c=e[0],f=c.x,v=c.y,u=e[1],h=u.x,d=u.y,g=(d-v)*(s-n)-(h-f)*(a-r);if(g===0)return!1;var p=((h-f)*(r-v)-(d-v)*(n-f))/g;return p<0?!1:{x:n+p*(s-n),y:r+p*(a-r)}}var q={};q.events=q.created=q.beforeConnect=q.connected=q.beforeDisconnect=q.disconnected=q.destroy=yi,q.args=function(t,e){return e!==!1&&yi(e||t)},q.update=function(t,e){return ni(yi(t,U(e)?{read:e}:e),"order")},q.props=function(t,e){return Q(e)&&(e=e.reduce(function(i,n){return i[n]=String,i},{})),q.methods(t,e)},q.computed=q.methods=function(t,e){return e?t?N({},t,e):e:t},q.data=function(t,e,i){return i?an(t,e,i):e?t?function(n){return an(t,e,n)}:e:t};function an(t,e,i){return q.computed(U(t)?t.call(i,i):t,U(e)?e.call(i,i):e)}function yi(t,e){return t=t&&!Q(t)?[t]:t,e?t?t.concat(e):Q(e)?e:[e]:t}function Br(t,e){return Y(e)?t:e}function Wt(t,e,i){var n={};if(U(e)&&(e=e.options),e.extends&&(t=Wt(t,e.extends,i)),e.mixins)for(var r=0,o=e.mixins.length;r<o;r++)t=Wt(t,e.mixins[r],i);for(var s in t)c(s);for(var a in e)mt(t,a)||c(a);function c(f){n[f]=(q[f]||Br)(t[f],e[f],i)}return n}function un(t,e){var i;e===void 0&&(e=[]);try{return t?lt(t,"{")?JSON.parse(t):e.length&&!m(t,":")?(i={},i[e[0]]=t,i):t.split(";").reduce(function(n,r){var o=r.split(/:(.*)/),s=o[0],a=o[1];return s&&!Y(a)&&(n[s.trim()]=a.trim()),n},{}):{}}catch{return{}}}function cn(t){if(Ie(t)&&xi(t,{func:"playVideo",method:"play"}),Le(t))try{t.play().catch(gt)}catch{}}function fn(t){Ie(t)&&xi(t,{func:"pauseVideo",method:"pause"}),Le(t)&&t.pause()}function hn(t){Ie(t)&&xi(t,{func:"mute",method:"setVolume",value:0}),Le(t)&&(t.muted=!0)}function ln(t){return Le(t)||Ie(t)}function Le(t){return t&&t.tagName==="VIDEO"}function Ie(t){return t&&t.tagName==="IFRAME"&&(dn(t)||vn(t))}function dn(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function vn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}function xi(t,e){Dr(t).then(function(){return gn(t,e)})}function gn(t,e){try{t.contentWindow.postMessage(JSON.stringify(N({event:"command"},e)),"*")}catch{}}var ki="_ukPlayer",Or=0;function Dr(t){if(t[ki])return t[ki];var e=dn(t),i=vn(t),n=++Or,r;return t[ki]=new y(function(o){e&&B(t,"load",function(){var s=function(){return gn(t,{event:"listening",id:n})};r=setInterval(s,100),s()}),B(window,"message",o,!1,function(s){var a=s.data;try{return a=JSON.parse(a),a&&(e&&a.id===n&&a.event==="onReady"||i&&Number(a.player_id)===n)}catch{}}),t.src=""+t.src+(m(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+n)}).then(function(){return clearInterval(r)})}function ae(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),M(t)?Oi.apply(void 0,jt(t).map(function(n){var r=_(ue(n)),o=r.top,s=r.left,a=r.bottom,c=r.right;return{top:o-e,left:s-i,bottom:a+e,right:c+i}}).concat(_(t))):!1}function Si(t,e){Vt(t)||Bt(t)?t=Re(t):t=P(t),t.scrollTop=e}function Ti(t,e){e===void 0&&(e={});var i=e.offset;i===void 0&&(i=0);var n=M(t)?jt(t):[];return n.reduce(function(a,c,f){var v=c.scrollTop,u=c.scrollHeight,h=c.offsetHeight,d=u-ce(c),g=_(n[f-1]||t),p=g.height,x=g.top,T=Math.ceil(x-_(ue(c)).top-i+v);return i>0&&h<p+i?T+=i:i=0,T>d?(i-=T-d,T=d):T<0&&(i-=T,T=0),function(){return r(c,T-v).then(a)}},function(){return y.resolve()})();function r(a,c){return new y(function(f){var v=a.scrollTop,u=o(Math.abs(c)),h=Date.now();(function d(){var g=s(me((Date.now()-h)/u));Si(a,v+c*g),g===1?f():requestAnimationFrame(d)})()})}function o(a){return 40*Math.pow(a,.375)}function s(a){return .5*(1-Math.cos(Math.PI*a))}}function pn(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!M(t))return 0;var n=jt(t,/auto|scroll/,!0),r=n[0],o=r.scrollHeight,s=r.scrollTop,a=ce(r),c=o-a,f=oe(t)[0]-oe(r)[0],v=Math.max(0,f-a+e),u=Math.min(c,f+t.offsetHeight-i);return me((s-v)/(u-v))}function jt(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);var n=Re(t),r=Qt(t).reverse();r=r.slice(r.indexOf(n)+1);var o=ge(r,function(s){return l(s,"position")==="fixed"});return~o&&(r=r.slice(o)),[n].concat(r.filter(function(s){return e.test(l(s,"overflow"))&&(!i||s.scrollHeight>ce(s))})).reverse()}function ue(t){return t===Re(t)?window:t}function ce(t){return(t===Re(t)?document.documentElement:t).clientHeight}function Re(t){var e=Et(t),i=e.document;return i.scrollingElement||i.documentElement}var fe={width:["x","left","right"],height:["y","top","bottom"]};function mn(t,e,i,n,r,o,s,a){i=bn(i),n=bn(n);var c={element:i,target:n};if(!t||!e)return c;var f=_(t),v=_(e),u=v;if(wn(u,i,f,-1),wn(u,n,v,1),r=$n(r,f.width,f.height),o=$n(o,v.width,v.height),r.x+=o.x,r.y+=o.y,u.left+=r.x,u.top+=r.y,s){var h=jt(t).map(ue);a&&!m(h,a)&&h.unshift(a),h=h.map(function(d){return _(d)}),et(fe,function(d,g){var p=d[0],x=d[1],T=d[2];!(s===!0||m(s,p))||h.some(function(V){var O=i[p]===x?-f[g]:i[p]===T?f[g]:0,ht=n[p]===x?v[g]:n[p]===T?-v[g]:0;if(u[x]<V[x]||u[x]+f[g]>V[T]){var Z=f[g]/2,ot=n[p]==="center"?-v[g]/2:0;return i[p]==="center"&&(le(Z,ot)||le(-Z,-ot))||le(O,ht)}function le(de,Ge){var Pt=$((u[x]+de+Ge-r[p]*2).toFixed(4));if(Pt>=V[x]&&Pt+f[g]<=V[T])return u[x]=Pt,["element","target"].forEach(function(Ni){c[Ni][p]=de?c[Ni][p]===fe[g][1]?fe[g][2]:fe[g][1]:c[Ni][p]}),!0}})})}return _(t,u),c}function wn(t,e,i,n){et(fe,function(r,o){var s=r[0],a=r[1],c=r[2];e[s]===c?t[a]+=i[o]*n:e[s]==="center"&&(t[a]+=i[o]*n/2)})}function bn(t){var e=/left|center|right/,i=/top|center|bottom/;return t=(t||"").split(" "),t.length===1&&(t=e.test(t[0])?t.concat("center"):i.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:i.test(t[1])?t[1]:"center"}}function $n(t,e,i){var n=(t||"").split(" "),r=n[0],o=n[1];return{x:r?$(r)*(st(r,"%")?e/100:1):0,y:o?$(o)*(st(o,"%")?i/100:1):0}}var zr=Object.freeze({__proto__:null,ajax:Gi,getImage:Ki,transition:en,Transition:yt,animate:gi,Animation:at,attr:A,hasAttr:Kt,removeAttr:oi,data:Xt,addClass:k,removeClass:j,removeClasses:De,replaceClass:hi,hasClass:S,toggleClass:G,dimensions:ut,offset:_,position:nn,offsetPosition:oe,height:L,width:se,boxModelAdjust:Rt,flipPosition:pi,toPx:kt,ready:kr,empty:Xi,html:Ne,prepend:Sr,append:rt,before:Pe,after:Me,remove:bt,wrapAll:Be,wrapInner:Ji,unwrap:Oe,fragment:ne,apply:$t,$:b,$$:W,inBrowser:tt,isIE:$e,isRtl:Jt,hasTouch:or,pointerDown:Ft,pointerMove:sr,pointerUp:Lt,pointerEnter:ye,pointerLeave:xe,pointerCancel:ke,on:H,off:Ii,once:B,trigger:E,createEvent:fi,toEventTargets:Ce,isTouch:It,getEventPos:_e,fastdom:I,isVoidElement:si,isVisible:M,selInput:Se,isInput:Di,selFocusable:Te,isFocusable:ai,parent:D,filter:Zt,matches:F,closest:nt,within:R,parents:Qt,children:Ct,index:ui,hasOwn:mt,hyphenate:Tt,camelize:Ht,ucfirst:ve,startsWith:lt,endsWith:st,includes:m,findIndex:ge,isArray:Q,isFunction:U,isObject:dt,isPlainObject:wt,isWindow:Vt,isDocument:Bt,isNode:Je,isElement:Ot,isBoolean:Yt,isString:C,isNumber:Qe,isNumeric:vt,isEmpty:Ue,isUndefined:Y,toBoolean:ti,toNumber:Gt,toFloat:$,toArray:Hi,toNode:P,toNodes:w,toWindow:Et,toMs:ei,isEqual:Bi,swap:ii,assign:N,last:pe,each:et,sortBy:ni,uniqueBy:rr,clamp:me,noop:gt,intersectRect:Oi,pointInRect:ri,Dimensions:we,getIndex:be,memoize:it,MouseTracker:$i,mergeOptions:Wt,parseOptions:un,play:cn,pause:fn,mute:hn,isVideo:ln,positionAt:mn,Promise:y,Deferred:qi,query:pt,queryAll:Ut,find:ci,findAll:te,escape:ee,css:l,getCssVar:vi,propName:Fe,isInView:ae,scrollTop:Si,scrollIntoView:Ti,scrolledOver:pn,scrollParents:jt,getViewport:ue,getViewportClientHeight:ce});function Fr(t){var e=t.data;t.use=function(r){if(!r.installed)return r.call(null,this),r.installed=!0,this},t.mixin=function(r,o){o=(C(o)?t.component(o):o)||this,o.options=Wt(o.options,r)},t.extend=function(r){r=r||{};var o=this,s=function(c){this._init(c)};return s.prototype=Object.create(o.prototype),s.prototype.constructor=s,s.options=Wt(o.options,r),s.super=o,s.extend=o.extend,s},t.update=function(r,o){r=r?P(r):document.body,Qt(r).reverse().forEach(function(s){return n(s[e],o)}),$t(r,function(s){return n(s[e],o)})};var i;Object.defineProperty(t,"container",{get:function(){return i||document.body},set:function(r){i=b(r)}});function n(r,o){if(!!r)for(var s in r)r[s]._connected&&r[s]._callUpdate(o)}}function Lr(t){t.prototype._callHook=function(n){var r=this,o=this.$options[n];o&&o.forEach(function(s){return s.call(r)})},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(n){var r=this;n===void 0&&(n="update"),!!this._connected&&((n==="update"||n==="resize")&&this._callWatches(),!!this.$options.update&&(this._updates||(this._updates=new Set,I.read(function(){r._connected&&e.call(r,r._updates),delete r._updates})),this._updates.add(n.type||n)))},t.prototype._callWatches=function(){var n=this;if(!this._watch){var r=!mt(this,"_watch");this._watch=I.read(function(){n._connected&&i.call(n,r),n._watch=null})}};function e(n){for(var r=this,o=this.$options.update,s=function(c){var f=o[c],v=f.read,u=f.write,h=f.events;if(!(!n.has("update")&&(!h||!h.some(function(g){return n.has(g)})))){var d=void 0;v&&(d=v.call(r,r._data,n),d&&wt(d)&&N(r._data,d)),u&&d!==!1&&I.write(function(){return u.call(r,r._data,n)})}},a=0;a<o.length;a++)s(a)}function i(n){var r=this,o=r.$options.computed,s=N({},this._computeds);this._computeds={};for(var a in o){var c=o[a],f=c.watch,v=c.immediate;f&&(n&&v||mt(s,a)&&!Bi(s[a],this[a]))&&f.call(this,this[a],s[a])}}}function Ir(t){var e=0;t.prototype._init=function(u){u=u||{},u.data=c(u,this.constructor.options),this.$options=Wt(this.constructor.options,u,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),u.el&&this.$mount(u.el)},t.prototype._initData=function(){var u=this.$options,h=u.data;h===void 0&&(h={});for(var d in h)this.$props[d]=this[d]=h[d]},t.prototype._initMethods=function(){var u=this.$options,h=u.methods;if(h)for(var d in h)this[d]=h[d].bind(this)},t.prototype._initComputeds=function(){var u=this.$options,h=u.computed;if(this._computeds={},h)for(var d in h)n(this,d,h[d])},t.prototype._initProps=function(u){var h;u=u||i(this.$options,this.$name);for(h in u)Y(u[h])||(this.$props[h]=u[h]);var d=[this.$options.computed,this.$options.methods];for(h in this.$props)h in u&&o(d,h)&&(this[h]=this.$props[h])},t.prototype._initEvents=function(){var u=this;this._events=[];var h=this.$options,d=h.events;d&&d.forEach(function(g){if(mt(g,"handler"))r(u,g);else for(var p in g)r(u,g[p],p)})},t.prototype._unbindEvents=function(){this._events.forEach(function(u){return u()}),delete this._events},t.prototype._initObservers=function(){this._observers=[f(this),v(this)]},t.prototype._disconnectObservers=function(){this._observers.forEach(function(u){return u&&u.disconnect()})};function i(u,h){var d={},g=u.args;g===void 0&&(g=[]);var p=u.props;p===void 0&&(p={});var x=u.el;if(!p)return d;for(var T in p){var V=Tt(T),O=Xt(x,V);Y(O)||(O=p[T]===Boolean&&O===""?!0:s(p[T],O),!(V==="target"&&(!O||lt(O,"_")))&&(d[T]=O))}var ht=un(Xt(x,h),g);for(var Z in ht){var ot=Ht(Z);p[ot]!==void 0&&(d[ot]=s(p[ot],ht[Z]))}return d}function n(u,h,d){Object.defineProperty(u,h,{enumerable:!0,get:function(){var g=u._computeds,p=u.$props,x=u.$el;return mt(g,h)||(g[h]=(d.get||d).call(u,p,x)),g[h]},set:function(g){var p=u._computeds;p[h]=d.set?d.set.call(u,g):g,Y(p[h])&&delete p[h]}})}function r(u,h,d){wt(h)||(h={name:d,handler:h});var g=h.name,p=h.el,x=h.handler,T=h.capture,V=h.passive,O=h.delegate,ht=h.filter,Z=h.self;if(p=U(p)?p.call(u):p||u.$el,Q(p)){p.forEach(function(ot){return r(u,N({},h,{el:ot}),d)});return}!p||ht&&!ht.call(u)||u._events.push(H(p,g,O?C(O)?O:O.call(u):null,C(x)?u[x]:x.bind(u),{passive:V,capture:T,self:Z}))}function o(u,h){return u.every(function(d){return!d||!mt(d,h)})}function s(u,h){return u===Boolean?ti(h):u===Number?Gt(h):u==="list"?a(h):u?u(h):h}function a(u){return Q(u)?u:C(u)?u.split(/,(?![^(]*\))/).map(function(h){return vt(h)?Gt(h):ti(h.trim())}):[u]}function c(u,h){var d=u.data,g=h.args,p=h.props;if(p===void 0&&(p={}),d=Q(d)?Ue(g)?void 0:d.slice(0,g.length).reduce(function(T,V,O){return wt(V)?N(T,V):T[g[O]]=V,T},{}):d,d)for(var x in d)Y(d[x])?delete d[x]:d[x]=p[x]?s(p[x],d[x]):d[x];return d}function f(u){var h=u.$options,d=h.el,g=new MutationObserver(function(){return u.$emit()});return g.observe(d,{childList:!0,subtree:!0}),g}function v(u){var h=u.$name,d=u.$options,g=u.$props,p=d.attrs,x=d.props,T=d.el;if(!(!x||p===!1)){var V=Q(p)?p:Object.keys(x),O=V.map(function(Z){return Tt(Z)}).concat(h),ht=new MutationObserver(function(Z){var ot=i(d,h);Z.some(function(le){var de=le.attributeName,Ge=de.replace("data-","");return(Ge===h?V:[Ht(Ge),Ht(de)]).some(function(Pt){return!Y(ot[Pt])&&ot[Pt]!==g[Pt]})})&&u.$reset()});return ht.observe(T,{attributes:!0,attributeFilter:O.concat(O.map(function(Z){return"data-"+Z}))}),ht}}}function Rr(t){var e=t.data;t.prototype.$create=function(n,r,o){return t[n](r,o)},t.prototype.$mount=function(n){var r=this.$options,o=r.name;n[e]||(n[e]={}),!n[e][o]&&(n[e][o]=this,this.$el=this.$options.el=this.$options.el||n,R(n,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(n){n===void 0&&(n=!1);var r=this.$options,o=r.el,s=r.name;o&&this._callDisconnected(),this._callHook("destroy"),!(!o||!o[e])&&(delete o[e][s],Ue(o[e])||delete o[e],n&&bt(this.$el))},t.prototype.$emit=function(n){this._callUpdate(n)},t.prototype.$update=function(n,r){n===void 0&&(n=this.$el),t.update(n,r)},t.prototype.$getComponent=t.getComponent;var i=it(function(n){return t.prefix+Tt(n)});Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get:function(){return i(this.$options.name)}}})}function Wr(t){var e=t.data,i={};t.component=function(n,r){var o=Tt(n);if(n=Ht(o),!r)return wt(i[n])&&(i[n]=t.extend(i[n])),i[n];t[n]=function(a,c){for(var f=arguments.length,v=Array(f);f--;)v[f]=arguments[f];var u=t.component(n);return u.options.functional?new u({data:wt(a)?a:[].concat(v)}):a?W(a).map(h)[0]:h(a);function h(d){var g=t.getComponent(d,n);if(g)if(c)g.$destroy();else return g;return new u({el:d,data:c})}};var s=wt(r)?N({},r):r.options;return s.name=n,s.install&&s.install(t,s,n),t._initialized&&!s.functional&&I.read(function(){return t[n]("[uk-"+o+"],[data-uk-"+o+"]")}),i[n]=wt(r)?s:r},t.getComponents=function(n){return n&&n[e]||{}},t.getComponent=function(n,r){return t.getComponents(n)[r]},t.connect=function(n){if(n[e])for(var r in n[e])n[e][r]._callConnected();for(var o=0;o<n.attributes.length;o++){var s=yn(n.attributes[o].name);s&&s in i&&t[s](n)}},t.disconnect=function(n){for(var r in n[e])n[e][r]._callDisconnected()}}var yn=it(function(t){return lt(t,"uk-")||lt(t,"data-uk-")?Ht(t.replace("data-uk-","").replace("uk-","")):!1}),K=function(t){this._init(t)};K.util=zr,K.data="__uikit__",K.prefix="uk-",K.options={},K.version="3.11.1",Fr(K),Lr(K),Ir(K),Wr(K),Rr(K);function jr(t){if(!!tt){var e,i=function(){e||(e=!0,I.write(function(){return e=!1}),t.update(null,"resize"))};H(window,"load resize",i),H(document,"loadedmetadata load",i,!0),"ResizeObserver"in window&&new ResizeObserver(i).observe(document.documentElement);var n;H(window,"scroll",function(o){n||(n=!0,I.write(function(){return n=!1}),t.update(null,o.type))},{passive:!0,capture:!0});var r=0;H(document,"animationstart",function(o){var s=o.target;(l(s,"animationName")||"").match(/^uk-.*(left|right)/)&&(r++,l(document.documentElement,"overflowX","hidden"),setTimeout(function(){--r||l(document.documentElement,"overflowX","")},ei(l(s,"animationDuration"))+100))},!0),H(document,Ft,function(o){if(!!It(o)){var s=_e(o),a="tagName"in o.target?o.target:D(o.target);B(document,Lt+" "+ke+" scroll",function(c){var f=_e(c),v=f.x,u=f.y;(c.type!=="scroll"&&a&&v&&Math.abs(s.x-v)>100||u&&Math.abs(s.y-u)>100)&&setTimeout(function(){E(a,"swipe"),E(a,"swipe"+qr(s.x,s.y,v,u))})})}},{passive:!0})}}function qr(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function Vr(t){var e=t.connect,i=t.disconnect;if(!tt||!window.MutationObserver)return;I.read(function(){document.body&&$t(document.body,e),new MutationObserver(function(o){return o.forEach(n)}).observe(document,{childList:!0,subtree:!0}),new MutationObserver(function(o){return o.forEach(r)}).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function n(o){for(var s=o.addedNodes,a=o.removedNodes,c=0;c<s.length;c++)$t(s[c],e);for(var f=0;f<a.length;f++)$t(a[f],i)}function r(o){var s=o.target,a=o.attributeName,c=yn(a);if(!(!c||!(c in t))){if(Kt(s,a)){t[c](s);return}var f=t.getComponent(s,c);f&&f.$destroy()}}}var ct={connected:function(){!S(this.$el,this.$name)&&k(this.$el,this.$name)}},_t={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation:function(t){var e=t.animation;return!!e[0]},hasTransition:function(t){var e=t.animation;return this.hasAnimation&&e[0]===!0}},methods:{toggleElement:function(t,e,i){var n=this;return new y(function(r){return y.all(w(t).map(function(o){var s=Yt(e)?e:!n.isToggled(o);if(!E(o,"before"+(s?"show":"hide"),[n]))return y.reject();var a=(U(i)?i:i===!1||!n.hasAnimation?n._toggle:n.hasTransition?xn(n):Yr(n))(o,s),c=s?n.clsEnter:n.clsLeave;k(o,c),E(o,s?"show":"hide",[n]);var f=function(){j(o,c),E(o,s?"shown":"hidden",[n]),n.$update(o)};return a?a.then(f,function(){return j(o,c),y.reject()}):f()})).then(r,gt)})},isToggled:function(t){var e;return t===void 0&&(t=this.$el),e=w(t),t=e[0],S(t,this.clsEnter)?!0:S(t,this.clsLeave)?!1:this.cls?S(t,this.cls.split(" ")[0]):M(t)},_toggle:function(t,e){if(!!t){e=Boolean(e);var i;this.cls?(i=m(this.cls," ")||e!==S(t,this.cls),i&&G(t,this.cls,m(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),W("[autofocus]",t).some(function(n){return M(n)?n.focus()||!0:n.blur()}),i&&(E(t,"toggled",[e,this]),this.$update(t))}}}};function xn(t){var e=t.isToggled,i=t.duration,n=t.initProps,r=t.hideProps,o=t.transition,s=t._toggle;return function(a,c){var f=yt.inProgress(a),v=a.hasChildNodes?$(l(a.firstElementChild,"marginTop"))+$(l(a.lastElementChild,"marginBottom")):0,u=M(a)?L(a)+(f?0:v):0;yt.cancel(a),e(a)||s(a,!0),L(a,""),I.flush();var h=L(a)+(f?0:v);return L(a,u),(c?yt.start(a,N({},n,{overflow:"hidden",height:h}),Math.round(i*(1-u/h)),o):yt.start(a,r,Math.round(i*(u/h)),o).then(function(){return s(a,!1)})).then(function(){return l(a,n)})}}function Yr(t){return function(e,i){at.cancel(e);var n=t.animation,r=t.duration,o=t._toggle;return i?(o(e,!0),at.in(e,n[0],r,t.origin)):at.out(e,n[1]||n[0],r,t.origin).then(function(){return o(e,!1)})}}var kn={mixins:[ct,_t],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String,offset:Number},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease",offset:0},computed:{items:{get:function(t,e){var i=t.targets;return W(i,e)},watch:function(t,e){var i=this;if(t.forEach(function(r){return We(b(i.content,r),!S(r,i.clsOpen))}),!(e||S(t,this.clsOpen))){var n=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];n&&this.toggle(n,!1)}},immediate:!0},toggles:function(t){var e=t.toggle;return this.items.map(function(i){return b(e,i)})}},events:[{name:"click",delegate:function(){return this.targets+" "+this.$props.toggle},handler:function(t){t.preventDefault(),this.toggle(ui(this.toggles,t.current))}}],methods:{toggle:function(t,e){var i=this,n=[this.items[be(t,this.items)]],r=Zt(this.items,"."+this.clsOpen);!this.multiple&&!m(r,n[0])&&(n=n.concat(r)),!(!this.collapsible&&r.length<2&&!Zt(n,":not(."+this.clsOpen+")").length)&&n.forEach(function(o){return i.toggleElement(o,!S(o,i.clsOpen),function(s,a){G(s,i.clsOpen,a),A(b(i.$props.toggle,s),"aria-expanded",a);var c=b((s._wrapper?"> * ":"")+i.content,s);if(e===!1||!i.hasTransition){We(c,!a);return}return s._wrapper||(s._wrapper=Be(c,"<div"+(a?" hidden":"")+">")),We(c,!1),xn(i)(s._wrapper,a).then(function(){if(We(c,!a),delete s._wrapper,Oe(c),a){var f=b(i.$props.toggle,s);ae(f)||Ti(f,{offset:i.offset})}})})})}}};function We(t,e){t&&(t.hidden=e)}var Gr={mixins:[ct,_t],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:N({opacity:0},_t.data.hideProps)},events:[{name:"click",delegate:function(){return this.selClose},handler:function(t){t.preventDefault(),this.close()}}],methods:{close:function(){var t=this;this.toggleElement(this.$el).then(function(){return t.$destroy(!0)})}}},Sn={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView:function(t){var e=t.autoplay;return e==="inview"}},connected:function(){this.inView&&!Kt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&hn(this.$el)},update:{read:function(){return ln(this.$el)?{visible:M(this.$el)&&l(this.$el,"visibility")!=="hidden",inView:this.inView&&ae(this.$el)}:!1},write:function(t){var e=t.visible,i=t.inView;!e||this.inView&&!i?fn(this.$el):(this.autoplay===!0||this.inView&&i)&&cn(this.$el)},events:["resize","scroll"]}},Kr={mixins:[Sn],props:{width:Number,height:Number},data:{automute:!0},update:{read:function(){var t=this.$el,e=Xr(t)||D(t),i=e.offsetHeight,n=e.offsetWidth,r=we.cover({width:this.width||t.naturalWidth||t.videoWidth||t.clientWidth,height:this.height||t.naturalHeight||t.videoHeight||t.clientHeight},{width:n+(n%2?1:0),height:i+(i%2?1:0)});return!r.width||!r.height?!1:r},write:function(t){var e=t.height,i=t.width;l(this.$el,{height:e,width:i})},events:["resize"]}};function Xr(t){for(;t=D(t);)if(l(t,"position")!=="static")return t}var Ei={props:{container:Boolean},data:{container:!0},computed:{container:function(t){var e=t.container;return e===!0&&this.$container||e&&b(e)}}},Jr={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(Jt?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos:function(t){var e=t.pos;return e.split("-").concat("center").slice(0,2)},dir:function(){return this.pos[0]},align:function(){return this.pos[1]}},methods:{positionAt:function(t,e,i){De(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");var n=this,r=n.offset,o=this.getAxis();if(!vt(r)){var s=b(r);r=s?_(s)[o==="x"?"left":"top"]-_(e)[o==="x"?"right":"bottom"]:0}var a=mn(t,e,o==="x"?pi(this.dir)+" "+this.align:this.align+" "+pi(this.dir),o==="x"?this.dir+" "+this.align:this.align+" "+this.dir,o==="x"?""+(this.dir==="left"?-r:r):" "+(this.dir==="top"?-r:r),null,this.flip,i).target,c=a.x,f=a.y;this.dir=o==="x"?c:f,this.align=o==="x"?f:c,G(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis:function(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}},z,Tn={mixins:[Ei,Jr,_t],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary:function(t,e){var i=t.boundary;return i===!0?window:pt(i,e)},clsDrop:function(t){var e=t.clsDrop;return e||"uk-"+this.$options.name},clsPos:function(){return this.clsDrop}},created:function(){this.tracker=new $i},connected:function(){k(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",pt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,A(this.target,"aria-haspopup",!0))},disconnected:function(){this.isActive()&&(z=null)},events:[{name:"click",delegate:function(){return"."+this.clsDrop+"-close"},handler:function(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate:function(){return'a[href^="#"]'},handler:function(t){var e=t.defaultPrevented,i=t.current.hash;!e&&i&&!R(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler:function(){this.hide(!1)}},{name:"toggle",self:!0,handler:function(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e.$el,!1)}},{name:"toggleshow",self:!0,handler:function(t,e){t.preventDefault(),this.show(e.$el)}},{name:"togglehide",self:!0,handler:function(t){t.preventDefault(),F(this.$el,":focus,:hover")||this.hide()}},{name:ye+" focusin",filter:function(){return m(this.mode,"hover")},handler:function(t){It(t)||this.clearTimers()}},{name:xe+" focusout",filter:function(){return m(this.mode,"hover")},handler:function(t){!It(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler:function(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler:function(){var t=this;z=this,this.tracker.init(),B(this.$el,"hide",H(document,Ft,function(e){var i=e.target;return!R(i,t.$el)&&B(document,Lt+" "+ke+" scroll",function(n){var r=n.defaultPrevented,o=n.type,s=n.target;!r&&o===Lt&&i===s&&!(t.target&&R(i,t.target))&&t.hide(!1)},!0)}),{self:!0}),B(this.$el,"hide",H(document,"keydown",function(e){e.keyCode===27&&t.hide(!1)}),{self:!0})}},{name:"beforehide",self:!0,handler:function(){this.clearTimers()}},{name:"hide",handler:function(t){var e=t.target;if(this.$el!==e){z=z===null&&R(e,this.$el)&&this.isToggled()?this:z;return}z=this.isActive()?null:z,this.tracker.cancel()}}],update:{write:function(){this.isToggled()&&!S(this.$el,this.clsEnter)&&this.position()},events:["resize"]},methods:{show:function(t,e){var i=this;if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1),this.target=t,this.clearTimers(),!this.isActive()){if(z){if(e&&z.isDelaying){this.showTimer=setTimeout(this.show,10);return}for(var n;z&&n!==z&&!R(this.$el,z.$el);)n=z,z.hide(!1)}this.container&&D(this.$el)!==this.container&&rt(this.container,this.$el),this.showTimer=setTimeout(function(){return i.toggleElement(i.$el,!0)},e&&this.delayShow||0)}},hide:function(t){var e=this;t===void 0&&(t=!0);var i=function(){return e.toggleElement(e.$el,!1,!1)};this.clearTimers(),this.isDelaying=Zr(this.$el).some(function(n){return e.tracker.movesTo(n)}),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers:function(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive:function(){return z===this},position:function(){j(this.$el,this.clsDrop+"-stack"),G(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);var t=_(this.boundary),e=this.boundaryAlign?t:_(this.target);if(this.align==="justify"){var i=this.getAxis()==="y"?"width":"height";l(this.$el,i,e[i])}else this.boundary&&this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&k(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Zr(t){var e=[];return $t(t,function(i){return l(i,"position")!=="static"&&e.push(i)}),e}var Qr={mixins:[ct],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:function(t,e){return b(Se,e)},state:function(){return this.input.nextElementSibling},target:function(t,e){var i=t.target;return i&&(i===!0&&D(this.input)===e&&this.input.nextElementSibling||pt(i,e))}},update:function(){var t=this,e=t.target,i=t.input;if(!!e){var n,r=Di(e)?"value":"textContent",o=e[r],s=i.files&&i.files[0]?i.files[0].name:F(i,"select")&&(n=W("option",i).filter(function(a){return a.selected})[0])?n.textContent:i.value;o!==s&&(e[r]=s)}},events:[{name:"change",handler:function(){this.$update()}},{name:"reset",el:function(){return nt(this.$el,"form")},handler:function(){this.$update()}}]},Ur={update:{read:function(t){var e=ae(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write:function(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},En={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read:function(){var t=Cn(this.$el.children);return{rows:t,columns:to(t)}},write:function(t){for(var e=t.columns,i=t.rows,n=0;n<i.length;n++)for(var r=0;r<i[n].length;r++)G(i[n][r],this.margin,n!==0),G(i[n][r],this.firstColumn,!!~e[0].indexOf(i[n][r]))},events:["resize"]}};function Cn(t){return _n(t,"top","bottom")}function to(t){for(var e=[],i=0;i<t.length;i++)for(var n=_n(t[i],"left","right"),r=0;r<n.length;r++)e[r]=e[r]?e[r].concat(n[r]):n[r];return Jt?e.reverse():e}function _n(t,e,i){for(var n=[[]],r=0;r<t.length;r++){var o=t[r];if(!!M(o))for(var s=je(o),a=n.length-1;a>=0;a--){var c=n[a];if(!c[0]){c.push(o);break}var f=void 0;if(c[0].offsetParent===o.offsetParent?f=je(c[0]):(s=je(o,!0),f=je(c[0],!0)),s[e]>=f[i]-1&&s[e]!==f[e]){n.push([o]);break}if(s[i]-1>f[e]||s[e]===f[e]){c.push(o);break}if(a===0){n.unshift([o]);break}}}return n}function je(t,e){var i;e===void 0&&(e=!1);var n=t.offsetTop,r=t.offsetLeft,o=t.offsetHeight,s=t.offsetWidth;return e&&(i=oe(t),n=i[0],r=i[1]),{top:n,left:r,bottom:n+o,right:r+s}}var eo={extends:En,mixins:[ct],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected:function(){this.masonry&&k(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write:function(t){var e=t.columns;G(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read:function(t){var e=t.columns,i=t.rows;if(!e.length||!this.masonry&&!this.parallax||An(this.$el))return t.translates=!1,!1;var n=!1,r=Ct(this.$el),o=ro(e),s=no(r,this.margin)*(i.length-1),a=Math.max.apply(Math,o)+s;this.masonry&&(e=e.map(function(f){return ni(f,"offsetTop")}),n=io(i,e));var c=Math.abs(this.parallax);return c&&(c=o.reduce(function(f,v,u){return Math.max(f,v+s+(u%2?c:c/8)-a)},0)),{padding:c,columns:e,translates:n,height:n?a:""}},write:function(t){var e=t.height,i=t.padding;l(this.$el,"paddingBottom",i||""),e!==!1&&l(this.$el,"height",e)},events:["resize"]},{read:function(t){return t.height,An(this.$el)?!1:{scrolled:this.parallax?pn(this.$el)*Math.abs(this.parallax):!1}},write:function(t){var e=t.columns,i=t.scrolled,n=t.translates;i===!1&&!n||e.forEach(function(r,o){return r.forEach(function(s,a){return l(s,"transform",!i&&!n?"":"translateY("+((n&&-n[o][a])+(i?o%2?i:i/8:0))+"px)")})})},events:["scroll","resize"]}]};function An(t){return Ct(t).some(function(e){return l(e,"position")==="absolute"})}function io(t,e){var i=t.map(function(n){return Math.max.apply(Math,n.map(function(r){return r.offsetHeight}))});return e.map(function(n){var r=0;return n.map(function(o,s){return r+=s?i[s-1]-n[s-1].offsetHeight:0})})}function no(t,e){var i=t.filter(function(r){return S(r,e)}),n=i[0];return $(n?l(n,"marginTop"):l(t[0],"paddingLeft"))}function ro(t){return t.map(function(e){return e.reduce(function(i,n){return i+n.offsetHeight},0)})}var Ci=$e?{props:{selMinHeight:String},data:{selMinHeight:!1,forceHeight:!1},computed:{elements:function(t,e){var i=t.selMinHeight;return i?W(i,e):[e]}},update:[{read:function(){l(this.elements,"height","")},order:-5,events:["resize"]},{write:function(){var t=this;this.elements.forEach(function(e){var i=$(l(e,"minHeight"));i&&(t.forceHeight||Math.round(i+Rt(e,"height","content-box"))>=e.offsetHeight)&&l(e,"height",i)})},order:5,events:["resize"]}]}:{},oo={mixins:[Ci],args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements:function(t,e){var i=t.target;return W(i,e)}},update:{read:function(){return{rows:(this.row?Cn(this.elements):[this.elements]).map(so)}},write:function(t){var e=t.rows;e.forEach(function(i){var n=i.heights,r=i.elements;return r.forEach(function(o,s){return l(o,"minHeight",n[s])})})},events:["resize"]}};function so(t){if(t.length<2)return{heights:[""],elements:t};var e=t.map(Nn),i=Math.max.apply(Math,e),n=t.some(function(o){return o.style.minHeight}),r=t.some(function(o,s){return!o.style.minHeight&&e[s]<i});return n&&r&&(l(t,"minHeight",""),e=t.map(Nn),i=Math.max.apply(Math,e)),e=t.map(function(o,s){return e[s]===i&&$(o.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i}),{heights:e,elements:t}}function Nn(t){var e=!1;M(t)||(e=t.style.display,l(t,"display","block","important"));var i=ut(t).height-Rt(t,"height","content-box");return e!==!1&&l(t,"display",e),i}var ao={mixins:[Ci],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read:function(t){var e=t.minHeight;if(!M(this.$el))return!1;var i="",n=Rt(this.$el,"height","content-box");if(this.expand)i=L(window)-(ut(document.documentElement).height-ut(this.$el).height)-n||"";else{if(i="calc(100vh",this.offsetTop){var r=_(this.$el),o=r.top;i+=o>0&&o<L(window)/2?" - "+o+"px":""}this.offsetBottom===!0?i+=" - "+ut(this.$el.nextElementSibling).height+"px":vt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&st(this.offsetBottom,"px")?i+=" - "+$(this.offsetBottom)+"px":C(this.offsetBottom)&&(i+=" - "+ut(pt(this.offsetBottom,this.$el)).height+"px"),i+=(n?" - "+n+"px":"")+")"}return{minHeight:i,prev:e}},write:function(t){var e=t.minHeight,i=t.prev;l(this.$el,{minHeight:e}),e!==i&&this.$update(this.$el,"resize"),this.minHeight&&$(l(this.$el,"minHeight"))<this.minHeight&&l(this.$el,"minHeight",this.minHeight)},events:["resize"]}},Pn={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect:function(){this.class+=" uk-svg"},connected:function(){var t=this,e;!this.icon&&m(this.src,"#")&&(e=this.src.split("#"),this.src=e[0],this.icon=e[1]),this.svg=this.getSvg().then(function(i){if(t._connected){var n=vo(i,t.$el);return t.svgEl&&n!==t.svgEl&&bt(t.svgEl),t.applyAttributes(n,i),t.$emit(),t.svgEl=n}},gt)},disconnected:function(){var t=this;this.svg.then(function(e){t._connected||(si(t.$el)&&(t.$el.hidden=!1),bt(e),t.svgEl=null)}),this.svg=null},update:{read:function(){return!!(this.strokeAnimation&&this.svgEl&&M(this.svgEl))},write:function(){ho(this.svgEl)},type:["resize"]},methods:{getSvg:function(){var t=this;return uo(this.src).then(function(e){return co(e,t.icon)||y.reject("SVG not found.")})},applyAttributes:function(t,e){var i=this;for(var n in this.$options.props)m(this.include,n)&&n in this&&A(t,n,this[n]);for(var r in this.attributes){var o=this.attributes[r].split(":",2),s=o[0],a=o[1];A(t,s,a)}this.id||oi(t,"id");var c=["width","height"],f=c.map(function(u){return i[u]});f.some(function(u){return u})||(f=c.map(function(u){return A(e,u)}));var v=A(e,"viewBox");v&&!f.some(function(u){return u})&&(f=v.split(" ").slice(2)),f.forEach(function(u,h){return A(t,c[h],$(u)*i.ratio||null)})}}},uo=it(function(t){return new y(function(e,i){if(!t){i();return}lt(t,"data:")?e(decodeURIComponent(t.split(",")[1])):Gi(t).then(function(n){return e(n.response)},function(){return i("SVG not found.")})})});function co(t,e){return e&&m(t,"<symbol")&&(t=fo(t,e)||t),t=b(t.substr(t.indexOf("<svg"))),t&&t.hasChildNodes()&&t}var Mn=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,qe={};function fo(t,e){if(!qe[t]){qe[t]={},Mn.lastIndex=0;for(var i;i=Mn.exec(t);)qe[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return qe[t][e]}function ho(t){var e=lo(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function lo(t){return Math.ceil(Math.max.apply(Math,[0].concat(W("[stroke]",t).map(function(e){try{return e.getTotalLength()}catch{return 0}}))))}function vo(t,e){if(si(e)||e.tagName==="CANVAS"){e.hidden=!0;var i=e.nextElementSibling;return Hn(t,i)?i:Me(e,t)}var n=e.lastElementChild;return Hn(t,n)?n:rt(e,t)}function Hn(t,e){return Bn(t)&&Bn(e)&&On(t)===On(e)}function Bn(t){return t&&t.tagName==="svg"}function On(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var go='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',po='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',mo='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',wo='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',bo='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',$o='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',yo='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',xo='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',ko='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',So='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',To='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',Eo='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',Co='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',_o='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',Ao='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',No='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>',Ve={spinner:Ao,totop:No,marker:mo,"close-icon":go,"close-large":po,"navbar-toggle-icon":wo,"overlay-icon":bo,"pagination-next":$o,"pagination-previous":yo,"search-icon":xo,"search-large":ko,"search-navbar":So,"slidenav-next":To,"slidenav-next-large":Eo,"slidenav-previous":Co,"slidenav-previous-large":_o},Dn={install:Bo,extends:Pn,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect:function(){k(this.$el,"uk-icon")},methods:{getSvg:function(){var t=Oo(this.icon);return t?y.resolve(t):y.reject("Icon not found.")}}},ft={args:!1,extends:Dn,data:function(t){return{icon:Tt(t.constructor.options.name)}},beforeConnect:function(){k(this.$el,this.$name)}},zn={extends:ft,beforeConnect:function(){k(this.$el,"uk-slidenav")},computed:{icon:function(t,e){var i=t.icon;return S(e,"uk-slidenav-large")?i+"-large":i}}},Po={extends:ft,computed:{icon:function(t,e){var i=t.icon;return S(e,"uk-search-icon")&&Qt(e,".uk-search-large").length?"search-large":Qt(e,".uk-search-navbar").length?"search-navbar":i}}},Mo={extends:ft,computed:{icon:function(){return"close-"+(S(this.$el,"uk-close-large")?"large":"icon")}}},Ho={extends:ft,connected:function(){var t=this;this.svg.then(function(e){return e&&t.ratio!==1&&l(b("circle",e),"strokeWidth",1/t.ratio)})}},Ye={};function Bo(t){t.icon.add=function(e,i){var n,r=C(e)?(n={},n[e]=i,n):e;et(r,function(o,s){Ve[s]=o,delete Ye[s]}),t._initialized&&$t(document.body,function(o){return et(t.getComponents(o),function(s){s.$options.isIcon&&s.icon in r&&s.$reset()})})}}function Oo(t){return Ve[t]?(Ye[t]||(Ye[t]=b((Ve[Do(t)]||Ve[t]).trim())),Ye[t].cloneNode(!0)):null}function Do(t){return Jt?ii(ii(t,"left","right"),"previous","next"):t}var zo={args:"dataSrc",props:{dataSrc:String,dataSrcset:Boolean,sizes:String,width:Number,height:Number,offsetTop:String,offsetLeft:String,target:String},data:{dataSrc:"",dataSrcset:!1,sizes:!1,width:!1,height:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1},computed:{cacheKey:function(t){var e=t.dataSrc;return this.$name+"."+e},width:function(t){var e=t.width,i=t.dataWidth;return e||i},height:function(t){var e=t.height,i=t.dataHeight;return e||i},sizes:function(t){var e=t.sizes,i=t.dataSizes;return e||i},isImg:function(t,e){return In(e)},target:{get:function(t){var e=t.target;return[this.$el].concat(Ut(e,this.$el))},watch:function(){this.observe()}},offsetTop:function(t){var e=t.offsetTop;return kt(e,"height")},offsetLeft:function(t){var e=t.offsetLeft;return kt(e,"width")}},connected:function(){if(!window.IntersectionObserver){he(this.$el,this.dataSrc,this.dataSrcset,this.sizes);return}At[this.cacheKey]?he(this.$el,At[this.cacheKey],this.dataSrcset,this.sizes):this.isImg&&this.width&&this.height&&he(this.$el,Fo(this.width,this.height,this.sizes)),this.observer=new IntersectionObserver(this.load,{rootMargin:this.offsetTop+"px "+this.offsetLeft+"px"}),requestAnimationFrame(this.observe)},disconnected:function(){this.observer&&this.observer.disconnect()},update:{read:function(t){var e=this,i=t.image;if(!this.observer||(!i&&document.readyState==="complete"&&this.load(this.observer.takeRecords()),this.isImg))return!1;i&&i.then(function(n){return n&&n.currentSrc!==""&&he(e.$el,_i(n))})},write:function(t){if(this.dataSrcset&&window.devicePixelRatio!==1){var e=l(this.$el,"backgroundSize");(e.match(/^(auto\s?)+$/)||$(e)===t.bgSize)&&(t.bgSize=jo(this.dataSrcset,this.sizes),l(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load:function(t){var e=this;!t.some(function(i){return Y(i.isIntersecting)||i.isIntersecting})||(this._data.image=Ki(this.dataSrc,this.dataSrcset,this.sizes).then(function(i){return he(e.$el,_i(i),i.srcset,i.sizes),At[e.cacheKey]=_i(i),i},function(i){return E(e.$el,new i.constructor(i.type,i))}),this.observer.disconnect())},observe:function(){var t=this;this._connected&&!this._data.image&&this.target.forEach(function(e){return t.observer.observe(e)})}}};function he(t,e,i,n){if(In(t)){var r=function(s,a){return a&&a!==t[s]&&(t[s]=a)};r("sizes",n),r("srcset",i),r("src",e)}else if(e){var o=!m(t.style.backgroundImage,e);o&&(l(t,"backgroundImage","url("+ee(e)+")"),E(t,fi("load",!1)))}}function Fo(t,e,i){var n;return i&&(n=we.ratio({width:t,height:e},"width",kt(Ln(i))),t=n.width,e=n.height),'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="'+t+'" height="'+e+'"></svg>'}var Fn=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function Ln(t){var e;for(Fn.lastIndex=0;e=Fn.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=Ro(e[2]);break}return e||"100vw"}var Lo=/\d+(?:\w+|%)/g,Io=/[+-]?(\d+)/g;function Ro(t){return lt(t,"calc")?t.slice(5,-1).replace(Lo,function(e){return kt(e)}).replace(/ /g,"").match(Io).reduce(function(e,i){return e+ +i},0):t}var Wo=/\s+\d+w\s*(?:,|$)/g;function jo(t,e){var i=kt(Ln(e)),n=(t.match(Wo)||[]).map($).sort(function(r,o){return r-o});return n.filter(function(r){return r>=i})[0]||n.pop()||""}function In(t){return t.tagName==="IMG"}function _i(t){return t.currentSrc||t.src}var Rn="__test__",At;try{At=window.sessionStorage||{},At[Rn]=1,delete At[Rn]}catch{At={}}var Ai={props:{media:Boolean},data:{media:!1},computed:{matchMedia:function(){var t=qo(this.media);return!t||window.matchMedia(t).matches}}};function qo(t){if(C(t)){if(t[0]==="@"){var e="breakpoint-"+t.substr(1);t=$(vi(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var Vo={mixins:[ct,Ai],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:function(t){var e=t.fill;return e||vi("leader-fill-content")}},connected:function(){var t;t=Ji(this.$el,'<span class="'+this.clsWrapper+'">'),this.wrapper=t[0]},disconnected:function(){Oe(this.wrapper.childNodes)},update:{read:function(t){var e=t.changed,i=t.width,n=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||n!==i,hide:!this.matchMedia}},write:function(t){G(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,A(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}},X=[],Wn={mixins:[ct,Ei,_t],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel:function(t,e){var i=t.selPanel;return b(i,e)},transitionElement:function(){return this.panel},bgClose:function(t){var e=t.bgClose;return e&&this.panel}},beforeDisconnect:function(){m(X,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:function(){return this.selClose},handler:function(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler:function(t,e){t.defaultPrevented||(t.preventDefault(),this.isToggled()===m(X,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler:function(t){if(m(X,this))return!1;!this.stack&&X.length?(y.all(X.map(function(e){return e.hide()})).then(this.show),t.preventDefault()):X.push(this)}},{name:"show",self:!0,handler:function(){var t=this,e=document.documentElement;se(window)>e.clientWidth&&this.overlay&&l(document.body,"overflowY","scroll"),this.stack&&l(this.$el,"zIndex",$(l(this.$el,"zIndex"))+X.length),k(e,this.clsPage),this.bgClose&&B(this.$el,"hide",H(document,Ft,function(i){var n=i.target;pe(X)!==t||t.overlay&&!R(n,t.$el)||R(n,t.panel)||B(document,Lt+" "+ke+" scroll",function(r){var o=r.defaultPrevented,s=r.type,a=r.target;!o&&s===Lt&&n===a&&t.hide()},!0)}),{self:!0}),this.escClose&&B(this.$el,"hide",H(document,"keydown",function(i){i.keyCode===27&&pe(X)===t&&t.hide()}),{self:!0})}},{name:"shown",self:!0,handler:function(){ai(this.$el)||A(this.$el,"tabindex","-1"),b(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler:function(){var t=this;m(X,this)&&X.splice(X.indexOf(this),1),X.length||l(document.body,"overflowY",""),l(this.$el,"zIndex",""),X.some(function(e){return e.clsPage===t.clsPage})||j(document.documentElement,this.clsPage)}}],methods:{toggle:function(){return this.isToggled()?this.hide():this.show()},show:function(){var t=this;return this.container&&D(this.$el)!==this.container?(rt(this.container,this.$el),new y(function(e){return requestAnimationFrame(function(){return t.show().then(e)})})):this.toggleElement(this.$el,!0,jn(this))},hide:function(){return this.toggleElement(this.$el,!1,jn(this))}}};function jn(t){var e=t.transitionElement,i=t._toggle;return function(n,r){return new y(function(o,s){return B(n,"show hide",function(){n._reject&&n._reject(),n._reject=s,i(n,r);var a=B(e,"transitionstart",function(){B(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(c)},{self:!0}),c=setTimeout(function(){a(),o()},ei(l(e,"transitionDuration")))})}).then(function(){return delete n._reject})}}var Yo={install:Go,mixins:[Wn],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler:function(){S(this.panel,"uk-margin-auto-vertical")?k(this.$el,"uk-flex"):l(this.$el,"display","block"),L(this.$el)}},{name:"hidden",self:!0,handler:function(){l(this.$el,"display",""),j(this.$el,"uk-flex")}}]};function Go(t){var e=t.modal;e.dialog=function(n,r){var o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+n+"</div> </div>",r);return o.show(),H(o.$el,"hidden",function(){return y.resolve().then(function(){return o.$destroy(!0)})},{self:!0}),o},e.alert=function(n,r){return i(function(o){var s=o.labels;return'<div class="uk-modal-body">'+(C(n)?n:Ne(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+s.ok+"</button> </div>"},r,function(o){return o.resolve()})},e.confirm=function(n,r){return i(function(o){var s=o.labels;return'<form> <div class="uk-modal-body">'+(C(n)?n:Ne(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+s.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+s.ok+"</button> </div> </form>"},r,function(o){return o.reject()})},e.prompt=function(n,r,o){return i(function(s){var a=s.labels;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(C(n)?n:Ne(n))+'</label> <input class="uk-input" value="'+(r||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,function(s){return s.resolve(null)},function(s){return b("input",s.$el).value})},e.labels={ok:"Ok",cancel:"Cancel"};function i(n,r,o,s){r=N({bgClose:!1,escClose:!0,labels:e.labels},r);var a=e.dialog(n(r),r),c=new qi,f=!1;return H(a.$el,"submit","form",function(v){v.preventDefault(),c.resolve(s&&s(a)),f=!0,a.hide()}),H(a.$el,"hide",function(){return!f&&o(c)}),c.promise.dialog=a,c.promise}}var Ko={extends:kn,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},qn=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",Xo={mixins:[ct,Ei,Ci],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:qn,align:Jt?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:qn,container:!1},computed:{boundary:function(t,e){var i=t.boundary,n=t.boundaryAlign;return i===!0||n?e:i},dropbarAnchor:function(t,e){var i=t.dropbarAnchor;return pt(i,e)},pos:function(t){var e=t.align;return"bottom-"+e},dropbar:{get:function(t){var e=t.dropbar;return e?(e=this._dropbar||pt(e,this.$el)||b("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=b("<div></div>"))):null},watch:function(t){k(t,"uk-navbar-dropbar")},immediate:!0},dropContainer:function(t,e){return this.container||e},dropdowns:{get:function(t,e){var i=this,n=t.clsDrop,r=W("."+n,e);return this.dropContainer!==e&&W("."+n,this.dropContainer).forEach(function(o){var s=i.getDropdown(o);!m(r,o)&&s&&s.target&&R(s.target,i.$el)&&r.push(o)}),r},watch:function(t){var e=this;this.$create("drop",t.filter(function(i){return!e.getDropdown(i)}),N({},this.$props,{boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset}))},immediate:!0},toggles:function(t,e){var i=t.dropdown;return W(i,e)}},disconnected:function(){this.dropbar&&bt(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:function(){return this.dropdown},handler:function(t){var e=t.current,i=this.getActive();i&&m(i.mode,"hover")&&i.target&&!R(i.target,e)&&!i.tracker.movesTo(i.$el)&&i.hide(!1)}},{name:"keydown",delegate:function(){return this.dropdown},handler:function(t){var e=t.current,i=t.keyCode,n=this.getActive();i===Nt.DOWN&&Kt(e,"aria-expanded")&&(t.preventDefault(),!n||n.target!==e?(e.click(),B(this.dropContainer,"show",function(r){var o=r.target;return Yn(o)})):Yn(n.$el)),Vn(t,this.toggles,n)}},{name:"keydown",el:function(){return this.dropContainer},delegate:function(){return"."+this.clsDrop},handler:function(t){var e=t.current,i=t.keyCode;if(!!m(this.dropdowns,e)){var n=this.getActive(),r=W(Te,e),o=ge(r,function(s){return F(s,":focus")});i===Nt.UP&&(t.preventDefault(),o>0&&r[o-1].focus()),i===Nt.DOWN&&(t.preventDefault(),o<r.length-1&&r[o+1].focus()),i===Nt.ESC&&n&&n.target&&n.target.focus(),Vn(t,this.toggles,n)}}},{name:"mouseleave",el:function(){return this.dropbar},filter:function(){return this.dropbar},handler:function(){var t=this.getActive();t&&m(t.mode,"hover")&&!this.dropdowns.some(function(e){return F(e,":hover")})&&t.hide()}},{name:"beforeshow",el:function(){return this.dropContainer},filter:function(){return this.dropbar},handler:function(){D(this.dropbar)||Me(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el:function(){return this.dropContainer},filter:function(){return this.dropbar},handler:function(t,e){var i=e.$el,n=e.dir;!S(i,this.clsDrop)||(this.dropbarMode==="slide"&&k(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&k(i,this.clsDrop+"-dropbar"),n==="bottom"&&this.transitionTo(i.offsetHeight+$(l(i,"marginTop"))+$(l(i,"marginBottom")),i))}},{name:"beforehide",el:function(){return this.dropContainer},filter:function(){return this.dropbar},handler:function(t,e){var i=e.$el,n=this.getActive();F(this.dropbar,":hover")&&n&&n.$el===i&&t.preventDefault()}},{name:"hide",el:function(){return this.dropContainer},filter:function(){return this.dropbar},handler:function(t,e){var i=e.$el;if(!!S(i,this.clsDrop)){var n=this.getActive();(!n||n&&n.$el===i)&&this.transitionTo(0)}}}],methods:{getActive:function(){return z&&R(z.target,this.$el)&&z},transitionTo:function(t,e){var i=this,n=this,r=n.dropbar,o=M(r)?L(r):0;return e=o<t&&e,l(e,"clip","rect(0,"+e.offsetWidth+"px,"+o+"px,0)"),L(r,o),yt.cancel([e,r]),y.all([yt.start(r,{height:t},this.duration),yt.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(gt).then(function(){l(e,{clip:""}),i.$update(r)})},getDropdown:function(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function Vn(t,e,i){var n=t.current,r=t.keyCode,o=i&&i.target||n,s=e.indexOf(o);r===Nt.LEFT&&s>0&&(i&&i.hide(!1),e[s-1].focus()),r===Nt.RIGHT&&s<e.length-1&&(i&&i.hide(!1),e[s+1].focus()),r===Nt.TAB&&(o.focus(),i&&i.hide(!1))}function Yn(t){if(!b(":focus",t)){var e=b(Te,t);e&&e.focus()}}var Nt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40},Jo={mixins:[Wn],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1},computed:{clsFlip:function(t){var e=t.flip,i=t.clsFlip;return e?i:""},clsOverlay:function(t){var e=t.overlay,i=t.clsOverlay;return e?i:""},clsMode:function(t){var e=t.mode,i=t.clsMode;return i+"-"+e},clsSidebarAnimation:function(t){var e=t.mode,i=t.clsSidebarAnimation;return e==="none"||e==="reveal"?"":i},clsContainerAnimation:function(t){var e=t.mode,i=t.clsContainerAnimation;return e!=="push"&&e!=="reveal"?"":i},transitionElement:function(t){var e=t.mode;return e==="reveal"?D(this.panel):this.panel}},update:{read:function(){this.isToggled()&&!M(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate:function(){return'a[href^="#"]'},handler:function(t){var e=t.current.hash,i=t.defaultPrevented;!i&&e&&b(e,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el:function(){return this.panel},handler:function(t){var e=t.targetTouches;e.length===1&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter:function(){return this.overlay},handler:function(t){t.cancelable&&t.preventDefault()}},{name:"touchmove",passive:!1,el:function(){return this.panel},handler:function(t){if(t.targetTouches.length===1){var e=t.targetTouches[0].clientY-this.clientY,i=this.panel,n=i.scrollTop,r=i.scrollHeight,o=i.clientHeight;(o>=r||n===0&&e>0||r-n<=o&&e<0)&&t.cancelable&&t.preventDefault()}}},{name:"show",self:!0,handler:function(){this.mode==="reveal"&&!S(D(this.panel),this.clsMode)&&(Be(this.panel,"<div>"),k(D(this.panel),this.clsMode)),l(document.documentElement,"overflowY",this.overlay?"hidden":""),k(document.body,this.clsContainer,this.clsFlip),l(document.body,"touch-action","pan-y pinch-zoom"),l(this.$el,"display","block"),k(this.$el,this.clsOverlay),k(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),L(document.body),k(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&Zo()}},{name:"hide",self:!0,handler:function(){j(document.body,this.clsContainerAnimation),l(document.body,"touch-action","")}},{name:"hidden",self:!0,handler:function(){this.clsContainerAnimation&&Qo(),this.mode==="reveal"&&Oe(this.panel),j(this.panel,this.clsSidebarAnimation,this.clsMode),j(this.$el,this.clsOverlay),l(this.$el,"display",""),j(document.body,this.clsContainer,this.clsFlip),l(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler:function(t){this.isToggled()&&st(t.type,"Left")^this.flip&&this.hide()}}]};function Zo(){Gn().content+=",user-scalable=0"}function Qo(){var t=Gn();t.content=t.content.replace(/,user-scalable=0$/,"")}function Gn(){return b('meta[name="viewport"]',document.head)||rt(document.head,'<meta name="viewport">')}var Uo={mixins:[ct],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:function(t,e){var i=t.selContainer;return nt(e,i)},content:function(t,e){var i=t.selContent;return nt(e,i)}},connected:function(){l(this.$el,"minHeight",this.minHeight)},update:{read:function(){return!this.content||!this.container||!M(this.$el)?!1:{current:$(l(this.$el,"maxHeight")),max:Math.max(this.minHeight,L(this.container)-(ut(this.content).height-L(this.$el)))}},write:function(t){var e=t.current,i=t.max;l(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&E(this.$el,"resize")},events:["resize"]}},ts={props:["width","height"],connected:function(){k(this.$el,"uk-responsive-width")},update:{read:function(){return M(this.$el)&&this.width&&this.height?{width:se(D(this.$el)),height:this.height}:!1},write:function(t){L(this.$el,we.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},es={props:{offset:Number},data:{offset:0},methods:{scrollTo:function(t){var e=this;t=t&&b(t)||document.body,E(this.$el,"beforescroll",[this,t])&&Ti(t,{offset:this.offset}).then(function(){return E(e.$el,"scrolled",[e,t])})}},events:{click:function(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+ee(decodeURIComponent((this.$el.hash||"").substr(1)))))}}},St="_ukScrollspy",is={args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:function(){return{cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}},computed:{elements:{get:function(t,e){var i=t.target;return i?W(i,e):[e]},watch:function(t){this.hidden&&l(Zt(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected:function(){var t=this;this.elements.forEach(function(e){j(e,t.inViewClass,e[St]?e[St].cls:""),delete e[St]})},update:[{read:function(t){var e=this;if(!t.update)return y.resolve().then(function(){e.$emit(),t.update=!0}),!1;this.elements.forEach(function(i){i[St]||(i[St]={cls:Xt(i,"uk-scrollspy-class")||e.cls}),i[St].show=ae(i,e.offsetTop,e.offsetLeft)})},write:function(t){var e=this;this.elements.forEach(function(i){var n=i[St];n.show&&!n.inview&&!n.queued?(n.queued=!0,t.promise=(t.promise||y.resolve()).then(function(){return new y(function(r){return setTimeout(r,e.delay)})}).then(function(){e.toggle(i,!0),setTimeout(function(){n.queued=!1,e.$emit()},300)})):!n.show&&n.inview&&!n.queued&&e.repeat&&e.toggle(i,!1)})},events:["scroll","resize"]}],methods:{toggle:function(t,e){var i=t[St];i.off&&i.off(),l(t,"visibility",!e&&this.hidden?"hidden":""),G(t,this.inViewClass,e),G(t,i.cls),/\buk-animation-/.test(i.cls)&&(i.off=B(t,"animationcancel animationend",function(){return De(t,"uk-animation-[\\w-]+")})),E(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},ns={props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get:function(t,e){return W('a[href^="#"]',e).filter(function(i){return i.hash})},watch:function(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets:function(){return W(this.links.map(function(t){return ee(t.hash).substr(1)}).join(","))},elements:function(t){var e=t.closest;return nt(this.links,e||"*")}},update:[{read:function(){var t=this,e=this.targets,i=e.length;if(!i||!M(this.$el))return!1;var n=jt(this.targets,/auto|scroll/,!0),r=n[0],o=r.scrollTop,s=r.scrollHeight,a=s-ce(r),c=!1;return o===a?c=i-1:(this.targets.every(function(f,v){if(_(f).top-_(ue(r)).top-t.offset<=0)return c=v,!0}),c===!1&&this.overflow&&(c=0)),{active:c}},write:function(t){var e=t.active,i=e!==!1&&!S(this.elements[e],this.cls);this.links.forEach(function(n){return n.blur()}),j(this.elements,this.cls),k(this.elements[e],this.cls),i&&E(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},rs={mixins:[ct,Ai],props:{top:null,bottom:Boolean,offset:String,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{top:0,bottom:!1,offset:0,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{offset:function(t){var e=t.offset;return kt(e)},selTarget:function(t,e){var i=t.selTarget;return i&&b(i,e)||e},widthElement:function(t,e){var i=t.widthElement;return pt(i,e)||this.placeholder},isActive:{get:function(){return S(this.selTarget,this.clsActive)},set:function(t){t&&!this.isActive?(hi(this.selTarget,this.clsInactive,this.clsActive),E(this.$el,"active")):!t&&!S(this.selTarget,this.clsInactive)&&(hi(this.selTarget,this.clsActive,this.clsInactive),E(this.$el,"inactive"))}}},connected:function(){this.placeholder=b("+ .uk-sticky-placeholder",this.$el)||b('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected:function(){this.isFixed&&(this.hide(),j(this.selTarget,this.clsInactive)),bt(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el:function(){return window},handler:function(){var t=this;if(!!(this.targetOffset!==!1&&location.hash&&window.pageYOffset>0)){var e=b(location.hash);e&&I.read(function(){var i=_(e),n=i.top,r=_(t.$el).top,o=t.$el.offsetHeight;t.isFixed&&r+o>=n&&r<=n+e.offsetHeight&&Si(window,n-o-(vt(t.targetOffset)?t.targetOffset:0)-t.offset)})}}}],update:[{read:function(t,e){var i=t.height;if(this.inactive=!this.matchMedia||!M(this.$el),this.inactive)return!1;if(this.isActive&&e.has("resize")&&(this.hide(),i=this.$el.offsetHeight,this.show()),i=this.isActive?i:this.$el.offsetHeight,i+this.offset>L(window))return this.inactive=!0,!1;var n=this.isFixed?this.placeholder:this.$el;this.topOffset=_(n).top,this.bottomOffset=this.topOffset+i,this.offsetParentTop=_(n.offsetParent).top;var r=Kn("bottom",this);return this.top=Math.max($(Kn("top",this)),this.topOffset)-this.offset,this.bottom=r&&r-this.$el.offsetHeight,this.width=ut(M(this.widthElement)?this.widthElement:this.$el).width,{height:i,top:oe(this.placeholder)[0],margins:l(this.$el,["marginTop","marginBottom","marginLeft","marginRight"])}},write:function(t){var e=t.height,i=t.margins,n=this,r=n.placeholder;l(r,N({height:e},i)),R(r,document)||(Me(this.$el,r),r.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read:function(t){var e=t.scroll;return e===void 0&&(e=0),this.scroll=window.pageYOffset,{dir:e<=this.scroll?"down":"up",scroll:this.scroll}},write:function(t,e){var i=this,n=Date.now(),r=e.has("scroll"),o=t.initTimestamp;o===void 0&&(o=0);var s=t.dir,a=t.lastDir,c=t.lastScroll,f=t.scroll,v=t.top;if(t.lastScroll=f,!(f<0||f===c&&r||this.showOnUp&&!r&&!this.isFixed)&&((n-o>300||s!==a)&&(t.initScroll=f,t.initTimestamp=n),t.lastDir=s,!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-f)<=30&&Math.abs(c-f)<=10)))if(this.inactive||f<this.top||this.showOnUp&&(f<=this.top||s==="down"&&r||s==="up"&&!this.isFixed&&f<=this.bottomOffset)){if(!this.isFixed){at.inProgress(this.$el)&&v>f&&(at.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&f>this.topOffset?(at.cancel(this.$el),at.out(this.$el,this.animation).then(function(){return i.hide()},gt)):this.hide()}else this.isFixed?this.update():this.animation?(at.cancel(this.$el),this.show(),at.in(this.$el,this.animation).catch(gt)):this.show()},events:["resize","scroll"]}],methods:{show:function(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide:function(){this.isActive=!1,j(this.$el,this.clsFixed,this.clsBelow),l(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update:function(){var t=this.top!==0||this.scroll>this.top,e=Math.max(0,this.offset),i="fixed";vt(this.bottom)&&this.scroll>this.bottom-this.offset&&(e=this.bottom-this.offsetParentTop,i="absolute"),l(this.$el,{position:i,top:e+"px",width:this.width}),this.isActive=t,G(this.$el,this.clsBelow,this.scroll>this.bottomOffset),k(this.$el,this.clsFixed)}}};function Kn(t,e){var i=e.$props,n=e.$el,r=e[t+"Offset"],o=i[t];if(!!o)return C(o)&&o.match(/^-?\d/)?r+kt(o):_(o===!0?D(n):pt(o,n)).bottom}var Xn={mixins:[_t],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,swiping:!0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get:function(t,e){var i=t.connect;return Ut(i,e)},watch:function(t){var e=this;this.swiping&&l(t,"touch-action","pan-y pinch-zoom");var i=this.index();this.connects.forEach(function(n){return Ct(n).forEach(function(r,o){return G(r,e.cls,o===i)})})},immediate:!0},toggles:{get:function(t,e){var i=t.toggle;return W(i,e).filter(function(n){return!F(n,".uk-disabled *, .uk-disabled, [disabled]")})},watch:function(t){var e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children:function(){var t=this;return Ct(this.$el).filter(function(e){return t.toggles.some(function(i){return R(i,e)})})}},events:[{name:"click",delegate:function(){return this.toggle},handler:function(t){t.preventDefault(),this.show(t.current)}},{name:"click",el:function(){return this.connects.concat(this.itemNav?Ut(this.itemNav,this.$el):[])},delegate:function(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler:function(t){t.preventDefault(),this.show(Xt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter:function(){return this.swiping},el:function(){return this.connects},handler:function(t){var e=t.type;this.show(st(e,"Left")?"next":"previous")}}],methods:{index:function(){var t=this;return ge(this.children,function(e){return S(e,t.cls)})},show:function(t){var e=this,i=this.index(),n=be(this.children[be(t,this.toggles,i)],Ct(this.$el));i!==n&&(this.children.forEach(function(r,o){G(r,e.cls,n===o),A(e.toggles[o],"aria-expanded",n===o)}),this.connects.forEach(function(r){var o=r.children;return e.toggleElement(w(o).filter(function(s){return S(s,e.cls)}),!1,i>=0).then(function(){return e.toggleElement(o[n],!0,i>=0)})}))}}},os={mixins:[ct],extends:Xn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected:function(){var t=S(this.$el,"uk-tab-left")?"uk-tab-left":S(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}},ss=32,as={mixins:[Ai,_t],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected:function(){!m(this.mode,"media")&&!ai(this.$el)&&A(this.$el,"tabindex","0")},computed:{target:{get:function(t,e){var i=t.href,n=t.target;return n=Ut(n||i,e),n.length&&n||[e]},watch:function(){this.updateAria()},immediate:!0}},events:[{name:Ft,filter:function(){return m(this.mode,"hover")},handler:function(t){var e=this;!It(t)||this._showState||(E(this.$el,"focus"),B(document,Ft,function(){return E(e.$el,"blur")},!0,function(i){return!R(i.target,e.$el)}),m(this.mode,"click")&&(this._preventClick=!0))}},{name:ye+" "+xe+" focus blur",filter:function(){return m(this.mode,"hover")},handler:function(t){if(!It(t)){var e=m([ye,"focus"],t.type),i=A(this.$el,"aria-expanded");if(!(!e&&(t.type===xe&&F(this.$el,":focus")||t.type==="blur"&&F(this.$el,":hover")))){if(this._showState&&e===(i!==this._showState)){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}}},{name:"keydown",filter:function(){return m(this.mode,"click")&&this.$el.tagName!=="INPUT"},handler:function(t){t.keyCode===ss&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:function(){return m(this.mode,"click")},handler:function(t){if(this._preventClick)return this._preventClick=null;var e;(nt(t.target,'a[href="#"], a[href=""]')||(e=nt(t.target,"a[href]"))&&(A(this.$el,"aria-expanded")!=="true"||e.hash&&F(this.target,e.hash)))&&t.preventDefault(),this.toggle()}},{name:"toggled",self:!0,el:function(){return this.target},handler:function(t,e){t.target===this.target[0]&&this.updateAria(e)}}],update:{read:function(){return m(this.mode,"media")&&this.media?{match:this.matchMedia}:!1},write:function(t){var e=t.match,i=this.isToggled(this.target);(e?!i:i)&&this.toggle()},events:["resize"]},methods:{toggle:function(t){var e=this;if(!!E(this.target,t||"toggle",[this])){if(!this.queued)return this.toggleElement(this.target);var i=this.target.filter(function(r){return S(r,e.clsLeave)});if(i.length){this.target.forEach(function(r){var o=m(i,r);e.toggleElement(r,o,o)});return}var n=this.target.filter(this.isToggled);this.toggleElement(n,!1).then(function(){return e.toggleElement(e.target.filter(function(r){return!m(n,r)}),!0)})}},updateAria:function(t){m(this.mode,"media")||A(this.$el,"aria-expanded",Yt(t)?t:this.isToggled(this.target))}}},us=Object.freeze({__proto__:null,Accordion:kn,Alert:Gr,Cover:Kr,Drop:Tn,Dropdown:Tn,FormCustom:Qr,Gif:Ur,Grid:eo,HeightMatch:oo,HeightViewport:ao,Icon:Dn,Img:zo,Leader:Vo,Margin:En,Modal:Yo,Nav:Ko,Navbar:Xo,Offcanvas:Jo,OverflowAuto:Uo,Responsive:ts,Scroll:es,Scrollspy:is,ScrollspyNav:ns,Sticky:rs,Svg:Pn,Switcher:Xn,Tab:os,Toggle:as,Video:Sn,Close:Mo,Spinner:Ho,SlidenavNext:zn,SlidenavPrevious:zn,SearchIcon:Po,Marker:ft,NavbarToggleIcon:ft,OverlayIcon:ft,PaginationNext:ft,PaginationPrevious:ft,Totop:ft});return et(us,function(t,e){return K.component(e,t)}),K.use(jr),Vr(K),K});
|
|
1
|
+
/*! UIkit 3.11.2-dev.03e47c2ff | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(Yt,Vt){typeof exports=="object"&&typeof module<"u"?module.exports=Vt():typeof define=="function"&&define.amd?define("uikit",Vt):(Yt=typeof globalThis<"u"?globalThis:Yt||self,Yt.UIkit=Vt())})(this,function(){"use strict";const{hasOwnProperty:Yt,toString:Vt}=Object.prototype;function bt(t,e){return Yt.call(t,e)}const Pn=/\B([A-Z])/g,yt=K(t=>t.replace(Pn,"-$1").toLowerCase()),An=/-(\w)/g,Pt=K(t=>t.replace(An,$i)),ge=K(t=>t.length?$i(null,t.charAt(0))+t.slice(1):"");function $i(t,e){return e?e.toUpperCase():""}function Z(t,e){return t==null||t.startsWith==null?void 0:t.startsWith(e)}function xt(t,e){return t==null||t.endsWith==null?void 0:t.endsWith(e)}function w(t,e){return t==null||t.includes==null?void 0:t.includes(e)}function pe(t,e){return t==null||t.findIndex==null?void 0:t.findIndex(e)}const{isArray:J,from:_n}=Array,{assign:At}=Object;function at(t){return typeof t=="function"}function ht(t){return t!==null&&typeof t=="object"}function ut(t){return Vt.call(t)==="[object Object]"}function Gt(t){return ht(t)&&t===t.window}function Xt(t){return Re(t)===9}function Fe(t){return Re(t)>=1}function _t(t){return Re(t)===1}function Re(t){return!Gt(t)&&ht(t)&&t.nodeType}function me(t){return typeof t=="boolean"}function E(t){return typeof t=="string"}function Ie(t){return typeof t=="number"}function $t(t){return Ie(t)||E(t)&&!isNaN(t-parseFloat(t))}function We(t){return!(J(t)?t.length:ht(t)?Object.keys(t).length:!1)}function Y(t){return t===void 0}function je(t){return me(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Jt(t){const e=Number(t);return isNaN(e)?!1:e}function b(t){return parseFloat(t)||0}function A(t){return y(t)[0]}function y(t){return t&&(Fe(t)?[t]:Array.from(t).filter(Fe))||[]}function kt(t){var e;if(Gt(t))return t;t=A(t);const i=Xt(t)?t:(e=t)==null?void 0:e.ownerDocument;return(i==null?void 0:i.defaultView)||window}function qe(t){return t?xt(t,"ms")?b(t):b(t)*1e3:0}function ki(t,e){return t===e||ht(t)&&ht(e)&&Object.keys(t).length===Object.keys(e).length&&Q(t,(i,n)=>i===e[n])}function Ye(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),n=>n===e?i:e)}function ve(t){return t[t.length-1]}function Q(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function Ve(t,e){return t.slice().sort((i,n)=>{let{[e]:s=0}=i,{[e]:o=0}=n;return s>o?1:o>s?-1:0})}function Bn(t,e){const i=new Set;return t.filter(n=>{let{[e]:s}=n;return i.has(s)?!1:i.add(s)})}function St(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Jt(t)||0,e),i)}function ft(){}function Si(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(n=>{let[s,o]=n;return Math.min(...e.map(r=>{let{[s]:a}=r;return a}))-Math.max(...e.map(r=>{let{[o]:a}=r;return a}))>0})}function Ge(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}const Xe={ratio(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}},contain(t,e){return t={...t},Q(t,(i,n)=>t=t[n]>e[n]?this.ratio(t,n,e[n]):t),t},cover(t,e){return t=this.contain(t,e),Q(t,(i,n)=>t=t[n]<e[n]?this.ratio(t,n,e[n]):t),t}};function we(t,e,i,n){i===void 0&&(i=0),n===void 0&&(n=!1),e=y(e);const{length:s}=e;return s?(t=$t(t)?Jt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(A(t)),n?St(t,0,s-1):(t%=s,t<0?t+s:t)):-1}function K(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class Ti{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function S(t,e,i){if(ht(e)){for(const s in e)S(t,s,e[s]);return}if(Y(i)){var n;return(n=A(t))==null?void 0:n.getAttribute(e)}else for(const s of y(t))at(i)&&(i=i.call(s,S(s,e))),i===null?be(s,e):s.setAttribute(e,i)}function Bt(t,e){return y(t).some(i=>i.hasAttribute(e))}function be(t,e){const i=y(t);for(const n of e.split(" "))for(const s of i)s.removeAttribute(n)}function dt(t,e){for(const i of[e,"data-"+e])if(Bt(t,i))return S(t,i)}const Nn={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Je(t){return y(t).some(e=>Nn[e.tagName.toLowerCase()])}function _(t){return y(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ye="input,select,textarea,button";function Ci(t){return y(t).some(e=>H(e,ye))}const xe=ye+",a[href],[tabindex]";function Ke(t){return H(t,xe)}function D(t){return t=A(t),t&&_t(t.parentNode)&&t.parentNode}function Kt(t,e){return y(t).filter(i=>H(i,e))}function H(t,e){return y(t).some(i=>i.matches(e))}function U(t,e){return Z(e,">")&&(e=e.slice(1)),_t(t)?t.closest(e):y(t).map(i=>U(i,e)).filter(Boolean)}function L(t,e){return E(e)?H(t,e)||!!U(t,e):t===e||A(e).contains(A(t))}function Zt(t,e){const i=[];for(;t=D(t);)(!e||H(t,e))&&i.push(t);return i}function gt(t,e){t=A(t);const i=t?y(t.children):[];return e?Kt(i,e):i}function Ze(t,e){return e?y(t).indexOf(A(e)):gt(D(t)).indexOf(t)}function lt(t,e){return Qe(t,Pi(t,e))}function Qt(t,e){return Ut(t,Pi(t,e))}function Qe(t,e){return A(Ai(t,e,"querySelector"))}function Ut(t,e){return y(Ai(t,e,"querySelectorAll"))}const Mn=/(^|[^\\],)\s*[!>+~-]/,Ei=K(t=>t.match(Mn));function Pi(t,e){return e===void 0&&(e=document),E(t)&&Ei(t)||Xt(e)?e:e.ownerDocument}const Dn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g;function Ai(t,e,i){if(e===void 0&&(e=document),!t||!E(t))return t;t=t.replace(Dn,"$1 *"),Ei(t)&&(t=On(t).map(n=>{let s=e;if(n[0]==="!"){const o=n.substr(1).trim().split(" ");s=U(D(e),o[0]),n=o.slice(1).join(" ").trim()}if(n[0]==="-"){const o=n.substr(1).trim().split(" "),r=(s||e).previousElementSibling;s=H(r,n.substr(1))?r:null,n=o.slice(1).join(" ")}return s?zn(s)+" "+n:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}const Hn=/.*?[^\\](?:,|$)/g,On=K(t=>t.match(Hn).map(e=>e.replace(/,$/,"").trim()));function zn(t){const e=[];for(;t.parentNode;){const i=S(t,"id");if(i){e.unshift("#"+te(i));break}else{let{tagName:n}=t;n!=="HTML"&&(n+=":nth-child("+(Ze(t)+1)+")"),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function te(t){return E(t)?CSS.escape(t):""}function B(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,o,r,a=!1]=ti(e);r.length>1&&(r=Fn(r)),a!=null&&a.self&&(r=Rn(r)),o&&(r=Ln(o,r));for(const c of s)for(const f of n)f.addEventListener(c,r,a);return()=>_i(n,s,r,a)}function _i(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,,o,r=!1]=ti(e);for(const a of s)for(const c of n)c.removeEventListener(a,o,r)}function P(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[n,s,o,r,a=!1,c]=ti(e),f=B(n,s,o,d=>{const l=!c||c(d);l&&(f(),r(d,l))},a);return f}function T(t,e,i){return ei(t).every(n=>n.dispatchEvent(Ue(e,!0,!0,i)))}function Ue(t,e,i,n){return e===void 0&&(e=!0),i===void 0&&(i=!1),E(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function ti(t){return t[0]=ei(t[0]),E(t[1])&&(t[1]=t[1].split(" ")),at(t[2])&&t.splice(2,0,!1),t}function Ln(t,e){return i=>{const n=t[0]===">"?Ut(t,i.currentTarget).reverse().filter(s=>L(i.target,s))[0]:U(i.target,t);n&&(i.current=n,e.call(this,i))}}function Fn(t){return e=>J(e.detail)?t(e,...e.detail):t(e)}function Rn(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Bi(t){return t&&"addEventListener"in t}function In(t){return Bi(t)?t:A(t)}function ei(t){return J(t)?t.map(In).filter(Boolean):E(t)?Ut(t):Bi(t)?[t]:y(t)}function Nt(t){return t.pointerType==="touch"||!!t.touches}function $e(t){var e,i;const{clientX:n,clientY:s}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:s}}function Wn(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:ft,responseType:"",...e};return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>jn(t,i))}function jn(t,e){return new Promise((i,n)=>{const{xhr:s}=e;for(const o in e)if(o in s)try{s[o]=e[o]}catch{}s.open(e.method.toUpperCase(),t);for(const o in e.headers)s.setRequestHeader(o,e.headers[o]);B(s,"load",()=>{s.status===0||s.status>=200&&s.status<300||s.status===304?i(s):n(At(Error(s.statusText),{xhr:s,status:s.status}))}),B(s,"error",()=>n(At(Error("Network Error"),{xhr:s}))),B(s,"timeout",()=>n(At(Error("Network Timeout"),{xhr:s}))),s.send(e.data)})}function qn(t,e,i){return new Promise((n,s)=>{const o=new Image;o.onerror=r=>{s(r)},o.onload=()=>{n(o)},i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}const Yn={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function h(t,e,i,n){n===void 0&&(n="");const s=y(t);for(const o of s)if(E(e)){if(e=ke(e),Y(i))return Vn(o,e);!i&&!Ie(i)?o.style.removeProperty(e):o.style.setProperty(e,$t(i)&&!Yn[e]?i+"px":i,n)}else if(J(e)){const r=ii(o),a={};for(const c of e)a[c]=r[ke(c)];return a}else ht(e)&&(n=i,Q(e,(r,a)=>h(o,a,r,n)));return s[0]}function ii(t,e){return kt(t).getComputedStyle(t,e)}function Vn(t,e,i){return ii(t,i)[e]}const Gn=/^\s*(["'])?(.*?)\1\s*$/;function ni(t){return ii(document.documentElement).getPropertyValue("--uk-"+t).replace(Gn,"$2")}const ke=K(t=>Xn(t)),Ni=["webkit","moz","ms"];function Xn(t){t=yt(t);const{style:e}=document.documentElement;if(t in e)return t;let i=Ni.length,n;for(;i--;)if(n="-"+Ni[i]+"-"+t,n in e)return n}function $(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Mi(t,i,"add")}function F(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Mi(t,i,"remove")}function Se(t,e){S(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function si(t){(arguments.length<=1?void 0:arguments[1])&&F(t,arguments.length<=1?void 0:arguments[1]),(arguments.length<=2?void 0:arguments[2])&&$(t,arguments.length<=2?void 0:arguments[2])}function k(t,e){[e]=oi(e);for(const i of y(t))if(e&&i.classList.contains(e))return!0;return!1}function V(t,e,i){const n=oi(e);Y(i)||(i=!!i);for(const s of y(t))for(const o of n)s.classList.toggle(o,i)}function Mi(t,e,i){e=e.reduce((n,s)=>n.concat(oi(s)),[]);for(const n of y(t))n.classList[i](...e)}function oi(t){return String(t).split(/\s|,/).filter(Boolean)}function Di(t,e,i,n){return i===void 0&&(i=400),n===void 0&&(n="linear"),Promise.all(y(t).map(s=>new Promise((o,r)=>{for(const c in e){const f=h(s,c);f===""&&h(s,c,f)}const a=setTimeout(()=>T(s,"transitionend"),i);P(s,"transitionend transitioncanceled",c=>{let{type:f}=c;clearTimeout(a),F(s,"uk-transition"),h(s,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),f==="transitioncanceled"?r():o(s)},{self:!0}),$(s,"uk-transition"),h(s,{transitionProperty:Object.keys(e).map(ke).join(","),transitionDuration:i+"ms",transitionTimingFunction:n,...e})})))}const pt={start:Di,stop(t){return T(t,"transitionend"),Promise.resolve()},cancel(t){T(t,"transitioncanceled")},inProgress(t){return k(t,"uk-transition")}},ee="uk-animation-";function ri(t,e,i,n,s){return i===void 0&&(i=200),Promise.all(y(t).map(o=>new Promise((r,a)=>{T(o,"animationcanceled");const c=setTimeout(()=>T(o,"animationend"),i);P(o,"animationend animationcanceled",f=>{let{type:d}=f;clearTimeout(c),d==="animationcanceled"?a():r(o),h(o,"animationDuration",""),Se(o,ee+"\\S*")},{self:!0}),h(o,"animationDuration",i+"ms"),$(o,e,ee+(s?"leave":"enter")),Z(e,ee)&&(n&&$(o,"uk-transform-origin-"+n),s&&$(o,ee+"reverse"))})))}const Jn=new RegExp(ee+"(enter|leave)"),et={in:ri,out(t,e,i,n){return ri(t,e,i,n,!0)},inProgress(t){return Jn.test(S(t,"class"))},cancel(t){T(t,"animationcanceled")}},mt={width:["left","right"],height:["top","bottom"]};function it(t){const e=_t(t)?A(t).getBoundingClientRect():{height:N(t),width:ne(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function C(t,e){const i=it(t);if(t){const{scrollY:s,scrollX:o}=kt(t),r={height:s,width:o};for(const a in mt)for(const c in mt[a])i[mt[a][c]]+=r[a]}if(!e)return i;const n=h(t,"position");Q(h(t,["left","top"]),(s,o)=>h(t,o,e[o]-i[o]+b(n==="absolute"&&s==="auto"?Hi(t)[o]:s)))}function Hi(t){let{top:e,left:i}=C(t);const{ownerDocument:{body:n,documentElement:s},offsetParent:o}=A(t);let r=o||s;for(;r&&(r===n||r===s)&&h(r,"position")==="static";)r=r.parentNode;if(_t(r)){const a=C(r);e-=a.top+b(h(r,"borderTopWidth")),i-=a.left+b(h(r,"borderLeftWidth"))}return{top:e-b(h(t,"marginTop")),left:i-b(h(t,"marginLeft"))}}function ie(t){const e=[0,0];t=A(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,h(t,"position")==="fixed"){const i=kt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}while(t=t.offsetParent);return e}const N=Oi("height"),ne=Oi("width");function Oi(t){const e=ge(t);return(i,n)=>{if(Y(n)){if(Gt(i))return i["inner"+e];if(Xt(i)){const s=i.documentElement;return Math.max(s["offset"+e],s["scroll"+e])}return i=A(i),n=h(i,t),n=n==="auto"?i["offset"+e]:b(n)||0,n-se(i,t)}else return h(i,t,!n&&n!==0?"":+n+se(i,t)+"px")}}function se(t,e,i){return i===void 0&&(i="border-box"),h(t,"boxSizing")===i?mt[e].map(ge).reduce((n,s)=>n+b(h(t,"padding"+s))+b(h(t,"border"+s+"Width")),0):0}function ai(t){for(const e in mt)for(const i in mt[e])if(mt[e][i]===t)return mt[e][1-i];return t}function Tt(t,e,i,n){return e===void 0&&(e="width"),i===void 0&&(i=window),n===void 0&&(n=!1),E(t)?Zn(t).reduce((s,o)=>{const r=Un(o);return r&&(o=ts(r==="vh"?N(kt(i)):r==="vw"?ne(kt(i)):n?i["offset"+ge(e)]:it(i)[e],o)),s+b(o)},0):b(t)}const Kn=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,Zn=K(t=>t.toString().replace(/\s/g,"").match(Kn)||[]),Qn=/(?:v[hw]|%)$/,Un=K(t=>(t.match(Qn)||[])[0]);function ts(t,e){return t*b(e)/100}function es(t){if(document.readyState!=="loading"){t();return}P(document,"DOMContentLoaded",t)}function nt(t,e){var i;return(t==null||(i=t.tagName)==null?void 0:i.toLowerCase())===e.toLowerCase()}function is(t){return li(t,"")}function Te(t,e){return Y(e)?x(t).innerHTML:li(t,e)}const li=oe("replaceChildren"),ns=oe("prepend"),ct=oe("append"),zi=oe("before"),Ce=oe("after");function oe(t){return function(e,i){const n=y(E(i)?Dt(i):i);return n.length&&x(e)[t](...n),Fi(n)}}function Mt(t){y(t).forEach(e=>e.remove())}function Ee(t,e){for(e=A(zi(t,e));e.firstChild;)e=e.firstChild;return ct(e,t),e}function Li(t,e){return y(y(t).map(i=>i.hasChildNodes?Ee(y(i.childNodes),e):ct(i,e)))}function Pe(t){y(t).map(D).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const ss=/^\s*<(\w+|!)[^>]*>/,os=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Dt(t){const e=os.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return ss.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,Fi(i.childNodes)}function Fi(t){return t.length>1?t:t[0]}function vt(t,e){if(!!_t(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;vt(t,e),t=i}}function x(t,e){return Ri(t)?A(Dt(t)):Qe(t,e)}function W(t,e){return Ri(t)?y(Dt(t)):Ut(t,e)}function Ri(t){return E(t)&&Z(t.trim(),"<")}const Ht=typeof window<"u",re=Ht&&S(document.documentElement,"dir")==="rtl",Ot=Ht&&"ontouchstart"in window,zt=Ht&&window.PointerEvent,Lt=zt?"pointerdown":Ot?"touchstart":"mousedown",rs=zt?"pointermove":Ot?"touchmove":"mousemove",Ft=zt?"pointerup":Ot?"touchend":"mouseup",Ae=zt?"pointerenter":Ot?"":"mouseenter",_e=zt?"pointerleave":Ot?"":"mouseleave",Be=zt?"pointercancel":"touchcancel",O={reads:[],writes:[],read(t){return this.reads.push(t),hi(),t},write(t){return this.writes.push(t),hi(),t},clear(t){Wi(this.reads,t),Wi(this.writes,t)},flush:ci};function ci(t){Ii(O.reads),Ii(O.writes.splice(0)),O.scheduled=!1,(O.reads.length||O.writes.length)&&hi(t+1)}const as=4;function hi(t){O.scheduled||(O.scheduled=!0,t&&t<as?Promise.resolve().then(()=>ci(t)):requestAnimationFrame(()=>ci(1)))}function Ii(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Wi(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function ui(){}ui.prototype={positions:[],init(){this.positions=[];let t;this.unbind=B(document,"mousemove",e=>t=$e(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){this.unbind&&this.unbind(),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:n,top:s,bottom:o}=e,[r]=this.positions,a=ve(this.positions),c=[r,a];return Ge(a,e)?!1:[[{x:i,y:s},{x:n,y:o}],[{x:i,y:o},{x:n,y:s}]].some(d=>{const l=ls(c,d);return l&&Ge(l,e)})}};function ls(t,e){let[{x:i,y:n},{x:s,y:o}]=t,[{x:r,y:a},{x:c,y:f}]=e;const d=(f-a)*(s-i)-(c-r)*(o-n);if(d===0)return!1;const l=((c-r)*(n-a)-(f-a)*(i-r))/d;return l<0?!1:{x:i+l*(s-i),y:n+l*(o-n)}}const R={};R.events=R.created=R.beforeConnect=R.connected=R.beforeDisconnect=R.disconnected=R.destroy=fi,R.args=function(t,e){return e!==!1&&fi(e||t)},R.update=function(t,e){return Ve(fi(t,at(e)?{read:e}:e),"order")},R.props=function(t,e){if(J(e)){const i={};for(const n of e)i[n]=String;e=i}return R.methods(t,e)},R.computed=R.methods=function(t,e){return e?t?{...t,...e}:e:t},R.data=function(t,e,i){return i?ji(t,e,i):e?t?function(n){return ji(t,e,n)}:e:t};function ji(t,e,i){return R.computed(at(t)?t.call(i,i):t,at(e)?e.call(i,i):e)}function fi(t,e){return t=t&&!J(t)?[t]:t,e?t?t.concat(e):J(e)?e:[e]:t}function cs(t,e){return Y(e)?t:e}function Rt(t,e,i){const n={};if(at(e)&&(e=e.options),e.extends&&(t=Rt(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=Rt(t,o,i);for(const o in t)s(o);for(const o in e)bt(t,o)||s(o);function s(o){n[o]=(R[o]||cs)(t[o],e[o],i)}return n}function di(t,e){e===void 0&&(e=[]);try{return t?Z(t,"{")?JSON.parse(t):e.length&&!w(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[s,o]=n.split(/:(.*)/);return s&&!Y(o)&&(i[s.trim()]=o.trim()),i},{}):{}}catch{return{}}}function qi(t){if(Me(t)&&gi(t,{func:"playVideo",method:"play"}),Ne(t))try{t.play().catch(ft)}catch{}}function Yi(t){Me(t)&&gi(t,{func:"pauseVideo",method:"pause"}),Ne(t)&&t.pause()}function Vi(t){Me(t)&&gi(t,{func:"mute",method:"setVolume",value:0}),Ne(t)&&(t.muted=!0)}function Gi(t){return Ne(t)||Me(t)}function Ne(t){return nt(t,"video")}function Me(t){return nt(t,"iframe")&&(Xi(t)||Ji(t))}function Xi(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Ji(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function gi(t,e){await us(t),Ki(t,e)}function Ki(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const pi="_ukPlayer";let hs=0;function us(t){if(t[pi])return t[pi];const e=Xi(t),i=Ji(t),n=++hs;let s;return t[pi]=new Promise(o=>{e&&P(t,"load",()=>{const r=()=>Ki(t,{event:"listening",id:n});s=setInterval(r,100),r()}),P(window,"message",o,!1,r=>{let{data:a}=r;try{return a=JSON.parse(a),a&&(e&&a.id===n&&a.event==="onReady"||i&&Number(a.player_id)===n)}catch{}}),t.src=""+t.src+(w(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+n)}).then(()=>clearInterval(s))}function ae(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),_(t)?Si(...It(t).map(n=>{const{top:s,left:o,bottom:r,right:a}=C(ce(n));return{top:s-e,left:o-i,bottom:r+e,right:a+i}}).concat(C(t))):!1}function le(t,e){if(Gt(t)||Xt(t)?t=Wt(t):t=A(t),Y(e))return t.scrollTop;t.scrollTop=e}function mi(t,e){let{offset:i=0}=e===void 0?{}:e;const n=_(t)?It(t):[];return n.reduce((a,c,f)=>{const{scrollTop:d,scrollHeight:l,offsetHeight:u}=c,g=l-he(c),{height:v,top:p}=C(n[f-1]||t);let m=Math.ceil(p-C(ce(c)).top-i+d);return i>0&&u<v+i?m+=i:i=0,m>g?(i-=m-g,m=g):m<0&&(i-=m,m=0),()=>s(c,m-d).then(a)},()=>Promise.resolve())();function s(a,c){return new Promise(f=>{const d=a.scrollTop,l=o(Math.abs(c)),u=Date.now();(function g(){const v=r(St((Date.now()-u)/l));le(a,d+c*v),v===1?f():requestAnimationFrame(g)})()})}function o(a){return 40*Math.pow(a,.375)}function r(a){return .5*(1-Math.cos(Math.PI*a))}}function Zi(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!_(t))return 0;const[n]=It(t,/auto|scroll/,!0),{scrollHeight:s,scrollTop:o}=n,r=he(n),a=s-r,c=ie(t)[0]-ie(n)[0],f=Math.max(0,c-r+e),d=Math.min(a,c+t.offsetHeight-i);return St((o-f)/(d-f))}function It(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);const n=Wt(t);let s=Zt(t).reverse();s=s.slice(s.indexOf(n)+1);const o=pe(s,r=>h(r,"position")==="fixed");return~o&&(s=s.slice(o)),[n].concat(s.filter(r=>e.test(h(r,"overflow"))&&(!i||r.scrollHeight>he(r)))).reverse()}function ce(t){return t===Wt(t)?window:t}function he(t){return(t===Wt(t)?document.documentElement:t).clientHeight}function Wt(t){const{document:e}=kt(t);return e.scrollingElement||e.documentElement}const ue={width:["x","left","right"],height:["y","top","bottom"]};function Qi(t,e,i,n,s,o,r,a){i=tn(i),n=tn(n);const c={element:i,target:n};if(!t||!e)return c;const f=C(t),d=C(e),l=d;if(Ui(l,i,f,-1),Ui(l,n,d,1),s=en(s,f.width,f.height),o=en(o,d.width,d.height),s.x+=o.x,s.y+=o.y,l.left+=s.x,l.top+=s.y,r){let u=It(t).map(ce);a&&!w(u,a)&&u.unshift(a),u=u.map(g=>C(g)),Q(ue,(g,v)=>{let[p,m,j]=g;!(r===!0||w(r,p))||u.some(M=>{const I=i[p]===m?-f[v]:i[p]===j?f[v]:0,q=n[p]===m?d[v]:n[p]===j?-d[v]:0;if(l[m]<M[m]||l[m]+f[v]>M[j]){const rt=f[v]/2,jt=n[p]==="center"?-d[v]/2:0;return i[p]==="center"&&(tt(rt,jt)||tt(-rt,-jt))||tt(I,q)}function tt(rt,jt){const qt=b((l[m]+rt+jt-s[p]*2).toFixed(4));if(qt>=M[m]&&qt+f[v]<=M[j]){l[m]=qt;for(const de of["element","target"])rt&&(c[de][p]=c[de][p]===ue[v][1]?ue[v][2]:ue[v][1]);return!0}}})})}return C(t,l),c}function Ui(t,e,i,n){Q(ue,(s,o)=>{let[r,a,c]=s;e[r]===c?t[a]+=i[o]*n:e[r]==="center"&&(t[a]+=i[o]*n/2)})}function tn(t){const e=/left|center|right/,i=/top|center|bottom/;return t=(t||"").split(" "),t.length===1&&(t=e.test(t[0])?t.concat("center"):i.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:i.test(t[1])?t[1]:"center"}}function en(t,e,i){const[n,s]=(t||"").split(" ");return{x:n?b(n)*(xt(n,"%")?e/100:1):0,y:s?b(s)*(xt(s,"%")?i/100:1):0}}var fs=Object.freeze({__proto__:null,ajax:Wn,getImage:qn,transition:Di,Transition:pt,animate:ri,Animation:et,attr:S,hasAttr:Bt,removeAttr:be,data:dt,addClass:$,removeClass:F,removeClasses:Se,replaceClass:si,hasClass:k,toggleClass:V,dimensions:it,offset:C,position:Hi,offsetPosition:ie,height:N,width:ne,boxModelAdjust:se,flipPosition:ai,toPx:Tt,ready:es,isTag:nt,empty:is,html:Te,replaceChildren:li,prepend:ns,append:ct,before:zi,after:Ce,remove:Mt,wrapAll:Ee,wrapInner:Li,unwrap:Pe,fragment:Dt,apply:vt,$:x,$$:W,inBrowser:Ht,isRtl:re,hasTouch:Ot,pointerDown:Lt,pointerMove:rs,pointerUp:Ft,pointerEnter:Ae,pointerLeave:_e,pointerCancel:Be,on:B,off:_i,once:P,trigger:T,createEvent:Ue,toEventTargets:ei,isTouch:Nt,getEventPos:$e,fastdom:O,isVoidElement:Je,isVisible:_,selInput:ye,isInput:Ci,selFocusable:xe,isFocusable:Ke,parent:D,filter:Kt,matches:H,closest:U,within:L,parents:Zt,children:gt,index:Ze,hasOwn:bt,hyphenate:yt,camelize:Pt,ucfirst:ge,startsWith:Z,endsWith:xt,includes:w,findIndex:pe,isArray:J,toArray:_n,assign:At,isFunction:at,isObject:ht,isPlainObject:ut,isWindow:Gt,isDocument:Xt,isNode:Fe,isElement:_t,isBoolean:me,isString:E,isNumber:Ie,isNumeric:$t,isEmpty:We,isUndefined:Y,toBoolean:je,toNumber:Jt,toFloat:b,toNode:A,toNodes:y,toWindow:kt,toMs:qe,isEqual:ki,swap:Ye,last:ve,each:Q,sortBy:Ve,uniqueBy:Bn,clamp:St,noop:ft,intersectRect:Si,pointInRect:Ge,Dimensions:Xe,getIndex:we,memoize:K,Deferred:Ti,MouseTracker:ui,mergeOptions:Rt,parseOptions:di,play:qi,pause:Yi,mute:Vi,isVideo:Gi,positionAt:Qi,query:lt,queryAll:Qt,find:Qe,findAll:Ut,escape:te,css:h,getCssVar:ni,propName:ke,isInView:ae,scrollTop:le,scrollIntoView:mi,scrolledOver:Zi,scrollParents:It,getViewport:ce,getViewportClientHeight:he,getScrollingElement:Wt});function ds(t){const e=t.data;t.use=function(s){if(!s.installed)return s.call(null,this),s.installed=!0,this},t.mixin=function(s,o){o=(E(o)?t.component(o):o)||this,o.options=Rt(o.options,s)},t.extend=function(s){s=s||{};const o=this,r=function(c){this._init(c)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=Rt(o.options,s),r.super=o,r.extend=o.extend,r},t.update=function(s,o){s=s?A(s):document.body;for(const r of Zt(s).reverse())n(r[e],o);vt(s,r=>n(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(s){i=x(s)}});function n(s,o){if(!!s)for(const r in s)s[r]._connected&&s[r]._callUpdate(o)}}function gs(t){t.prototype._callHook=function(n){var s;(s=this.$options[n])==null||s.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(n){n===void 0&&(n="update"),!!this._connected&&((n==="update"||n==="resize")&&this._callWatches(),!!this.$options.update&&(this._updates||(this._updates=new Set,O.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(n.type||n)))},t.prototype._callWatches=function(){if(this._watch)return;const n=!bt(this,"_watch");this._watch=O.read(()=>{this._connected&&i.call(this,n),this._watch=null})};function e(n){for(const{read:s,write:o,events:r}of this.$options.update){if(!n.has("update")&&(!r||!r.some(c=>n.has(c))))continue;let a;s&&(a=s.call(this,this._data,n),a&&ut(a)&&At(this._data,a)),o&&a!==!1&&O.write(()=>o.call(this,this._data,n))}}function i(n){const{$options:{computed:s}}=this,o={...this._computeds};this._computeds={};for(const r in s){const{watch:a,immediate:c}=s[r];a&&(n&&c||bt(o,r)&&!ki(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function ps(t){let e=0;t.prototype._init=function(l){l=l||{},l.data=c(l,this.constructor.options),this.$options=Rt(this.constructor.options,l,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),l.el&&this.$mount(l.el)},t.prototype._initData=function(){const{data:l={}}=this.$options;for(const u in l)this.$props[u]=this[u]=l[u]},t.prototype._initMethods=function(){const{methods:l}=this.$options;if(l)for(const u in l)this[u]=l[u].bind(this)},t.prototype._initComputeds=function(){const{computed:l}=this.$options;if(this._computeds={},l)for(const u in l)n(this,u,l[u])},t.prototype._initProps=function(l){let u;l=l||i(this.$options,this.$name);for(u in l)Y(l[u])||(this.$props[u]=l[u]);const g=[this.$options.computed,this.$options.methods];for(u in this.$props)u in l&&o(g,u)&&(this[u]=this.$props[u])},t.prototype._initEvents=function(){this._events=[];for(const l of this.$options.events||[])if(bt(l,"handler"))s(this,l);else for(const u in l)s(this,l[u],u)},t.prototype._unbindEvents=function(){this._events.forEach(l=>l()),delete this._events},t.prototype._initObservers=function(){this._observers=[f(this),d(this)]},t.prototype._disconnectObservers=function(){this._observers.forEach(l=>l==null?void 0:l.disconnect())};function i(l,u){const g={},{args:v=[],props:p={},el:m}=l;if(!p)return g;for(const M in p){const I=yt(M);let q=dt(m,I);Y(q)||(q=p[M]===Boolean&&q===""?!0:r(p[M],q),!(I==="target"&&(!q||Z(q,"_")))&&(g[M]=q))}const j=di(dt(m,u),v);for(const M in j){const I=Pt(M);p[I]!==void 0&&(g[I]=r(p[I],j[M]))}return g}function n(l,u,g){Object.defineProperty(l,u,{enumerable:!0,get(){const{_computeds:v,$props:p,$el:m}=l;return bt(v,u)||(v[u]=(g.get||g).call(l,p,m)),v[u]},set(v){const{_computeds:p}=l;p[u]=g.set?g.set.call(l,v):v,Y(p[u])&&delete p[u]}})}function s(l,u,g){ut(u)||(u={name:g,handler:u});let{name:v,el:p,handler:m,capture:j,passive:M,delegate:I,filter:q,self:tt}=u;if(p=at(p)?p.call(l):p||l.$el,J(p)){p.forEach(rt=>s(l,{...u,el:rt},g));return}!p||q&&!q.call(l)||l._events.push(B(p,v,I?E(I)?I:I.call(l):null,E(m)?l[m]:m.bind(l),{passive:M,capture:j,self:tt}))}function o(l,u){return l.every(g=>!g||!bt(g,u))}function r(l,u){return l===Boolean?je(u):l===Number?Jt(u):l==="list"?a(u):l?l(u):u}function a(l){return J(l)?l:E(l)?l.split(/,(?![^(]*\))/).map(u=>$t(u)?Jt(u):je(u.trim())):[l]}function c(l,u){let{data:g={}}=l,{args:v=[],props:p={}}=u;J(g)&&(g=g.slice(0,v.length).reduce((m,j,M)=>(ut(j)?At(m,j):m[v[M]]=j,m),{}));for(const m in g)Y(g[m])?delete g[m]:p[m]&&(g[m]=r(p[m],g[m]));return g}function f(l){const{el:u}=l.$options,g=new MutationObserver(()=>l.$emit());return g.observe(u,{childList:!0,subtree:!0}),g}function d(l){const{$name:u,$options:g,$props:v}=l,{attrs:p,props:m,el:j}=g;if(!m||p===!1)return;const M=J(p)?p:Object.keys(m),I=M.map(tt=>yt(tt)).concat(u),q=new MutationObserver(tt=>{const rt=i(g,u);tt.some(jt=>{let{attributeName:qt}=jt;const de=qt.replace("data-","");return(de===u?M:[Pt(de),Pt(qt)]).some(xi=>!Y(rt[xi])&&rt[xi]!==v[xi])})&&l.$reset()});return q.observe(j,{attributes:!0,attributeFilter:I.concat(I.map(tt=>"data-"+tt))}),q}}function ms(t){const e=t.data;t.prototype.$create=function(n,s,o){return t[n](s,o)},t.prototype.$mount=function(n){const{name:s}=this.$options;n[e]||(n[e]={}),!n[e][s]&&(n[e][s]=this,this.$el=this.$options.el=this.$options.el||n,L(n,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(n){n===void 0&&(n=!1);const{el:s,name:o}=this.$options;s&&this._callDisconnected(),this._callHook("destroy"),!!(s!=null&&s[e])&&(delete s[e][o],We(s[e])||delete s[e],n&&Mt(this.$el))},t.prototype.$emit=function(n){this._callUpdate(n)},t.prototype.$update=function(n,s){n===void 0&&(n=this.$el),t.update(n,s)},t.prototype.$getComponent=t.getComponent;const i=K(n=>t.prefix+yt(n));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function vs(t){const e=t.data,i={};t.component=function(n,s){const o=yt(n);if(n=Pt(o),!s)return ut(i[n])&&(i[n]=t.extend(i[n])),i[n];t[n]=function(a,c){const f=t.component(n);return f.options.functional?new f({data:ut(a)?a:[...arguments]}):a?W(a).map(d)[0]:d();function d(l){const u=t.getComponent(l,n);if(u)if(c)u.$destroy();else return u;return new f({el:l,data:c})}};const r=ut(s)?{...s}:s.options;return r.name=n,r.install==null||r.install(t,r,n),t._initialized&&!r.functional&&O.read(()=>t[n]("[uk-"+o+"],[data-uk-"+o+"]")),i[n]=ut(s)?r:s},t.getComponents=n=>(n==null?void 0:n[e])||{},t.getComponent=(n,s)=>t.getComponents(n)[s],t.connect=n=>{if(n[e])for(const s in n[e])n[e][s]._callConnected();for(const s of n.attributes){const o=nn(s.name);o&&o in i&&t[o](n)}},t.disconnect=n=>{for(const s in n[e])n[e][s]._callDisconnected()}}const nn=K(t=>Z(t,"uk-")||Z(t,"data-uk-")?Pt(t.replace("data-uk-","").replace("uk-","")):!1),G=function(t){this._init(t)};G.util=fs,G.data="__uikit__",G.prefix="uk-",G.options={},G.version="3.11.2-dev.03e47c2ff",ds(G),gs(G),ps(G),vs(G),ms(G);function ws(t){if(!Ht)return;let e;const i=()=>{e||(e=!0,O.read(()=>e=!1),t.update(null,"resize"))};B(window,"load resize",i),B(document,"loadedmetadata load",i,!0),"ResizeObserver"in window&&new ResizeObserver(i).observe(document.documentElement);let n;B(window,"scroll",o=>{n||(n=!0,O.read(()=>n=!1),t.update(null,o.type))},{passive:!0,capture:!0});let s=0;B(document,"animationstart",o=>{let{target:r}=o;(h(r,"animationName")||"").match(/^uk-.*(left|right)/)&&(s++,h(document.documentElement,"overflowX","hidden"),setTimeout(()=>{--s||h(document.documentElement,"overflowX","")},qe(h(r,"animationDuration"))+100))},!0),B(document,Lt,o=>{if(!Nt(o))return;const r=$e(o),a="tagName"in o.target?o.target:D(o.target);P(document,Ft+" "+Be+" scroll",c=>{const{x:f,y:d}=$e(c);(c.type!=="scroll"&&a&&f&&Math.abs(r.x-f)>100||d&&Math.abs(r.y-d)>100)&&setTimeout(()=>{T(a,"swipe"),T(a,"swipe"+bs(r.x,r.y,f,d))})})},{passive:!0})}function bs(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function ys(t){const{connect:e,disconnect:i}=t;if(!Ht||!window.MutationObserver)return;O.read(function(){document.body&&vt(document.body,e),new MutationObserver(o=>o.forEach(n)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(o=>o.forEach(s)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function n(o){let{addedNodes:r,removedNodes:a}=o;for(const c of r)vt(c,e);for(const c of a)vt(c,i)}function s(o){var r;let{target:a,attributeName:c}=o;const f=nn(c);if(!(!f||!(f in t))){if(Bt(a,c)){t[f](a);return}(r=t.getComponent(a,f))==null||r.$destroy()}}}var st={connected(){!k(this.$el,this.$name)&&$(this.$el,this.$name)}},Ct={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return this.hasAnimation&&e[0]===!0}},methods:{toggleElement(t,e,i){return new Promise(n=>Promise.all(y(t).map(s=>{const o=me(e)?e:!this.isToggled(s);if(!T(s,"before"+(o?"show":"hide"),[this]))return Promise.reject();const r=(at(i)?i:i===!1||!this.hasAnimation?this._toggle:this.hasTransition?sn(this):xs(this))(s,o),a=o?this.clsEnter:this.clsLeave;$(s,a),T(s,o?"show":"hide",[this]);const c=()=>{F(s,a),T(s,o?"shown":"hidden",[this]),this.$update(s)};return r?r.then(c,()=>(F(s,a),Promise.reject())):c()})).then(n,ft))},isToggled(t){return t===void 0&&(t=this.$el),[t]=y(t),k(t,this.clsEnter)?!0:k(t,this.clsLeave)?!1:this.cls?k(t,this.cls.split(" ")[0]):_(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=w(this.cls," ")||e!==k(t,this.cls),i&&V(t,this.cls,w(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),W("[autofocus]",t).some(n=>_(n)?n.focus()||!0:n.blur()),i&&(T(t,"toggled",[e,this]),this.$update(t))}}};function sn(t){let{isToggled:e,duration:i,initProps:n,hideProps:s,transition:o,_toggle:r}=t;return(a,c)=>{const f=pt.inProgress(a),d=a.hasChildNodes?b(h(a.firstElementChild,"marginTop"))+b(h(a.lastElementChild,"marginBottom")):0,l=_(a)?N(a)+(f?0:d):0;pt.cancel(a),e(a)||r(a,!0),N(a,""),O.flush();const u=N(a)+(f?0:d);return N(a,l),(c?pt.start(a,{...n,overflow:"hidden",height:u},Math.round(i*(1-l/u)),o):pt.start(a,s,Math.round(i*(l/u)),o).then(()=>r(a,!1))).then(()=>h(a,n))}}function xs(t){return(e,i)=>{et.cancel(e);const{animation:n,duration:s,_toggle:o}=t;return i?(o(e,!0),et.in(e,n[0],s,t.origin)):et.out(e,n[1]||n[0],s,t.origin).then(()=>o(e,!1))}}var on={mixins:[st,Ct],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String,offset:Number},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return W(i,e)},watch(t,e){if(t.forEach(n=>De(x(this.content,n),!k(n,this.clsOpen))),e||k(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},immediate:!0},toggles(t){let{toggle:e}=t;return this.items.map(i=>x(e,i))}},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(Ze(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[we(t,this.items)]];const n=Kt(this.items,"."+this.clsOpen);if(!this.multiple&&!w(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&!Kt(i,":not(."+this.clsOpen+")").length))for(const s of i)this.toggleElement(s,!k(s,this.clsOpen),async(o,r)=>{V(o,this.clsOpen,r),S(x(this.$props.toggle,o),"aria-expanded",r);const a=x((o._wrapper?"> * ":"")+this.content,o);if(e===!1||!this.hasTransition){De(a,!r);return}if(o._wrapper||(o._wrapper=Ee(a,"<div"+(r?" hidden":"")+">")),De(a,!1),await sn(this)(o._wrapper,r),De(a,!r),delete o._wrapper,Pe(a),r){const c=x(this.$props.toggle,o);ae(c)||mi(c,{offset:this.offset})}})}}};function De(t,e){t&&(t.hidden=e)}var $s={mixins:[st,Ct],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:{opacity:0,...Ct.data.hideProps}},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}}],methods:{async close(){await this.toggleElement(this.$el),this.$destroy(!0)}}},rn={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView(t){let{autoplay:e}=t;return e==="inview"}},connected(){this.inView&&!Bt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&Vi(this.$el)},update:{read(){return Gi(this.$el)?{visible:_(this.$el)&&h(this.$el,"visibility")!=="hidden",inView:this.inView&&ae(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?Yi(this.$el):(this.autoplay===!0||this.inView&&i)&&qi(this.$el)},events:["resize","scroll"]}},ks={mixins:[rn],props:{width:Number,height:Number},data:{automute:!0},update:{read(){const t=this.$el,{offsetHeight:e,offsetWidth:i}=Ss(t)||D(t),n=Xe.cover({width:this.width||t.naturalWidth||t.videoWidth||t.clientWidth,height:this.height||t.naturalHeight||t.videoHeight||t.clientHeight},{width:i+(i%2?1:0),height:e+(e%2?1:0)});return!n.width||!n.height?!1:n},write(t){let{height:e,width:i}=t;h(this.$el,{height:e,width:i})},events:["resize"]}};function Ss(t){for(;t=D(t);)if(h(t,"position")!=="static")return t}var vi={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&x(e)}}},Ts={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(re?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos(t){let{pos:e}=t;return e.split("-").concat("center").slice(0,2)},dir(){return this.pos[0]},align(){return this.pos[1]}},methods:{positionAt(t,e,i){Se(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");let{offset:n}=this;const s=this.getAxis();if(!$t(n)){const a=x(n);n=a?C(a)[s==="x"?"left":"top"]-C(e)[s==="x"?"right":"bottom"]:0}const{x:o,y:r}=Qi(t,e,s==="x"?ai(this.dir)+" "+this.align:this.align+" "+ai(this.dir),s==="x"?this.dir+" "+this.align:this.align+" "+this.dir,s==="x"?""+(this.dir==="left"?-n:n):" "+(this.dir==="top"?-n:n),null,this.flip,i).target;this.dir=s==="x"?o:r,this.align=s==="x"?r:o,V(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}};let z;var an={mixins:[vi,Ts,Ct],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?window:lt(i,e)},clsDrop(t){let{clsDrop:e}=t;return e||"uk-"+this.$options.name},clsPos(){return this.clsDrop}},created(){this.tracker=new ui},connected(){$(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",lt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,S(this.target,"aria-haspopup",!0))},disconnected(){this.isActive()&&(z=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!L(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),H(this.$el,":focus,:hover")||this.hide()}},{name:Ae+" focusin",filter(){return w(this.mode,"hover")},handler(t){Nt(t)||this.clearTimers()}},{name:_e+" focusout",filter(){return w(this.mode,"hover")},handler(t){!Nt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){z=this,this.tracker.init(),P(this.$el,"hide",B(document,Lt,t=>{let{target:e}=t;return!L(e,this.$el)&&P(document,Ft+" "+Be+" scroll",i=>{let{defaultPrevented:n,type:s,target:o}=i;!n&&s===Ft&&e===o&&!(this.target&&L(e,this.target))&&this.hide(!1)},!0)}),{self:!0}),P(this.$el,"hide",B(document,"keydown",t=>{t.keyCode===27&&this.hide(!1)}),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){z=z===null&&L(e,this.$el)&&this.isToggled()?this:z;return}z=this.isActive()?null:z,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!k(this.$el,this.clsEnter)&&this.position()},events:["resize"]},methods:{show(t,e){if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1),this.target=t,this.clearTimers(),!this.isActive()){if(z){if(e&&z.isDelaying){this.showTimer=setTimeout(()=>H(t,":hover")&&this.show(),10);return}let i;for(;z&&i!==z&&!L(this.$el,z.$el);)i=z,z.hide(!1)}this.container&&D(this.$el)!==this.container&&ct(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t){t===void 0&&(t=!0);const e=()=>this.toggleElement(this.$el,!1,!1);this.clearTimers(),this.isDelaying=Cs(this.$el).some(i=>this.tracker.movesTo(i)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(e,this.delayHide):e()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return z===this},position(){F(this.$el,this.clsDrop+"-stack"),V(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);const t=C(this.boundary),e=this.boundaryAlign?t:C(this.target);if(this.align==="justify"){const i=this.getAxis()==="y"?"width":"height";h(this.$el,i,e[i])}else this.boundary&&this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&$(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Cs(t){const e=[];return vt(t,i=>h(i,"position")!=="static"&&e.push(i)),e}var Es={mixins:[st],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return x(ye,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&D(this.input)===e&&this.input.nextElementSibling||lt(i,e))}},update(){const{target:t,input:e}=this;if(!t)return;let i;const n=Ci(t)?"value":"textContent",s=t[n],o=e.files&&e.files[0]?e.files[0].name:H(e,"select")&&(i=W("option",e).filter(r=>r.selected)[0])?i.textContent:e.value;s!==o&&(t[n]=o)},events:[{name:"change",handler(){this.$update()}},{name:"reset",el(){return U(this.$el,"form")},handler(){this.$update()}}]},Ps={update:{read(t){const e=ae(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},ln={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read(){const t=cn(this.$el.children);return{rows:t,columns:As(t)}},write(t){let{columns:e,rows:i}=t;for(const n of i)for(const s of n)V(s,this.margin,i[0]!==n),V(s,this.firstColumn,!!~e[0].indexOf(s))},events:["resize"]}};function cn(t){return hn(t,"top","bottom")}function As(t){const e=[];for(const i of t){const n=hn(i,"left","right");for(let s=0;s<n.length;s++)e[s]=e[s]?e[s].concat(n[s]):n[s]}return re?e.reverse():e}function hn(t,e,i){const n=[[]];for(const s of t){if(!_(s))continue;let o=He(s);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(s);break}let c;if(a[0].offsetParent===s.offsetParent?c=He(a[0]):(o=He(s,!0),c=He(a[0],!0)),o[e]>=c[i]-1&&o[e]!==c[e]){n.push([s]);break}if(o[i]-1>c[e]||o[e]===c[e]){a.push(s);break}if(r===0){n.unshift([s]);break}}}return n}function He(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:n,offsetHeight:s,offsetWidth:o}=t;return e&&([i,n]=ie(t)),{top:i,left:n,bottom:i+s,right:n+o}}var _s={extends:ln,mixins:[st],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&$(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;V(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||un(this.$el))return t.translates=!1,!1;let n=!1;const s=gt(this.$el),o=Ms(e),r=Ns(s,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(f=>Ve(f,"offsetTop")),n=Bs(i,e));let c=Math.abs(this.parallax);return c&&(c=o.reduce((f,d,l)=>Math.max(f,d+r+(l%2?c:c/8)-a),0)),{padding:c,columns:e,translates:n,height:n?a:""}},write(t){let{height:e,padding:i}=t;h(this.$el,"paddingBottom",i||""),e!==!1&&h(this.$el,"height",e)},events:["resize"]},{read(){return un(this.$el)?!1:{scrolled:this.parallax?Zi(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:n}=t;i===!1&&!n||e.forEach((s,o)=>s.forEach((r,a)=>h(r,"transform",!i&&!n?"":"translateY("+((n&&-n[o][a])+(i?o%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function un(t){return gt(t).some(e=>h(e,"position")==="absolute")}function Bs(t,e){const i=t.map(n=>Math.max(...n.map(s=>s.offsetHeight)));return e.map(n=>{let s=0;return n.map((o,r)=>s+=r?i[r-1]-n[r-1].offsetHeight:0)})}function Ns(t,e){const[i]=t.filter(n=>k(n,e));return b(i?h(i,"marginTop"):h(t[0],"paddingLeft"))}function Ms(t){return t.map(e=>e.reduce((i,n)=>i+n.offsetHeight,0))}var Ds={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements(t,e){let{target:i}=t;return W(i,e)}},update:{read(){return{rows:(this.row?cn(this.elements):[this.elements]).map(Hs)}},write(t){let{rows:e}=t;for(const{heights:i,elements:n}of e)n.forEach((s,o)=>h(s,"minHeight",i[o]))},events:["resize"]}};function Hs(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(fn),i=Math.max(...e);const n=t.some(o=>o.style.minHeight),s=t.some((o,r)=>!o.style.minHeight&&e[r]<i);return n&&s&&(h(t,"minHeight",""),e=t.map(fn),i=Math.max(...e)),e=t.map((o,r)=>e[r]===i&&b(o.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i),{heights:e,elements:t}}function fn(t){let e=!1;_(t)||(e=t.style.display,h(t,"display","block","important"));const i=it(t).height-se(t,"height","content-box");return e!==!1&&h(t,"display",e),i}var Os={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read(t){let{minHeight:e}=t;if(!_(this.$el))return!1;let i="";const n=se(this.$el,"height","content-box");if(this.expand)i=N(window)-(it(document.documentElement).height-it(this.$el).height)-n||"";else{if(i="calc(100vh",this.offsetTop){const{top:s}=C(this.$el);i+=s>0&&s<N(window)/2?" - "+s+"px":""}this.offsetBottom===!0?i+=" - "+it(this.$el.nextElementSibling).height+"px":$t(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&xt(this.offsetBottom,"px")?i+=" - "+b(this.offsetBottom)+"px":E(this.offsetBottom)&&(i+=" - "+it(lt(this.offsetBottom,this.$el)).height+"px"),i+=(n?" - "+n+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e,prev:i}=t;h(this.$el,{minHeight:e}),e!==i&&T(this.$el,"resize"),this.minHeight&&b(h(this.$el,"minHeight"))<this.minHeight&&h(this.$el,"minHeight",this.minHeight)},events:["resize"]}},dn={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&w(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=Ws(t,this.$el);return this.svgEl&&e!==this.svgEl&&Mt(this.svgEl),this.applyAttributes(e,t),this.$emit(),this.svgEl=e}},ft)},disconnected(){this.svg.then(t=>{this._connected||(Je(this.$el)&&(this.$el.hidden=!1),Mt(t),this.svgEl=null)}),this.svg=null},update:{read(){return!!(this.strokeAnimation&&this.svgEl&&_(this.svgEl))},write(){Rs(this.svgEl)},type:["resize"]},methods:{async getSvg(){return nt(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>P(this.$el,"load",()=>t(this.getSvg()))):Ls(await zs(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const o in this.$options.props)w(this.include,o)&&o in this&&S(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);S(t,r,a)}this.id||be(t,"id");const i=["width","height"];let n=i.map(o=>this[o]);n.some(o=>o)||(n=i.map(o=>S(e,o)));const s=S(e,"viewBox");s&&!n.some(o=>o)&&(n=s.split(" ").slice(2)),n.forEach((o,r)=>S(t,i[r],b(o)*this.ratio||null))}}};const zs=K(async t=>t?Z(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Ls(t,e){var i;return e&&w(t,"<symbol")&&(t=Fs(t,e)||t),t=x(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const gn=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,Oe={};function Fs(t,e){if(!Oe[t]){Oe[t]={},gn.lastIndex=0;let i;for(;i=gn.exec(t);)Oe[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return Oe[t][e]}function Rs(t){const e=Is(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function Is(t){return Math.ceil(Math.max(0,...W("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function Ws(t,e){if(Je(e)||nt(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return pn(t,n)?n:Ce(e,t)}const i=e.lastElementChild;return pn(t,i)?i:ct(e,t)}function pn(t,e){return nt(t,"svg")&&nt(e,"svg")&&mn(t)===mn(e)}function mn(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var js='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',qs='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',Ys='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',Vs='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',Gs='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',Xs='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',Js='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',Ks='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',Zs='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',Qs='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Us='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',to='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',eo='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',io='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',no='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',so='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>';const ze={spinner:no,totop:so,marker:Ys,"close-icon":js,"close-large":qs,"navbar-toggle-icon":Vs,"overlay-icon":Gs,"pagination-next":Xs,"pagination-previous":Js,"search-icon":Ks,"search-large":Zs,"search-navbar":Qs,"slidenav-next":Us,"slidenav-next-large":to,"slidenav-previous":eo,"slidenav-previous-large":io},wi={install:lo,extends:dn,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){$(this.$el,"uk-icon")},methods:{async getSvg(){const t=co(this.icon);if(!t)throw"Icon not found.";return t}}},ot={args:!1,extends:wi,data:t=>({icon:yt(t.constructor.options.name)}),beforeConnect(){$(this.$el,this.$name)}},vn={extends:ot,beforeConnect(){$(this.$el,"uk-slidenav")},computed:{icon(t,e){let{icon:i}=t;return k(e,"uk-slidenav-large")?i+"-large":i}}},oo={extends:ot,computed:{icon(t,e){let{icon:i}=t;return k(e,"uk-search-icon")&&Zt(e,".uk-search-large").length?"search-large":Zt(e,".uk-search-navbar").length?"search-navbar":i}}},ro={extends:ot,computed:{icon(){return"close-"+(k(this.$el,"uk-close-large")?"large":"icon")}}},ao={extends:ot,methods:{async getSvg(){const t=await wi.methods.getSvg.call(this);return this.ratio!==1&&h(x("circle",t),"strokeWidth",1/this.ratio),t}}},Le={};function lo(t){t.icon.add=(e,i)=>{const n=E(e)?{[e]:i}:e;Q(n,(s,o)=>{ze[o]=s,delete Le[o]}),t._initialized&&vt(document.body,s=>Q(t.getComponents(s),o=>{o.$options.isIcon&&o.icon in n&&o.$reset()}))}}function co(t){return ze[t]?(Le[t]||(Le[t]=x((ze[ho(t)]||ze[t]).trim())),Le[t].cloneNode(!0)):null}function ho(t){return re?Ye(Ye(t,"left","right"),"previous","next"):t}const uo="loading"in HTMLImageElement.prototype,fo="isIntersecting"in IntersectionObserverEntry.prototype;var go={args:"dataSrc",props:{dataSrc:String,sources:String,offsetTop:String,offsetLeft:String,target:String,loading:String},data:{dataSrc:"",sources:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1,loading:"lazy"},computed:{target:{get(t){let{target:e}=t;return[this.$el,...Qt(e,this.$el)]},watch(){this.observe()}}},connected(){if(this.loading!=="lazy"||!window.IntersectionObserver||!fo){this.load();return}if(uo&&fe(this.$el)&&(this.$el.loading="lazy",bi(this.$el),this.target.length===1))return;To(this.$el);const t=Tt(this.offsetTop,"height")+"px "+Tt(this.offsetLeft,"width")+"px";this.observer=new IntersectionObserver(e=>{e.some(i=>i.isIntersecting)&&(this.load(),this.observer.disconnect())},{rootMargin:t}),this.observe()},disconnected(){var t;this._data.image&&(this._data.image.onload=""),(t=this.observer)==null||t.disconnect()},update:{write(t){if(!this.observer||fe(this.$el))return!1;const e=dt(this.$el,"data-srcset");if(e&&window.devicePixelRatio!==1){const i=h(this.$el,"backgroundSize");(i.match(/^(auto\s?)+$/)||b(i)===t.bgSize)&&(t.bgSize=So(e,dt(this.$el,"sizes")),h(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load(){if(this._data.image)return this._data.image;const t=fe(this.$el)?this.$el:mo(this.$el,this.dataSrc,this.sources);return be(t,"loading"),bi(this.$el,t.currentSrc),this._data.image=t},observe(){if(this._connected&&!this._data.image)for(const t of this.target)this.observer.observe(t)}}};function bi(t,e){if(fe(t)){const i=D(t);(Co(i)?gt(i):[t]).forEach(s=>wn(s,s))}else e&&!w(t.style.backgroundImage,e)&&(h(t,"backgroundImage","url("+te(e)+")"),T(t,Ue("load",!1)))}const po=["data-src","data-srcset","sizes"];function wn(t,e){po.forEach(i=>{const n=dt(t,i);n&&S(e,i.replace(/^(data-)+/,""),n)})}function mo(t,e,i){const n=new Image;return vo(n,i),wn(t,n),n.onload=()=>{bi(t,n.currentSrc)},S(n,"src",e),n}function vo(t,e){if(e=wo(e),e.length){const i=Dt("<picture>");for(const n of e){const s=Dt("<source>");S(s,n),ct(i,s)}ct(i,t)}}function wo(t){if(!t)return[];if(Z(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=di(t);return J(t)||(t=[t]),t.filter(e=>!We(e))}const bn=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function bo(t){let e;for(bn.lastIndex=0;e=bn.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=$o(e[2]);break}return e||"100vw"}const yo=/\d+(?:\w+|%)/g,xo=/[+-]?(\d+)/g;function $o(t){return Z(t,"calc")?t.slice(5,-1).replace(yo,e=>Tt(e)).replace(/ /g,"").match(xo).reduce((e,i)=>e+ +i,0):t}const ko=/\s+\d+w\s*(?:,|$)/g;function So(t,e){const i=Tt(bo(e)),n=(t.match(ko)||[]).map(b).sort((s,o)=>s-o);return n.filter(s=>s>=i)[0]||n.pop()||""}function To(t){fe(t)&&!Bt(t,"src")&&S(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function Co(t){return nt(t,"picture")}function fe(t){return nt(t,"img")}var yi={props:{media:Boolean},data:{media:!1},computed:{matchMedia(){const t=Eo(this.media);return!t||window.matchMedia(t).matches}}};function Eo(t){if(E(t)){if(t[0]==="@"){const e="breakpoint-"+t.substr(1);t=b(ni(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var Po={mixins:[st,yi],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill(t){let{fill:e}=t;return e||ni("leader-fill-content")}},connected(){[this.wrapper]=Li(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){Pe(this.wrapper.childNodes)},update:{read(t){let{changed:e,width:i}=t;const n=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||n!==i,hide:!this.matchMedia}},write(t){V(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,S(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}};const X=[];var yn={mixins:[st,vi,Ct],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel(t,e){let{selPanel:i}=t;return x(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){w(X,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===w(X,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(w(X,this))return!1;!this.stack&&X.length?(Promise.all(X.map(e=>e.hide())).then(this.show),t.preventDefault()):X.push(this)}},{name:"show",self:!0,handler(){const t=document.documentElement;ne(window)>t.clientWidth&&this.overlay&&h(document.body,"overflowY","scroll"),this.stack&&h(this.$el,"zIndex",b(h(this.$el,"zIndex"))+X.length),$(t,this.clsPage),this.bgClose&&P(this.$el,"hide",B(document,Lt,e=>{let{target:i}=e;ve(X)!==this||this.overlay&&!L(i,this.$el)||L(i,this.panel)||P(document,Ft+" "+Be+" scroll",n=>{let{defaultPrevented:s,type:o,target:r}=n;!s&&o===Ft&&i===r&&this.hide()},!0)}),{self:!0}),this.escClose&&P(this.$el,"hide",B(document,"keydown",e=>{e.keyCode===27&&ve(X)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Ke(this.$el)||S(this.$el,"tabindex","-1"),x(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){w(X,this)&&X.splice(X.indexOf(this),1),X.length||h(document.body,"overflowY",""),h(this.$el,"zIndex",""),X.some(t=>t.clsPage===this.clsPage)||F(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&D(this.$el)!==this.container?(ct(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,xn(this))},hide(){return this.toggleElement(this.$el,!1,xn(this))}}};function xn(t){let{transitionElement:e,_toggle:i}=t;return(n,s)=>new Promise((o,r)=>P(n,"show hide",()=>{n._reject&&n._reject(),n._reject=r,i(n,s);const a=P(e,"transitionstart",()=>{P(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(c)},{self:!0}),c=setTimeout(()=>{a(),o()},qe(h(e,"transitionDuration")))})).then(()=>delete n._reject)}var Ao={install:_o,mixins:[yn],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler(){k(this.panel,"uk-margin-auto-vertical")?$(this.$el,"uk-flex"):h(this.$el,"display","block"),N(this.$el)}},{name:"hidden",self:!0,handler(){h(this.$el,"display",""),F(this.$el,"uk-flex")}}]};function _o(t){let{modal:e}=t;e.dialog=function(n,s){const o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+n+"</div> </div>",s);return o.show(),B(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},e.alert=function(n,s){return i(o=>{let{labels:r}=o;return'<div class="uk-modal-body">'+(E(n)?n:Te(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+r.ok+"</button> </div>"},s,o=>o.resolve())},e.confirm=function(n,s){return i(o=>{let{labels:r}=o;return'<form> <div class="uk-modal-body">'+(E(n)?n:Te(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+r.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+r.ok+"</button> </div> </form>"},s,o=>o.reject())},e.prompt=function(n,s,o){return i(r=>{let{labels:a}=r;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(E(n)?n:Te(n))+'</label> <input class="uk-input" value="'+(s||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,r=>r.resolve(null),r=>x("input",r.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(n,s,o,r){s={bgClose:!1,escClose:!0,labels:e.labels,...s};const a=e.dialog(n(s),s),c=new Ti;let f=!1;return B(a.$el,"submit","form",d=>{d.preventDefault(),c.resolve(r==null?void 0:r(a)),f=!0,a.hide()}),B(a.$el,"hide",()=>!f&&o(c)),c.promise.dialog=a,c.promise}}var Bo={extends:on,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const $n=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle";var No={mixins:[st,vi],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:$n,align:re?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:$n,container:!1},computed:{boundary(t,e){let{boundary:i,boundaryAlign:n}=t;return i===!0||n?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return lt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||lt(e,this.$el)||x("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=x("<div></div>"))):null},watch(t){$(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const n=W("."+i,e);if(this.dropContainer!==e)for(const o of W("."+i,this.dropContainer)){var s;const r=(s=this.getDropdown(o))==null?void 0:s.target;!w(n,o)&&r&&L(r,this.$el)&&n.push(o)}return n},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset})},immediate:!0},toggles(t,e){let{dropdown:i}=t;return W(i,e)}},disconnected(){this.dropbar&&Mt(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&w(i.mode,"hover")&&i.target&&!L(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,n=this.getActive();i===Et.DOWN&&Bt(e,"aria-expanded")&&(t.preventDefault(),!n||n.target!==e?(e.click(),P(this.dropContainer,"show",s=>{let{target:o}=s;return Sn(o)})):Sn(n.$el)),kn(t,this.toggles,n)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!w(this.dropdowns,e))return;const n=this.getActive(),s=W(xe,e),o=pe(s,a=>H(a,":focus"));if(i===Et.UP&&(t.preventDefault(),o>0&&s[o-1].focus()),i===Et.DOWN&&(t.preventDefault(),o<s.length-1&&s[o+1].focus()),i===Et.ESC){var r;n==null||(r=n.target)==null||r.focus()}kn(t,this.toggles,n)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&w(t.mode,"hover")&&!this.dropdowns.some(e=>H(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(){D(this.dropbar)||Ce(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,dir:n}=e;!k(i,this.clsDrop)||(this.dropbarMode==="slide"&&$(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&$(i,this.clsDrop+"-dropbar"),n==="bottom"&&this.transitionTo(i.offsetHeight+b(h(i,"marginTop"))+b(h(i,"marginBottom")),i))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;const n=this.getActive();H(this.dropbar,":hover")&&(n==null?void 0:n.$el)===i&&!this.toggles.some(s=>n.target!==s&&H(s,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;if(!k(i,this.clsDrop))return;const n=this.getActive();(!n||(n==null?void 0:n.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return z&&L(z.target,this.$el)&&z},transitionTo(t,e){const{dropbar:i}=this,n=_(i)?N(i):0;return e=n<t&&e,h(e,"clip","rect(0,"+e.offsetWidth+"px,"+n+"px,0)"),N(i,n),pt.cancel([e,i]),Promise.all([pt.start(i,{height:t},this.duration),pt.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(ft).then(()=>{h(e,{clip:""}),this.$update(i)})},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function kn(t,e,i){const{current:n,keyCode:s}=t,o=(i==null?void 0:i.target)||n,r=e.indexOf(o);s===Et.LEFT&&r>0&&(i==null||i.hide(!1),e[r-1].focus()),s===Et.RIGHT&&r<e.length-1&&(i==null||i.hide(!1),e[r+1].focus()),s===Et.TAB&&(o.focus(),i==null||i.hide(!1))}function Sn(t){if(!x(":focus",t)){var e;(e=x(xe,t))==null||e.focus()}}const Et={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var Mo={mixins:[yn],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1},computed:{clsFlip(t){let{flip:e,clsFlip:i}=t;return e?i:""},clsOverlay(t){let{overlay:e,clsOverlay:i}=t;return e?i:""},clsMode(t){let{mode:e,clsMode:i}=t;return i+"-"+e},clsSidebarAnimation(t){let{mode:e,clsSidebarAnimation:i}=t;return e==="none"||e==="reveal"?"":i},clsContainerAnimation(t){let{mode:e,clsContainerAnimation:i}=t;return e!=="push"&&e!=="reveal"?"":i},transitionElement(t){let{mode:e}=t;return e==="reveal"?D(this.panel):this.panel}},update:{read(){this.isToggled()&&!_(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&x(e,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el(){return this.panel},handler(t){let{targetTouches:e}=t;e.length===1&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"touchmove",passive:!1,el(){return this.panel},handler(t){if(t.targetTouches.length!==1)return;const e=t.targetTouches[0].clientY-this.clientY,{scrollTop:i,scrollHeight:n,clientHeight:s}=this.panel;(s>=n||i===0&&e>0||n-i<=s&&e<0)&&t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!k(D(this.panel),this.clsMode)&&(Ee(this.panel,"<div>"),$(D(this.panel),this.clsMode)),h(document.documentElement,"overflowY",this.overlay?"hidden":""),$(document.body,this.clsContainer,this.clsFlip),h(document.body,"touch-action","pan-y pinch-zoom"),h(this.$el,"display","block"),$(this.$el,this.clsOverlay),$(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),N(document.body),$(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&Do()}},{name:"hide",self:!0,handler(){F(document.body,this.clsContainerAnimation),h(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Ho(),this.mode==="reveal"&&Pe(this.panel),F(this.panel,this.clsSidebarAnimation,this.clsMode),F(this.$el,this.clsOverlay),h(this.$el,"display",""),F(document.body,this.clsContainer,this.clsFlip),h(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&xt(t.type,"Left")^this.flip&&this.hide()}}]};function Do(){Tn().content+=",user-scalable=0"}function Ho(){const t=Tn();t.content=t.content.replace(/,user-scalable=0$/,"")}function Tn(){return x('meta[name="viewport"]',document.head)||ct(document.head,'<meta name="viewport">')}var Oo={mixins:[st],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return U(e,i)},content(t,e){let{selContent:i}=t;return U(e,i)}},connected(){h(this.$el,"minHeight",this.minHeight)},update:{read(){return!this.content||!this.container||!_(this.$el)?!1:{current:b(h(this.$el,"maxHeight")),max:Math.max(this.minHeight,N(this.container)-(it(this.content).height-N(this.$el)))}},write(t){let{current:e,max:i}=t;h(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&T(this.$el,"resize")},events:["resize"]}},zo={props:["width","height"],connected(){$(this.$el,"uk-responsive-width")},update:{read(){return _(this.$el)&&this.width&&this.height?{width:ne(D(this.$el)),height:this.height}:!1},write(t){N(this.$el,Xe.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},Lo={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&x(t)||document.body,T(this.$el,"beforescroll",[this,t])&&(await mi(t,{offset:this.offset}),T(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+te(decodeURIComponent((this.$el.hash||"").substr(1)))))}}};const wt="_ukScrollspy";var Fo={args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get(t,e){let{target:i}=t;return i?W(i,e):[e]},watch(t){this.hidden&&h(Kt(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected(){for(const t of this.elements)F(t,this.inViewClass,t[wt]?t[wt].cls:""),delete t[wt]},update:[{read(t){if(!t.update)return Promise.resolve().then(()=>{this.$emit(),t.update=!0}),!1;for(const e of this.elements)e[wt]||(e[wt]={cls:dt(e,"uk-scrollspy-class")||this.cls}),e[wt].show=ae(e,this.offsetTop,this.offsetLeft)},write(t){for(const e of this.elements){const i=e[wt];i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}},events:["scroll","resize"]}],methods:{toggle(t,e){const i=t[wt];i.off&&i.off(),h(t,"visibility",!e&&this.hidden?"hidden":""),V(t,this.inViewClass,e),V(t,i.cls),/\buk-animation-/.test(i.cls)&&(i.off=P(t,"animationcancel animationend",()=>Se(t,"uk-animation-[\\w-]+"))),T(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},Ro={props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get(t,e){return W('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets(){return W(this.links.map(t=>te(t.hash).substr(1)).join(","))},elements(t){let{closest:e}=t;return U(this.links,e||"*")}},update:[{read(){const{length:t}=this.targets;if(!t||!_(this.$el))return!1;const[e]=It(this.targets,/auto|scroll/,!0),{scrollTop:i,scrollHeight:n}=e,s=n-he(e);let o=!1;return i===s?o=t-1:(this.targets.every((r,a)=>{if(C(r).top-C(ce(e)).top-this.offset<=0)return o=a,!0}),o===!1&&this.overflow&&(o=0)),{active:o}},write(t){let{active:e}=t;const i=e!==!1&&!k(this.elements[e],this.cls);this.links.forEach(n=>n.blur()),F(this.elements,this.cls),$(this.elements[e],this.cls),i&&T(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},Io={mixins:[st,yi],props:{position:String,top:null,bottom:Boolean,offset:String,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:0,bottom:!1,offset:0,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{selTarget(t,e){let{selTarget:i}=t;return i&&x(i,e)||e},widthElement(t,e){let{widthElement:i}=t;return lt(i,e)||this.placeholder},isActive:{get(){return k(this.selTarget,this.clsActive)},set(t){t&&!this.isActive?(si(this.selTarget,this.clsInactive,this.clsActive),T(this.$el,"active")):!t&&!k(this.selTarget,this.clsInactive)&&(si(this.selTarget,this.clsActive,this.clsInactive),T(this.$el,"inactive"))}}},connected(){this.placeholder=x("+ .uk-sticky-placeholder",this.$el)||x('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected(){this.isFixed&&(this.hide(),F(this.selTarget,this.clsInactive)),Mt(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el(){return window},handler(){if(!(this.targetOffset!==!1&&location.hash&&le(window)>0))return;const t=x(location.hash);t&&O.read(()=>{const{top:e}=C(t),i=C(this.$el).top,n=this.$el.offsetHeight;this.isFixed&&i+n>=e&&i<=e+t.offsetHeight&&le(window,e-n-($t(this.targetOffset)?this.targetOffset:0)-this._data.offset)})}}],update:[{read(t,e){let{height:i,margin:n}=t;if(this.inactive=!this.matchMedia||!_(this.$el),this.inactive)return!1;const s=this.isActive&&e.has("resize");s&&(h(this.selTarget,"transition","0s"),this.hide()),this.isActive||(i=C(this.$el).height,n=h(this.$el,"margin")),s&&(this.show(),O.write(()=>h(this.selTarget,"transition","")));const o=this.isFixed?this.placeholder:this.$el;let r=this.position;r==="auto"&&(r=i>N(window)?"bottom":"top");let a=this.offset;r==="bottom"&&(a+="+100vh-100%"),a=Tt(a,"height",o);const c=Math.max(0,i+a-N(window)),f=C(o).top,d=C(o.offsetParent).top,l=Cn(this.top,this.$el,f),u=Cn(this.bottom,this.$el,f+i,!0),g=Math.max(l,f)-a,v=u?u-C(this.$el).height+c-a:Wt(this.$el).scrollHeight-N(window);return{start:g,end:v,offset:a,overflow:c,topOffset:f,offsetParentTop:d,height:i,margin:n,width:it(_(this.widthElement)?this.widthElement:this.$el).width,top:ie(o)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:n}=this;h(n,{height:e,margin:i}),L(n,document)||(Ce(this.$el,n),n.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:n,overflowScroll:s=0,start:o,end:r}=t;const a=le(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,overflowScroll:St(s+St(a,o,r)-St(e,o,r),0,n)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:s,prevDir:o,scroll:r,prevScroll:a=0,top:c,start:f,topOffset:d,height:l}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const u=Date.now();if((u-n>300||s!==o)&&(t.initScroll=r,t.initTimestamp=u),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<f||this.showOnUp&&(r<=f||s==="down"&&i||s==="up"&&!this.isFixed&&r<=d+l)){if(!this.isFixed){et.inProgress(this.$el)&&c>r&&(et.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&r>d?(et.cancel(this.$el),et.out(this.$el,this.animation).then(()=>this.hide(),ft)):this.hide()}else this.isFixed?this.update():this.animation&&r>d?(et.cancel(this.$el),this.show(),et.in(this.$el,this.animation).catch(ft)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.isActive=!1,F(this.$el,this.clsFixed,this.clsBelow),h(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:s,end:o,offset:r,topOffset:a,height:c,offsetParentTop:f}=this._data;const d=s!==0||e>s;let l="fixed";e>o&&(r+=o-f,l="absolute"),i&&(r-=n),h(this.$el,{position:l,top:r+"px",width:t}),this.isActive=d,V(this.$el,this.clsBelow,e>a+c),$(this.$el,this.clsFixed)}}};function Cn(t,e,i,n){if(!t)return 0;if(E(t)&&t.match(/^-?\d/))return i+Tt(t);{const s=t===!0?D(e):lt(t,e);return C(s).bottom-(n&&s&&L(e,s)?b(h(s,"paddingBottom")):0)}}var En={mixins:[Ct],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,swiping:!0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get(t,e){let{connect:i}=t;return Qt(i,e)},watch(t){this.swiping&&h(t,"touch-action","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>gt(i).forEach((n,s)=>V(n,this.cls,s===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return W(i,e).filter(n=>!H(n,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return gt(this.$el).filter(t=>this.toggles.some(e=>L(e,t)))}},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?Qt(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(dt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(xt(e,"Left")?"next":"previous")}}],methods:{index(){return pe(this.children,t=>k(t,this.cls))},show(t){const e=this.index(),i=we(this.children[we(t,this.toggles,e)],gt(this.$el));e!==i&&(this.children.forEach((n,s)=>{V(n,this.cls,i===s),S(this.toggles[s],"aria-expanded",i===s)}),this.connects.forEach(async n=>{let{children:s}=n;await this.toggleElement(y(s).filter(o=>k(o,this.cls)),!1,e>=0),await this.toggleElement(s[i],!0,e>=0)}))}}},Wo={mixins:[st],extends:En,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=k(this.$el,"uk-tab-left")?"uk-tab-left":k(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const jo=32;var qo={mixins:[yi,Ct],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected(){!w(this.mode,"media")&&!Ke(this.$el)&&S(this.$el,"tabindex","0")},computed:{target:{get(t,e){let{href:i,target:n}=t;return n=Qt(n||i,e),n.length&&n||[e]},watch(){this.updateAria()},immediate:!0}},events:[{name:Lt,filter(){return w(this.mode,"hover")},handler(t){!Nt(t)||this._showState||(T(this.$el,"focus"),P(document,Lt,()=>T(this.$el,"blur"),!0,e=>!L(e.target,this.$el)),w(this.mode,"click")&&(this._preventClick=!0))}},{name:Ae+" "+_e+" focus blur",filter(){return w(this.mode,"hover")},handler(t){if(Nt(t))return;const e=w([Ae,"focus"],t.type),i=S(this.$el,"aria-expanded");if(!(!e&&(t.type===_e&&H(this.$el,":focus")||t.type==="blur"&&H(this.$el,":hover")))){if(this._showState&&e===(i!==this._showState)){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}},{name:"keydown",filter(){return w(this.mode,"click")&&!nt(this.$el,"input")},handler(t){t.keyCode===jo&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return w(this.mode,"click")},handler(t){if(this._preventClick)return this._preventClick=null;let e;(U(t.target,'a[href="#"], a[href=""]')||(e=U(t.target,"a[href]"))&&(S(this.$el,"aria-expanded")!=="true"||e.hash&&H(this.target,e.hash)))&&t.preventDefault(),this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}}],update:{read(){return w(this.mode,"media")&&this.media?{match:this.matchMedia}:!1},write(t){let{match:e}=t;const i=this.isToggled(this.target);(e?!i:i)&&this.toggle()},events:["resize"]},methods:{async toggle(t){if(!T(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>k(n,this.clsLeave));if(e.length){for(const n of this.target){const s=w(e,n);this.toggleElement(n,s,s)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(n=>!w(i,n)),!0)},updateAria(t){w(this.mode,"media")||S(this.$el,"aria-expanded",me(t)?t:this.isToggled(this.target))}}},Yo=Object.freeze({__proto__:null,Accordion:on,Alert:$s,Cover:ks,Drop:an,Dropdown:an,FormCustom:Es,Gif:Ps,Grid:_s,HeightMatch:Ds,HeightViewport:Os,Icon:wi,Img:go,Leader:Po,Margin:ln,Modal:Ao,Nav:Bo,Navbar:No,Offcanvas:Mo,OverflowAuto:Oo,Responsive:zo,Scroll:Lo,Scrollspy:Fo,ScrollspyNav:Ro,Sticky:Io,Svg:dn,Switcher:En,Tab:Wo,Toggle:qo,Video:rn,Close:ro,Spinner:ao,SlidenavNext:vn,SlidenavPrevious:vn,SearchIcon:oo,Marker:ot,NavbarToggleIcon:ot,OverlayIcon:ot,PaginationNext:ot,PaginationPrevious:ot,Totop:ot});return Q(Yo,(t,e)=>G.component(e,t)),G.use(ws),ys(G),G});
|
package/dist/js/uikit-icons.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.11.
|
|
1
|
+
/*! UIkit 3.11.2-dev.03e47c2ff | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
@@ -7,12 +7,11 @@
|
|
|
7
7
|
})(this, (function () { 'use strict';
|
|
8
8
|
|
|
9
9
|
function plugin(UIkit) {
|
|
10
|
+
if (plugin.installed) {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
10
13
|
|
|
11
|
-
|
|
12
|
-
return;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
UIkit.icon.add({
|
|
14
|
+
UIkit.icon.add({
|
|
16
15
|
"500px": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z\"/><path d=\"M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z\"/><path d=\"M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z\"/><path d=\"M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z\"/></svg>",
|
|
17
16
|
"album": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"5\" y=\"2\" width=\"10\" height=\"1\"/><rect x=\"3\" y=\"4\" width=\"14\" height=\"1\"/><rect fill=\"none\" stroke=\"#000\" x=\"1.5\" y=\"6.5\" width=\"17\" height=\"11\"/></svg>",
|
|
18
17
|
"arrow-down": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"10.5,16.08 5.63,10.66 6.37,10 10.5,14.58 14.63,10 15.37,10.66\"/><line fill=\"none\" stroke=\"#000\" x1=\"10.5\" y1=\"4\" x2=\"10.5\" y2=\"15\"/></svg>",
|
|
@@ -156,13 +155,12 @@
|
|
|
156
155
|
"world": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M1,10.5 L19,10.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M2.35,15.5 L17.65,15.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M2.35,5.5 L17.523,5.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z\"/><circle fill=\"none\" stroke=\"#000\" cx=\"10\" cy=\"10.5\" r=\"9\"/></svg>",
|
|
157
156
|
"xing": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z\"/><path d=\"M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z\"/></svg>",
|
|
158
157
|
"yelp": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069\tc-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276\tc0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789\tc-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025\tc0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155\tc-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351\tc-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479\tc0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421\tc-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272\tc0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749\tC10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794\tC2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667\tc0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z\"/></svg>",
|
|
159
|
-
"youtube": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z\"/></svg>"
|
|
160
|
-
});
|
|
158
|
+
"youtube": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z\"/></svg>" });
|
|
161
159
|
|
|
162
160
|
}
|
|
163
161
|
|
|
164
162
|
if (typeof window !== 'undefined' && window.UIkit) {
|
|
165
|
-
|
|
163
|
+
window.UIkit.use(plugin);
|
|
166
164
|
}
|
|
167
165
|
|
|
168
166
|
return plugin;
|