From 2e920625395334c8211bff86daed7ffbf21a1f8f Mon Sep 17 00:00:00 2001 From: Mark Otto <markdotto@gmail.com> Date: Wed, 25 Oct 2017 12:35:07 -0700 Subject: [PATCH] dist --- dist/js/bootstrap.bundle.js | 102 +++++++++++++--------------- dist/js/bootstrap.bundle.js.map | Bin 323156 -> 322425 bytes dist/js/bootstrap.bundle.min.js | 2 +- dist/js/bootstrap.bundle.min.js.map | Bin 271329 -> 270704 bytes 4 files changed, 49 insertions(+), 55 deletions(-) diff --git a/dist/js/bootstrap.bundle.js b/dist/js/bootstrap.bundle.js index e1b14ddd03..5f33f9c07b 100644 --- a/dist/js/bootstrap.bundle.js +++ b/dist/js/bootstrap.bundle.js @@ -1379,7 +1379,7 @@ var Collapse = function ($$$1) { /**! * @fileOverview Kickass library to create and place poppers near their reference elements. - * @version 1.12.5 + * @version 1.12.6 * @license * Copyright (c) 2016 Federico Zivolo and contributors * @@ -1401,22 +1401,7 @@ var Collapse = function ($$$1) { * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -var nativeHints = ['native code', '[object MutationObserverConstructor]']; - -/** - * Determine if a function is implemented natively (as opposed to a polyfill). - * @method - * @memberof Popper.Utils - * @argument {Function | undefined} fn the function to check - * @returns {Boolean} - */ -var isNative = (function (fn) { - return nativeHints.some(function (hint) { - return (fn || '').toString().indexOf(hint) > -1; - }); -}); - -var isBrowser = typeof window !== 'undefined'; +var isBrowser = typeof window !== 'undefined' && typeof window.document !== 'undefined'; var longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox']; var timeoutDuration = 0; for (var i = 0; i < longerTimeoutBrowsers.length; i += 1) { @@ -1427,26 +1412,16 @@ for (var i = 0; i < longerTimeoutBrowsers.length; i += 1) { } function microtaskDebounce(fn) { - var scheduled = false; - var i = 0; - var elem = document.createElement('span'); - - // MutationObserver provides a mechanism for scheduling microtasks, which - // are scheduled *before* the next task. This gives us a way to debounce - // a function but ensure it's called *before* the next paint. - var observer = new MutationObserver(function () { - fn(); - scheduled = false; - }); - - observer.observe(elem, { attributes: true }); - + var called = false; return function () { - if (!scheduled) { - scheduled = true; - elem.setAttribute('x-index', i); - i = i + 1; // don't use compund (+=) because it doesn't get optimized in V8 + if (called) { + return; } + called = true; + Promise.resolve().then(function () { + called = false; + fn(); + }); }; } @@ -1463,11 +1438,7 @@ function taskDebounce(fn) { }; } -// It's common for MutationObserver polyfills to be seen in the wild, however -// these rely on Mutation Events which only occur when an element is connected -// to the DOM. The algorithm used in this module does not use a connected element, -// and so we must ensure that a *native* MutationObserver is available. -var supportsNativeMutationObserver = isBrowser && isNative(window.MutationObserver); +var supportsMicroTasks = isBrowser && window.Promise; /** * Create a debounced version of a method, that's asynchronously deferred @@ -1478,7 +1449,7 @@ var supportsNativeMutationObserver = isBrowser && isNative(window.MutationObserv * @argument {Function} fn * @returns {Function} */ -var debounce = supportsNativeMutationObserver ? microtaskDebounce : taskDebounce; +var debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce; /** * Check if the given variable is a function @@ -1531,10 +1502,18 @@ function getParentNode(element) { */ function getScrollParent(element) { // Return body, `getScroll` will take care to get the correct `scrollTop` from it - if (!element || ['HTML', 'BODY', '#document'].indexOf(element.nodeName) !== -1) { + if (!element) { return window.document.body; } + switch (element.nodeName) { + case 'HTML': + case 'BODY': + return element.ownerDocument.body; + case '#document': + return element.body; + } + // Firefox want us to check `-x` and `-y` variations as well var _getStyleComputedProp = getStyleComputedProperty(element), @@ -1562,6 +1541,10 @@ function getOffsetParent(element) { var nodeName = offsetParent && offsetParent.nodeName; if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') { + if (element) { + return element.ownerDocument.documentElement; + } + return window.document.documentElement; } @@ -1657,8 +1640,8 @@ function getScroll(element) { var nodeName = element.nodeName; if (nodeName === 'BODY' || nodeName === 'HTML') { - var html = window.document.documentElement; - var scrollingElement = window.document.scrollingElement || html; + var html = element.ownerDocument.documentElement; + var scrollingElement = element.ownerDocument.scrollingElement || html; return scrollingElement[upperSide]; } @@ -1907,7 +1890,7 @@ function getOffsetRectRelativeToArbitraryNode(children, parent) { } function getViewportOffsetRectRelativeToArtbitraryNode(element) { - var html = window.document.documentElement; + var html = element.ownerDocument.documentElement; var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html); var width = Math.max(html.clientWidth, window.innerWidth || 0); var height = Math.max(html.clientHeight, window.innerHeight || 0); @@ -1968,10 +1951,10 @@ function getBoundaries(popper, reference, padding, boundariesElement) { if (boundariesElement === 'scrollParent') { boundariesNode = getScrollParent(getParentNode(popper)); if (boundariesNode.nodeName === 'BODY') { - boundariesNode = window.document.documentElement; + boundariesNode = popper.ownerDocument.documentElement; } } else if (boundariesElement === 'window') { - boundariesNode = window.document.documentElement; + boundariesNode = popper.ownerDocument.documentElement; } else { boundariesNode = boundariesElement; } @@ -2212,10 +2195,11 @@ function runModifiers(modifiers, data, ends) { var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends)); modifiersToRun.forEach(function (modifier) { - if (modifier.function) { + if (modifier['function']) { + // eslint-disable-line dot-notation console.warn('`modifier.function` is deprecated, use `modifier.fn`!'); } - var fn = modifier.function || modifier.fn; + var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation if (modifier.enabled && isFunction(fn)) { // Add properties to offsets to make them a complete clientRect object // we do this before each modifier to make sure the previous one doesn't @@ -2342,9 +2326,19 @@ function destroy() { return this; } +/** + * Get the window associated with the element + * @argument {Element} element + * @returns {Window} + */ +function getWindow(element) { + var ownerDocument = element.ownerDocument; + return ownerDocument ? ownerDocument.defaultView : window; +} + function attachToScrollParents(scrollParent, event, callback, scrollParents) { var isBody = scrollParent.nodeName === 'BODY'; - var target = isBody ? window : scrollParent; + var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent; target.addEventListener(event, callback, { passive: true }); if (!isBody) { @@ -2362,7 +2356,7 @@ function attachToScrollParents(scrollParent, event, callback, scrollParents) { function setupEventListeners(reference, options, state, updateBound) { // Resize event listener on window state.updateBound = updateBound; - window.addEventListener('resize', state.updateBound, { passive: true }); + getWindow(reference).addEventListener('resize', state.updateBound, { passive: true }); // Scroll event listener on scroll parents var scrollElement = getScrollParent(reference); @@ -2393,7 +2387,7 @@ function enableEventListeners() { */ function removeEventListeners(reference, state) { // Remove resize event listener on window - window.removeEventListener('resize', state.updateBound); + getWindow(reference).removeEventListener('resize', state.updateBound); // Remove scroll event listener on scroll parents state.scrollParents.forEach(function (target) { @@ -3695,8 +3689,8 @@ var Popper = function () { }; // get reference and popper elements (allow jQuery wrappers) - this.reference = reference.jquery ? reference[0] : reference; - this.popper = popper.jquery ? popper[0] : popper; + this.reference = reference && reference.jquery ? reference[0] : reference; + this.popper = popper && popper.jquery ? popper[0] : popper; // Deep merge modifiers options this.options.modifiers = {}; diff --git a/dist/js/bootstrap.bundle.js.map b/dist/js/bootstrap.bundle.js.map index 9bf42a8f29f78f46554fb44f4c44947c22d993f6..44f1c01b452c8ab7d47c02b5fdd8c8c790f43bcd 100644 GIT binary patch delta 1837 zcmZuvYitx%6wd6KrP2}#Zo7Rb?Ia5A#&Mt&5m{e%AFYT>DHIA+qr=W!SeVXiW@cNE zVo``dVhuV!P7DTG69ggRV`Byrf<Pi65=995L*xg(VxkG6F%eCScV>3GZDf<(z4zR6 zzVm(OJ6FC9-TFH8e${?%VPV?-H+Z{mEYc{<nIl+Rb5zd=gIP_{2PH*M=liK<6|Avt z4$`t}?>r=Rv452+5n<cYn&5p5YUK?r>R-3}e}0nih+r9cT6|h==>1ufN(MD`b%3@; zBx@tp?9ohk_IP?mR?SkrAY`=GNC`I*Eu;<wxdj8VA(;7GPB$zwl}#IZk8Ex>S*NTS zGxR}|8m^F{f?`Yi`r$t-%gKdbkGvMNKRG^c*c{AS>5W1wRjDgf(sYF`ll$qoy0mOk zq2-C5)Ke{sOUm3xtShm$6cGe}0zwHzAJnLkC=O3ruPa-NB7C%aN^@-q6)`6w6uvpG zg8kLLFiMYe6?h>Zn9W7)-zvg|)Q6u|d3U?*RMYgy%?iDzrZszyg_o`c@0gO)b2)0@ zR3p%2zy0H?iT6U|Pt#}3>}$#7wX~JhwU%c*wYFAOKU2+WR8Vy5eoePz_YoHWr`|m= zSr{4;`gJ9n$x=hgXi+4W1EK#HIv)c!x7zObV@9Lzg&>=zp3ce^RhT>0MuC}c-#A*2 zr)P09?B)-uD|)@H+iu_dD>Uq%OTHBCaIK#-Tju)YF%)O+jk{>d<bua014s(Z$a&RT zouz}q;^Nk@YW)6A?%-^bZI`MpmkoC{CgDt|b9RTgDS`S8)GBf|Xoj+iG>u5IqTu2N zF5;Z7<@%xKb~#Ra1NZC+U^|O@E^(diVfXn<oOAwCpzj?NhoA|+`wSXz^eqTh_Y%@8 z#tDf>*>_8a(=!BF4u3xhbpb7g*I$6}tP~+BF-b@=nj-PlVizG@(WNB5BD#dc6L{t- z)U>-t#e4Cv{F7VaUzZTF#6PViWUULcDULT!LTx=eW;|^F$0Ne9mtpQBsKH&s@VCTJ z5~7E&IY!9lnAk~3r?`@km44Kt=N5Wh@yreg)fvT#ZbG{Ke6JRN*#WHqBk9z>2<rn= zJxz@HI=s3Q?(0apjl2q1qR-d8y5g*uxRj8k;&?MRxUL*?HTC!eM(6W2_~b>XtaWp8 zaX-nOvzw%#v<Di3(M}Q{a9|fOpFM3}%hHh7l##+BC4_op+@U`dk22I`0;~3d=qz{{ zhAZ&R15k;_=JQkW+z3qPHlchCLO3>`58*!}(8yU%_*Dotmh)yzz)UhP63(MXpeI-_ z6C(Sv%RRdoPdxfAklVg8Moh(VXsfARMaU|@*i*r@Cbz_JW+h*XYtF(07`_G7h-aaW zd(e6BEHqW2a2Fp$^#UV5@Cr2Jl~Lw6lTo>daccA36g^6w;bn5(%6hS~8*vhEPvC{m z;q{QaVm^`a5)?<EflK0<6Hw=jd;uwrclQU!>KMBpF2ag{)!{7q5`LZ-KX4i5Rz#yo z(rG1~=PtwHKHT>&Bip<kf;dg$=W%Vg>>z}Bmj!MZg?n*Z12f@36+Z=cNPIQdj@>sP WjKVnxI>#hlt>B(_>KF14pZE{9!dLnL delta 2571 zcmZuxeQXnD7|-=>*(jfbQ5@oUjcD7g>sXNRQKr1TjWJ+M0yqfp$F+UC9$xS2-F4mE zuxKPiqY32HH-03bVsvQGq#=hI^bd?C5;CJk<7dD`<5!HBm_TBJ&--3m7j%EDch5b~ z@A*By=i}Pv3qSj2;hVFblU7w`KlhBktSh!ULN}?pZQ*XbH|)LRw2`6V7!L0>QU_?- z#sftg91VRiWl?j4nzEr=wpmQuhPgkyKe12Wr+2os?bC4^?x8j{^Qum<n#Bsv7WFib z#HxkWd_kjms@pV!y+p0r7>+0wHVOs90;_F6NWsv?vZ|&<<Ia_rSKq#|hA@GPdWL2J zI&%<bb!_Ko9p3r+BxX~MQbTz}F(KDBQ5TdHsS}7~^(Y<(j@YDj(bTIHMD20Q$kS=A zIS{1kTz7|fJTZa8;b`18cG#w>4@aVL6)24kW+Pt2UAU>E3*^A~U=)7DKj--I&dSx} zL~@qD7zzn`z-xu@;%^i*VVAc0ZZ2B|MGx~h4$#^8AJuWeG)B}6wLqjiP3II{wemP? znAl3^Xr`zEC7f5&reQ1AeO3&Ya%wtP1yf8~a|5B<QWWB7n-Ec_qc*mcvUOh^@617? zhG8ZwT;zF5${6oThNcYY1FeD8g~zF)jj3)G0baGk7EUXg_P+@V3Wyr#0K96WI!Pdf zPD`TH+0!S?IgxE1%IXm=2Zq0Dg@D|Rvx;U>VHW~(hZ<bG`Vir&#_%{+Z0Hnlq}DnN z6H9qxoF_h5?CgJGj<fs4c$quKEozgRV<bG<A-W0+pw`l3tU_WHx8tq^Z%xL~!!{^H zVO8=4m`faK?~dXWO)K1}+TcMg?lVkn7;jt6s}BHqRmb<P@hUpVe-6HM?FFd}fc-){ zBcF#=;T^qk<LX;s@ph!3mz2U%d0S9YwM-1>j1q<2gjMY1Z3P-8h5Z7+8W`>!f$g)r zxquJ+YdT#ln_vMnMHj;eE__?lhOWcz(~Jjbh*9Yo9N;rTv7!wdrfTQ%Tm(^<%_k>s zz!*|dJk||QA?07F8h%V*Dj=I>;8L05e9@|pk)2a)n7lUcM6}h}*NzV-r;I47rld3q z1I5S5D#8UZ?dsmw>a9mW>#U?{l;C>dJMO68he!z;ZIl+oZw!b!9WVVA@{Y)j-zu?_ z#{x-y3igIK?Ht(3?__eYXAl3qEn}pM{KAFz*DnJfFtEgRxT)KeJdNU8ySs5mmve4% zMdis;L&(|iYJ+oea=vq_(poW3vsupW^UIx;Z?`yio}XVyz3pEHhDhbfFaK`f7I15J z-nx8G?U@yqNei5-mzyfPzW;IQ?0D_q!ToZI*R__qfm4S5s9BYo@vNRWbF0)jj}6Y3 zo(%{c+__EC3}4XGB(7vK?AwqOb$2b4@@R%<We+ZvLhf%NssAiXPD$NI9-WfhN2h!{ zC+QF&L$N+W`eHI6a!esaiS-iF8?)ful07T`l&Jj?vZJdv)=x-(Y&#*_y{BD-?DFDx zaH5yUtCF!nLIz_z0lV@kTExBz_~(Rd*)xl5A`wSoZ-o4d*!Q2H7S?$k1=!JMe}KLD zCz^SCqL0W2dZy8kiM)B*YXZ`3Vqc7+<w3y`n68!G$QV*3_S869!h8%hb0~icXLYYf zSFjgV^AgzDBx+@MFYq^(yX0w=2?yaioFrs8>80I6$eu($PxEiV;tMx!jqLz^JVCb* zvc>xVHR#o7Ps&~(?Wrep5JK@M_Qxk^20Ql)3bMnO&^-3)1+>t&T4txmQO`|+iSXwX zJTg2RJMk-86c`|KPG(ma2>tkXDCplp<lSuB1PZbH$I<W2ynBQU^myg1fqK>?*@l^* z`l25o(ULQ0cGTlm>od3y6*k@|hlphE1d8|$Y;-SApp@_F^Qd|50DyaXh=!kd7<gPh z0@82!0L^=9slU;;wwK-gA-atjWz^_49YV;*HhhR$+`_}?SOeR047CP9z?EJD*twt4 zVz%NK3NEQ?FRHIgz_re~na5CI2@j333+GVKef}is35X~Ls6qcAku`R85|L>(&_#2% zpF&;DZ1Z6h<hq$j_Ru51_w{$tD!&+rU*1KxNL_B@d#H65d;KGHl)dvB^kn@7G;@X+ zZkf$HgBH7oE}#L4%|8Pw_f5g@&bo*?e51YYx{K&1iM>39);1)-zi+h1y?+Y5vX@;t z1k=6ZG++&%2LH|N{yEZWHqqo?#@>IPw=U$L$&R-}Ta@2GfRE3jfctT~Uu%#$-R_nC H^=JP9DI8-- diff --git a/dist/js/bootstrap.bundle.min.js b/dist/js/bootstrap.bundle.min.js index a0c4402471..d2a1696097 100644 --- a/dist/js/bootstrap.bundle.min.js +++ b/dist/js/bootstrap.bundle.min.js @@ -3,5 +3,5 @@ * Copyright 2011-2017 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ -var bootstrap=function(t,e){"use strict";function n(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function i(t){return t&&"[object Function]"==={}.toString.call(t)}function r(t,e){if(1!==t.nodeType)return[];var n=window.getComputedStyle(t,null);return e?n[e]:n}function o(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function s(t){if(!t||-1!==["HTML","BODY","#document"].indexOf(t.nodeName))return window.document.body;var e=r(t),n=e.overflow,i=e.overflowX;return/(auto|scroll)/.test(n+e.overflowY+i)?t:s(o(t))}function a(t){var e=t&&t.offsetParent,n=e&&e.nodeName;return n&&"BODY"!==n&&"HTML"!==n?-1!==["TD","TABLE"].indexOf(e.nodeName)&&"static"===r(e,"position")?a(e):e:window.document.documentElement}function l(t){var e=t.nodeName;return"BODY"!==e&&("HTML"===e||a(t.firstElementChild)===t)}function c(t){return null!==t.parentNode?c(t.parentNode):t}function f(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return window.document.documentElement;var n=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,i=n?t:e,r=n?e:t,o=document.createRange();o.setStart(i,0),o.setEnd(r,0);var s=o.commonAncestorContainer;if(t!==s&&e!==s||i.contains(r))return l(s)?s:a(s);var h=c(t);return h.host?f(h.host,e):f(t,c(e).host)}function h(t){var e="top"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",n=t.nodeName;if("BODY"===n||"HTML"===n){var i=window.document.documentElement;return(window.document.scrollingElement||i)[e]}return t[e]}function u(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=h(e,"top"),r=h(e,"left"),o=n?-1:1;return t.top+=i*o,t.bottom+=i*o,t.left+=r*o,t.right+=r*o,t}function d(t,e){var n="x"===e?"Left":"Top",i="Left"===n?"Right":"Bottom";return+t["border"+n+"Width"].split("px")[0]+ +t["border"+i+"Width"].split("px")[0]}function p(t,e,n,i){return Math.max(e["offset"+t],e["scroll"+t],n["client"+t],n["offset"+t],n["scroll"+t],lt()?n["offset"+t]+i["margin"+("Height"===t?"Top":"Left")]+i["margin"+("Height"===t?"Bottom":"Right")]:0)}function g(){var t=window.document.body,e=window.document.documentElement,n=lt()&&window.getComputedStyle(e);return{height:p("Height",t,e,n),width:p("Width",t,e,n)}}function m(t){return ut({},t,{right:t.left+t.width,bottom:t.top+t.height})}function _(t){var e={};if(lt())try{e=t.getBoundingClientRect();var n=h(t,"top"),i=h(t,"left");e.top+=n,e.left+=i,e.bottom+=n,e.right+=i}catch(t){}else e=t.getBoundingClientRect();var o={left:e.left,top:e.top,width:e.right-e.left,height:e.bottom-e.top},s="HTML"===t.nodeName?g():{},a=s.width||t.clientWidth||o.right-o.left,l=s.height||t.clientHeight||o.bottom-o.top,c=t.offsetWidth-a,f=t.offsetHeight-l;if(c||f){var u=r(t);c-=d(u,"x"),f-=d(u,"y"),o.width-=c,o.height-=f}return m(o)}function v(t,e){var n=lt(),i="HTML"===e.nodeName,o=_(t),a=_(e),l=s(t),c=r(e),f=+c.borderTopWidth.split("px")[0],h=+c.borderLeftWidth.split("px")[0],d=m({top:o.top-a.top-f,left:o.left-a.left-h,width:o.width,height:o.height});if(d.marginTop=0,d.marginLeft=0,!n&&i){var p=+c.marginTop.split("px")[0],g=+c.marginLeft.split("px")[0];d.top-=f-p,d.bottom-=f-p,d.left-=h-g,d.right-=h-g,d.marginTop=p,d.marginLeft=g}return(n?e.contains(l):e===l&&"BODY"!==l.nodeName)&&(d=u(d,e)),d}function E(t){var e=window.document.documentElement,n=v(t,e),i=Math.max(e.clientWidth,window.innerWidth||0),r=Math.max(e.clientHeight,window.innerHeight||0),o=h(e),s=h(e,"left");return m({top:o-n.top+n.marginTop,left:s-n.left+n.marginLeft,width:i,height:r})}function T(t){var e=t.nodeName;return"BODY"!==e&&"HTML"!==e&&("fixed"===r(t,"position")||T(o(t)))}function b(t,e,n,i){var r={top:0,left:0},a=f(t,e);if("viewport"===i)r=E(a);else{var l=void 0;"scrollParent"===i?"BODY"===(l=s(o(t))).nodeName&&(l=window.document.documentElement):l="window"===i?window.document.documentElement:i;var c=v(l,a);if("HTML"!==l.nodeName||T(a))r=c;else{var h=g(),u=h.height,d=h.width;r.top+=c.top-c.marginTop,r.bottom=u+c.top,r.left+=c.left-c.marginLeft,r.right=d+c.left}}return r.left+=n,r.top+=n,r.right-=n,r.bottom-=n,r}function C(t){return t.width*t.height}function A(t,e,n,i,r){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var s=b(n,i,o,r),a={top:{width:s.width,height:e.top-s.top},right:{width:s.right-e.right,height:s.height},bottom:{width:s.width,height:s.bottom-e.bottom},left:{width:e.left-s.left,height:s.height}},l=Object.keys(a).map(function(t){return ut({key:t},a[t],{area:C(a[t])})}).sort(function(t,e){return e.area-t.area}),c=l.filter(function(t){var e=t.width,i=t.height;return e>=n.clientWidth&&i>=n.clientHeight}),f=c.length>0?c[0].key:l[0].key,h=t.split("-")[1];return f+(h?"-"+h:"")}function I(t,e,n){return v(n,f(e,n))}function O(t){var e=window.getComputedStyle(t),n=parseFloat(e.marginTop)+parseFloat(e.marginBottom),i=parseFloat(e.marginLeft)+parseFloat(e.marginRight);return{width:t.offsetWidth+i,height:t.offsetHeight+n}}function y(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,function(t){return e[t]})}function D(t,e,n){n=n.split("-")[0];var i=O(t),r={width:i.width,height:i.height},o=-1!==["right","left"].indexOf(n),s=o?"top":"left",a=o?"left":"top",l=o?"height":"width",c=o?"width":"height";return r[s]=e[s]+e[l]/2-i[l]/2,r[a]=n===a?e[a]-i[c]:e[y(a)],r}function S(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function w(t,e,n){if(Array.prototype.findIndex)return t.findIndex(function(t){return t[e]===n});var i=S(t,function(t){return t[e]===n});return t.indexOf(i)}function N(t,e,n){return(void 0===n?t:t.slice(0,w(t,"name",n))).forEach(function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=t.function||t.fn;t.enabled&&i(n)&&(e.offsets.popper=m(e.offsets.popper),e.offsets.reference=m(e.offsets.reference),e=n(e,t))}),e}function L(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=I(this.state,this.popper,this.reference),t.placement=A(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.offsets.popper=D(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position="absolute",t=N(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}function P(t,e){return t.some(function(t){var n=t.name;return t.enabled&&n===e})}function R(t){for(var e=[!1,"ms","Webkit","Moz","O"],n=t.charAt(0).toUpperCase()+t.slice(1),i=0;i<e.length-1;i++){var r=e[i],o=r?""+r+n:t;if("undefined"!=typeof window.document.body.style[o])return o}return null}function H(){return this.state.isDestroyed=!0,P(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.left="",this.popper.style.position="",this.popper.style.top="",this.popper.style[R("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}function k(t,e,n,i){var r="BODY"===t.nodeName,o=r?window:t;o.addEventListener(e,n,{passive:!0}),r||k(s(o.parentNode),e,n,i),i.push(o)}function W(t,e,n,i){n.updateBound=i,window.addEventListener("resize",n.updateBound,{passive:!0});var r=s(t);return k(r,"scroll",n.updateBound,n.scrollParents),n.scrollElement=r,n.eventsEnabled=!0,n}function x(){this.state.eventsEnabled||(this.state=W(this.reference,this.options,this.state,this.scheduleUpdate))}function M(t,e){return window.removeEventListener("resize",e.updateBound),e.scrollParents.forEach(function(t){t.removeEventListener("scroll",e.updateBound)}),e.updateBound=null,e.scrollParents=[],e.scrollElement=null,e.eventsEnabled=!1,e}function U(){this.state.eventsEnabled&&(window.cancelAnimationFrame(this.scheduleUpdate),this.state=M(this.reference,this.state))}function V(t){return""!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function F(t,e){Object.keys(e).forEach(function(n){var i="";-1!==["width","height","top","right","bottom","left"].indexOf(n)&&V(e[n])&&(i="px"),t.style[n]=e[n]+i})}function j(t,e){Object.keys(e).forEach(function(n){!1!==e[n]?t.setAttribute(n,e[n]):t.removeAttribute(n)})}function B(t,e,n){var i=S(t,function(t){return t.name===e}),r=!!i&&t.some(function(t){return t.name===n&&t.enabled&&t.order<i.order});if(!r){var o="`"+e+"`",s="`"+n+"`";console.warn(s+" modifier is required by "+o+" modifier in order to work, be sure to include it before "+o+"!")}return r}function G(t){return"end"===t?"start":"start"===t?"end":t}function K(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=pt.indexOf(t),i=pt.slice(n+1).concat(pt.slice(0,n));return e?i.reverse():i}function Q(t,e,n,i){var r=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),o=+r[1],s=r[2];if(!o)return t;if(0===s.indexOf("%")){var a=void 0;switch(s){case"%p":a=n;break;case"%":case"%r":default:a=i}return m(a)[e]/100*o}if("vh"===s||"vw"===s){return("vh"===s?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*o}return o}function Y(t,e,n,i){var r=[0,0],o=-1!==["right","left"].indexOf(i),s=t.split(/(\+|\-)/).map(function(t){return t.trim()}),a=s.indexOf(S(s,function(t){return-1!==t.search(/,|\s/)}));s[a]&&-1===s[a].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var l=/\s*,\s*|\s+/,c=-1!==a?[s.slice(0,a).concat([s[a].split(l)[0]]),[s[a].split(l)[1]].concat(s.slice(a+1))]:[s];return(c=c.map(function(t,i){var r=(1===i?!o:o)?"height":"width",s=!1;return t.reduce(function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,s=!0,t):s?(t[t.length-1]+=e,s=!1,t):t.concat(e)},[]).map(function(t){return Q(t,r,e,n)})})).forEach(function(t,e){t.forEach(function(n,i){V(n)&&(r[e]+=n*("-"===t[i-1]?-1:1))})}),r}for(var X=function(t){function e(t){return{}.toString.call(t).match(/\s([a-zA-Z]+)/)[1].toLowerCase()}function n(){return{bindType:o.end,delegateType:o.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}}}function i(){if(window.QUnit)return!1;var t=document.createElement("bootstrap");for(var e in s)if("undefined"!=typeof t.style[e])return{end:s[e]};return!1}function r(e){var n=this,i=!1;return t(this).one(a.TRANSITION_END,function(){i=!0}),setTimeout(function(){i||a.triggerTransitionEnd(n)},e),this}var o=!1,s={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"},a={TRANSITION_END:"bsTransitionEnd",getUID:function(t){do{t+=~~(1e6*Math.random())}while(document.getElementById(t));return t},getSelectorFromElement:function(e){var n=e.getAttribute("data-target");n&&"#"!==n||(n=e.getAttribute("href")||"");try{return t(document).find(n).length>0?n:null}catch(t){return null}},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(e){t(e).trigger(o.end)},supportsTransitionEnd:function(){return Boolean(o)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,n,i){for(var r in i)if(Object.prototype.hasOwnProperty.call(i,r)){var o=i[r],s=n[r],l=s&&a.isElement(s)?"element":e(s);if(!new RegExp(o).test(l))throw new Error(t.toUpperCase()+': Option "'+r+'" provided type "'+l+'" but expected type "'+o+'".')}}};return o=i(),t.fn.emulateTransitionEnd=r,a.supportsTransitionEnd()&&(t.event.special[a.TRANSITION_END]=n()),a}(e=e&&e.hasOwnProperty("default")?e.default:e),q=function(t,e,i){return e&&n(t.prototype,e),i&&n(t,i),t},z=function(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e},Z=function(t){var e="alert",n=t.fn[e],i={CLOSE:"close.bs.alert",CLOSED:"closed.bs.alert",CLICK_DATA_API:"click.bs.alert.data-api"},r={ALERT:"alert",FADE:"fade",SHOW:"show"},o=function(){function e(t){this._element=t}var n=e.prototype;return n.close=function(t){t=t||this._element;var e=this._getRootElement(t);this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},n.dispose=function(){t.removeData(this._element,"bs.alert"),this._element=null},n._getRootElement=function(e){var n=X.getSelectorFromElement(e),i=!1;return n&&(i=t(n)[0]),i||(i=t(e).closest("."+r.ALERT)[0]),i},n._triggerCloseEvent=function(e){var n=t.Event(i.CLOSE);return t(e).trigger(n),n},n._removeElement=function(e){var n=this;t(e).removeClass(r.SHOW),X.supportsTransitionEnd()&&t(e).hasClass(r.FADE)?t(e).one(X.TRANSITION_END,function(t){return n._destroyElement(e,t)}).emulateTransitionEnd(150):this._destroyElement(e)},n._destroyElement=function(e){t(e).detach().trigger(i.CLOSED).remove()},e._jQueryInterface=function(n){return this.each(function(){var i=t(this),r=i.data("bs.alert");r||(r=new e(this),i.data("bs.alert",r)),"close"===n&&r[n](this)})},e._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},q(e,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}}]),e}();return t(document).on(i.CLICK_DATA_API,{DISMISS:'[data-dismiss="alert"]'}.DISMISS,o._handleDismiss(new o)),t.fn[e]=o._jQueryInterface,t.fn[e].Constructor=o,t.fn[e].noConflict=function(){return t.fn[e]=n,o._jQueryInterface},o}(e),J=function(t){var e="button",n=t.fn[e],i={ACTIVE:"active",BUTTON:"btn",FOCUS:"focus"},r={DATA_TOGGLE_CARROT:'[data-toggle^="button"]',DATA_TOGGLE:'[data-toggle="buttons"]',INPUT:"input",ACTIVE:".active",BUTTON:".btn"},o={CLICK_DATA_API:"click.bs.button.data-api",FOCUS_BLUR_DATA_API:"focus.bs.button.data-api blur.bs.button.data-api"},s=function(){function e(t){this._element=t}var n=e.prototype;return n.toggle=function(){var e=!0,n=!0,o=t(this._element).closest(r.DATA_TOGGLE)[0];if(o){var s=t(this._element).find(r.INPUT)[0];if(s){if("radio"===s.type)if(s.checked&&t(this._element).hasClass(i.ACTIVE))e=!1;else{var a=t(o).find(r.ACTIVE)[0];a&&t(a).removeClass(i.ACTIVE)}if(e){if(s.hasAttribute("disabled")||o.hasAttribute("disabled")||s.classList.contains("disabled")||o.classList.contains("disabled"))return;s.checked=!t(this._element).hasClass(i.ACTIVE),t(s).trigger("change")}s.focus(),n=!1}}n&&this._element.setAttribute("aria-pressed",!t(this._element).hasClass(i.ACTIVE)),e&&t(this._element).toggleClass(i.ACTIVE)},n.dispose=function(){t.removeData(this._element,"bs.button"),this._element=null},e._jQueryInterface=function(n){return this.each(function(){var i=t(this).data("bs.button");i||(i=new e(this),t(this).data("bs.button",i)),"toggle"===n&&i[n]()})},q(e,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}}]),e}();return t(document).on(o.CLICK_DATA_API,r.DATA_TOGGLE_CARROT,function(e){e.preventDefault();var n=e.target;t(n).hasClass(i.BUTTON)||(n=t(n).closest(r.BUTTON)),s._jQueryInterface.call(t(n),"toggle")}).on(o.FOCUS_BLUR_DATA_API,r.DATA_TOGGLE_CARROT,function(e){var n=t(e.target).closest(r.BUTTON)[0];t(n).toggleClass(i.FOCUS,/^focus(in)?$/.test(e.type))}),t.fn[e]=s._jQueryInterface,t.fn[e].Constructor=s,t.fn[e].noConflict=function(){return t.fn[e]=n,s._jQueryInterface},s}(e),$=function(t){var e="carousel",n="bs.carousel",i="."+n,r=t.fn[e],o={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0},s={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean"},a={NEXT:"next",PREV:"prev",LEFT:"left",RIGHT:"right"},l={SLIDE:"slide"+i,SLID:"slid"+i,KEYDOWN:"keydown"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i,TOUCHEND:"touchend"+i,LOAD_DATA_API:"load.bs.carousel.data-api",CLICK_DATA_API:"click.bs.carousel.data-api"},c={CAROUSEL:"carousel",ACTIVE:"active",SLIDE:"slide",RIGHT:"carousel-item-right",LEFT:"carousel-item-left",NEXT:"carousel-item-next",PREV:"carousel-item-prev",ITEM:"carousel-item"},f={ACTIVE:".active",ACTIVE_ITEM:".active.carousel-item",ITEM:".carousel-item",NEXT_PREV:".carousel-item-next, .carousel-item-prev",INDICATORS:".carousel-indicators",DATA_SLIDE:"[data-slide], [data-slide-to]",DATA_RIDE:'[data-ride="carousel"]'},h=function(){function r(e,n){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this._config=this._getConfig(n),this._element=t(e)[0],this._indicatorsElement=t(this._element).find(f.INDICATORS)[0],this._addEventListeners()}var h=r.prototype;return h.next=function(){this._isSliding||this._slide(a.NEXT)},h.nextWhenVisible=function(){!document.hidden&&t(this._element).is(":visible")&&"hidden"!==t(this._element).css("visibility")&&this.next()},h.prev=function(){this._isSliding||this._slide(a.PREV)},h.pause=function(e){e||(this._isPaused=!0),t(this._element).find(f.NEXT_PREV)[0]&&X.supportsTransitionEnd()&&(X.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},h.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},h.to=function(e){var n=this;this._activeElement=t(this._element).find(f.ACTIVE_ITEM)[0];var i=this._getItemIndex(this._activeElement);if(!(e>this._items.length-1||e<0))if(this._isSliding)t(this._element).one(l.SLID,function(){return n.to(e)});else{if(i===e)return this.pause(),void this.cycle();var r=e>i?a.NEXT:a.PREV;this._slide(r,this._items[e])}},h.dispose=function(){t(this._element).off(i),t.removeData(this._element,n),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},h._getConfig=function(n){return n=t.extend({},o,n),X.typeCheckConfig(e,n,s),n},h._addEventListeners=function(){var e=this;this._config.keyboard&&t(this._element).on(l.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&(t(this._element).on(l.MOUSEENTER,function(t){return e.pause(t)}).on(l.MOUSELEAVE,function(t){return e.cycle(t)}),"ontouchstart"in document.documentElement&&t(this._element).on(l.TOUCHEND,function(){e.pause(),e.touchTimeout&&clearTimeout(e.touchTimeout),e.touchTimeout=setTimeout(function(t){return e.cycle(t)},500+e._config.interval)}))},h._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next();break;default:return}},h._getItemIndex=function(e){return this._items=t.makeArray(t(e).parent().find(f.ITEM)),this._items.indexOf(e)},h._getItemByDirection=function(t,e){var n=t===a.NEXT,i=t===a.PREV,r=this._getItemIndex(e),o=this._items.length-1;if((i&&0===r||n&&r===o)&&!this._config.wrap)return e;var s=(r+(t===a.PREV?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},h._triggerSlideEvent=function(e,n){var i=this._getItemIndex(e),r=this._getItemIndex(t(this._element).find(f.ACTIVE_ITEM)[0]),o=t.Event(l.SLIDE,{relatedTarget:e,direction:n,from:r,to:i});return t(this._element).trigger(o),o},h._setActiveIndicatorElement=function(e){if(this._indicatorsElement){t(this._indicatorsElement).find(f.ACTIVE).removeClass(c.ACTIVE);var n=this._indicatorsElement.children[this._getItemIndex(e)];n&&t(n).addClass(c.ACTIVE)}},h._slide=function(e,n){var i,r,o,s=this,h=t(this._element).find(f.ACTIVE_ITEM)[0],u=this._getItemIndex(h),d=n||h&&this._getItemByDirection(e,h),p=this._getItemIndex(d),g=Boolean(this._interval);if(e===a.NEXT?(i=c.LEFT,r=c.NEXT,o=a.LEFT):(i=c.RIGHT,r=c.PREV,o=a.RIGHT),d&&t(d).hasClass(c.ACTIVE))this._isSliding=!1;else if(!this._triggerSlideEvent(d,o).isDefaultPrevented()&&h&&d){this._isSliding=!0,g&&this.pause(),this._setActiveIndicatorElement(d);var m=t.Event(l.SLID,{relatedTarget:d,direction:o,from:u,to:p});X.supportsTransitionEnd()&&t(this._element).hasClass(c.SLIDE)?(t(d).addClass(r),X.reflow(d),t(h).addClass(i),t(d).addClass(i),t(h).one(X.TRANSITION_END,function(){t(d).removeClass(i+" "+r).addClass(c.ACTIVE),t(h).removeClass(c.ACTIVE+" "+r+" "+i),s._isSliding=!1,setTimeout(function(){return t(s._element).trigger(m)},0)}).emulateTransitionEnd(600)):(t(h).removeClass(c.ACTIVE),t(d).addClass(c.ACTIVE),this._isSliding=!1,t(this._element).trigger(m)),g&&this.cycle()}},r._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n),s=t.extend({},o,t(this).data());"object"==typeof e&&t.extend(s,e);var a="string"==typeof e?e:s.slide;if(i||(i=new r(this,s),t(this).data(n,i)),"number"==typeof e)i.to(e);else if("string"==typeof a){if("undefined"==typeof i[a])throw new Error('No method named "'+a+'"');i[a]()}else s.interval&&(i.pause(),i.cycle())})},r._dataApiClickHandler=function(e){var i=X.getSelectorFromElement(this);if(i){var o=t(i)[0];if(o&&t(o).hasClass(c.CAROUSEL)){var s=t.extend({},t(o).data(),t(this).data()),a=this.getAttribute("data-slide-to");a&&(s.interval=!1),r._jQueryInterface.call(t(o),s),a&&t(o).data(n).to(a),e.preventDefault()}}},q(r,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return o}}]),r}();return t(document).on(l.CLICK_DATA_API,f.DATA_SLIDE,h._dataApiClickHandler),t(window).on(l.LOAD_DATA_API,function(){t(f.DATA_RIDE).each(function(){var e=t(this);h._jQueryInterface.call(e,e.data())})}),t.fn[e]=h._jQueryInterface,t.fn[e].Constructor=h,t.fn[e].noConflict=function(){return t.fn[e]=r,h._jQueryInterface},h}(e),tt=function(t){var e="collapse",n="bs.collapse",i=t.fn[e],r={toggle:!0,parent:""},o={toggle:"boolean",parent:"(string|element)"},s={SHOW:"show.bs.collapse",SHOWN:"shown.bs.collapse",HIDE:"hide.bs.collapse",HIDDEN:"hidden.bs.collapse",CLICK_DATA_API:"click.bs.collapse.data-api"},a={SHOW:"show",COLLAPSE:"collapse",COLLAPSING:"collapsing",COLLAPSED:"collapsed"},l={WIDTH:"width",HEIGHT:"height"},c={ACTIVES:".show, .collapsing",DATA_TOGGLE:'[data-toggle="collapse"]'},f=function(){function i(e,n){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(n),this._triggerArray=t.makeArray(t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var i=t(c.DATA_TOGGLE),r=0;r<i.length;r++){var o=i[r],s=X.getSelectorFromElement(o);null!==s&&t(s).filter(e).length>0&&this._triggerArray.push(o)}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var f=i.prototype;return f.toggle=function(){t(this._element).hasClass(a.SHOW)?this.hide():this.show()},f.show=function(){var e=this;if(!this._isTransitioning&&!t(this._element).hasClass(a.SHOW)){var r,o;if(this._parent&&((r=t.makeArray(t(this._parent).children().children(c.ACTIVES))).length||(r=null)),!(r&&(o=t(r).data(n))&&o._isTransitioning)){var l=t.Event(s.SHOW);if(t(this._element).trigger(l),!l.isDefaultPrevented()){r&&(i._jQueryInterface.call(t(r),"hide"),o||t(r).data(n,null));var f=this._getDimension();t(this._element).removeClass(a.COLLAPSE).addClass(a.COLLAPSING),this._element.style[f]=0,this._triggerArray.length&&t(this._triggerArray).removeClass(a.COLLAPSED).attr("aria-expanded",!0),this.setTransitioning(!0);var h=function(){t(e._element).removeClass(a.COLLAPSING).addClass(a.COLLAPSE).addClass(a.SHOW),e._element.style[f]="",e.setTransitioning(!1),t(e._element).trigger(s.SHOWN)};if(X.supportsTransitionEnd()){var u="scroll"+(f[0].toUpperCase()+f.slice(1));t(this._element).one(X.TRANSITION_END,h).emulateTransitionEnd(600),this._element.style[f]=this._element[u]+"px"}else h()}}}},f.hide=function(){var e=this;if(!this._isTransitioning&&t(this._element).hasClass(a.SHOW)){var n=t.Event(s.HIDE);if(t(this._element).trigger(n),!n.isDefaultPrevented()){var i=this._getDimension();if(this._element.style[i]=this._element.getBoundingClientRect()[i]+"px",X.reflow(this._element),t(this._element).addClass(a.COLLAPSING).removeClass(a.COLLAPSE).removeClass(a.SHOW),this._triggerArray.length)for(var r=0;r<this._triggerArray.length;r++){var o=this._triggerArray[r],l=X.getSelectorFromElement(o);null!==l&&(t(l).hasClass(a.SHOW)||t(o).addClass(a.COLLAPSED).attr("aria-expanded",!1))}this.setTransitioning(!0);var c=function(){e.setTransitioning(!1),t(e._element).removeClass(a.COLLAPSING).addClass(a.COLLAPSE).trigger(s.HIDDEN)};this._element.style[i]="",X.supportsTransitionEnd()?t(this._element).one(X.TRANSITION_END,c).emulateTransitionEnd(600):c()}}},f.setTransitioning=function(t){this._isTransitioning=t},f.dispose=function(){t.removeData(this._element,n),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},f._getConfig=function(n){return n=t.extend({},r,n),n.toggle=Boolean(n.toggle),X.typeCheckConfig(e,n,o),n},f._getDimension=function(){return t(this._element).hasClass(l.WIDTH)?l.WIDTH:l.HEIGHT},f._getParent=function(){var e=this,n=null;X.isElement(this._config.parent)?(n=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(n=this._config.parent[0])):n=t(this._config.parent)[0];var r='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]';return t(n).find(r).each(function(t,n){e._addAriaAndCollapsedClass(i._getTargetFromElement(n),[n])}),n},f._addAriaAndCollapsedClass=function(e,n){if(e){var i=t(e).hasClass(a.SHOW);n.length&&t(n).toggleClass(a.COLLAPSED,!i).attr("aria-expanded",i)}},i._getTargetFromElement=function(e){var n=X.getSelectorFromElement(e);return n?t(n)[0]:null},i._jQueryInterface=function(e){return this.each(function(){var o=t(this),s=o.data(n),a=t.extend({},r,o.data(),"object"==typeof e&&e);if(!s&&a.toggle&&/show|hide/.test(e)&&(a.toggle=!1),s||(s=new i(this,a),o.data(n,s)),"string"==typeof e){if("undefined"==typeof s[e])throw new Error('No method named "'+e+'"');s[e]()}})},q(i,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return r}}]),i}();return t(document).on(s.CLICK_DATA_API,c.DATA_TOGGLE,function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var i=t(this),r=X.getSelectorFromElement(this);t(r).each(function(){var e=t(this),r=e.data(n)?"toggle":i.data();f._jQueryInterface.call(e,r)})}),t.fn[e]=f._jQueryInterface,t.fn[e].Constructor=f,t.fn[e].noConflict=function(){return t.fn[e]=i,f._jQueryInterface},f}(e),et=["native code","[object MutationObserverConstructor]"],nt="undefined"!=typeof window,it=["Edge","Trident","Firefox"],rt=0,ot=0;ot<it.length;ot+=1)if(nt&&navigator.userAgent.indexOf(it[ot])>=0){rt=1;break}var st=nt&&function(t){return et.some(function(e){return(t||"").toString().indexOf(e)>-1})}(window.MutationObserver)?function(t){var e=!1,n=0,i=document.createElement("span");return new MutationObserver(function(){t(),e=!1}).observe(i,{attributes:!0}),function(){e||(e=!0,i.setAttribute("x-index",n),n+=1)}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout(function(){e=!1,t()},rt))}},at=void 0,lt=function(){return void 0===at&&(at=-1!==navigator.appVersion.indexOf("MSIE 10")),at},ct=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},ft=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),ht=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t},ut=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t},dt=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],pt=dt.slice(3),gt={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"},mt={placement:"bottom",eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,n=e.split("-")[0],i=e.split("-")[1];if(i){var r=t.offsets,o=r.reference,s=r.popper,a=-1!==["bottom","top"].indexOf(n),l=a?"left":"top",c=a?"width":"height",f={start:ht({},l,o[l]),end:ht({},l,o[l]+o[c]-s[c])};t.offsets.popper=ut({},s,f[i])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var n=e.offset,i=t.placement,r=t.offsets,o=r.popper,s=r.reference,a=i.split("-")[0],l=void 0;return l=V(+n)?[+n,0]:Y(n,o,s,a),"left"===a?(o.top+=l[0],o.left-=l[1]):"right"===a?(o.top+=l[0],o.left+=l[1]):"top"===a?(o.left+=l[0],o.top-=l[1]):"bottom"===a&&(o.left+=l[0],o.top+=l[1]),t.popper=o,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var n=e.boundariesElement||a(t.instance.popper);t.instance.reference===n&&(n=a(n));var i=b(t.instance.popper,t.instance.reference,e.padding,n);e.boundaries=i;var r=e.priority,o=t.offsets.popper,s={primary:function(t){var n=o[t];return o[t]<i[t]&&!e.escapeWithReference&&(n=Math.max(o[t],i[t])),ht({},t,n)},secondary:function(t){var n="right"===t?"left":"top",r=o[n];return o[t]>i[t]&&!e.escapeWithReference&&(r=Math.min(o[n],i[t]-("right"===t?o.width:o.height))),ht({},n,r)}};return r.forEach(function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";o=ut({},o,s[e](t))}),t.offsets.popper=o,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,n=e.popper,i=e.reference,r=t.placement.split("-")[0],o=Math.floor,s=-1!==["top","bottom"].indexOf(r),a=s?"right":"bottom",l=s?"left":"top",c=s?"width":"height";return n[a]<o(i[l])&&(t.offsets.popper[l]=o(i[l])-n[c]),n[l]>o(i[a])&&(t.offsets.popper[l]=o(i[a])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){if(!B(t.instance.modifiers,"arrow","keepTogether"))return t;var n=e.element;if("string"==typeof n){if(!(n=t.instance.popper.querySelector(n)))return t}else if(!t.instance.popper.contains(n))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var i=t.placement.split("-")[0],o=t.offsets,s=o.popper,a=o.reference,l=-1!==["left","right"].indexOf(i),c=l?"height":"width",f=l?"Top":"Left",h=f.toLowerCase(),u=l?"left":"top",d=l?"bottom":"right",p=O(n)[c];a[d]-p<s[h]&&(t.offsets.popper[h]-=s[h]-(a[d]-p)),a[h]+p>s[d]&&(t.offsets.popper[h]+=a[h]+p-s[d]);var g=a[h]+a[c]/2-p/2,_=r(t.instance.popper,"margin"+f).replace("px",""),v=g-m(t.offsets.popper)[h]-_;return v=Math.max(Math.min(s[c]-p,v),0),t.arrowElement=n,t.offsets.arrow={},t.offsets.arrow[h]=Math.round(v),t.offsets.arrow[u]="",t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,e){if(P(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var n=b(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement),i=t.placement.split("-")[0],r=y(i),o=t.placement.split("-")[1]||"",s=[];switch(e.behavior){case gt.FLIP:s=[i,r];break;case gt.CLOCKWISE:s=K(i);break;case gt.COUNTERCLOCKWISE:s=K(i,!0);break;default:s=e.behavior}return s.forEach(function(a,l){if(i!==a||s.length===l+1)return t;i=t.placement.split("-")[0],r=y(i);var c=t.offsets.popper,f=t.offsets.reference,h=Math.floor,u="left"===i&&h(c.right)>h(f.left)||"right"===i&&h(c.left)<h(f.right)||"top"===i&&h(c.bottom)>h(f.top)||"bottom"===i&&h(c.top)<h(f.bottom),d=h(c.left)<h(n.left),p=h(c.right)>h(n.right),g=h(c.top)<h(n.top),m=h(c.bottom)>h(n.bottom),_="left"===i&&d||"right"===i&&p||"top"===i&&g||"bottom"===i&&m,v=-1!==["top","bottom"].indexOf(i),E=!!e.flipVariations&&(v&&"start"===o&&d||v&&"end"===o&&p||!v&&"start"===o&&g||!v&&"end"===o&&m);(u||_||E)&&(t.flipped=!0,(u||_)&&(i=s[l+1]),E&&(o=G(o)),t.placement=i+(o?"-"+o:""),t.offsets.popper=ut({},t.offsets.popper,D(t.instance.popper,t.offsets.reference,t.placement)),t=N(t.instance.modifiers,t,"flip"))}),t},behavior:"flip",padding:5,boundariesElement:"viewport"},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,n=e.split("-")[0],i=t.offsets,r=i.popper,o=i.reference,s=-1!==["left","right"].indexOf(n),a=-1===["top","left"].indexOf(n);return r[s?"left":"top"]=o[n]-(a?r[s?"width":"height"]:0),t.placement=y(e),t.offsets.popper=m(r),t}},hide:{order:800,enabled:!0,fn:function(t){if(!B(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,n=S(t.instance.modifiers,function(t){return"preventOverflow"===t.name}).boundaries;if(e.bottom<n.top||e.left>n.right||e.top>n.bottom||e.right<n.left){if(!0===t.hide)return t;t.hide=!0,t.attributes["x-out-of-boundaries"]=""}else{if(!1===t.hide)return t;t.hide=!1,t.attributes["x-out-of-boundaries"]=!1}return t}},computeStyle:{order:850,enabled:!0,fn:function(t,e){var n=e.x,i=e.y,r=t.offsets.popper,o=S(t.instance.modifiers,function(t){return"applyStyle"===t.name}).gpuAcceleration;void 0!==o&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var s=void 0!==o?o:e.gpuAcceleration,l=_(a(t.instance.popper)),c={position:r.position},f={left:Math.floor(r.left),top:Math.floor(r.top),bottom:Math.floor(r.bottom),right:Math.floor(r.right)},h="bottom"===n?"top":"bottom",u="right"===i?"left":"right",d=R("transform"),p=void 0,g=void 0;if(g="bottom"===h?-l.height+f.bottom:f.top,p="right"===u?-l.width+f.right:f.left,s&&d)c[d]="translate3d("+p+"px, "+g+"px, 0)",c[h]=0,c[u]=0,c.willChange="transform";else{var m="bottom"===h?-1:1,v="right"===u?-1:1;c[h]=g*m,c[u]=p*v,c.willChange=h+", "+u}var E={"x-placement":t.placement};return t.attributes=ut({},E,t.attributes),t.styles=ut({},c,t.styles),t.arrowStyles=ut({},t.offsets.arrow,t.arrowStyles),t},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(t){return F(t.instance.popper,t.styles),j(t.instance.popper,t.attributes),t.arrowElement&&Object.keys(t.arrowStyles).length&&F(t.arrowElement,t.arrowStyles),t},onLoad:function(t,e,n,i,r){var o=I(r,e,t),s=A(n.placement,o,e,t,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return e.setAttribute("x-placement",s),F(e,{position:"absolute"}),n},gpuAcceleration:void 0}}},_t=function(){function t(e,n){var r=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};ct(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=st(this.update.bind(this)),this.options=ut({},t.Defaults,o),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e.jquery?e[0]:e,this.popper=n.jquery?n[0]:n,this.options.modifiers={},Object.keys(ut({},t.Defaults.modifiers,o.modifiers)).forEach(function(e){r.options.modifiers[e]=ut({},t.Defaults.modifiers[e]||{},o.modifiers?o.modifiers[e]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(t){return ut({name:t},r.options.modifiers[t])}).sort(function(t,e){return t.order-e.order}),this.modifiers.forEach(function(t){t.enabled&&i(t.onLoad)&&t.onLoad(r.reference,r.popper,r.options,t,r.state)}),this.update();var s=this.options.eventsEnabled;s&&this.enableEventListeners(),this.state.eventsEnabled=s}return ft(t,[{key:"update",value:function(){return L.call(this)}},{key:"destroy",value:function(){return H.call(this)}},{key:"enableEventListeners",value:function(){return x.call(this)}},{key:"disableEventListeners",value:function(){return U.call(this)}}]),t}();_t.Utils=("undefined"!=typeof window?window:global).PopperUtils,_t.placements=dt,_t.Defaults=mt;var vt=function(t){if("undefined"==typeof _t)throw new Error("Bootstrap dropdown require Popper.js (https://popper.js.org)");var e="dropdown",n="bs.dropdown",i="."+n,r=t.fn[e],o=new RegExp("38|40|27"),s={HIDE:"hide"+i,HIDDEN:"hidden"+i,SHOW:"show"+i,SHOWN:"shown"+i,CLICK:"click"+i,CLICK_DATA_API:"click.bs.dropdown.data-api",KEYDOWN_DATA_API:"keydown.bs.dropdown.data-api",KEYUP_DATA_API:"keyup.bs.dropdown.data-api"},a={DISABLED:"disabled",SHOW:"show",DROPUP:"dropup",MENURIGHT:"dropdown-menu-right",MENULEFT:"dropdown-menu-left"},l={DATA_TOGGLE:'[data-toggle="dropdown"]',FORM_CHILD:".dropdown form",MENU:".dropdown-menu",NAVBAR_NAV:".navbar-nav",VISIBLE_ITEMS:".dropdown-menu .dropdown-item:not(.disabled)"},c={TOP:"top-start",TOPEND:"top-end",BOTTOM:"bottom-start",BOTTOMEND:"bottom-end"},f={offset:0,flip:!0},h={offset:"(number|string|function)",flip:"boolean"},u=function(){function r(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var u=r.prototype;return u.toggle=function(){if(!this._element.disabled&&!t(this._element).hasClass(a.DISABLED)){var e=r._getParentFromElement(this._element),n=t(this._menu).hasClass(a.SHOW);if(r._clearMenus(),!n){var i={relatedTarget:this._element},o=t.Event(s.SHOW,i);if(t(e).trigger(o),!o.isDefaultPrevented()){var c=this._element;t(e).hasClass(a.DROPUP)&&(t(this._menu).hasClass(a.MENULEFT)||t(this._menu).hasClass(a.MENURIGHT))&&(c=e),this._popper=new _t(c,this._menu,this._getPopperConfig()),"ontouchstart"in document.documentElement&&!t(e).closest(l.NAVBAR_NAV).length&&t("body").children().on("mouseover",null,t.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),t(this._menu).toggleClass(a.SHOW),t(e).toggleClass(a.SHOW).trigger(t.Event(s.SHOWN,i))}}}},u.dispose=function(){t.removeData(this._element,n),t(this._element).off(i),this._element=null,this._menu=null,null!==this._popper&&this._popper.destroy(),this._popper=null},u.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},u._addEventListeners=function(){var e=this;t(this._element).on(s.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},u._getConfig=function(n){return n=t.extend({},this.constructor.Default,t(this._element).data(),n),X.typeCheckConfig(e,n,this.constructor.DefaultType),n},u._getMenuElement=function(){if(!this._menu){var e=r._getParentFromElement(this._element);this._menu=t(e).find(l.MENU)[0]}return this._menu},u._getPlacement=function(){var e=t(this._element).parent(),n=c.BOTTOM;return e.hasClass(a.DROPUP)?(n=c.TOP,t(this._menu).hasClass(a.MENURIGHT)&&(n=c.TOPEND)):t(this._menu).hasClass(a.MENURIGHT)&&(n=c.BOTTOMEND),n},u._detectNavbar=function(){return t(this._element).closest(".navbar").length>0},u._getPopperConfig=function(){var e=this,n={};"function"==typeof this._config.offset?n.fn=function(n){return n.offsets=t.extend({},n.offsets,e._config.offset(n.offsets)||{}),n}:n.offset=this._config.offset;var i={placement:this._getPlacement(),modifiers:{offset:n,flip:{enabled:this._config.flip}}};return this._inNavbar&&(i.modifiers.applyStyle={enabled:!this._inNavbar}),i},r._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n),o="object"==typeof e?e:null;if(i||(i=new r(this,o),t(this).data(n,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new Error('No method named "'+e+'"');i[e]()}})},r._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var i=t.makeArray(t(l.DATA_TOGGLE)),o=0;o<i.length;o++){var c=r._getParentFromElement(i[o]),f=t(i[o]).data(n),h={relatedTarget:i[o]};if(f){var u=f._menu;if(t(c).hasClass(a.SHOW)&&!(e&&("click"===e.type&&/input|textarea/i.test(e.target.tagName)||"keyup"===e.type&&9===e.which)&&t.contains(c,e.target))){var d=t.Event(s.HIDE,h);t(c).trigger(d),d.isDefaultPrevented()||("ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),i[o].setAttribute("aria-expanded","false"),t(u).removeClass(a.SHOW),t(c).removeClass(a.SHOW).trigger(t.Event(s.HIDDEN,h)))}}}},r._getParentFromElement=function(e){var n,i=X.getSelectorFromElement(e);return i&&(n=t(i)[0]),n||e.parentNode},r._dataApiKeydownHandler=function(e){if(!(!o.test(e.which)||/button/i.test(e.target.tagName)&&32===e.which||/input|textarea/i.test(e.target.tagName)||(e.preventDefault(),e.stopPropagation(),this.disabled||t(this).hasClass(a.DISABLED)))){var n=r._getParentFromElement(this),i=t(n).hasClass(a.SHOW);if((i||27===e.which&&32===e.which)&&(!i||27!==e.which&&32!==e.which)){var s=t(n).find(l.VISIBLE_ITEMS).get();if(s.length){var c=s.indexOf(e.target);38===e.which&&c>0&&c--,40===e.which&&c<s.length-1&&c++,c<0&&(c=0),s[c].focus()}}else{if(27===e.which){var f=t(n).find(l.DATA_TOGGLE)[0];t(f).trigger("focus")}t(this).trigger("click")}}},q(r,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return f}},{key:"DefaultType",get:function(){return h}}]),r}();return t(document).on(s.KEYDOWN_DATA_API,l.DATA_TOGGLE,u._dataApiKeydownHandler).on(s.KEYDOWN_DATA_API,l.MENU,u._dataApiKeydownHandler).on(s.CLICK_DATA_API+" "+s.KEYUP_DATA_API,u._clearMenus).on(s.CLICK_DATA_API,l.DATA_TOGGLE,function(e){e.preventDefault(),e.stopPropagation(),u._jQueryInterface.call(t(this),"toggle")}).on(s.CLICK_DATA_API,l.FORM_CHILD,function(t){t.stopPropagation()}),t.fn[e]=u._jQueryInterface,t.fn[e].Constructor=u,t.fn[e].noConflict=function(){return t.fn[e]=r,u._jQueryInterface},u}(e),Et=function(t){var e="modal",n=".bs.modal",i=t.fn[e],r={backdrop:!0,keyboard:!0,focus:!0,show:!0},o={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},s={HIDE:"hide.bs.modal",HIDDEN:"hidden.bs.modal",SHOW:"show.bs.modal",SHOWN:"shown.bs.modal",FOCUSIN:"focusin.bs.modal",RESIZE:"resize.bs.modal",CLICK_DISMISS:"click.dismiss.bs.modal",KEYDOWN_DISMISS:"keydown.dismiss.bs.modal",MOUSEUP_DISMISS:"mouseup.dismiss.bs.modal",MOUSEDOWN_DISMISS:"mousedown.dismiss.bs.modal",CLICK_DATA_API:"click.bs.modal.data-api"},a={SCROLLBAR_MEASURER:"modal-scrollbar-measure",BACKDROP:"modal-backdrop",OPEN:"modal-open",FADE:"fade",SHOW:"show"},l={DIALOG:".modal-dialog",DATA_TOGGLE:'[data-toggle="modal"]',DATA_DISMISS:'[data-dismiss="modal"]',FIXED_CONTENT:".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",STICKY_CONTENT:".sticky-top",NAVBAR_TOGGLER:".navbar-toggler"},c=function(){function i(e,n){this._config=this._getConfig(n),this._element=e,this._dialog=t(e).find(l.DIALOG)[0],this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._originalBodyPadding=0,this._scrollbarWidth=0}var c=i.prototype;return c.toggle=function(t){return this._isShown?this.hide():this.show(t)},c.show=function(e){var n=this;if(!this._isTransitioning&&!this._isShown){X.supportsTransitionEnd()&&t(this._element).hasClass(a.FADE)&&(this._isTransitioning=!0);var i=t.Event(s.SHOW,{relatedTarget:e});t(this._element).trigger(i),this._isShown||i.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),t(document.body).addClass(a.OPEN),this._setEscapeEvent(),this._setResizeEvent(),t(this._element).on(s.CLICK_DISMISS,l.DATA_DISMISS,function(t){return n.hide(t)}),t(this._dialog).on(s.MOUSEDOWN_DISMISS,function(){t(n._element).one(s.MOUSEUP_DISMISS,function(e){t(e.target).is(n._element)&&(n._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return n._showElement(e)}))}},c.hide=function(e){var n=this;if(e&&e.preventDefault(),!this._isTransitioning&&this._isShown){var i=t.Event(s.HIDE);if(t(this._element).trigger(i),this._isShown&&!i.isDefaultPrevented()){this._isShown=!1;var r=X.supportsTransitionEnd()&&t(this._element).hasClass(a.FADE);r&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),t(document).off(s.FOCUSIN),t(this._element).removeClass(a.SHOW),t(this._element).off(s.CLICK_DISMISS),t(this._dialog).off(s.MOUSEDOWN_DISMISS),r?t(this._element).one(X.TRANSITION_END,function(t){return n._hideModal(t)}).emulateTransitionEnd(300):this._hideModal()}}},c.dispose=function(){t.removeData(this._element,"bs.modal"),t(window,document,this._element,this._backdrop).off(n),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._scrollbarWidth=null},c.handleUpdate=function(){this._adjustDialog()},c._getConfig=function(n){return n=t.extend({},r,n),X.typeCheckConfig(e,n,o),n},c._showElement=function(e){var n=this,i=X.supportsTransitionEnd()&&t(this._element).hasClass(a.FADE);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.scrollTop=0,i&&X.reflow(this._element),t(this._element).addClass(a.SHOW),this._config.focus&&this._enforceFocus();var r=t.Event(s.SHOWN,{relatedTarget:e}),o=function(){n._config.focus&&n._element.focus(),n._isTransitioning=!1,t(n._element).trigger(r)};i?t(this._dialog).one(X.TRANSITION_END,o).emulateTransitionEnd(300):o()},c._enforceFocus=function(){var e=this;t(document).off(s.FOCUSIN).on(s.FOCUSIN,function(n){document===n.target||e._element===n.target||t(e._element).has(n.target).length||e._element.focus()})},c._setEscapeEvent=function(){var e=this;this._isShown&&this._config.keyboard?t(this._element).on(s.KEYDOWN_DISMISS,function(t){27===t.which&&(t.preventDefault(),e.hide())}):this._isShown||t(this._element).off(s.KEYDOWN_DISMISS)},c._setResizeEvent=function(){var e=this;this._isShown?t(window).on(s.RESIZE,function(t){return e.handleUpdate(t)}):t(window).off(s.RESIZE)},c._hideModal=function(){var e=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._isTransitioning=!1,this._showBackdrop(function(){t(document.body).removeClass(a.OPEN),e._resetAdjustments(),e._resetScrollbar(),t(e._element).trigger(s.HIDDEN)})},c._removeBackdrop=function(){this._backdrop&&(t(this._backdrop).remove(),this._backdrop=null)},c._showBackdrop=function(e){var n=this,i=t(this._element).hasClass(a.FADE)?a.FADE:"";if(this._isShown&&this._config.backdrop){var r=X.supportsTransitionEnd()&&i;if(this._backdrop=document.createElement("div"),this._backdrop.className=a.BACKDROP,i&&t(this._backdrop).addClass(i),t(this._backdrop).appendTo(document.body),t(this._element).on(s.CLICK_DISMISS,function(t){n._ignoreBackdropClick?n._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===n._config.backdrop?n._element.focus():n.hide())}),r&&X.reflow(this._backdrop),t(this._backdrop).addClass(a.SHOW),!e)return;if(!r)return void e();t(this._backdrop).one(X.TRANSITION_END,e).emulateTransitionEnd(150)}else if(!this._isShown&&this._backdrop){t(this._backdrop).removeClass(a.SHOW);var o=function(){n._removeBackdrop(),e&&e()};X.supportsTransitionEnd()&&t(this._element).hasClass(a.FADE)?t(this._backdrop).one(X.TRANSITION_END,o).emulateTransitionEnd(150):o()}else e&&e()},c._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},c._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},c._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},c._setScrollbar=function(){var e=this;if(this._isBodyOverflowing){t(l.FIXED_CONTENT).each(function(n,i){var r=t(i)[0].style.paddingRight,o=t(i).css("padding-right");t(i).data("padding-right",r).css("padding-right",parseFloat(o)+e._scrollbarWidth+"px")}),t(l.STICKY_CONTENT).each(function(n,i){var r=t(i)[0].style.marginRight,o=t(i).css("margin-right");t(i).data("margin-right",r).css("margin-right",parseFloat(o)-e._scrollbarWidth+"px")}),t(l.NAVBAR_TOGGLER).each(function(n,i){var r=t(i)[0].style.marginRight,o=t(i).css("margin-right");t(i).data("margin-right",r).css("margin-right",parseFloat(o)+e._scrollbarWidth+"px")});var n=document.body.style.paddingRight,i=t("body").css("padding-right");t("body").data("padding-right",n).css("padding-right",parseFloat(i)+this._scrollbarWidth+"px")}},c._resetScrollbar=function(){t(l.FIXED_CONTENT).each(function(e,n){var i=t(n).data("padding-right");"undefined"!=typeof i&&t(n).css("padding-right",i).removeData("padding-right")}),t(l.STICKY_CONTENT+", "+l.NAVBAR_TOGGLER).each(function(e,n){var i=t(n).data("margin-right");"undefined"!=typeof i&&t(n).css("margin-right",i).removeData("margin-right")});var e=t("body").data("padding-right");"undefined"!=typeof e&&t("body").css("padding-right",e).removeData("padding-right")},c._getScrollbarWidth=function(){var t=document.createElement("div");t.className=a.SCROLLBAR_MEASURER,document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},i._jQueryInterface=function(e,n){return this.each(function(){var r=t(this).data("bs.modal"),o=t.extend({},i.Default,t(this).data(),"object"==typeof e&&e);if(r||(r=new i(this,o),t(this).data("bs.modal",r)),"string"==typeof e){if("undefined"==typeof r[e])throw new Error('No method named "'+e+'"');r[e](n)}else o.show&&r.show(n)})},q(i,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return r}}]),i}();return t(document).on(s.CLICK_DATA_API,l.DATA_TOGGLE,function(e){var n,i=this,r=X.getSelectorFromElement(this);r&&(n=t(r)[0]);var o=t(n).data("bs.modal")?"toggle":t.extend({},t(n).data(),t(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||e.preventDefault();var a=t(n).one(s.SHOW,function(e){e.isDefaultPrevented()||a.one(s.HIDDEN,function(){t(i).is(":visible")&&i.focus()})});c._jQueryInterface.call(t(n),o,this)}),t.fn[e]=c._jQueryInterface,t.fn[e].Constructor=c,t.fn[e].noConflict=function(){return t.fn[e]=i,c._jQueryInterface},c}(e),Tt=function(t){if("undefined"==typeof _t)throw new Error("Bootstrap tooltips require Popper.js (https://popper.js.org)");var e="tooltip",n=".bs.tooltip",i=t.fn[e],r=new RegExp("(^|\\s)bs-tooltip\\S+","g"),o={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)"},s={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},a={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip"},l={SHOW:"show",OUT:"out"},c={HIDE:"hide"+n,HIDDEN:"hidden"+n,SHOW:"show"+n,SHOWN:"shown"+n,INSERTED:"inserted"+n,CLICK:"click"+n,FOCUSIN:"focusin"+n,FOCUSOUT:"focusout"+n,MOUSEENTER:"mouseenter"+n,MOUSELEAVE:"mouseleave"+n},f={FADE:"fade",SHOW:"show"},h={TOOLTIP:".tooltip",TOOLTIP_INNER:".tooltip-inner",ARROW:".arrow"},u={HOVER:"hover",FOCUS:"focus",CLICK:"click",MANUAL:"manual"},d=function(){function i(t,e){this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var d=i.prototype;return d.enable=function(){this._isEnabled=!0},d.disable=function(){this._isEnabled=!1},d.toggleEnabled=function(){this._isEnabled=!this._isEnabled},d.toggle=function(e){if(this._isEnabled)if(e){var n=this.constructor.DATA_KEY,i=t(e.currentTarget).data(n);i||(i=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(t(this.getTipElement()).hasClass(f.SHOW))return void this._leave(null,this);this._enter(null,this)}},d.dispose=function(){clearTimeout(this._timeout),t.removeData(this.element,this.constructor.DATA_KEY),t(this.element).off(this.constructor.EVENT_KEY),t(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&t(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,null!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},d.show=function(){var e=this;if("none"===t(this.element).css("display"))throw new Error("Please use show on visible elements");var n=t.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){t(this.element).trigger(n);var r=t.contains(this.element.ownerDocument.documentElement,this.element);if(n.isDefaultPrevented()||!r)return;var o=this.getTipElement(),s=X.getUID(this.constructor.NAME);o.setAttribute("id",s),this.element.setAttribute("aria-describedby",s),this.setContent(),this.config.animation&&t(o).addClass(f.FADE);var a="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,c=this._getAttachment(a);this.addAttachmentClass(c);var u=!1===this.config.container?document.body:t(this.config.container);t(o).data(this.constructor.DATA_KEY,this),t.contains(this.element.ownerDocument.documentElement,this.tip)||t(o).appendTo(u),t(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new _t(this.element,o,{placement:c,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:h.ARROW}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),t(o).addClass(f.SHOW),"ontouchstart"in document.documentElement&&t("body").children().on("mouseover",null,t.noop);var d=function(){e.config.animation&&e._fixTransition();var n=e._hoverState;e._hoverState=null,t(e.element).trigger(e.constructor.Event.SHOWN),n===l.OUT&&e._leave(null,e)};X.supportsTransitionEnd()&&t(this.tip).hasClass(f.FADE)?t(this.tip).one(X.TRANSITION_END,d).emulateTransitionEnd(i._TRANSITION_DURATION):d()}},d.hide=function(e){var n=this,i=this.getTipElement(),r=t.Event(this.constructor.Event.HIDE),o=function(){n._hoverState!==l.SHOW&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),t(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),e&&e()};t(this.element).trigger(r),r.isDefaultPrevented()||(t(i).removeClass(f.SHOW),"ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),this._activeTrigger[u.CLICK]=!1,this._activeTrigger[u.FOCUS]=!1,this._activeTrigger[u.HOVER]=!1,X.supportsTransitionEnd()&&t(this.tip).hasClass(f.FADE)?t(i).one(X.TRANSITION_END,o).emulateTransitionEnd(150):o(),this._hoverState="")},d.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},d.isWithContent=function(){return Boolean(this.getTitle())},d.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-tooltip-"+e)},d.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},d.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(h.TOOLTIP_INNER),this.getTitle()),e.removeClass(f.FADE+" "+f.SHOW)},d.setElementContent=function(e,n){var i=this.config.html;"object"==typeof n&&(n.nodeType||n.jquery)?i?t(n).parent().is(e)||e.empty().append(n):e.text(t(n).text()):e[i?"html":"text"](n)},d.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},d._getAttachment=function(t){return s[t.toUpperCase()]},d._setListeners=function(){var e=this;this.config.trigger.split(" ").forEach(function(n){if("click"===n)t(e.element).on(e.constructor.Event.CLICK,e.config.selector,function(t){return e.toggle(t)});else if(n!==u.MANUAL){var i=n===u.HOVER?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,r=n===u.HOVER?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;t(e.element).on(i,e.config.selector,function(t){return e._enter(t)}).on(r,e.config.selector,function(t){return e._leave(t)})}t(e.element).closest(".modal").on("hide.bs.modal",function(){return e.hide()})}),this.config.selector?this.config=t.extend({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},d._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},d._enter=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusin"===e.type?u.FOCUS:u.HOVER]=!0),t(n.getTipElement()).hasClass(f.SHOW)||n._hoverState===l.SHOW?n._hoverState=l.SHOW:(clearTimeout(n._timeout),n._hoverState=l.SHOW,n.config.delay&&n.config.delay.show?n._timeout=setTimeout(function(){n._hoverState===l.SHOW&&n.show()},n.config.delay.show):n.show())},d._leave=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusout"===e.type?u.FOCUS:u.HOVER]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState=l.OUT,n.config.delay&&n.config.delay.hide?n._timeout=setTimeout(function(){n._hoverState===l.OUT&&n.hide()},n.config.delay.hide):n.hide())},d._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},d._getConfig=function(n){return"number"==typeof(n=t.extend({},this.constructor.Default,t(this.element).data(),n)).delay&&(n.delay={show:n.delay,hide:n.delay}),"number"==typeof n.title&&(n.title=n.title.toString()),"number"==typeof n.content&&(n.content=n.content.toString()),X.typeCheckConfig(e,n,this.constructor.DefaultType),n},d._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},d._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(r);null!==n&&n.length>0&&e.removeClass(n.join(""))},d._handlePopperPlacementChange=function(t){this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},d._fixTransition=function(){var e=this.getTipElement(),n=this.config.animation;null===e.getAttribute("x-placement")&&(t(e).removeClass(f.FADE),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},i._jQueryInterface=function(e){return this.each(function(){var n=t(this).data("bs.tooltip"),r="object"==typeof e&&e;if((n||!/dispose|hide/.test(e))&&(n||(n=new i(this,r),t(this).data("bs.tooltip",n)),"string"==typeof e)){if("undefined"==typeof n[e])throw new Error('No method named "'+e+'"');n[e]()}})},q(i,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return a}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return c}},{key:"EVENT_KEY",get:function(){return n}},{key:"DefaultType",get:function(){return o}}]),i}();return t.fn[e]=d._jQueryInterface,t.fn[e].Constructor=d,t.fn[e].noConflict=function(){return t.fn[e]=i,d._jQueryInterface},d}(e),bt=function(t){var e="popover",n=".bs.popover",i=t.fn[e],r=new RegExp("(^|\\s)bs-popover\\S+","g"),o=t.extend({},Tt.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),s=t.extend({},Tt.DefaultType,{content:"(string|element|function)"}),a={FADE:"fade",SHOW:"show"},l={TITLE:".popover-header",CONTENT:".popover-body"},c={HIDE:"hide"+n,HIDDEN:"hidden"+n,SHOW:"show"+n,SHOWN:"shown"+n,INSERTED:"inserted"+n,CLICK:"click"+n,FOCUSIN:"focusin"+n,FOCUSOUT:"focusout"+n,MOUSEENTER:"mouseenter"+n,MOUSELEAVE:"mouseleave"+n},f=function(i){function f(){return i.apply(this,arguments)||this}z(f,i);var h=f.prototype;return h.isWithContent=function(){return this.getTitle()||this._getContent()},h.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-popover-"+e)},h.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},h.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(l.TITLE),this.getTitle()),this.setElementContent(e.find(l.CONTENT),this._getContent()),e.removeClass(a.FADE+" "+a.SHOW)},h._getContent=function(){return this.element.getAttribute("data-content")||("function"==typeof this.config.content?this.config.content.call(this.element):this.config.content)},h._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(r);null!==n&&n.length>0&&e.removeClass(n.join(""))},f._jQueryInterface=function(e){return this.each(function(){var n=t(this).data("bs.popover"),i="object"==typeof e?e:null;if((n||!/destroy|hide/.test(e))&&(n||(n=new f(this,i),t(this).data("bs.popover",n)),"string"==typeof e)){if("undefined"==typeof n[e])throw new Error('No method named "'+e+'"');n[e]()}})},q(f,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return o}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return c}},{key:"EVENT_KEY",get:function(){return n}},{key:"DefaultType",get:function(){return s}}]),f}(Tt);return t.fn[e]=f._jQueryInterface,t.fn[e].Constructor=f,t.fn[e].noConflict=function(){return t.fn[e]=i,f._jQueryInterface},f}(e),Ct=function(t){var e="scrollspy",n=t.fn[e],i={offset:10,method:"auto",target:""},r={offset:"number",method:"string",target:"(string|element)"},o={ACTIVATE:"activate.bs.scrollspy",SCROLL:"scroll.bs.scrollspy",LOAD_DATA_API:"load.bs.scrollspy.data-api"},s={DROPDOWN_ITEM:"dropdown-item",DROPDOWN_MENU:"dropdown-menu",ACTIVE:"active"},a={DATA_SPY:'[data-spy="scroll"]',ACTIVE:".active",NAV_LIST_GROUP:".nav, .list-group",NAV_LINKS:".nav-link",NAV_ITEMS:".nav-item",LIST_ITEMS:".list-group-item",DROPDOWN:".dropdown",DROPDOWN_ITEMS:".dropdown-item",DROPDOWN_TOGGLE:".dropdown-toggle"},l={OFFSET:"offset",POSITION:"position"},c=function(){function n(e,n){var i=this;this._element=e,this._scrollElement="BODY"===e.tagName?window:e,this._config=this._getConfig(n),this._selector=this._config.target+" "+a.NAV_LINKS+","+this._config.target+" "+a.LIST_ITEMS+","+this._config.target+" "+a.DROPDOWN_ITEMS,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,t(this._scrollElement).on(o.SCROLL,function(t){return i._process(t)}),this.refresh(),this._process()}var c=n.prototype;return c.refresh=function(){var e=this,n=this._scrollElement!==this._scrollElement.window?l.POSITION:l.OFFSET,i="auto"===this._config.method?n:this._config.method,r=i===l.POSITION?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),t.makeArray(t(this._selector)).map(function(e){var n,o=X.getSelectorFromElement(e);if(o&&(n=t(o)[0]),n){var s=n.getBoundingClientRect();if(s.width||s.height)return[t(n)[i]().top+r,o]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},c.dispose=function(){t.removeData(this._element,"bs.scrollspy"),t(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},c._getConfig=function(n){if("string"!=typeof(n=t.extend({},i,n)).target){var o=t(n.target).attr("id");o||(o=X.getUID(e),t(n.target).attr("id",o)),n.target="#"+o}return X.typeCheckConfig(e,n,r),n},c._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},c._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},c._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},c._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(var r=this._offsets.length;r--;)this._activeTarget!==this._targets[r]&&t>=this._offsets[r]&&("undefined"==typeof this._offsets[r+1]||t<this._offsets[r+1])&&this._activate(this._targets[r])}},c._activate=function(e){this._activeTarget=e,this._clear();var n=this._selector.split(",");n=n.map(function(t){return t+'[data-target="'+e+'"],'+t+'[href="'+e+'"]'});var i=t(n.join(","));i.hasClass(s.DROPDOWN_ITEM)?(i.closest(a.DROPDOWN).find(a.DROPDOWN_TOGGLE).addClass(s.ACTIVE),i.addClass(s.ACTIVE)):(i.addClass(s.ACTIVE),i.parents(a.NAV_LIST_GROUP).prev(a.NAV_LINKS+", "+a.LIST_ITEMS).addClass(s.ACTIVE),i.parents(a.NAV_LIST_GROUP).prev(a.NAV_ITEMS).children(a.NAV_LINKS).addClass(s.ACTIVE)),t(this._scrollElement).trigger(o.ACTIVATE,{relatedTarget:e})},c._clear=function(){t(this._selector).filter(a.ACTIVE).removeClass(s.ACTIVE)},n._jQueryInterface=function(e){return this.each(function(){var i=t(this).data("bs.scrollspy"),r="object"==typeof e&&e;if(i||(i=new n(this,r),t(this).data("bs.scrollspy",i)),"string"==typeof e){if("undefined"==typeof i[e])throw new Error('No method named "'+e+'"');i[e]()}})},q(n,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return i}}]),n}();return t(window).on(o.LOAD_DATA_API,function(){for(var e=t.makeArray(t(a.DATA_SPY)),n=e.length;n--;){var i=t(e[n]);c._jQueryInterface.call(i,i.data())}}),t.fn[e]=c._jQueryInterface,t.fn[e].Constructor=c,t.fn[e].noConflict=function(){return t.fn[e]=n,c._jQueryInterface},c}(e),At=function(t){var e=t.fn.tab,n={HIDE:"hide.bs.tab",HIDDEN:"hidden.bs.tab",SHOW:"show.bs.tab",SHOWN:"shown.bs.tab",CLICK_DATA_API:"click.bs.tab.data-api"},i={DROPDOWN_MENU:"dropdown-menu",ACTIVE:"active",DISABLED:"disabled",FADE:"fade",SHOW:"show"},r={DROPDOWN:".dropdown",NAV_LIST_GROUP:".nav, .list-group",ACTIVE:".active",ACTIVE_UL:"> li > .active",DATA_TOGGLE:'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',DROPDOWN_TOGGLE:".dropdown-toggle",DROPDOWN_ACTIVE_CHILD:"> .dropdown-menu .active"},o=function(){function e(t){this._element=t}var o=e.prototype;return o.show=function(){var e=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&t(this._element).hasClass(i.ACTIVE)||t(this._element).hasClass(i.DISABLED))){var o,s,a=t(this._element).closest(r.NAV_LIST_GROUP)[0],l=X.getSelectorFromElement(this._element);if(a){var c="UL"===a.nodeName?r.ACTIVE_UL:r.ACTIVE;s=t.makeArray(t(a).find(c)),s=s[s.length-1]}var f=t.Event(n.HIDE,{relatedTarget:this._element}),h=t.Event(n.SHOW,{relatedTarget:s});if(s&&t(s).trigger(f),t(this._element).trigger(h),!h.isDefaultPrevented()&&!f.isDefaultPrevented()){l&&(o=t(l)[0]),this._activate(this._element,a);var u=function(){var i=t.Event(n.HIDDEN,{relatedTarget:e._element}),r=t.Event(n.SHOWN,{relatedTarget:s});t(s).trigger(i),t(e._element).trigger(r)};o?this._activate(o,o.parentNode,u):u()}}},o.dispose=function(){t.removeData(this._element,"bs.tab"),this._element=null},o._activate=function(e,n,o){var s,a=this,l=(s="UL"===n.nodeName?t(n).find(r.ACTIVE_UL):t(n).children(r.ACTIVE))[0],c=o&&X.supportsTransitionEnd()&&l&&t(l).hasClass(i.FADE),f=function(){return a._transitionComplete(e,l,c,o)};l&&c?t(l).one(X.TRANSITION_END,f).emulateTransitionEnd(150):f(),l&&t(l).removeClass(i.SHOW)},o._transitionComplete=function(e,n,o,s){if(n){t(n).removeClass(i.ACTIVE);var a=t(n.parentNode).find(r.DROPDOWN_ACTIVE_CHILD)[0];a&&t(a).removeClass(i.ACTIVE),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(t(e).addClass(i.ACTIVE),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),o?(X.reflow(e),t(e).addClass(i.SHOW)):t(e).removeClass(i.FADE),e.parentNode&&t(e.parentNode).hasClass(i.DROPDOWN_MENU)){var l=t(e).closest(r.DROPDOWN)[0];l&&t(l).find(r.DROPDOWN_TOGGLE).addClass(i.ACTIVE),e.setAttribute("aria-expanded",!0)}s&&s()},e._jQueryInterface=function(n){return this.each(function(){var i=t(this),r=i.data("bs.tab");if(r||(r=new e(this),i.data("bs.tab",r)),"string"==typeof n){if("undefined"==typeof r[n])throw new Error('No method named "'+n+'"');r[n]()}})},q(e,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}}]),e}();return t(document).on(n.CLICK_DATA_API,r.DATA_TOGGLE,function(e){e.preventDefault(),o._jQueryInterface.call(t(this),"show")}),t.fn.tab=o._jQueryInterface,t.fn.tab.Constructor=o,t.fn.tab.noConflict=function(){return t.fn.tab=e,o._jQueryInterface},o}(e);return function(t){if("undefined"==typeof t)throw new Error("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1===e[0]&&9===e[1]&&e[2]<1||e[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(e),t.Util=X,t.Alert=Z,t.Button=J,t.Carousel=$,t.Collapse=tt,t.Dropdown=vt,t.Modal=Et,t.Popover=bt,t.Scrollspy=Ct,t.Tab=At,t.Tooltip=Tt,t}({},jQuery); +var bootstrap=function(t,e){"use strict";function n(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function i(t){return t&&"[object Function]"==={}.toString.call(t)}function r(t,e){if(1!==t.nodeType)return[];var n=window.getComputedStyle(t,null);return e?n[e]:n}function o(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function s(t){if(!t)return window.document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var e=r(t),n=e.overflow,i=e.overflowX;return/(auto|scroll)/.test(n+e.overflowY+i)?t:s(o(t))}function a(t){var e=t&&t.offsetParent,n=e&&e.nodeName;return n&&"BODY"!==n&&"HTML"!==n?-1!==["TD","TABLE"].indexOf(e.nodeName)&&"static"===r(e,"position")?a(e):e:t?t.ownerDocument.documentElement:window.document.documentElement}function l(t){var e=t.nodeName;return"BODY"!==e&&("HTML"===e||a(t.firstElementChild)===t)}function c(t){return null!==t.parentNode?c(t.parentNode):t}function f(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return window.document.documentElement;var n=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,i=n?t:e,r=n?e:t,o=document.createRange();o.setStart(i,0),o.setEnd(r,0);var s=o.commonAncestorContainer;if(t!==s&&e!==s||i.contains(r))return l(s)?s:a(s);var h=c(t);return h.host?f(h.host,e):f(t,c(e).host)}function h(t){var e="top"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",n=t.nodeName;if("BODY"===n||"HTML"===n){var i=t.ownerDocument.documentElement;return(t.ownerDocument.scrollingElement||i)[e]}return t[e]}function u(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=h(e,"top"),r=h(e,"left"),o=n?-1:1;return t.top+=i*o,t.bottom+=i*o,t.left+=r*o,t.right+=r*o,t}function d(t,e){var n="x"===e?"Left":"Top",i="Left"===n?"Right":"Bottom";return+t["border"+n+"Width"].split("px")[0]+ +t["border"+i+"Width"].split("px")[0]}function p(t,e,n,i){return Math.max(e["offset"+t],e["scroll"+t],n["client"+t],n["offset"+t],n["scroll"+t],lt()?n["offset"+t]+i["margin"+("Height"===t?"Top":"Left")]+i["margin"+("Height"===t?"Bottom":"Right")]:0)}function g(){var t=window.document.body,e=window.document.documentElement,n=lt()&&window.getComputedStyle(e);return{height:p("Height",t,e,n),width:p("Width",t,e,n)}}function m(t){return ut({},t,{right:t.left+t.width,bottom:t.top+t.height})}function _(t){var e={};if(lt())try{e=t.getBoundingClientRect();var n=h(t,"top"),i=h(t,"left");e.top+=n,e.left+=i,e.bottom+=n,e.right+=i}catch(t){}else e=t.getBoundingClientRect();var o={left:e.left,top:e.top,width:e.right-e.left,height:e.bottom-e.top},s="HTML"===t.nodeName?g():{},a=s.width||t.clientWidth||o.right-o.left,l=s.height||t.clientHeight||o.bottom-o.top,c=t.offsetWidth-a,f=t.offsetHeight-l;if(c||f){var u=r(t);c-=d(u,"x"),f-=d(u,"y"),o.width-=c,o.height-=f}return m(o)}function v(t,e){var n=lt(),i="HTML"===e.nodeName,o=_(t),a=_(e),l=s(t),c=r(e),f=+c.borderTopWidth.split("px")[0],h=+c.borderLeftWidth.split("px")[0],d=m({top:o.top-a.top-f,left:o.left-a.left-h,width:o.width,height:o.height});if(d.marginTop=0,d.marginLeft=0,!n&&i){var p=+c.marginTop.split("px")[0],g=+c.marginLeft.split("px")[0];d.top-=f-p,d.bottom-=f-p,d.left-=h-g,d.right-=h-g,d.marginTop=p,d.marginLeft=g}return(n?e.contains(l):e===l&&"BODY"!==l.nodeName)&&(d=u(d,e)),d}function E(t){var e=t.ownerDocument.documentElement,n=v(t,e),i=Math.max(e.clientWidth,window.innerWidth||0),r=Math.max(e.clientHeight,window.innerHeight||0),o=h(e),s=h(e,"left");return m({top:o-n.top+n.marginTop,left:s-n.left+n.marginLeft,width:i,height:r})}function T(t){var e=t.nodeName;return"BODY"!==e&&"HTML"!==e&&("fixed"===r(t,"position")||T(o(t)))}function b(t,e,n,i){var r={top:0,left:0},a=f(t,e);if("viewport"===i)r=E(a);else{var l=void 0;"scrollParent"===i?"BODY"===(l=s(o(t))).nodeName&&(l=t.ownerDocument.documentElement):l="window"===i?t.ownerDocument.documentElement:i;var c=v(l,a);if("HTML"!==l.nodeName||T(a))r=c;else{var h=g(),u=h.height,d=h.width;r.top+=c.top-c.marginTop,r.bottom=u+c.top,r.left+=c.left-c.marginLeft,r.right=d+c.left}}return r.left+=n,r.top+=n,r.right-=n,r.bottom-=n,r}function C(t){return t.width*t.height}function A(t,e,n,i,r){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var s=b(n,i,o,r),a={top:{width:s.width,height:e.top-s.top},right:{width:s.right-e.right,height:s.height},bottom:{width:s.width,height:s.bottom-e.bottom},left:{width:e.left-s.left,height:s.height}},l=Object.keys(a).map(function(t){return ut({key:t},a[t],{area:C(a[t])})}).sort(function(t,e){return e.area-t.area}),c=l.filter(function(t){var e=t.width,i=t.height;return e>=n.clientWidth&&i>=n.clientHeight}),f=c.length>0?c[0].key:l[0].key,h=t.split("-")[1];return f+(h?"-"+h:"")}function I(t,e,n){return v(n,f(e,n))}function y(t){var e=window.getComputedStyle(t),n=parseFloat(e.marginTop)+parseFloat(e.marginBottom),i=parseFloat(e.marginLeft)+parseFloat(e.marginRight);return{width:t.offsetWidth+i,height:t.offsetHeight+n}}function O(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,function(t){return e[t]})}function D(t,e,n){n=n.split("-")[0];var i=y(t),r={width:i.width,height:i.height},o=-1!==["right","left"].indexOf(n),s=o?"top":"left",a=o?"left":"top",l=o?"height":"width",c=o?"width":"height";return r[s]=e[s]+e[l]/2-i[l]/2,r[a]=n===a?e[a]-i[c]:e[O(a)],r}function S(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function w(t,e,n){if(Array.prototype.findIndex)return t.findIndex(function(t){return t[e]===n});var i=S(t,function(t){return t[e]===n});return t.indexOf(i)}function N(t,e,n){return(void 0===n?t:t.slice(0,w(t,"name",n))).forEach(function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=t.function||t.fn;t.enabled&&i(n)&&(e.offsets.popper=m(e.offsets.popper),e.offsets.reference=m(e.offsets.reference),e=n(e,t))}),e}function L(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=I(this.state,this.popper,this.reference),t.placement=A(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.offsets.popper=D(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position="absolute",t=N(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}function P(t,e){return t.some(function(t){var n=t.name;return t.enabled&&n===e})}function R(t){for(var e=[!1,"ms","Webkit","Moz","O"],n=t.charAt(0).toUpperCase()+t.slice(1),i=0;i<e.length-1;i++){var r=e[i],o=r?""+r+n:t;if("undefined"!=typeof window.document.body.style[o])return o}return null}function H(){return this.state.isDestroyed=!0,P(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.left="",this.popper.style.position="",this.popper.style.top="",this.popper.style[R("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}function k(t){var e=t.ownerDocument;return e?e.defaultView:window}function W(t,e,n,i){var r="BODY"===t.nodeName,o=r?t.ownerDocument.defaultView:t;o.addEventListener(e,n,{passive:!0}),r||W(s(o.parentNode),e,n,i),i.push(o)}function x(t,e,n,i){n.updateBound=i,k(t).addEventListener("resize",n.updateBound,{passive:!0});var r=s(t);return W(r,"scroll",n.updateBound,n.scrollParents),n.scrollElement=r,n.eventsEnabled=!0,n}function M(){this.state.eventsEnabled||(this.state=x(this.reference,this.options,this.state,this.scheduleUpdate))}function U(t,e){return k(t).removeEventListener("resize",e.updateBound),e.scrollParents.forEach(function(t){t.removeEventListener("scroll",e.updateBound)}),e.updateBound=null,e.scrollParents=[],e.scrollElement=null,e.eventsEnabled=!1,e}function V(){this.state.eventsEnabled&&(window.cancelAnimationFrame(this.scheduleUpdate),this.state=U(this.reference,this.state))}function F(t){return""!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function j(t,e){Object.keys(e).forEach(function(n){var i="";-1!==["width","height","top","right","bottom","left"].indexOf(n)&&F(e[n])&&(i="px"),t.style[n]=e[n]+i})}function B(t,e){Object.keys(e).forEach(function(n){!1!==e[n]?t.setAttribute(n,e[n]):t.removeAttribute(n)})}function G(t,e,n){var i=S(t,function(t){return t.name===e}),r=!!i&&t.some(function(t){return t.name===n&&t.enabled&&t.order<i.order});if(!r){var o="`"+e+"`",s="`"+n+"`";console.warn(s+" modifier is required by "+o+" modifier in order to work, be sure to include it before "+o+"!")}return r}function K(t){return"end"===t?"start":"start"===t?"end":t}function Q(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=pt.indexOf(t),i=pt.slice(n+1).concat(pt.slice(0,n));return e?i.reverse():i}function Y(t,e,n,i){var r=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),o=+r[1],s=r[2];if(!o)return t;if(0===s.indexOf("%")){var a=void 0;switch(s){case"%p":a=n;break;case"%":case"%r":default:a=i}return m(a)[e]/100*o}if("vh"===s||"vw"===s){return("vh"===s?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*o}return o}function X(t,e,n,i){var r=[0,0],o=-1!==["right","left"].indexOf(i),s=t.split(/(\+|\-)/).map(function(t){return t.trim()}),a=s.indexOf(S(s,function(t){return-1!==t.search(/,|\s/)}));s[a]&&-1===s[a].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var l=/\s*,\s*|\s+/,c=-1!==a?[s.slice(0,a).concat([s[a].split(l)[0]]),[s[a].split(l)[1]].concat(s.slice(a+1))]:[s];return(c=c.map(function(t,i){var r=(1===i?!o:o)?"height":"width",s=!1;return t.reduce(function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,s=!0,t):s?(t[t.length-1]+=e,s=!1,t):t.concat(e)},[]).map(function(t){return Y(t,r,e,n)})})).forEach(function(t,e){t.forEach(function(n,i){F(n)&&(r[e]+=n*("-"===t[i-1]?-1:1))})}),r}for(var q=function(t){function e(t){return{}.toString.call(t).match(/\s([a-zA-Z]+)/)[1].toLowerCase()}function n(){return{bindType:o.end,delegateType:o.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}}}function i(){if(window.QUnit)return!1;var t=document.createElement("bootstrap");for(var e in s)if("undefined"!=typeof t.style[e])return{end:s[e]};return!1}function r(e){var n=this,i=!1;return t(this).one(a.TRANSITION_END,function(){i=!0}),setTimeout(function(){i||a.triggerTransitionEnd(n)},e),this}var o=!1,s={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"},a={TRANSITION_END:"bsTransitionEnd",getUID:function(t){do{t+=~~(1e6*Math.random())}while(document.getElementById(t));return t},getSelectorFromElement:function(e){var n=e.getAttribute("data-target");n&&"#"!==n||(n=e.getAttribute("href")||"");try{return t(document).find(n).length>0?n:null}catch(t){return null}},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(e){t(e).trigger(o.end)},supportsTransitionEnd:function(){return Boolean(o)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,n,i){for(var r in i)if(Object.prototype.hasOwnProperty.call(i,r)){var o=i[r],s=n[r],l=s&&a.isElement(s)?"element":e(s);if(!new RegExp(o).test(l))throw new Error(t.toUpperCase()+': Option "'+r+'" provided type "'+l+'" but expected type "'+o+'".')}}};return o=i(),t.fn.emulateTransitionEnd=r,a.supportsTransitionEnd()&&(t.event.special[a.TRANSITION_END]=n()),a}(e=e&&e.hasOwnProperty("default")?e.default:e),z=function(t,e,i){return e&&n(t.prototype,e),i&&n(t,i),t},Z=function(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e},J=function(t){var e="alert",n=t.fn[e],i={CLOSE:"close.bs.alert",CLOSED:"closed.bs.alert",CLICK_DATA_API:"click.bs.alert.data-api"},r={ALERT:"alert",FADE:"fade",SHOW:"show"},o=function(){function e(t){this._element=t}var n=e.prototype;return n.close=function(t){t=t||this._element;var e=this._getRootElement(t);this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},n.dispose=function(){t.removeData(this._element,"bs.alert"),this._element=null},n._getRootElement=function(e){var n=q.getSelectorFromElement(e),i=!1;return n&&(i=t(n)[0]),i||(i=t(e).closest("."+r.ALERT)[0]),i},n._triggerCloseEvent=function(e){var n=t.Event(i.CLOSE);return t(e).trigger(n),n},n._removeElement=function(e){var n=this;t(e).removeClass(r.SHOW),q.supportsTransitionEnd()&&t(e).hasClass(r.FADE)?t(e).one(q.TRANSITION_END,function(t){return n._destroyElement(e,t)}).emulateTransitionEnd(150):this._destroyElement(e)},n._destroyElement=function(e){t(e).detach().trigger(i.CLOSED).remove()},e._jQueryInterface=function(n){return this.each(function(){var i=t(this),r=i.data("bs.alert");r||(r=new e(this),i.data("bs.alert",r)),"close"===n&&r[n](this)})},e._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},z(e,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}}]),e}();return t(document).on(i.CLICK_DATA_API,{DISMISS:'[data-dismiss="alert"]'}.DISMISS,o._handleDismiss(new o)),t.fn[e]=o._jQueryInterface,t.fn[e].Constructor=o,t.fn[e].noConflict=function(){return t.fn[e]=n,o._jQueryInterface},o}(e),$=function(t){var e="button",n=t.fn[e],i={ACTIVE:"active",BUTTON:"btn",FOCUS:"focus"},r={DATA_TOGGLE_CARROT:'[data-toggle^="button"]',DATA_TOGGLE:'[data-toggle="buttons"]',INPUT:"input",ACTIVE:".active",BUTTON:".btn"},o={CLICK_DATA_API:"click.bs.button.data-api",FOCUS_BLUR_DATA_API:"focus.bs.button.data-api blur.bs.button.data-api"},s=function(){function e(t){this._element=t}var n=e.prototype;return n.toggle=function(){var e=!0,n=!0,o=t(this._element).closest(r.DATA_TOGGLE)[0];if(o){var s=t(this._element).find(r.INPUT)[0];if(s){if("radio"===s.type)if(s.checked&&t(this._element).hasClass(i.ACTIVE))e=!1;else{var a=t(o).find(r.ACTIVE)[0];a&&t(a).removeClass(i.ACTIVE)}if(e){if(s.hasAttribute("disabled")||o.hasAttribute("disabled")||s.classList.contains("disabled")||o.classList.contains("disabled"))return;s.checked=!t(this._element).hasClass(i.ACTIVE),t(s).trigger("change")}s.focus(),n=!1}}n&&this._element.setAttribute("aria-pressed",!t(this._element).hasClass(i.ACTIVE)),e&&t(this._element).toggleClass(i.ACTIVE)},n.dispose=function(){t.removeData(this._element,"bs.button"),this._element=null},e._jQueryInterface=function(n){return this.each(function(){var i=t(this).data("bs.button");i||(i=new e(this),t(this).data("bs.button",i)),"toggle"===n&&i[n]()})},z(e,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}}]),e}();return t(document).on(o.CLICK_DATA_API,r.DATA_TOGGLE_CARROT,function(e){e.preventDefault();var n=e.target;t(n).hasClass(i.BUTTON)||(n=t(n).closest(r.BUTTON)),s._jQueryInterface.call(t(n),"toggle")}).on(o.FOCUS_BLUR_DATA_API,r.DATA_TOGGLE_CARROT,function(e){var n=t(e.target).closest(r.BUTTON)[0];t(n).toggleClass(i.FOCUS,/^focus(in)?$/.test(e.type))}),t.fn[e]=s._jQueryInterface,t.fn[e].Constructor=s,t.fn[e].noConflict=function(){return t.fn[e]=n,s._jQueryInterface},s}(e),tt=function(t){var e="carousel",n="bs.carousel",i="."+n,r=t.fn[e],o={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0},s={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean"},a={NEXT:"next",PREV:"prev",LEFT:"left",RIGHT:"right"},l={SLIDE:"slide"+i,SLID:"slid"+i,KEYDOWN:"keydown"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i,TOUCHEND:"touchend"+i,LOAD_DATA_API:"load.bs.carousel.data-api",CLICK_DATA_API:"click.bs.carousel.data-api"},c={CAROUSEL:"carousel",ACTIVE:"active",SLIDE:"slide",RIGHT:"carousel-item-right",LEFT:"carousel-item-left",NEXT:"carousel-item-next",PREV:"carousel-item-prev",ITEM:"carousel-item"},f={ACTIVE:".active",ACTIVE_ITEM:".active.carousel-item",ITEM:".carousel-item",NEXT_PREV:".carousel-item-next, .carousel-item-prev",INDICATORS:".carousel-indicators",DATA_SLIDE:"[data-slide], [data-slide-to]",DATA_RIDE:'[data-ride="carousel"]'},h=function(){function r(e,n){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this._config=this._getConfig(n),this._element=t(e)[0],this._indicatorsElement=t(this._element).find(f.INDICATORS)[0],this._addEventListeners()}var h=r.prototype;return h.next=function(){this._isSliding||this._slide(a.NEXT)},h.nextWhenVisible=function(){!document.hidden&&t(this._element).is(":visible")&&"hidden"!==t(this._element).css("visibility")&&this.next()},h.prev=function(){this._isSliding||this._slide(a.PREV)},h.pause=function(e){e||(this._isPaused=!0),t(this._element).find(f.NEXT_PREV)[0]&&q.supportsTransitionEnd()&&(q.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},h.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},h.to=function(e){var n=this;this._activeElement=t(this._element).find(f.ACTIVE_ITEM)[0];var i=this._getItemIndex(this._activeElement);if(!(e>this._items.length-1||e<0))if(this._isSliding)t(this._element).one(l.SLID,function(){return n.to(e)});else{if(i===e)return this.pause(),void this.cycle();var r=e>i?a.NEXT:a.PREV;this._slide(r,this._items[e])}},h.dispose=function(){t(this._element).off(i),t.removeData(this._element,n),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},h._getConfig=function(n){return n=t.extend({},o,n),q.typeCheckConfig(e,n,s),n},h._addEventListeners=function(){var e=this;this._config.keyboard&&t(this._element).on(l.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&(t(this._element).on(l.MOUSEENTER,function(t){return e.pause(t)}).on(l.MOUSELEAVE,function(t){return e.cycle(t)}),"ontouchstart"in document.documentElement&&t(this._element).on(l.TOUCHEND,function(){e.pause(),e.touchTimeout&&clearTimeout(e.touchTimeout),e.touchTimeout=setTimeout(function(t){return e.cycle(t)},500+e._config.interval)}))},h._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next();break;default:return}},h._getItemIndex=function(e){return this._items=t.makeArray(t(e).parent().find(f.ITEM)),this._items.indexOf(e)},h._getItemByDirection=function(t,e){var n=t===a.NEXT,i=t===a.PREV,r=this._getItemIndex(e),o=this._items.length-1;if((i&&0===r||n&&r===o)&&!this._config.wrap)return e;var s=(r+(t===a.PREV?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},h._triggerSlideEvent=function(e,n){var i=this._getItemIndex(e),r=this._getItemIndex(t(this._element).find(f.ACTIVE_ITEM)[0]),o=t.Event(l.SLIDE,{relatedTarget:e,direction:n,from:r,to:i});return t(this._element).trigger(o),o},h._setActiveIndicatorElement=function(e){if(this._indicatorsElement){t(this._indicatorsElement).find(f.ACTIVE).removeClass(c.ACTIVE);var n=this._indicatorsElement.children[this._getItemIndex(e)];n&&t(n).addClass(c.ACTIVE)}},h._slide=function(e,n){var i,r,o,s=this,h=t(this._element).find(f.ACTIVE_ITEM)[0],u=this._getItemIndex(h),d=n||h&&this._getItemByDirection(e,h),p=this._getItemIndex(d),g=Boolean(this._interval);if(e===a.NEXT?(i=c.LEFT,r=c.NEXT,o=a.LEFT):(i=c.RIGHT,r=c.PREV,o=a.RIGHT),d&&t(d).hasClass(c.ACTIVE))this._isSliding=!1;else if(!this._triggerSlideEvent(d,o).isDefaultPrevented()&&h&&d){this._isSliding=!0,g&&this.pause(),this._setActiveIndicatorElement(d);var m=t.Event(l.SLID,{relatedTarget:d,direction:o,from:u,to:p});q.supportsTransitionEnd()&&t(this._element).hasClass(c.SLIDE)?(t(d).addClass(r),q.reflow(d),t(h).addClass(i),t(d).addClass(i),t(h).one(q.TRANSITION_END,function(){t(d).removeClass(i+" "+r).addClass(c.ACTIVE),t(h).removeClass(c.ACTIVE+" "+r+" "+i),s._isSliding=!1,setTimeout(function(){return t(s._element).trigger(m)},0)}).emulateTransitionEnd(600)):(t(h).removeClass(c.ACTIVE),t(d).addClass(c.ACTIVE),this._isSliding=!1,t(this._element).trigger(m)),g&&this.cycle()}},r._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n),s=t.extend({},o,t(this).data());"object"==typeof e&&t.extend(s,e);var a="string"==typeof e?e:s.slide;if(i||(i=new r(this,s),t(this).data(n,i)),"number"==typeof e)i.to(e);else if("string"==typeof a){if("undefined"==typeof i[a])throw new Error('No method named "'+a+'"');i[a]()}else s.interval&&(i.pause(),i.cycle())})},r._dataApiClickHandler=function(e){var i=q.getSelectorFromElement(this);if(i){var o=t(i)[0];if(o&&t(o).hasClass(c.CAROUSEL)){var s=t.extend({},t(o).data(),t(this).data()),a=this.getAttribute("data-slide-to");a&&(s.interval=!1),r._jQueryInterface.call(t(o),s),a&&t(o).data(n).to(a),e.preventDefault()}}},z(r,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return o}}]),r}();return t(document).on(l.CLICK_DATA_API,f.DATA_SLIDE,h._dataApiClickHandler),t(window).on(l.LOAD_DATA_API,function(){t(f.DATA_RIDE).each(function(){var e=t(this);h._jQueryInterface.call(e,e.data())})}),t.fn[e]=h._jQueryInterface,t.fn[e].Constructor=h,t.fn[e].noConflict=function(){return t.fn[e]=r,h._jQueryInterface},h}(e),et=function(t){var e="collapse",n="bs.collapse",i=t.fn[e],r={toggle:!0,parent:""},o={toggle:"boolean",parent:"(string|element)"},s={SHOW:"show.bs.collapse",SHOWN:"shown.bs.collapse",HIDE:"hide.bs.collapse",HIDDEN:"hidden.bs.collapse",CLICK_DATA_API:"click.bs.collapse.data-api"},a={SHOW:"show",COLLAPSE:"collapse",COLLAPSING:"collapsing",COLLAPSED:"collapsed"},l={WIDTH:"width",HEIGHT:"height"},c={ACTIVES:".show, .collapsing",DATA_TOGGLE:'[data-toggle="collapse"]'},f=function(){function i(e,n){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(n),this._triggerArray=t.makeArray(t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var i=t(c.DATA_TOGGLE),r=0;r<i.length;r++){var o=i[r],s=q.getSelectorFromElement(o);null!==s&&t(s).filter(e).length>0&&this._triggerArray.push(o)}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var f=i.prototype;return f.toggle=function(){t(this._element).hasClass(a.SHOW)?this.hide():this.show()},f.show=function(){var e=this;if(!this._isTransitioning&&!t(this._element).hasClass(a.SHOW)){var r,o;if(this._parent&&((r=t.makeArray(t(this._parent).children().children(c.ACTIVES))).length||(r=null)),!(r&&(o=t(r).data(n))&&o._isTransitioning)){var l=t.Event(s.SHOW);if(t(this._element).trigger(l),!l.isDefaultPrevented()){r&&(i._jQueryInterface.call(t(r),"hide"),o||t(r).data(n,null));var f=this._getDimension();t(this._element).removeClass(a.COLLAPSE).addClass(a.COLLAPSING),this._element.style[f]=0,this._triggerArray.length&&t(this._triggerArray).removeClass(a.COLLAPSED).attr("aria-expanded",!0),this.setTransitioning(!0);var h=function(){t(e._element).removeClass(a.COLLAPSING).addClass(a.COLLAPSE).addClass(a.SHOW),e._element.style[f]="",e.setTransitioning(!1),t(e._element).trigger(s.SHOWN)};if(q.supportsTransitionEnd()){var u="scroll"+(f[0].toUpperCase()+f.slice(1));t(this._element).one(q.TRANSITION_END,h).emulateTransitionEnd(600),this._element.style[f]=this._element[u]+"px"}else h()}}}},f.hide=function(){var e=this;if(!this._isTransitioning&&t(this._element).hasClass(a.SHOW)){var n=t.Event(s.HIDE);if(t(this._element).trigger(n),!n.isDefaultPrevented()){var i=this._getDimension();if(this._element.style[i]=this._element.getBoundingClientRect()[i]+"px",q.reflow(this._element),t(this._element).addClass(a.COLLAPSING).removeClass(a.COLLAPSE).removeClass(a.SHOW),this._triggerArray.length)for(var r=0;r<this._triggerArray.length;r++){var o=this._triggerArray[r],l=q.getSelectorFromElement(o);null!==l&&(t(l).hasClass(a.SHOW)||t(o).addClass(a.COLLAPSED).attr("aria-expanded",!1))}this.setTransitioning(!0);var c=function(){e.setTransitioning(!1),t(e._element).removeClass(a.COLLAPSING).addClass(a.COLLAPSE).trigger(s.HIDDEN)};this._element.style[i]="",q.supportsTransitionEnd()?t(this._element).one(q.TRANSITION_END,c).emulateTransitionEnd(600):c()}}},f.setTransitioning=function(t){this._isTransitioning=t},f.dispose=function(){t.removeData(this._element,n),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},f._getConfig=function(n){return n=t.extend({},r,n),n.toggle=Boolean(n.toggle),q.typeCheckConfig(e,n,o),n},f._getDimension=function(){return t(this._element).hasClass(l.WIDTH)?l.WIDTH:l.HEIGHT},f._getParent=function(){var e=this,n=null;q.isElement(this._config.parent)?(n=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(n=this._config.parent[0])):n=t(this._config.parent)[0];var r='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]';return t(n).find(r).each(function(t,n){e._addAriaAndCollapsedClass(i._getTargetFromElement(n),[n])}),n},f._addAriaAndCollapsedClass=function(e,n){if(e){var i=t(e).hasClass(a.SHOW);n.length&&t(n).toggleClass(a.COLLAPSED,!i).attr("aria-expanded",i)}},i._getTargetFromElement=function(e){var n=q.getSelectorFromElement(e);return n?t(n)[0]:null},i._jQueryInterface=function(e){return this.each(function(){var o=t(this),s=o.data(n),a=t.extend({},r,o.data(),"object"==typeof e&&e);if(!s&&a.toggle&&/show|hide/.test(e)&&(a.toggle=!1),s||(s=new i(this,a),o.data(n,s)),"string"==typeof e){if("undefined"==typeof s[e])throw new Error('No method named "'+e+'"');s[e]()}})},z(i,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return r}}]),i}();return t(document).on(s.CLICK_DATA_API,c.DATA_TOGGLE,function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var i=t(this),r=q.getSelectorFromElement(this);t(r).each(function(){var e=t(this),r=e.data(n)?"toggle":i.data();f._jQueryInterface.call(e,r)})}),t.fn[e]=f._jQueryInterface,t.fn[e].Constructor=f,t.fn[e].noConflict=function(){return t.fn[e]=i,f._jQueryInterface},f}(e),nt="undefined"!=typeof window&&"undefined"!=typeof window.document,it=["Edge","Trident","Firefox"],rt=0,ot=0;ot<it.length;ot+=1)if(nt&&navigator.userAgent.indexOf(it[ot])>=0){rt=1;break}var st=nt&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,Promise.resolve().then(function(){e=!1,t()}))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout(function(){e=!1,t()},rt))}},at=void 0,lt=function(){return void 0===at&&(at=-1!==navigator.appVersion.indexOf("MSIE 10")),at},ct=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},ft=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),ht=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t},ut=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t},dt=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],pt=dt.slice(3),gt={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"},mt={placement:"bottom",eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,n=e.split("-")[0],i=e.split("-")[1];if(i){var r=t.offsets,o=r.reference,s=r.popper,a=-1!==["bottom","top"].indexOf(n),l=a?"left":"top",c=a?"width":"height",f={start:ht({},l,o[l]),end:ht({},l,o[l]+o[c]-s[c])};t.offsets.popper=ut({},s,f[i])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var n=e.offset,i=t.placement,r=t.offsets,o=r.popper,s=r.reference,a=i.split("-")[0],l=void 0;return l=F(+n)?[+n,0]:X(n,o,s,a),"left"===a?(o.top+=l[0],o.left-=l[1]):"right"===a?(o.top+=l[0],o.left+=l[1]):"top"===a?(o.left+=l[0],o.top-=l[1]):"bottom"===a&&(o.left+=l[0],o.top+=l[1]),t.popper=o,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var n=e.boundariesElement||a(t.instance.popper);t.instance.reference===n&&(n=a(n));var i=b(t.instance.popper,t.instance.reference,e.padding,n);e.boundaries=i;var r=e.priority,o=t.offsets.popper,s={primary:function(t){var n=o[t];return o[t]<i[t]&&!e.escapeWithReference&&(n=Math.max(o[t],i[t])),ht({},t,n)},secondary:function(t){var n="right"===t?"left":"top",r=o[n];return o[t]>i[t]&&!e.escapeWithReference&&(r=Math.min(o[n],i[t]-("right"===t?o.width:o.height))),ht({},n,r)}};return r.forEach(function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";o=ut({},o,s[e](t))}),t.offsets.popper=o,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,n=e.popper,i=e.reference,r=t.placement.split("-")[0],o=Math.floor,s=-1!==["top","bottom"].indexOf(r),a=s?"right":"bottom",l=s?"left":"top",c=s?"width":"height";return n[a]<o(i[l])&&(t.offsets.popper[l]=o(i[l])-n[c]),n[l]>o(i[a])&&(t.offsets.popper[l]=o(i[a])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){if(!G(t.instance.modifiers,"arrow","keepTogether"))return t;var n=e.element;if("string"==typeof n){if(!(n=t.instance.popper.querySelector(n)))return t}else if(!t.instance.popper.contains(n))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var i=t.placement.split("-")[0],o=t.offsets,s=o.popper,a=o.reference,l=-1!==["left","right"].indexOf(i),c=l?"height":"width",f=l?"Top":"Left",h=f.toLowerCase(),u=l?"left":"top",d=l?"bottom":"right",p=y(n)[c];a[d]-p<s[h]&&(t.offsets.popper[h]-=s[h]-(a[d]-p)),a[h]+p>s[d]&&(t.offsets.popper[h]+=a[h]+p-s[d]);var g=a[h]+a[c]/2-p/2,_=r(t.instance.popper,"margin"+f).replace("px",""),v=g-m(t.offsets.popper)[h]-_;return v=Math.max(Math.min(s[c]-p,v),0),t.arrowElement=n,t.offsets.arrow={},t.offsets.arrow[h]=Math.round(v),t.offsets.arrow[u]="",t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,e){if(P(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var n=b(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement),i=t.placement.split("-")[0],r=O(i),o=t.placement.split("-")[1]||"",s=[];switch(e.behavior){case gt.FLIP:s=[i,r];break;case gt.CLOCKWISE:s=Q(i);break;case gt.COUNTERCLOCKWISE:s=Q(i,!0);break;default:s=e.behavior}return s.forEach(function(a,l){if(i!==a||s.length===l+1)return t;i=t.placement.split("-")[0],r=O(i);var c=t.offsets.popper,f=t.offsets.reference,h=Math.floor,u="left"===i&&h(c.right)>h(f.left)||"right"===i&&h(c.left)<h(f.right)||"top"===i&&h(c.bottom)>h(f.top)||"bottom"===i&&h(c.top)<h(f.bottom),d=h(c.left)<h(n.left),p=h(c.right)>h(n.right),g=h(c.top)<h(n.top),m=h(c.bottom)>h(n.bottom),_="left"===i&&d||"right"===i&&p||"top"===i&&g||"bottom"===i&&m,v=-1!==["top","bottom"].indexOf(i),E=!!e.flipVariations&&(v&&"start"===o&&d||v&&"end"===o&&p||!v&&"start"===o&&g||!v&&"end"===o&&m);(u||_||E)&&(t.flipped=!0,(u||_)&&(i=s[l+1]),E&&(o=K(o)),t.placement=i+(o?"-"+o:""),t.offsets.popper=ut({},t.offsets.popper,D(t.instance.popper,t.offsets.reference,t.placement)),t=N(t.instance.modifiers,t,"flip"))}),t},behavior:"flip",padding:5,boundariesElement:"viewport"},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,n=e.split("-")[0],i=t.offsets,r=i.popper,o=i.reference,s=-1!==["left","right"].indexOf(n),a=-1===["top","left"].indexOf(n);return r[s?"left":"top"]=o[n]-(a?r[s?"width":"height"]:0),t.placement=O(e),t.offsets.popper=m(r),t}},hide:{order:800,enabled:!0,fn:function(t){if(!G(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,n=S(t.instance.modifiers,function(t){return"preventOverflow"===t.name}).boundaries;if(e.bottom<n.top||e.left>n.right||e.top>n.bottom||e.right<n.left){if(!0===t.hide)return t;t.hide=!0,t.attributes["x-out-of-boundaries"]=""}else{if(!1===t.hide)return t;t.hide=!1,t.attributes["x-out-of-boundaries"]=!1}return t}},computeStyle:{order:850,enabled:!0,fn:function(t,e){var n=e.x,i=e.y,r=t.offsets.popper,o=S(t.instance.modifiers,function(t){return"applyStyle"===t.name}).gpuAcceleration;void 0!==o&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var s=void 0!==o?o:e.gpuAcceleration,l=_(a(t.instance.popper)),c={position:r.position},f={left:Math.floor(r.left),top:Math.floor(r.top),bottom:Math.floor(r.bottom),right:Math.floor(r.right)},h="bottom"===n?"top":"bottom",u="right"===i?"left":"right",d=R("transform"),p=void 0,g=void 0;if(g="bottom"===h?-l.height+f.bottom:f.top,p="right"===u?-l.width+f.right:f.left,s&&d)c[d]="translate3d("+p+"px, "+g+"px, 0)",c[h]=0,c[u]=0,c.willChange="transform";else{var m="bottom"===h?-1:1,v="right"===u?-1:1;c[h]=g*m,c[u]=p*v,c.willChange=h+", "+u}var E={"x-placement":t.placement};return t.attributes=ut({},E,t.attributes),t.styles=ut({},c,t.styles),t.arrowStyles=ut({},t.offsets.arrow,t.arrowStyles),t},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(t){return j(t.instance.popper,t.styles),B(t.instance.popper,t.attributes),t.arrowElement&&Object.keys(t.arrowStyles).length&&j(t.arrowElement,t.arrowStyles),t},onLoad:function(t,e,n,i,r){var o=I(r,e,t),s=A(n.placement,o,e,t,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return e.setAttribute("x-placement",s),j(e,{position:"absolute"}),n},gpuAcceleration:void 0}}},_t=function(){function t(e,n){var r=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};ct(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=st(this.update.bind(this)),this.options=ut({},t.Defaults,o),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(ut({},t.Defaults.modifiers,o.modifiers)).forEach(function(e){r.options.modifiers[e]=ut({},t.Defaults.modifiers[e]||{},o.modifiers?o.modifiers[e]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(t){return ut({name:t},r.options.modifiers[t])}).sort(function(t,e){return t.order-e.order}),this.modifiers.forEach(function(t){t.enabled&&i(t.onLoad)&&t.onLoad(r.reference,r.popper,r.options,t,r.state)}),this.update();var s=this.options.eventsEnabled;s&&this.enableEventListeners(),this.state.eventsEnabled=s}return ft(t,[{key:"update",value:function(){return L.call(this)}},{key:"destroy",value:function(){return H.call(this)}},{key:"enableEventListeners",value:function(){return M.call(this)}},{key:"disableEventListeners",value:function(){return V.call(this)}}]),t}();_t.Utils=("undefined"!=typeof window?window:global).PopperUtils,_t.placements=dt,_t.Defaults=mt;var vt=function(t){if("undefined"==typeof _t)throw new Error("Bootstrap dropdown require Popper.js (https://popper.js.org)");var e="dropdown",n="bs.dropdown",i="."+n,r=t.fn[e],o=new RegExp("38|40|27"),s={HIDE:"hide"+i,HIDDEN:"hidden"+i,SHOW:"show"+i,SHOWN:"shown"+i,CLICK:"click"+i,CLICK_DATA_API:"click.bs.dropdown.data-api",KEYDOWN_DATA_API:"keydown.bs.dropdown.data-api",KEYUP_DATA_API:"keyup.bs.dropdown.data-api"},a={DISABLED:"disabled",SHOW:"show",DROPUP:"dropup",MENURIGHT:"dropdown-menu-right",MENULEFT:"dropdown-menu-left"},l={DATA_TOGGLE:'[data-toggle="dropdown"]',FORM_CHILD:".dropdown form",MENU:".dropdown-menu",NAVBAR_NAV:".navbar-nav",VISIBLE_ITEMS:".dropdown-menu .dropdown-item:not(.disabled)"},c={TOP:"top-start",TOPEND:"top-end",BOTTOM:"bottom-start",BOTTOMEND:"bottom-end"},f={offset:0,flip:!0},h={offset:"(number|string|function)",flip:"boolean"},u=function(){function r(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var u=r.prototype;return u.toggle=function(){if(!this._element.disabled&&!t(this._element).hasClass(a.DISABLED)){var e=r._getParentFromElement(this._element),n=t(this._menu).hasClass(a.SHOW);if(r._clearMenus(),!n){var i={relatedTarget:this._element},o=t.Event(s.SHOW,i);if(t(e).trigger(o),!o.isDefaultPrevented()){var c=this._element;t(e).hasClass(a.DROPUP)&&(t(this._menu).hasClass(a.MENULEFT)||t(this._menu).hasClass(a.MENURIGHT))&&(c=e),this._popper=new _t(c,this._menu,this._getPopperConfig()),"ontouchstart"in document.documentElement&&!t(e).closest(l.NAVBAR_NAV).length&&t("body").children().on("mouseover",null,t.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),t(this._menu).toggleClass(a.SHOW),t(e).toggleClass(a.SHOW).trigger(t.Event(s.SHOWN,i))}}}},u.dispose=function(){t.removeData(this._element,n),t(this._element).off(i),this._element=null,this._menu=null,null!==this._popper&&this._popper.destroy(),this._popper=null},u.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},u._addEventListeners=function(){var e=this;t(this._element).on(s.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},u._getConfig=function(n){return n=t.extend({},this.constructor.Default,t(this._element).data(),n),q.typeCheckConfig(e,n,this.constructor.DefaultType),n},u._getMenuElement=function(){if(!this._menu){var e=r._getParentFromElement(this._element);this._menu=t(e).find(l.MENU)[0]}return this._menu},u._getPlacement=function(){var e=t(this._element).parent(),n=c.BOTTOM;return e.hasClass(a.DROPUP)?(n=c.TOP,t(this._menu).hasClass(a.MENURIGHT)&&(n=c.TOPEND)):t(this._menu).hasClass(a.MENURIGHT)&&(n=c.BOTTOMEND),n},u._detectNavbar=function(){return t(this._element).closest(".navbar").length>0},u._getPopperConfig=function(){var e=this,n={};"function"==typeof this._config.offset?n.fn=function(n){return n.offsets=t.extend({},n.offsets,e._config.offset(n.offsets)||{}),n}:n.offset=this._config.offset;var i={placement:this._getPlacement(),modifiers:{offset:n,flip:{enabled:this._config.flip}}};return this._inNavbar&&(i.modifiers.applyStyle={enabled:!this._inNavbar}),i},r._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n),o="object"==typeof e?e:null;if(i||(i=new r(this,o),t(this).data(n,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new Error('No method named "'+e+'"');i[e]()}})},r._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var i=t.makeArray(t(l.DATA_TOGGLE)),o=0;o<i.length;o++){var c=r._getParentFromElement(i[o]),f=t(i[o]).data(n),h={relatedTarget:i[o]};if(f){var u=f._menu;if(t(c).hasClass(a.SHOW)&&!(e&&("click"===e.type&&/input|textarea/i.test(e.target.tagName)||"keyup"===e.type&&9===e.which)&&t.contains(c,e.target))){var d=t.Event(s.HIDE,h);t(c).trigger(d),d.isDefaultPrevented()||("ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),i[o].setAttribute("aria-expanded","false"),t(u).removeClass(a.SHOW),t(c).removeClass(a.SHOW).trigger(t.Event(s.HIDDEN,h)))}}}},r._getParentFromElement=function(e){var n,i=q.getSelectorFromElement(e);return i&&(n=t(i)[0]),n||e.parentNode},r._dataApiKeydownHandler=function(e){if(!(!o.test(e.which)||/button/i.test(e.target.tagName)&&32===e.which||/input|textarea/i.test(e.target.tagName)||(e.preventDefault(),e.stopPropagation(),this.disabled||t(this).hasClass(a.DISABLED)))){var n=r._getParentFromElement(this),i=t(n).hasClass(a.SHOW);if((i||27===e.which&&32===e.which)&&(!i||27!==e.which&&32!==e.which)){var s=t(n).find(l.VISIBLE_ITEMS).get();if(s.length){var c=s.indexOf(e.target);38===e.which&&c>0&&c--,40===e.which&&c<s.length-1&&c++,c<0&&(c=0),s[c].focus()}}else{if(27===e.which){var f=t(n).find(l.DATA_TOGGLE)[0];t(f).trigger("focus")}t(this).trigger("click")}}},z(r,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return f}},{key:"DefaultType",get:function(){return h}}]),r}();return t(document).on(s.KEYDOWN_DATA_API,l.DATA_TOGGLE,u._dataApiKeydownHandler).on(s.KEYDOWN_DATA_API,l.MENU,u._dataApiKeydownHandler).on(s.CLICK_DATA_API+" "+s.KEYUP_DATA_API,u._clearMenus).on(s.CLICK_DATA_API,l.DATA_TOGGLE,function(e){e.preventDefault(),e.stopPropagation(),u._jQueryInterface.call(t(this),"toggle")}).on(s.CLICK_DATA_API,l.FORM_CHILD,function(t){t.stopPropagation()}),t.fn[e]=u._jQueryInterface,t.fn[e].Constructor=u,t.fn[e].noConflict=function(){return t.fn[e]=r,u._jQueryInterface},u}(e),Et=function(t){var e="modal",n=".bs.modal",i=t.fn[e],r={backdrop:!0,keyboard:!0,focus:!0,show:!0},o={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},s={HIDE:"hide.bs.modal",HIDDEN:"hidden.bs.modal",SHOW:"show.bs.modal",SHOWN:"shown.bs.modal",FOCUSIN:"focusin.bs.modal",RESIZE:"resize.bs.modal",CLICK_DISMISS:"click.dismiss.bs.modal",KEYDOWN_DISMISS:"keydown.dismiss.bs.modal",MOUSEUP_DISMISS:"mouseup.dismiss.bs.modal",MOUSEDOWN_DISMISS:"mousedown.dismiss.bs.modal",CLICK_DATA_API:"click.bs.modal.data-api"},a={SCROLLBAR_MEASURER:"modal-scrollbar-measure",BACKDROP:"modal-backdrop",OPEN:"modal-open",FADE:"fade",SHOW:"show"},l={DIALOG:".modal-dialog",DATA_TOGGLE:'[data-toggle="modal"]',DATA_DISMISS:'[data-dismiss="modal"]',FIXED_CONTENT:".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",STICKY_CONTENT:".sticky-top",NAVBAR_TOGGLER:".navbar-toggler"},c=function(){function i(e,n){this._config=this._getConfig(n),this._element=e,this._dialog=t(e).find(l.DIALOG)[0],this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._originalBodyPadding=0,this._scrollbarWidth=0}var c=i.prototype;return c.toggle=function(t){return this._isShown?this.hide():this.show(t)},c.show=function(e){var n=this;if(!this._isTransitioning&&!this._isShown){q.supportsTransitionEnd()&&t(this._element).hasClass(a.FADE)&&(this._isTransitioning=!0);var i=t.Event(s.SHOW,{relatedTarget:e});t(this._element).trigger(i),this._isShown||i.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),t(document.body).addClass(a.OPEN),this._setEscapeEvent(),this._setResizeEvent(),t(this._element).on(s.CLICK_DISMISS,l.DATA_DISMISS,function(t){return n.hide(t)}),t(this._dialog).on(s.MOUSEDOWN_DISMISS,function(){t(n._element).one(s.MOUSEUP_DISMISS,function(e){t(e.target).is(n._element)&&(n._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return n._showElement(e)}))}},c.hide=function(e){var n=this;if(e&&e.preventDefault(),!this._isTransitioning&&this._isShown){var i=t.Event(s.HIDE);if(t(this._element).trigger(i),this._isShown&&!i.isDefaultPrevented()){this._isShown=!1;var r=q.supportsTransitionEnd()&&t(this._element).hasClass(a.FADE);r&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),t(document).off(s.FOCUSIN),t(this._element).removeClass(a.SHOW),t(this._element).off(s.CLICK_DISMISS),t(this._dialog).off(s.MOUSEDOWN_DISMISS),r?t(this._element).one(q.TRANSITION_END,function(t){return n._hideModal(t)}).emulateTransitionEnd(300):this._hideModal()}}},c.dispose=function(){t.removeData(this._element,"bs.modal"),t(window,document,this._element,this._backdrop).off(n),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._scrollbarWidth=null},c.handleUpdate=function(){this._adjustDialog()},c._getConfig=function(n){return n=t.extend({},r,n),q.typeCheckConfig(e,n,o),n},c._showElement=function(e){var n=this,i=q.supportsTransitionEnd()&&t(this._element).hasClass(a.FADE);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.scrollTop=0,i&&q.reflow(this._element),t(this._element).addClass(a.SHOW),this._config.focus&&this._enforceFocus();var r=t.Event(s.SHOWN,{relatedTarget:e}),o=function(){n._config.focus&&n._element.focus(),n._isTransitioning=!1,t(n._element).trigger(r)};i?t(this._dialog).one(q.TRANSITION_END,o).emulateTransitionEnd(300):o()},c._enforceFocus=function(){var e=this;t(document).off(s.FOCUSIN).on(s.FOCUSIN,function(n){document===n.target||e._element===n.target||t(e._element).has(n.target).length||e._element.focus()})},c._setEscapeEvent=function(){var e=this;this._isShown&&this._config.keyboard?t(this._element).on(s.KEYDOWN_DISMISS,function(t){27===t.which&&(t.preventDefault(),e.hide())}):this._isShown||t(this._element).off(s.KEYDOWN_DISMISS)},c._setResizeEvent=function(){var e=this;this._isShown?t(window).on(s.RESIZE,function(t){return e.handleUpdate(t)}):t(window).off(s.RESIZE)},c._hideModal=function(){var e=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._isTransitioning=!1,this._showBackdrop(function(){t(document.body).removeClass(a.OPEN),e._resetAdjustments(),e._resetScrollbar(),t(e._element).trigger(s.HIDDEN)})},c._removeBackdrop=function(){this._backdrop&&(t(this._backdrop).remove(),this._backdrop=null)},c._showBackdrop=function(e){var n=this,i=t(this._element).hasClass(a.FADE)?a.FADE:"";if(this._isShown&&this._config.backdrop){var r=q.supportsTransitionEnd()&&i;if(this._backdrop=document.createElement("div"),this._backdrop.className=a.BACKDROP,i&&t(this._backdrop).addClass(i),t(this._backdrop).appendTo(document.body),t(this._element).on(s.CLICK_DISMISS,function(t){n._ignoreBackdropClick?n._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===n._config.backdrop?n._element.focus():n.hide())}),r&&q.reflow(this._backdrop),t(this._backdrop).addClass(a.SHOW),!e)return;if(!r)return void e();t(this._backdrop).one(q.TRANSITION_END,e).emulateTransitionEnd(150)}else if(!this._isShown&&this._backdrop){t(this._backdrop).removeClass(a.SHOW);var o=function(){n._removeBackdrop(),e&&e()};q.supportsTransitionEnd()&&t(this._element).hasClass(a.FADE)?t(this._backdrop).one(q.TRANSITION_END,o).emulateTransitionEnd(150):o()}else e&&e()},c._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},c._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},c._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},c._setScrollbar=function(){var e=this;if(this._isBodyOverflowing){t(l.FIXED_CONTENT).each(function(n,i){var r=t(i)[0].style.paddingRight,o=t(i).css("padding-right");t(i).data("padding-right",r).css("padding-right",parseFloat(o)+e._scrollbarWidth+"px")}),t(l.STICKY_CONTENT).each(function(n,i){var r=t(i)[0].style.marginRight,o=t(i).css("margin-right");t(i).data("margin-right",r).css("margin-right",parseFloat(o)-e._scrollbarWidth+"px")}),t(l.NAVBAR_TOGGLER).each(function(n,i){var r=t(i)[0].style.marginRight,o=t(i).css("margin-right");t(i).data("margin-right",r).css("margin-right",parseFloat(o)+e._scrollbarWidth+"px")});var n=document.body.style.paddingRight,i=t("body").css("padding-right");t("body").data("padding-right",n).css("padding-right",parseFloat(i)+this._scrollbarWidth+"px")}},c._resetScrollbar=function(){t(l.FIXED_CONTENT).each(function(e,n){var i=t(n).data("padding-right");"undefined"!=typeof i&&t(n).css("padding-right",i).removeData("padding-right")}),t(l.STICKY_CONTENT+", "+l.NAVBAR_TOGGLER).each(function(e,n){var i=t(n).data("margin-right");"undefined"!=typeof i&&t(n).css("margin-right",i).removeData("margin-right")});var e=t("body").data("padding-right");"undefined"!=typeof e&&t("body").css("padding-right",e).removeData("padding-right")},c._getScrollbarWidth=function(){var t=document.createElement("div");t.className=a.SCROLLBAR_MEASURER,document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},i._jQueryInterface=function(e,n){return this.each(function(){var r=t(this).data("bs.modal"),o=t.extend({},i.Default,t(this).data(),"object"==typeof e&&e);if(r||(r=new i(this,o),t(this).data("bs.modal",r)),"string"==typeof e){if("undefined"==typeof r[e])throw new Error('No method named "'+e+'"');r[e](n)}else o.show&&r.show(n)})},z(i,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return r}}]),i}();return t(document).on(s.CLICK_DATA_API,l.DATA_TOGGLE,function(e){var n,i=this,r=q.getSelectorFromElement(this);r&&(n=t(r)[0]);var o=t(n).data("bs.modal")?"toggle":t.extend({},t(n).data(),t(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||e.preventDefault();var a=t(n).one(s.SHOW,function(e){e.isDefaultPrevented()||a.one(s.HIDDEN,function(){t(i).is(":visible")&&i.focus()})});c._jQueryInterface.call(t(n),o,this)}),t.fn[e]=c._jQueryInterface,t.fn[e].Constructor=c,t.fn[e].noConflict=function(){return t.fn[e]=i,c._jQueryInterface},c}(e),Tt=function(t){if("undefined"==typeof _t)throw new Error("Bootstrap tooltips require Popper.js (https://popper.js.org)");var e="tooltip",n=".bs.tooltip",i=t.fn[e],r=new RegExp("(^|\\s)bs-tooltip\\S+","g"),o={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)"},s={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},a={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip"},l={SHOW:"show",OUT:"out"},c={HIDE:"hide"+n,HIDDEN:"hidden"+n,SHOW:"show"+n,SHOWN:"shown"+n,INSERTED:"inserted"+n,CLICK:"click"+n,FOCUSIN:"focusin"+n,FOCUSOUT:"focusout"+n,MOUSEENTER:"mouseenter"+n,MOUSELEAVE:"mouseleave"+n},f={FADE:"fade",SHOW:"show"},h={TOOLTIP:".tooltip",TOOLTIP_INNER:".tooltip-inner",ARROW:".arrow"},u={HOVER:"hover",FOCUS:"focus",CLICK:"click",MANUAL:"manual"},d=function(){function i(t,e){this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var d=i.prototype;return d.enable=function(){this._isEnabled=!0},d.disable=function(){this._isEnabled=!1},d.toggleEnabled=function(){this._isEnabled=!this._isEnabled},d.toggle=function(e){if(this._isEnabled)if(e){var n=this.constructor.DATA_KEY,i=t(e.currentTarget).data(n);i||(i=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(t(this.getTipElement()).hasClass(f.SHOW))return void this._leave(null,this);this._enter(null,this)}},d.dispose=function(){clearTimeout(this._timeout),t.removeData(this.element,this.constructor.DATA_KEY),t(this.element).off(this.constructor.EVENT_KEY),t(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&t(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,null!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},d.show=function(){var e=this;if("none"===t(this.element).css("display"))throw new Error("Please use show on visible elements");var n=t.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){t(this.element).trigger(n);var r=t.contains(this.element.ownerDocument.documentElement,this.element);if(n.isDefaultPrevented()||!r)return;var o=this.getTipElement(),s=q.getUID(this.constructor.NAME);o.setAttribute("id",s),this.element.setAttribute("aria-describedby",s),this.setContent(),this.config.animation&&t(o).addClass(f.FADE);var a="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,c=this._getAttachment(a);this.addAttachmentClass(c);var u=!1===this.config.container?document.body:t(this.config.container);t(o).data(this.constructor.DATA_KEY,this),t.contains(this.element.ownerDocument.documentElement,this.tip)||t(o).appendTo(u),t(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new _t(this.element,o,{placement:c,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:h.ARROW}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),t(o).addClass(f.SHOW),"ontouchstart"in document.documentElement&&t("body").children().on("mouseover",null,t.noop);var d=function(){e.config.animation&&e._fixTransition();var n=e._hoverState;e._hoverState=null,t(e.element).trigger(e.constructor.Event.SHOWN),n===l.OUT&&e._leave(null,e)};q.supportsTransitionEnd()&&t(this.tip).hasClass(f.FADE)?t(this.tip).one(q.TRANSITION_END,d).emulateTransitionEnd(i._TRANSITION_DURATION):d()}},d.hide=function(e){var n=this,i=this.getTipElement(),r=t.Event(this.constructor.Event.HIDE),o=function(){n._hoverState!==l.SHOW&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),t(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),e&&e()};t(this.element).trigger(r),r.isDefaultPrevented()||(t(i).removeClass(f.SHOW),"ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),this._activeTrigger[u.CLICK]=!1,this._activeTrigger[u.FOCUS]=!1,this._activeTrigger[u.HOVER]=!1,q.supportsTransitionEnd()&&t(this.tip).hasClass(f.FADE)?t(i).one(q.TRANSITION_END,o).emulateTransitionEnd(150):o(),this._hoverState="")},d.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},d.isWithContent=function(){return Boolean(this.getTitle())},d.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-tooltip-"+e)},d.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},d.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(h.TOOLTIP_INNER),this.getTitle()),e.removeClass(f.FADE+" "+f.SHOW)},d.setElementContent=function(e,n){var i=this.config.html;"object"==typeof n&&(n.nodeType||n.jquery)?i?t(n).parent().is(e)||e.empty().append(n):e.text(t(n).text()):e[i?"html":"text"](n)},d.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},d._getAttachment=function(t){return s[t.toUpperCase()]},d._setListeners=function(){var e=this;this.config.trigger.split(" ").forEach(function(n){if("click"===n)t(e.element).on(e.constructor.Event.CLICK,e.config.selector,function(t){return e.toggle(t)});else if(n!==u.MANUAL){var i=n===u.HOVER?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,r=n===u.HOVER?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;t(e.element).on(i,e.config.selector,function(t){return e._enter(t)}).on(r,e.config.selector,function(t){return e._leave(t)})}t(e.element).closest(".modal").on("hide.bs.modal",function(){return e.hide()})}),this.config.selector?this.config=t.extend({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},d._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},d._enter=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusin"===e.type?u.FOCUS:u.HOVER]=!0),t(n.getTipElement()).hasClass(f.SHOW)||n._hoverState===l.SHOW?n._hoverState=l.SHOW:(clearTimeout(n._timeout),n._hoverState=l.SHOW,n.config.delay&&n.config.delay.show?n._timeout=setTimeout(function(){n._hoverState===l.SHOW&&n.show()},n.config.delay.show):n.show())},d._leave=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusout"===e.type?u.FOCUS:u.HOVER]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState=l.OUT,n.config.delay&&n.config.delay.hide?n._timeout=setTimeout(function(){n._hoverState===l.OUT&&n.hide()},n.config.delay.hide):n.hide())},d._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},d._getConfig=function(n){return"number"==typeof(n=t.extend({},this.constructor.Default,t(this.element).data(),n)).delay&&(n.delay={show:n.delay,hide:n.delay}),"number"==typeof n.title&&(n.title=n.title.toString()),"number"==typeof n.content&&(n.content=n.content.toString()),q.typeCheckConfig(e,n,this.constructor.DefaultType),n},d._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},d._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(r);null!==n&&n.length>0&&e.removeClass(n.join(""))},d._handlePopperPlacementChange=function(t){this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},d._fixTransition=function(){var e=this.getTipElement(),n=this.config.animation;null===e.getAttribute("x-placement")&&(t(e).removeClass(f.FADE),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},i._jQueryInterface=function(e){return this.each(function(){var n=t(this).data("bs.tooltip"),r="object"==typeof e&&e;if((n||!/dispose|hide/.test(e))&&(n||(n=new i(this,r),t(this).data("bs.tooltip",n)),"string"==typeof e)){if("undefined"==typeof n[e])throw new Error('No method named "'+e+'"');n[e]()}})},z(i,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return a}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return c}},{key:"EVENT_KEY",get:function(){return n}},{key:"DefaultType",get:function(){return o}}]),i}();return t.fn[e]=d._jQueryInterface,t.fn[e].Constructor=d,t.fn[e].noConflict=function(){return t.fn[e]=i,d._jQueryInterface},d}(e),bt=function(t){var e="popover",n=".bs.popover",i=t.fn[e],r=new RegExp("(^|\\s)bs-popover\\S+","g"),o=t.extend({},Tt.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),s=t.extend({},Tt.DefaultType,{content:"(string|element|function)"}),a={FADE:"fade",SHOW:"show"},l={TITLE:".popover-header",CONTENT:".popover-body"},c={HIDE:"hide"+n,HIDDEN:"hidden"+n,SHOW:"show"+n,SHOWN:"shown"+n,INSERTED:"inserted"+n,CLICK:"click"+n,FOCUSIN:"focusin"+n,FOCUSOUT:"focusout"+n,MOUSEENTER:"mouseenter"+n,MOUSELEAVE:"mouseleave"+n},f=function(i){function f(){return i.apply(this,arguments)||this}Z(f,i);var h=f.prototype;return h.isWithContent=function(){return this.getTitle()||this._getContent()},h.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-popover-"+e)},h.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},h.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(l.TITLE),this.getTitle()),this.setElementContent(e.find(l.CONTENT),this._getContent()),e.removeClass(a.FADE+" "+a.SHOW)},h._getContent=function(){return this.element.getAttribute("data-content")||("function"==typeof this.config.content?this.config.content.call(this.element):this.config.content)},h._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(r);null!==n&&n.length>0&&e.removeClass(n.join(""))},f._jQueryInterface=function(e){return this.each(function(){var n=t(this).data("bs.popover"),i="object"==typeof e?e:null;if((n||!/destroy|hide/.test(e))&&(n||(n=new f(this,i),t(this).data("bs.popover",n)),"string"==typeof e)){if("undefined"==typeof n[e])throw new Error('No method named "'+e+'"');n[e]()}})},z(f,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return o}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return c}},{key:"EVENT_KEY",get:function(){return n}},{key:"DefaultType",get:function(){return s}}]),f}(Tt);return t.fn[e]=f._jQueryInterface,t.fn[e].Constructor=f,t.fn[e].noConflict=function(){return t.fn[e]=i,f._jQueryInterface},f}(e),Ct=function(t){var e="scrollspy",n=t.fn[e],i={offset:10,method:"auto",target:""},r={offset:"number",method:"string",target:"(string|element)"},o={ACTIVATE:"activate.bs.scrollspy",SCROLL:"scroll.bs.scrollspy",LOAD_DATA_API:"load.bs.scrollspy.data-api"},s={DROPDOWN_ITEM:"dropdown-item",DROPDOWN_MENU:"dropdown-menu",ACTIVE:"active"},a={DATA_SPY:'[data-spy="scroll"]',ACTIVE:".active",NAV_LIST_GROUP:".nav, .list-group",NAV_LINKS:".nav-link",NAV_ITEMS:".nav-item",LIST_ITEMS:".list-group-item",DROPDOWN:".dropdown",DROPDOWN_ITEMS:".dropdown-item",DROPDOWN_TOGGLE:".dropdown-toggle"},l={OFFSET:"offset",POSITION:"position"},c=function(){function n(e,n){var i=this;this._element=e,this._scrollElement="BODY"===e.tagName?window:e,this._config=this._getConfig(n),this._selector=this._config.target+" "+a.NAV_LINKS+","+this._config.target+" "+a.LIST_ITEMS+","+this._config.target+" "+a.DROPDOWN_ITEMS,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,t(this._scrollElement).on(o.SCROLL,function(t){return i._process(t)}),this.refresh(),this._process()}var c=n.prototype;return c.refresh=function(){var e=this,n=this._scrollElement!==this._scrollElement.window?l.POSITION:l.OFFSET,i="auto"===this._config.method?n:this._config.method,r=i===l.POSITION?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),t.makeArray(t(this._selector)).map(function(e){var n,o=q.getSelectorFromElement(e);if(o&&(n=t(o)[0]),n){var s=n.getBoundingClientRect();if(s.width||s.height)return[t(n)[i]().top+r,o]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},c.dispose=function(){t.removeData(this._element,"bs.scrollspy"),t(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},c._getConfig=function(n){if("string"!=typeof(n=t.extend({},i,n)).target){var o=t(n.target).attr("id");o||(o=q.getUID(e),t(n.target).attr("id",o)),n.target="#"+o}return q.typeCheckConfig(e,n,r),n},c._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},c._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},c._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},c._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(var r=this._offsets.length;r--;)this._activeTarget!==this._targets[r]&&t>=this._offsets[r]&&("undefined"==typeof this._offsets[r+1]||t<this._offsets[r+1])&&this._activate(this._targets[r])}},c._activate=function(e){this._activeTarget=e,this._clear();var n=this._selector.split(",");n=n.map(function(t){return t+'[data-target="'+e+'"],'+t+'[href="'+e+'"]'});var i=t(n.join(","));i.hasClass(s.DROPDOWN_ITEM)?(i.closest(a.DROPDOWN).find(a.DROPDOWN_TOGGLE).addClass(s.ACTIVE),i.addClass(s.ACTIVE)):(i.addClass(s.ACTIVE),i.parents(a.NAV_LIST_GROUP).prev(a.NAV_LINKS+", "+a.LIST_ITEMS).addClass(s.ACTIVE),i.parents(a.NAV_LIST_GROUP).prev(a.NAV_ITEMS).children(a.NAV_LINKS).addClass(s.ACTIVE)),t(this._scrollElement).trigger(o.ACTIVATE,{relatedTarget:e})},c._clear=function(){t(this._selector).filter(a.ACTIVE).removeClass(s.ACTIVE)},n._jQueryInterface=function(e){return this.each(function(){var i=t(this).data("bs.scrollspy"),r="object"==typeof e&&e;if(i||(i=new n(this,r),t(this).data("bs.scrollspy",i)),"string"==typeof e){if("undefined"==typeof i[e])throw new Error('No method named "'+e+'"');i[e]()}})},z(n,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}},{key:"Default",get:function(){return i}}]),n}();return t(window).on(o.LOAD_DATA_API,function(){for(var e=t.makeArray(t(a.DATA_SPY)),n=e.length;n--;){var i=t(e[n]);c._jQueryInterface.call(i,i.data())}}),t.fn[e]=c._jQueryInterface,t.fn[e].Constructor=c,t.fn[e].noConflict=function(){return t.fn[e]=n,c._jQueryInterface},c}(e),At=function(t){var e=t.fn.tab,n={HIDE:"hide.bs.tab",HIDDEN:"hidden.bs.tab",SHOW:"show.bs.tab",SHOWN:"shown.bs.tab",CLICK_DATA_API:"click.bs.tab.data-api"},i={DROPDOWN_MENU:"dropdown-menu",ACTIVE:"active",DISABLED:"disabled",FADE:"fade",SHOW:"show"},r={DROPDOWN:".dropdown",NAV_LIST_GROUP:".nav, .list-group",ACTIVE:".active",ACTIVE_UL:"> li > .active",DATA_TOGGLE:'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',DROPDOWN_TOGGLE:".dropdown-toggle",DROPDOWN_ACTIVE_CHILD:"> .dropdown-menu .active"},o=function(){function e(t){this._element=t}var o=e.prototype;return o.show=function(){var e=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&t(this._element).hasClass(i.ACTIVE)||t(this._element).hasClass(i.DISABLED))){var o,s,a=t(this._element).closest(r.NAV_LIST_GROUP)[0],l=q.getSelectorFromElement(this._element);if(a){var c="UL"===a.nodeName?r.ACTIVE_UL:r.ACTIVE;s=t.makeArray(t(a).find(c)),s=s[s.length-1]}var f=t.Event(n.HIDE,{relatedTarget:this._element}),h=t.Event(n.SHOW,{relatedTarget:s});if(s&&t(s).trigger(f),t(this._element).trigger(h),!h.isDefaultPrevented()&&!f.isDefaultPrevented()){l&&(o=t(l)[0]),this._activate(this._element,a);var u=function(){var i=t.Event(n.HIDDEN,{relatedTarget:e._element}),r=t.Event(n.SHOWN,{relatedTarget:s});t(s).trigger(i),t(e._element).trigger(r)};o?this._activate(o,o.parentNode,u):u()}}},o.dispose=function(){t.removeData(this._element,"bs.tab"),this._element=null},o._activate=function(e,n,o){var s,a=this,l=(s="UL"===n.nodeName?t(n).find(r.ACTIVE_UL):t(n).children(r.ACTIVE))[0],c=o&&q.supportsTransitionEnd()&&l&&t(l).hasClass(i.FADE),f=function(){return a._transitionComplete(e,l,c,o)};l&&c?t(l).one(q.TRANSITION_END,f).emulateTransitionEnd(150):f(),l&&t(l).removeClass(i.SHOW)},o._transitionComplete=function(e,n,o,s){if(n){t(n).removeClass(i.ACTIVE);var a=t(n.parentNode).find(r.DROPDOWN_ACTIVE_CHILD)[0];a&&t(a).removeClass(i.ACTIVE),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(t(e).addClass(i.ACTIVE),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),o?(q.reflow(e),t(e).addClass(i.SHOW)):t(e).removeClass(i.FADE),e.parentNode&&t(e.parentNode).hasClass(i.DROPDOWN_MENU)){var l=t(e).closest(r.DROPDOWN)[0];l&&t(l).find(r.DROPDOWN_TOGGLE).addClass(i.ACTIVE),e.setAttribute("aria-expanded",!0)}s&&s()},e._jQueryInterface=function(n){return this.each(function(){var i=t(this),r=i.data("bs.tab");if(r||(r=new e(this),i.data("bs.tab",r)),"string"==typeof n){if("undefined"==typeof r[n])throw new Error('No method named "'+n+'"');r[n]()}})},z(e,null,[{key:"VERSION",get:function(){return"4.0.0-beta.2"}}]),e}();return t(document).on(n.CLICK_DATA_API,r.DATA_TOGGLE,function(e){e.preventDefault(),o._jQueryInterface.call(t(this),"show")}),t.fn.tab=o._jQueryInterface,t.fn.tab.Constructor=o,t.fn.tab.noConflict=function(){return t.fn.tab=e,o._jQueryInterface},o}(e);return function(t){if("undefined"==typeof t)throw new Error("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1===e[0]&&9===e[1]&&e[2]<1||e[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(e),t.Util=q,t.Alert=J,t.Button=$,t.Carousel=tt,t.Collapse=et,t.Dropdown=vt,t.Modal=Et,t.Popover=bt,t.Scrollspy=Ct,t.Tab=At,t.Tooltip=Tt,t}({},jQuery); //# sourceMappingURL=bootstrap.bundle.min.js.map \ No newline at end of file diff --git a/dist/js/bootstrap.bundle.min.js.map b/dist/js/bootstrap.bundle.min.js.map index 7f3e49d7652fd579173db026b7cd151bc5524a01..c415a10e20e76c454289c797709cfb681f9a9b0a 100644 GIT binary patch delta 37270 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 Nc<Lwj?fknx{@+8rtsDRV delta 37695 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 ABLDyZ -- GitLab