unpoly-rails 0.56.0 → 0.56.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of unpoly-rails might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d87f0c7ddd74397b5396ee163bc18cb2579bb251942c6510507ba979f84e9e3a
4
- data.tar.gz: 1418a2cc65b35e9104f907e44e583e6000253a8d0c08bf577975a2323941e8d6
3
+ metadata.gz: ea620ba0524c0373b858c70455a10d5e587e929871929b8f26ab7b7393c6cdb7
4
+ data.tar.gz: e4e797a73cae4694f6c462f63610b7fbf1e737628dd3dfe32027505c83d056a1
5
5
  SHA512:
6
- metadata.gz: 03477e7f970484239d5a0d534849b0667c10e50cbfa9b0d29925a3725d7abcc57a8f5e7f805278237aec0e6be159ce8bfe1c71f6d2ae956e3a2dc7078b14b689
7
- data.tar.gz: 68c3eb323cc58e8a1f3c9724292377a282e79340dffaf347fbd603cb9e80deac864087a175f03739577f83b3aea059a8c89f5a09ee1d3f0339c7200987314467
6
+ metadata.gz: 8a3f1515ae8dd21da84e74d298e09057b0abc20b9933afd945ca23dfc96d1ff72c7ad5ad1147de7340a423da415e15367023d1349ee73174c8a1ac35074377a4
7
+ data.tar.gz: 79620d81af06482f88bf997b3c9592cb3f40f04d32643fddab152ef6fd82564e81576bb3f6374c2296696312f80268924f4dd3daa67b7e23a3343d8e802e0b7c
data/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ Changes to this project will be documented in this file.
6
6
  This project mostly adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
8
 
9
+ Unreleased
10
+ ----------
11
+
12
+ - New stable selector [`.up-destroying`](/up-destroying). This CSS class is assigned to elements before they are [destroyed](/up.destroy) or while they are being removed by a [transition](/up.morph).
13
+ - Fix a bug where [`up.first()`](/up.first) would sometimes find an element that is being destroyed.
14
+
15
+
9
16
  0.56.0
10
17
  ------
11
18
 
@@ -28,7 +35,7 @@ Maintaining the [`.up-current`](/up-nav-a.up-current) on all links turned out to
28
35
 
29
36
  ### Animation
30
37
 
31
- - When performing an [animated page transition](/up.motion) Unpoly will no longer create copies of the old and new fragment versions. The animation will instead be performed on the original fragment versions.
38
+ - When performing an [animated page transition](/up.motion) Unpoly will no longer create copies of the old and new fragment versions. The animation will instead be performed on the fragment elements themselves.
32
39
  - When animating an element with an existing [CSS transition](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions), Unpoly will now pause the CSS transition in its current state, perform the animation, then resume the CSS transition.
33
40
  - Unpoly now does less work when animation is disabled globally through `up.motion.config.enabled = false`.
34
41
  - [`up.morph()`](/up.morph) will now expect the new fragment version to be detached from the DOM before morphing.
data/dist/unpoly.js CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  (function() {
7
7
  window.up = {
8
- version: "0.56.0",
8
+ version: "0.56.1",
9
9
  renamedModule: function(oldName, newName) {
10
10
  return typeof Object.defineProperty === "function" ? Object.defineProperty(up, oldName, {
11
11
  get: function() {
@@ -2327,17 +2327,17 @@ that might save you from loading something like [Lodash](https://lodash.com/).
2327
2327
  * Registers an empty rejection handler with the given promise.
2328
2328
  * This prevents browsers from printing "Uncaught (in promise)" to the error
2329
2329
  * console when the promise is rejection.
2330
- #
2330
+ *
2331
2331
  * This is helpful for event handlers where it is clear that no rejection
2332
2332
  * handler will be registered:
2333
- #
2333
+ *
2334
2334
  * up.on('submit', 'form[up-target]', (event, $form) => {
2335
2335
  * promise = up.submit($form)
2336
2336
  * up.util.muteRejection(promise)
2337
2337
  * })
2338
- #
2338
+ *
2339
2339
  * Does nothing if passed a missing value.
2340
- #
2340
+ *
2341
2341
  * @function up.util.muteRejection
2342
2342
  * @param {Promise|undefined|null} promise
2343
2343
  * @return {Promise}
@@ -2377,8 +2377,8 @@ that might save you from loading something like [Lodash](https://lodash.com/).
2377
2377
  var error;
2378
2378
  try {
2379
2379
  return block();
2380
- } catch (_error) {
2381
- error = _error;
2380
+ } catch (error1) {
2381
+ error = error1;
2382
2382
  return Promise.reject(error);
2383
2383
  }
2384
2384
  };
@@ -4445,7 +4445,7 @@ Internet Explorer 10 or lower
4445
4445
  sessionStorage = u.memoize(function() {
4446
4446
  try {
4447
4447
  return window.sessionStorage;
4448
- } catch (_error) {
4448
+ } catch (error) {
4449
4449
  return polyfilledSessionStorage();
4450
4450
  }
4451
4451
  });
@@ -7567,8 +7567,8 @@ is built from these functions. You can use them to extend Unpoly from your
7567
7567
  try {
7568
7568
  improvedTarget = bestPreflightSelector(selectorOrElement, successOptions);
7569
7569
  improvedFailTarget = bestPreflightSelector(options.failTarget, failureOptions);
7570
- } catch (_error) {
7571
- e = _error;
7570
+ } catch (error) {
7571
+ e = error;
7572
7572
  return Promise.reject(e);
7573
7573
  }
7574
7574
  request = {
@@ -7836,13 +7836,15 @@ is built from these functions. You can use them to extend Unpoly from your
7836
7836
  options.keepPlans = transferKeepableElements($old, $new, options);
7837
7837
  $parent = $old.parent();
7838
7838
  morphOptions = u.merge(options, {
7839
- afterInsert: function() {
7840
- up.hello($new, options);
7839
+ beforeStart: function() {
7841
7840
  markElementAsDestroying($old);
7842
7841
  return emitFragmentDestroy($old, {
7843
7842
  log: false
7844
7843
  });
7845
7844
  },
7845
+ afterInsert: function() {
7846
+ return up.hello($new, options);
7847
+ },
7846
7848
  beforeDetach: function() {
7847
7849
  return up.syntax.clean($old);
7848
7850
  },
@@ -8101,7 +8103,8 @@ is built from these functions. You can use them to extend Unpoly from your
8101
8103
 
8102
8104
  /***
8103
8105
  Returns the first element matching the given selector, but
8104
- ignores elements that are being [destroyed](/up.destroy) or [transitioned](/up.morph).
8106
+ ignores elements that are being [destroyed](/up.destroy) or that are being
8107
+ removed by a [transition](/up.morph).
8105
8108
 
8106
8109
  If the given argument is already a jQuery collection (or an array
8107
8110
  of DOM elements), the first element matching these conditions
@@ -8109,6 +8112,8 @@ is built from these functions. You can use them to extend Unpoly from your
8109
8112
 
8110
8113
  Returns `undefined` if no element matches these conditions.
8111
8114
 
8115
+ Also see the [`.up-destroying`](/up-destroying) class.
8116
+
8112
8117
  @function up.first
8113
8118
  @param {string|Element|jQuery|Array<Element>} selectorOrElement
8114
8119
  @param {string} options.layer
@@ -8242,6 +8247,18 @@ is built from these functions. You can use them to extend Unpoly from your
8242
8247
  shouldLogDestruction = function($element, options) {
8243
8248
  return options.log !== false && !$element.is('.up-placeholder, .up-tooltip, .up-modal, .up-popup');
8244
8249
  };
8250
+
8251
+ /***
8252
+ Elements are assigned the `.up-destroying` class before they are [destroyed](/up.destroy)
8253
+ or while they are being removed by a [transition](/up.morph).
8254
+
8255
+ If the removal is animated, the class is assigned before the animation.
8256
+
8257
+ Also see the [`up.first()`](/up.first) function.
8258
+
8259
+ @selector .up-destroying
8260
+ @stable
8261
+ */
8245
8262
  markElementAsDestroying = function($element) {
8246
8263
  return $element.addClass('up-destroying');
8247
8264
  };
@@ -8684,7 +8701,7 @@ You can define custom animations using [`up.transition()`](/up.transition) and
8684
8701
  @experimental
8685
8702
  */
8686
8703
  morph = function(source, target, transitionObject, options) {
8687
- var $both, $new, $old, $viewport, oldRemote, promise, scrollNew, scrollTopBeforeReveal, trackable, transitionFn, willMorph;
8704
+ var $both, $new, $old, $viewport, afterDetach, afterInsert, beforeDetach, beforeStart, oldRemote, promise, scrollNew, scrollTopBeforeReveal, trackable, transitionFn, willMorph;
8688
8705
  options = u.options(options);
8689
8706
  options = u.assign(options, animateOptions(options));
8690
8707
  $old = $(source);
@@ -8692,9 +8709,11 @@ You can define custom animations using [`up.transition()`](/up.transition) and
8692
8709
  $both = $old.add($new);
8693
8710
  transitionFn = findTransitionFn(transitionObject);
8694
8711
  willMorph = willAnimate($old, transitionFn, options);
8695
- options.afterInsert || (options.afterInsert = u.noop);
8696
- options.beforeDetach || (options.beforeDetach = u.noop);
8697
- options.afterDetach || (options.afterDetach = u.noop);
8712
+ beforeStart = u.pluckKey(options, 'beforeStart') || u.noop;
8713
+ afterInsert = u.pluckKey(options, 'afterInsert') || u.noop;
8714
+ beforeDetach = u.pluckKey(options, 'beforeDetach') || u.noop;
8715
+ afterDetach = u.pluckKey(options, 'afterDetach') || u.noop;
8716
+ beforeStart();
8698
8717
  scrollNew = function() {
8699
8718
  var scrollOptions;
8700
8719
  scrollOptions = u.merge(options, {
@@ -8712,7 +8731,7 @@ You can define custom animations using [`up.transition()`](/up.transition) and
8712
8731
  oldRemote = up.layout.absolutize($old, {
8713
8732
  afterMeasure: function() {
8714
8733
  $new.insertBefore($old);
8715
- return options.afterInsert();
8734
+ return afterInsert();
8716
8735
  }
8717
8736
  });
8718
8737
  trackable = function() {
@@ -8725,19 +8744,19 @@ You can define custom animations using [`up.transition()`](/up.transition) and
8725
8744
  return transitionFn($old, $new, options);
8726
8745
  });
8727
8746
  promise = promise.then(function() {
8728
- options.beforeDetach();
8747
+ beforeDetach();
8729
8748
  $old.detach();
8730
8749
  oldRemote.$bounds.remove();
8731
- return options.afterDetach();
8750
+ return afterDetach();
8732
8751
  });
8733
8752
  return promise;
8734
8753
  };
8735
8754
  return motionTracker.claim($both, trackable, options);
8736
8755
  } else {
8737
- options.beforeDetach();
8756
+ beforeDetach();
8738
8757
  swapElementsDirectly($old, $new);
8739
- options.afterInsert();
8740
- options.afterDetach();
8758
+ afterInsert();
8759
+ afterDetach();
8741
8760
  promise = scrollNew();
8742
8761
  return promise;
8743
8762
  }
data/dist/unpoly.min.js CHANGED
@@ -1,4 +1,4 @@
1
- (function(){window.up={version:"0.56.0",renamedModule:function(t,e){return"function"==typeof Object.defineProperty?Object.defineProperty(up,t,{get:function(){return up.log.warn("up."+t+" has been renamed to up."+e),up[e]}}):void 0}}}).call(this),function(){var t=[].slice,e={}.hasOwnProperty,n=function(t,e){return function(){return t.apply(e,arguments)}};up.util=function(r){var o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F,$,A,D,O,M,R,U,j,q,L,z,_,N,I,H,K,Q,V,B,W,X,G,J,Y,Z,te,ee,ne,re,oe,ie,ue,se,ae,le,pe,ce,he,fe,de,me,ve,ge,ye,be,we,ke,Te,Se,Ee,Ce,xe,Pe,Fe,$e,Ae,De,Oe,Me,Re,Ue,je,qe,Le,ze,_e,Ne,Ie,He,Ke,Qe,Ve,Be,We,Xe,Ge,Je,Ye,Ze,tn,en,nn,rn,on,un,sn,an,ln,pn,cn,hn,fn,dn,mn,vn,gn,yn,bn,wn,kn,Tn,Sn,En,Cn,xn,Pn,Fn,$n,An,Dn,On,Mn,Rn,Un,jn,qn,Ln,zn,_n,Nn;return Ve=function(){},w=function(){return Promise.resolve()},qe=function(e){var n,r;return r=void 0,n=!1,function(){var o;return o=1<=arguments.length?t.call(arguments,0):[],n?r:(n=!0,r=e.apply(null,o))}},Ee=function(t,e){return e=e.toString(),(""===e||"80"===e)&&"http:"===t||"443"===e&&"https:"===t},Xe=function(t,e){var n,r,o;return r=rn(t),n=r.protocol+"//"+r.hostname,Ee(r.protocol,r.port)||(n+=":"+r.port),o=r.pathname,"/"!==o[0]&&(o="/"+o),(null!=e?e.stripTrailingSlash:void 0)===!0&&(o=o.replace(/\/$/,"")),n+=o,(null!=e?e.hash:void 0)===!0&&(n+=r.hash),(null!=e?e.search:void 0)!==!1&&(n+=r.search),n},se=function(t){var e;return e=rn(location.href),t=rn(t),e.protocol!==t.protocol||e.host!==t.host},rn=function(t){var e;return ve(t)&&(t=J(t)),t.pathname?t:(e=r("<a>").attr({href:t}).get(0),ie(e.hostname)&&(e.href=e.href),e)},Be=function(t){return t?t.toUpperCase():"GET"},_e=function(t){return"GET"!==t&&"HEAD"!==t},o=function(t){var e,n,o,i,u,s,a,l,p,c,h,f,d,m,v,g;for(v=t.split(/[ >]/),o=null,c=h=0,d=v.length;d>h;c=++h){for(s=v[c],u=s.match(/(^|\.|\#)[A-Za-z0-9\-_]+/g),g="div",i=[],p=null,f=0,m=u.length;m>f;f++)switch(a=u[f],a[0]){case".":i.push(a.substr(1));break;case"#":p=a.substr(1);break;default:g=a}l="<"+g,i.length&&(l+=' class="'+i.join(" ")+'"'),p&&(l+=' id="'+p+'"'),l+=">",e=r(l),n&&e.appendTo(n),0===c&&(o=e),n=e}return o},i=function(t,e){var n;return null==e&&(e=document.body),n=o(t),n.addClass("up-placeholder"),n.appendTo(e),n},xn=function(t){var e,n,o,i,u,s,a,l,p,c,h;if(e=r(t),p=void 0,c=e.prop("tagName").toLowerCase(),h=sn(e.attr("up-id")))p=k("up-id",h);else if(i=sn(e.attr("id")))p=i.match(/^[a-z0-9\-_]+$/i)?"#"+i:k("id",i);else if(l=sn(e.attr("name")))p=c+k("name",l);else if(o=sn(Qe(e)))for(p="",u=0,a=o.length;a>u;u++)s=o[u],p+="."+s;else p=(n=sn(e.attr("aria-label")))?k("aria-label",n):c;return p},k=function(t,e){return e=e.replace(/"/g,'\\"'),"["+t+'="'+e+'"]'},Qe=function(t){var e,n;return e=t.attr("class")||"",n=e.split(" "),Sn(n,function(t){return Te(t)&&!t.match(/^up-/)})},U=function(t){var e;return e=new DOMParser,e.parseFromString(t,"text/html")},b=function(){var n,r,o,i,u,s,a;for(s=arguments[0],u=2<=arguments.length?t.call(arguments,1):[],n=0,o=u.length;o>n;n++){i=u[n];for(r in i)e.call(i,r)&&(a=i[r],s[r]=a)}return s},y=Object.assign||b,Rn=r.trim,Me=function(t){return Ce(t)?function(e){return e[t]}:t},Re=function(t,e){var n,r,o,i,u;if(0===t.length)return[];for(e=Me(e),u=[],n=o=0,i=t.length;i>o;n=++o)r=t[n],u.push(e(r,n));return u},_=Re,On=function(t,e){var n,r,o,i;for(i=[],n=r=0,o=t-1;o>=0?o>=r:r>=o;n=o>=0?++r:--r)i.push(e(n));return i},ye=function(t){return null===t},Pe=function(t){return void 0===t},ae=function(t){return!Pe(t)},ge=function(t){return Pe(t)||ye(t)},me=function(t){return!ge(t)},ie=function(t){return ge(t)?!0:de(t)?!1:we(t)&&0===Object.keys(t).length?!0:0===t.length?!0:!1},sn=function(t,e){return null==e&&(e=Te),e(t)?t:void 0},Te=function(t){return!ie(t)},de=function(t){return"function"==typeof t},Ce=function(t){return"string"==typeof t||t instanceof String},be=function(t){return"number"==typeof t||t instanceof Number},ke=function(t){return!("object"!=typeof t||ye(t)||ve(t)||Se(t)||fe(t)||oe(t))},we=function(t){var e;return e=typeof t,"object"===e&&!ye(t)||"function"===e},pe=function(t){return!(!t||1!==t.nodeType)},ve=function(t){return t instanceof jQuery},Se=function(t){return we(t)&&de(t.then)},oe=Array.isArray,fe=function(t){return t instanceof FormData},Mn=function(t){return Array.prototype.slice.call(t)},O=function(t){return oe(t)?t=t.slice():we(t)&&!de(t)?t=y({},t):up.fail("Cannot copy %o",t),t},J=function(t){return ve(t)?t.get(0):Ce(t)?r(t).get(0):t},Le=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],y.apply(null,[{}].concat(t.call(e)))},nn=function(t,e){var n,r,o,i;if(o=t?O(t):{},e)for(r in e)n=e[r],i=o[r],ge(i)&&(i=n),o[r]=i;return o},en=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],L(e,me)},L=function(t,e){var n,r,o,i;for(i=void 0,r=0,o=t.length;o>r;r++)if(n=t[r],e(n)){i=n;break}return i},m=function(t,e){var n,r,o,i,u;for(e=Me(e),u=!1,r=o=0,i=t.length;i>o;r=++o)if(n=t[r],e(n,r)){u=!0;break}return u},f=function(t,e){var n,r,o,i,u;for(e=Me(e),u=!0,r=o=0,i=t.length;i>o;r=++o)if(n=t[r],!e(n,r)){u=!1;break}return u},P=function(t){return Sn(t,me)},Un=function(t){return t.length<2?t:An(g(t))},jn=function(t,e){var n;return t.length<2?t:(e=Me(e),n=new Set,Sn(t,function(t,r){var o;return o=e(t,r),n.has(o)?!1:(n.add(o),!0)}))},An=function(t){var e;return e=[],t.forEach(function(t){return e.push(t)}),e},g=function(t){var e;return e=new Set,t.forEach(function(t){return e.add(t)}),e},Sn=function(t,e){var n;return e=Me(e),n=[],_(t,function(t,r){return e(t,r)?n.push(t):void 0}),n},dn=function(t,e){return e=Me(e),Sn(t,function(t,n){return!e(t,n)})},re=function(t,e){return Sn(t,function(t){return A(e,t)})},c=function(t,e){return C(t,e,"add")},gn=function(t,e){return C(t,e,"remove")},C=function(t,e,n){var r;return r=J(t).classList,oe(e)?_(e,function(t){return r[n](t)}):r[n](e)},h=function(t,e){return c(t,e),function(){return gn(t,e)}},Y=function(t,e){var n;return n=J(t).classList,n.contains(e)},an=function(){var e,n,r,o;return e=arguments[0],r=2<=arguments.length?t.call(arguments,1):[],o=function(){var t,o,i;for(i=[],t=0,o=r.length;o>t;t++)n=r[t],i.push(e.attr(n));return i}(),L(o,Te)},$n=function(t,e){return setTimeout(e,t)},Ke=function(t){return setTimeout(t,0)},Ne=function(t){return Promise.resolve().then(t)},Oe=function(t){return t[t.length-1]},x=function(){var t;return t=document.documentElement,{width:t.clientWidth,height:t.clientHeight}},Tn=qe(function(){var t,e,n;return t=r("<div>"),e=t.get(0),t.attr("up-viewport",""),_n(e,{position:"absolute",top:"0",left:"0",width:"100px",height:"100px",overflowY:"scroll"}),t.appendTo(document.body),n=e.offsetWidth-e.clientWidth,t.remove(),n}),z=function(){var t,e,n,o,i,u;return e=document.body,t=r(e),u=document.documentElement,n=cn(t,"overflowY"),i="scroll"===n,o="hidden"===n,i||!o&&u.scrollHeight>u.clientHeight},Nn=function(t,e,n){var o,i,u;return o=r(t),i=fn(o,Object.keys(e)),u=function(){return _n(o,i)},_n(o,e),n?(n(),u()):u},G=function(t){return t=J(t),t.offsetHeight},F=function(t){var e;return e=Nn(t,{transition:"none"}),G(t),e},Ue=function(t){var e;return e=J(t),{top:hn(e,"marginTop"),right:hn(e,"marginRight"),bottom:hn(e,"marginBottom"),left:hn(e,"marginLeft")}},je=function(t,e){var n,o,i,u,s,a;return e=nn(e,{relative:!1,inner:!1,includeMargin:!1}),e.relative?e.relative===!0?u=t.position():(n=r(e.relative),s=t.offset(),n.is(document)?u=s:(i=n.offset(),u={left:s.left-i.left,top:s.top-i.top})):u=t.offset(),o={left:u.left,top:u.top},e.inner?(o.width=t.width(),o.height=t.height()):(o.width=t.outerWidth(),o.height=t.outerHeight()),e.includeMargin&&(a=Ue(t),o.left-=a.left,o.top-=a.top,o.height+=a.top+a.bottom,o.width+=a.left+a.right),o},M=function(t,e){var n,r,o,i,u;for(i=t.get(0).attributes,u=[],r=0,o=i.length;o>r;r++)n=i[r],u.push(n.specified?e.attr(n.name,n.value):void 0);return u},Cn=function(t,e){var n;return n=r(),t.is(e)&&(n=n.add(t)),n=n.add(t.find(e))},En=function(t,e){var n,r;return r=Cn(t,e),n=t.parents(e),r.add(n)},I=function(t){return 27===t.keyCode},A=function(t,e){return t.indexOf(e)>=0},E=function(t,e){var n;switch(n=t.attr(e)){case"false":return!1;case"true":case"":case e:return!0;default:return n}},Ye=function(){var e,n,r,o,i,u;for(o=arguments[0],i=2<=arguments.length?t.call(arguments,1):[],e={},n=0,r=i.length;r>n;n++)u=i[n],u in o&&(e[u]=o[u]);return e},K=function(){var e,n,r,o,i,u;for(o=arguments[0],i=2<=arguments.length?t.call(arguments,1):[],e=O(o),n=0,r=i.length;r>n;n++)u=i[n],delete e[u];return e},Fe=function(t){return!(t.metaKey||t.shiftKey||t.ctrlKey)},$e=function(t){var e;return e=Pe(t.button)||0===t.button,e&&Fe(t)},qn=function(){return new Promise(Ve)},Ge=function(){return r()},Fn=function(t,e){var n,r,o;r=[];for(n in e)o=e[n],r.push(ge(t.attr(n))?t.attr(n,o):void 0);return r},vn=function(t,e){var n;return n=t.indexOf(e),n>=0?(t.splice(n,1),e):void 0},H=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],de(n)?n.apply(null,e):n},$=function(t){var e;return e=tn(t),Object.preventExtensions(e),e},tn=function(t){var e;return null==t&&(t={}),e={},e.reset=function(){var n;return n=t,de(n)&&(n=n()),y(e,n)},e.reset(),e},Ln=function(t){var e,n;return t=J(t),e=t.parentNode,n=Mn(t.childNodes),_(n,function(n){return e.insertBefore(n,t)}),e.removeChild(t)},Je=function(t){var e,n;for(e=void 0;(t=t.parent())&&t.length;)if(n=cn(t,"position"),"absolute"===n||"relative"===n||t.is("body")){e=t;break}return e},he=function(t){var e,n;for(e=r(t);;){if(n=cn(e,"position"),"fixed"===n)return!0;if(e=e.parent(),0===e.length||e.is(document))return!1}},W=function(t,e){var n,o,i,u;return n=r(t),o=Je(n),i=n.position(),u=o.offset(),_n(n,{position:"absolute",left:i.left-u.left,top:i.top-u.top+e.scrollTop(),right:"",bottom:""})},bn=function(t){var e,n,r,o,i,u,s;if(oe(t),fe(t))return up.fail("Cannot convert FormData into an array");for(u=wn(t),e=[],s=u.split("&"),n=0,r=s.length;r>n;n++)i=s[n],Te(i)&&(o=i.split("="),e.push({name:decodeURIComponent(o[0]),value:decodeURIComponent(o[1])}));return e},wn=function(t,e){var n;if(e=nn(e,{purpose:"url"}),Ce(t))return t.replace(/^\?/,"");if(fe(t))return up.fail("Cannot convert FormData into a query string");if(Te(t)){switch(n=r.param(t),e.purpose){case"url":n=n.replace(/\+/g,"%20");break;case"form":n=n.replace(/\%20/g,"+");break;default:up.fail("Unknown purpose %o",e.purpose)}return n}return""},u=function(t){var e,n;return n="input[type=submit], button[type=submit], button:not([type])",e=r(document.activeElement),e.is(n)&&t.has(e)?e:t.find(n).first()},kn=function(t){var e,n,o,i,s,a;return n=r(t),a=n.find("input[type=file]").length,e=u(n),o=e.attr("name"),i=e.val(),s=a?new FormData(n.get(0)):n.serializeArray(),Te(o)&&v(s,o,i),s},v=function(t,e,n,r){var o;return t||(t=[]),oe(t)?t.push({name:e,value:n}):fe(t)?t.append(e,n):we(t)?t[e]=n:Ce(t)&&(o=wn([{name:e,value:n}],r),t=[t,o].join("&")),t},ze=function(t,e){return _(bn(e),function(e){return t=v(t,e.name,e.value)}),t},B=function(){var e,n,r,o,i,u;throw e=1<=arguments.length?t.call(arguments,0):[],oe(e[0])?(r=e[0],u=e[1]||{}):(r=e,u={}),(o=up.log).error.apply(o,r),zn().then(function(){return up.toast.open(r,u)}),n=(i=up.browser).sprintf.apply(i,r),new Error(n)},p={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"},N=function(t){return t.replace(/[&<>"]/g,function(t){return p[t]})},un=function(t,e){var n;return n=t[e],delete t[e],n},yn=function(t,e,n){return t[n]=un(t,e)},on=function(t,e){var n,o;return n=r(t),o=n.data(e),n.removeData(e),o},V=function(t){var e;return e=Oe(t),ke(e)?t.pop():{}},s=/[^\-\_]+?(?=[A-Z\-\_]|$)/g,D=function(t,e,n){var r;return r=t.match(s),r=Re(r,n),r.join(e)},Ae=function(t){return D(t,"-",function(t){return t.toLowerCase()})},T=function(t){return D(t,"",function(t,e){return 0===e?t.toLowerCase():t.charAt(0).toUpperCase()+t.substr(1).toLowerCase()})},De=function(t){return R(t,Ae)},S=function(t){return R(t,T)},R=function(t,e){var n,r,o;r={};for(n in t)o=t[n],n=e(n),r[n]=o;return r},Ze=function(t){return hn(t,"opacity")},zn=qe(function(){return r.isReady?Promise.resolve():new Promise(function(t){return r(t)})}),ne=function(t){return t},le=function(t){return t=J(t),!r.contains(document.documentElement,t)},ln=function(e){var n,r;return n=He(),r=function(){var r,o;return r=1<=arguments.length?t.call(arguments,0):[],o=e.apply(null,r),n.resolve(o),o},r.promise=n.promise(),r},l=function(){function e(){this.asap=n(this.asap,this),this.poke=n(this.poke,this),this.allTasks=n(this.allTasks,this),this.promise=n(this.promise,this),this.reset=n(this.reset,this),this.reset()}return e.prototype.reset=function(){return this.queue=[],this.currentTask=void 0},e.prototype.promise=function(){var t;return t=Oe(this.allTasks()),(null!=t?t.promise:void 0)||Promise.resolve()},e.prototype.allTasks=function(){var t;return t=[],this.currentTask&&t.push(this.currentTask),t=t.concat(this.queue)},e.prototype.poke=function(){var t;return!this.currentTask&&(this.currentTask=this.queue.shift())?(t=this.currentTask(),d(t,function(t){return function(){return t.currentTask=void 0,t.poke()}}(this))):void 0},e.prototype.asap=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],this.queue=Re(e,ln),this.poke(),this.promise()},e}(),Dn=function(t){var e;return e=r(t),e.is("[type=checkbox], [type=radio]")&&!e.is(":checked")?void 0:e.val()},Pn=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],function(){return Re(e,function(t){return t()})}},pn=function(t){var e,n;return n=void 0,e=new Promise(function(e){return n=$n(t,e)}),e.cancel=function(){return clearTimeout(n)},e},ee=function(t){var e,n,r,o;return e=je(t),r=x(),n=e.left+.5*e.width,o=.5*r.width,o>n?"left":"right"},q=function(t,e){var n;return n=r("<div></div>"),n.insertAfter(t),t.detach(),n.replaceWith(e),t},te=function(t){return _n(t,{display:"none"})},cn=function(t,e){var n;return t=J(t),n=window.getComputedStyle(t),Q(n,e)},hn=function(t,e){var n;return n=cn(t,e),me(n)?parseFloat(n):void 0},fn=function(t,e){var n;return t=J(t),n=t.style,Q(n,e)},Q=function(e,n){return Ce(n)?e[n]:Ye.apply(null,[e].concat(t.call(n)))},_n=function(t,e){var n,r,o,i;t=J(t),o=t.style,r=[];for(n in e)i=e[n],i=We(n,i),r.push(o[n]=i);return r},We=function(t,e){return ge(e)?e="":a.has(t)&&(e=j(e)),e},a=g(["top","right","bottom","left","padding","paddingTop","paddingRight","paddingBottom","paddingLeft","margin","marginTop","marginRight","marginBottom","marginLeft","width","height","maxWidth","maxHeight","minWidth","minHeight"]),j=function(t){return be(t)||Ce(t)&&/^\d+$/.test(t)?t.toString()+"px":t},Z=function(t){var e,n,r,o,i;return ke(t)?i=t:(n=J(n),i=getComputedStyle(n)),o=i.transitionProperty,e=i.transitionDuration,r="none"===o||"all"===o&&0===e,!r},X=function(t){var e,n,r,o;for(e=[],n=0,r=t.length;r>n;n++)o=t[n],oe(o)?e=e.concat(o):e.push(o);return e},xe=function(t){return!!t},d=function(t,e){return t.then(e,e)},Ie=function(t){return null!=t?t["catch"](Ve):void 0},He=function(){var t,e;return e=void 0,dn=void 0,t=new Promise(function(t,n){return e=t,dn=n}),t.resolve=e,t.reject=dn,t.promise=function(){return t},t},mn=function(t){var e;try{return t()}catch(n){return e=n,Promise.reject(e)}},ue=function(t){return r(t).parents("body").length>0},ce=function(t,e){return typeof t!=typeof e?!1:oe(t)?t.length===e.length&&f(t,function(t,n){return ce(t,e[n])}):we(t)?B("isEqual cannot compare objects yet"):t===e},{requestDataAsArray:bn,requestDataAsQuery:wn,appendRequestData:v,mergeRequestData:ze,requestDataFromForm:kn,offsetParent:Je,fixedToAbsolute:W,isFixed:he,presentAttr:an,parseUrl:rn,normalizeUrl:Xe,normalizeMethod:Be,methodAllowsPayload:_e,createElementFromHtml:U,$createElementFromSelector:o,$createPlaceholder:i,selectorForElement:xn,assign:y,assignPolyfill:b,copy:O,merge:Le,options:nn,option:en,fail:B,each:_,map:Re,times:On,any:m,all:f,detect:L,select:Sn,reject:dn,intersect:re,compact:P,uniq:Un,uniqBy:jn,last:Oe,isNull:ye,isDefined:ae,isUndefined:Pe,isGiven:me,isMissing:ge,isPresent:Te,isBlank:ie,presence:sn,isObject:we,isFunction:de,isString:Ce,isNumber:be,isElement:pe,isJQuery:ve,isPromise:Se,isOptions:ke,isArray:oe,isFormData:fe,isUnmodifiedKeyEvent:Fe,isUnmodifiedMouseEvent:$e,nullJQuery:Ge,element:J,setTimer:$n,nextFrame:Ke,measure:je,addClass:c,removeClass:gn,hasClass:Y,addTemporaryClass:h,writeTemporaryStyle:Nn,forceRepaint:G,concludeCssTransition:F,escapePressed:I,copyAttributes:M,selectInSubtree:Cn,selectInDynasty:En,contains:A,toArray:Mn,castedAttr:E,clientSize:x,only:Ye,except:K,trim:Rn,unresolvablePromise:qn,setMissingAttrs:Fn,remove:vn,memoize:qe,scrollbarWidth:Tn,documentHasVerticalScrollbar:z,config:$,openConfig:tn,unwrapElement:Ln,camelCase:T,camelCaseKeys:S,kebabCase:Ae,kebabCaseKeys:De,error:B,pluckData:on,pluckKey:un,renameKey:yn,extractOptions:V,isDetached:le,noop:Ve,asyncNoop:w,opacity:Ze,whenReady:zn,identity:ne,escapeHtml:N,DivertibleChain:l,submittedValue:Dn,sequence:Pn,promiseTimer:pn,previewable:ln,evalOption:H,horizontalScreenHalf:ee,detachWith:q,flatten:X,isTruthy:xe,newDeferred:He,always:d,muteRejection:Ie,rejectOnError:mn,isBodyDescendant:ue,isCrossDomain:se,microtask:Ne,isEqual:ce,hide:te,cssLength:j,readComputedStyle:cn,readComputedStyleNumber:hn,readInlineStyle:fn,writeInlineStyle:_n,hasCssTransition:Z}}(jQuery),up.fail=up.util.fail}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=[].slice;t=up.util,up.Cache=function(){function r(t){this.config=null!=t?t:{},this.get=e(this.get,this),this.isFresh=e(this.isFresh,this),this.remove=e(this.remove,this),this.set=e(this.set,this),this.timestamp=e(this.timestamp,this),this.alias=e(this.alias,this),this.makeRoomForAnotherKey=e(this.makeRoomForAnotherKey,this),this.keys=e(this.keys,this),this.log=e(this.log,this),this.clear=e(this.clear,this),this.isCachable=e(this.isCachable,this),this.isEnabled=e(this.isEnabled,this),this.normalizeStoreKey=e(this.normalizeStoreKey,this),this.expiryMillis=e(this.expiryMillis,this),this.maxKeys=e(this.maxKeys,this),this.store={}}return r.prototype.maxKeys=function(){return t.evalOption(this.config.size)},r.prototype.expiryMillis=function(){return t.evalOption(this.config.expiry)},r.prototype.normalizeStoreKey=function(t){return this.config.key?this.config.key(t):this.key.toString()},r.prototype.isEnabled=function(){return 0!==this.maxKeys()&&0!==this.expiryMillis()},r.prototype.isCachable=function(t){return this.config.cachable?this.config.cachable(t):!0},r.prototype.clear=function(){return this.store={}},r.prototype.log=function(){var t;return t=1<=arguments.length?n.call(arguments,0):[],this.config.logPrefix?(t[0]="["+this.config.logPrefix+"] "+t[0],up.puts.apply(up,t)):void 0},r.prototype.keys=function(){return Object.keys(this.store)},r.prototype.makeRoomForAnotherKey=function(){var e,n,r,o;return o=t.copy(this.keys()),e=this.maxKeys(),e&&o.length>=e&&(n=null,r=null,t.each(o,function(t){return function(e){var o,i;return o=t.store[e],i=o.timestamp,!r||r>i?(n=e,r=i):void 0}}(this)),n)?delete this.store[n]:void 0},r.prototype.alias=function(e,n){var r;return r=this.get(e,{silent:!0}),t.isDefined(r)?this.set(n,r):void 0},r.prototype.timestamp=function(){return(new Date).valueOf()},r.prototype.set=function(t,e){var n;return this.isEnabled()&&this.isCachable(t)?(this.makeRoomForAnotherKey(),n=this.normalizeStoreKey(t),this.log("Setting entry %o to %o",n,e),this.store[n]={timestamp:this.timestamp(),value:e}):void 0},r.prototype.remove=function(t){var e;return this.isCachable(t)?(e=this.normalizeStoreKey(t),delete this.store[e]):void 0},r.prototype.isFresh=function(t){var e,n;return e=this.expiryMillis(),e?(n=this.timestamp()-t.timestamp,e>n):!0},r.prototype.get=function(t,e){var n;return null==e&&(e={}),this.isCachable(t)&&(n=this.store[this.normalizeStoreKey(t)])?this.isFresh(n)?(e.silent||this.log("Cache hit for '%s'",t),n.value):(e.silent||this.log("Discarding stale cache entry for '%s'",t),void this.remove(t)):void(e.silent||this.log("Cache miss for '%s'",t))},r}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.CssTransition=function(){function n(n,r,o){this.startMotion=e(this.startMotion,this),this.resumeOldTransition=e(this.resumeOldTransition,this),this.pauseOldTransition=e(this.pauseOldTransition,this),this.finish=e(this.finish,this),this.onTransitionEnd=e(this.onTransitionEnd,this),this.stopListenToTransitionEnd=e(this.stopListenToTransitionEnd,this),this.listenToTransitionEnd=e(this.listenToTransitionEnd,this),this.stopFallbackTimer=e(this.stopFallbackTimer,this),this.startFallbackTimer=e(this.startFallbackTimer,this),this.onFinishEvent=e(this.onFinishEvent,this),this.stopListenToFinishEvent=e(this.stopListenToFinishEvent,this),this.listenToFinishEvent=e(this.listenToFinishEvent,this),this.start=e(this.start,this),this.$element=n,this.element=t.element(n),this.lastFrameCamel=t.camelCaseKeys(r),this.lastFrameKebab=t.kebabCaseKeys(r),this.lastFrameKeysKebab=Object.keys(this.lastFrameKebab),this.finishEvent=o.finishEvent,this.duration=o.duration,this.delay=o.delay,this.totalDuration=this.delay+this.duration,this.easing=o.easing,this.finished=!1}return n.prototype.start=function(){return 0===this.lastFrameKeysKebab.length?(this.finished=!0,Promise.resolve()):(this.deferred=t.newDeferred(),this.pauseOldTransition(),this.startTime=new Date,this.startFallbackTimer(),this.listenToFinishEvent(),this.listenToTransitionEnd(),this.startMotion(),this.deferred.promise())},n.prototype.listenToFinishEvent=function(){return this.finishEvent?this.$element.on(this.finishEvent,this.onFinishEvent):void 0},n.prototype.stopListenToFinishEvent=function(){return this.finishEvent?this.$element.off(this.finishEvent,this.onFinishEvent):void 0},n.prototype.onFinishEvent=function(t){return t.stopPropagation(),this.finish()},n.prototype.startFallbackTimer=function(){var e;return e=100,this.fallbackTimer=t.setTimer(this.totalDuration+e,function(t){return function(){return t.finish()}}(this))},n.prototype.stopFallbackTimer=function(){return clearTimeout(this.fallbackTimer)},n.prototype.listenToTransitionEnd=function(){return this.$element.on("transitionend",this.onTransitionEnd)},n.prototype.stopListenToTransitionEnd=function(){return this.$element.off("transitionend",this.onTransitionEnd)},n.prototype.onTransitionEnd=function(e){var n,r;if(e.target===this.element&&(r=new Date-this.startTime,r>.25*this.totalDuration&&(n=e.originalEvent.propertyName,t.contains(this.lastFrameKeysKebab,n))))return this.finish()},n.prototype.finish=function(){return this.finished?void 0:(this.finished=!0,this.stopFallbackTimer(),this.stopListenToFinishEvent(),this.stopListenToTransitionEnd(),t.concludeCssTransition(this.element),this.resumeOldTransition(),this.deferred.resolve())},n.prototype.pauseOldTransition=function(){var e,n,r,o;return e=t.readComputedStyle(this.element,["transitionProperty","transitionDuration","transitionDelay","transitionTimingFunction"]),t.hasCssTransition(e)?("all"!==e.transitionProperty&&(o=e.transitionProperty.split(/\s*,\s*/),r=t.readComputedStyle(this.element,o),n=t.camelCaseKeys(r),this.setOldTransitionTargetFrame=t.writeTemporaryStyle(this.element,n)),this.setOldTransition=t.concludeCssTransition(this.element)):void 0},n.prototype.resumeOldTransition=function(){return"function"==typeof this.setOldTransitionTargetFrame&&this.setOldTransitionTargetFrame(),"function"==typeof this.setOldTransition?this.setOldTransition():void 0},n.prototype.startMotion=function(){return t.writeInlineStyle(this.element,{transitionProperty:Object.keys(this.lastFrameKebab).join(", "),transitionDuration:this.duration+"ms",transitionDelay:this.delay+"ms",transitionTimingFunction:this.easing}),t.writeInlineStyle(this.element,this.lastFrameCamel)},n}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.ExtractCascade=function(){function n(n,r){this.oldPlanNotFound=e(this.oldPlanNotFound,this),this.matchingPlanNotFound=e(this.matchingPlanNotFound,this),this.bestMatchingSteps=e(this.bestMatchingSteps,this),this.bestPreflightSelector=e(this.bestPreflightSelector,this),this.detectPlan=e(this.detectPlan,this),this.matchingPlan=e(this.matchingPlan,this),this.newPlan=e(this.newPlan,this),this.oldPlan=e(this.oldPlan,this),this.options=t.options(r,{humanizedTarget:"selector",layer:"auto"}),this.options.transition=t.option(this.options.transition,this.options.animation),this.options.hungry=t.option(this.options.hungry,!0),this.candidates=this.buildCandidates(n),this.plans=t.map(this.candidates,function(e){return function(n,r){var o;return o=t.copy(e.options),r>0&&(o.transition=t.option(up.dom.config.fallbackTransition,e.options.transition)),new up.ExtractPlan(n,o)}}(this))}return n.prototype.buildCandidates=function(e){var n;return n=[e,this.options.fallback,up.dom.config.fallbacks],n=t.flatten(n),n=t.select(n,t.isTruthy),n=t.uniq(n),(this.options.fallback===!1||this.options.provideTarget)&&(n=[n[0]]),n},n.prototype.oldPlan=function(){return this.detectPlan("oldExists")},n.prototype.newPlan=function(){return this.detectPlan("newExists")},n.prototype.matchingPlan=function(){return this.detectPlan("matchExists")},n.prototype.detectPlan=function(e){return t.detect(this.plans,function(t){return t[e]()})},n.prototype.bestPreflightSelector=function(){var t;return t=this.options.provideTarget?this.plans[0]:this.oldPlan(),t?(t.resolveNesting(),t.selector()):this.oldPlanNotFound()},n.prototype.bestMatchingSteps=function(){var t;return(t=this.matchingPlan())?(t.addHungrySteps(),t.resolveNesting(),t.steps):this.matchingPlanNotFound()},n.prototype.matchingPlanNotFound=function(){var t,e;return this.newPlan()?this.oldPlanNotFound():(e=this.oldPlan()?"Could not find "+this.options.humanizedTarget+" in response":"Could not match "+this.options.humanizedTarget+" in current page and response",this.options.inspectResponse&&(t={label:"Open response",callback:this.options.inspectResponse}),up.fail([e+" (tried %o)",this.candidates],{action:t}))},n.prototype.oldPlanNotFound=function(){var t;return t=this.options.layer,"auto"===t&&(t="page, modal or popup"),up.fail("Could not find "+this.options.humanizedTarget+" in current "+t+" (tried %o)",this.candidates)},n}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.ExtractPlan=function(){function n(t,n){this.addHungrySteps=e(this.addHungrySteps,this),this.parseSteps=e(this.parseSteps,this),this.selector=e(this.selector,this),this.resolveNesting=e(this.resolveNesting,this),this.addSteps=e(this.addSteps,this),this.matchExists=e(this.matchExists,this),this.newExists=e(this.newExists,this),this.oldExists=e(this.oldExists,this),this.findNew=e(this.findNew,this),this.findOld=e(this.findOld,this);var r;this.reveal=n.reveal,this.origin=n.origin,this.hungry=n.hungry,this.transition=n.transition,this.response=n.response,this.oldLayer=n.layer,r=up.dom.resolveSelector(t,this.origin),this.parseSteps(r)}return n.prototype.findOld=function(){return t.each(this.steps,function(t){return function(e){return e.$old=up.dom.first(e.selector,{layer:t.oldLayer})}}(this))},n.prototype.findNew=function(){return t.each(this.steps,function(t){return function(e){return e.$new=t.response.first(e.selector)}}(this))},n.prototype.oldExists=function(){return this.findOld(),t.all(this.steps,function(t){return t.$old})},n.prototype.newExists=function(){return this.findNew(),t.all(this.steps,function(t){return t.$new})},n.prototype.matchExists=function(){return this.oldExists()&&this.newExists()},n.prototype.addSteps=function(t){return this.steps=this.steps.concat(t)},n.prototype.resolveNesting=function(){var e;if(!(this.steps.length<2))return e=t.copy(this.steps),e=t.uniqBy(e,function(t){return t.$old[0]}),e=t.select(e,function(){return function(n,r){return t.all(e,function(t,e){var o,i;return e===r?!0:(o=n.$old[0],i=t.$old[0],t.pseudoClass||!$.contains(i,o))})}}(this)),e[0].reveal=this.steps[0].reveal,this.steps=e},n.prototype.selector=function(){return t.map(this.steps,"expression").join(", ")},n.prototype.parseSteps=function(e){var n,r;return n=/\ *,\ */,this.steps=[],r=e.split(n),t.each(r,function(t){return function(e,n){var r,o,i,u;return o=e.match(/^(.+?)(?:\:(before|after))?$/),o||up.fail('Could not parse selector literal "%s"',e),u=o[1],"html"===u&&(u="body"),i=o[2],r=0===n?t.reveal:!1,t.steps.push({expression:e,selector:u,pseudoClass:i,transition:t.transition,origin:t.origin,reveal:r})}}(this))},n.prototype.addHungrySteps=function(){var e,n,r,o,i,u,s,a,l;if(i=[],this.hungry)for(e=$(up.radio.hungrySelector()),l=t.option(up.radio.config.hungryTransition,this.transition),u=0,s=e.length;s>u;u++)o=e[u],n=$(o),a=t.selectorForElement(n),(r=this.response.first(a))&&i.push({selector:a,$old:n,$new:r,transition:l,reveal:!1,origin:null});return this.addSteps(i)},n}()}.call(this),function(){var t;t=up.util,up.ExtractStep=function(){function t(){}return t}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.FieldObserver=function(){function n(t,n){this.$field=t,this.check=e(this.check,this),this.readFieldValue=e(this.readFieldValue,this),this.requestCallback=e(this.requestCallback,this),this.isNewValue=e(this.isNewValue,this),this.scheduleTimer=e(this.scheduleTimer,this),this.cancelTimer=e(this.cancelTimer,this),this.stop=e(this.stop,this),this.start=e(this.start,this),this.delay=n.delay,this.callback=n.callback}var r;return r="input change",n.prototype.start=function(){return this.scheduledValue=null,this.processedValue=this.readFieldValue(),this.currentTimer=void 0,this.currentCallback=void 0,this.$field.on(r,this.check)},n.prototype.stop=function(){return this.$field.off(r,this.check),this.cancelTimer()},n.prototype.cancelTimer=function(){return clearTimeout(this.currentTimer),this.currentTimer=void 0},n.prototype.scheduleTimer=function(){return this.currentTimer=t.setTimer(this.delay,function(t){return function(){return t.currentTimer=void 0,t.requestCallback()}}(this))},n.prototype.isNewValue=function(t){return t!==this.processedValue&&(null===this.scheduledValue||this.scheduledValue!==t)},n.prototype.requestCallback=function(){var e;return null===this.scheduledValue||this.currentTimer||this.currentCallback?void 0:(this.processedValue=this.scheduledValue,this.scheduledValue=null,this.currentCallback=function(t){return function(){return t.callback.call(t.$field.get(0),t.processedValue,t.$field)}}(this),e=Promise.resolve(this.currentCallback()),t.always(e,function(t){return function(){return t.currentCallback=void 0,t.requestCallback()}}(this)))},n.prototype.readFieldValue=function(){return t.submittedValue(this.$field)},n.prototype.check=function(){var t;return t=this.readFieldValue(),this.isNewValue(t)?(this.scheduledValue=t,this.cancelTimer(),this.scheduleTimer()):void 0},n}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=[].slice;t=up.util,up.FollowVariant=function(){function r(t,n){this.matchesLink=e(this.matchesLink,this),this.preloadLink=e(this.preloadLink,this),this.followLink=e(this.followLink,this),this.fullSelector=e(this.fullSelector,this),this.onMousedown=e(this.onMousedown,this),this.onClick=e(this.onClick,this),this.followNow=n.follow,this.preloadNow=n.preload,this.selectors=t.split(/\s*,\s*/)}return r.prototype.onClick=function(t,e){return up.link.shouldProcessEvent(t,e)?e.is("[up-instant]")?up.bus.haltEvent(t):(up.bus.consumeAction(t),this.followLink(e)):up.link.allowDefault(t)},r.prototype.onMousedown=function(t,e){return up.link.shouldProcessEvent(t,e)?(up.bus.consumeAction(t),this.followLink(e)):void 0},r.prototype.fullSelector=function(t){var e;return null==t&&(t=""),e=[],this.selectors.forEach(function(n){return["a","[up-href]"].forEach(function(r){return e.push(""+r+n+t)})}),e.join(", ")},r.prototype.registerEvents=function(){return up.on("click",this.fullSelector(),function(e){return function(){var r;return r=1<=arguments.length?n.call(arguments,0):[],t.muteRejection(e.onClick.apply(e,r))}}(this)),up.on("mousedown",this.fullSelector("[up-instant]"),function(e){return function(){var r;return r=1<=arguments.length?n.call(arguments,0):[],t.muteRejection(e.onMousedown.apply(e,r))}}(this))},r.prototype.followLink=function(t,e){return null==e&&(e={}),up.bus.whenEmitted("up:link:follow",{$element:t}).then(function(n){return function(){return up.feedback.start(t,e,function(){return n.followNow(t,e)})}}(this))},r.prototype.preloadLink=function(t,e){return null==e&&(e={}),this.preloadNow(t,e)},r.prototype.matchesLink=function(t){return t.is(this.fullSelector())},r}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.MotionTracker=function(){function n(t){this.reset=e(this.reset,this),this.whileForwardingFinishEvent=e(this.whileForwardingFinishEvent,this),this.forwardFinishEvent=e(this.forwardFinishEvent,this),this.unmarkCluster=e(this.unmarkCluster,this),this.markCluster=e(this.markCluster,this),this.whenElementFinished=e(this.whenElementFinished,this),this.emitFinishEvent=e(this.emitFinishEvent,this),this.finishOneElement=e(this.finishOneElement,this),this.isActive=e(this.isActive,this),this.expandFinishRequest=e(this.expandFinishRequest,this),this.finish=e(this.finish,this),this.claim=e(this.claim,this),this.activeClass="up-"+t,this.dataKey="up-"+t+"-finished",this.selector="."+this.activeClass,this.finishEvent="up:"+t+":finish",this.finishCount=0,this.clusterCount=0
2
- }return n.prototype.claim=function(e,n,r){var o;return null==r&&(r={}),o=$(e),r.trackMotion=t.option(r.trackMotion,up.motion.isEnabled()),r.trackMotion===!1?t.microtask(n):(r.trackMotion=!1,this.finish(o).then(function(t){return function(){var e;return e=t.whileForwardingFinishEvent(o,n),e=e.then(function(){return t.unmarkCluster(o)}),t.markCluster(o,e),e}}(this)))},n.prototype.finish=function(e){var n,r;return this.finishCount++,0!==this.clusterCount&&up.motion.isEnabled()?(n=this.expandFinishRequest(e),r=t.map(n,this.finishOneElement),Promise.all(r)):Promise.resolve()},n.prototype.expandFinishRequest=function(e){return e?t.selectInDynasty($(e),this.selector):$(this.selector)},n.prototype.isActive=function(e){return t.hasClass(e,this.activeClass)},n.prototype.finishOneElement=function(t){var e;return e=$(t),this.emitFinishEvent(e),this.whenElementFinished(e)},n.prototype.emitFinishEvent=function(e,n){return null==n&&(n={}),n=t.merge({$element:e,message:!1},n),up.emit(this.finishEvent,n)},n.prototype.whenElementFinished=function(t){return t.data(this.dataKey)||Promise.resolve()},n.prototype.markCluster=function(t,e){return this.clusterCount++,t.addClass(this.activeClass),t.data(this.dataKey,e)},n.prototype.unmarkCluster=function(t){return this.clusterCount--,t.removeClass(this.activeClass),t.removeData(this.dataKey)},n.prototype.forwardFinishEvent=function(t,e,n){return this.start(t,function(r){return function(){var o;return o=function(){return e.trigger(r.finishEvent)},t.on(r.finishEvent,o),n.then(function(){return t.off(r.finishEvent,o)})}}(this))},n.prototype.whileForwardingFinishEvent=function(e,n){var r;return e.length<2?n():(r=function(n){return function(r){return r.forwarded?void 0:t.each(e,function(t){var e;return e=$(t),t!==r.target&&n.isActive(e)?n.emitFinishEvent(e,{forwarded:!0}):void 0})}}(this),e.on(this.finishEvent,r),n().then(function(t){return function(){return e.off(t.finishEvent,r)}}(this)))},n.prototype.reset=function(){return this.finish().then(function(t){return function(){return t.finishCount=0,t.clusterCount=0}}(this))},n}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=[].slice;t=up.util,up.Record=function(){function r(n){this.copy=e(this.copy,this),this.attributes=e(this.attributes,this),t.assign(this,this.attributes(n))}return r.prototype.fields=function(){throw"Return an array of property names"},r.prototype.attributes=function(e){return null==e&&(e=this),t.only.apply(t,[e].concat(n.call(this.fields())))},r.prototype.copy=function(e){var n;return null==e&&(e={}),n=t.merge(this.attributes(),e),new this.constructor(n)},r}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=function(t,e){function n(){this.constructor=t}for(var o in e)r.call(e,o)&&(t[o]=e[o]);return n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype,t},r={}.hasOwnProperty;t=up.util,up.Request=function(r){function o(t){this.cacheKey=e(this.cacheKey,this),this.isCachable=e(this.isCachable,this),this.buildResponse=e(this.buildResponse,this),this.isCrossDomain=e(this.isCrossDomain,this),this.csrfToken=e(this.csrfToken,this),this.navigate=e(this.navigate,this),this.send=e(this.send,this),this.isSafe=e(this.isSafe,this),this.transferSearchToData=e(this.transferSearchToData,this),this.transferDataToUrl=e(this.transferDataToUrl,this),this.extractHashFromUrl=e(this.extractHashFromUrl,this),this.normalize=e(this.normalize,this),o.__super__.constructor.call(this,t),this.normalize()}return n(o,r),o.prototype.fields=function(){return["method","url","data","target","failTarget","headers","timeout"]},o.prototype.normalize=function(){return this.method=t.normalizeMethod(this.method),this.headers||(this.headers={}),this.extractHashFromUrl(),t.methodAllowsPayload(this.method)?this.transferSearchToData():this.transferDataToUrl()},o.prototype.extractHashFromUrl=function(){var e;return e=t.parseUrl(this.url),this.hash=e.hash,this.url=t.normalizeUrl(e,{hash:!1})},o.prototype.transferDataToUrl=function(){var e,n;return this.data&&!t.isFormData(this.data)?(e=t.requestDataAsQuery(this.data),n=t.contains(this.url,"?")?"&":"?",this.url+=n+e,this.data=void 0):void 0},o.prototype.transferSearchToData=function(){var e,n;return n=t.parseUrl(this.url),e=n.search,e?(this.data=t.mergeRequestData(this.data,e),this.url=t.normalizeUrl(n,{search:!1})):void 0},o.prototype.isSafe=function(){return up.proxy.isSafeMethod(this.method)},o.prototype.send=function(){return new Promise(function(e){return function(n,r){var o,i,u,s,a,l,p,c,h,f;l=new XMLHttpRequest,c=t.copy(e.headers),p=e.data,h=e.method,f=e.url,u=up.proxy.wrapMethod(h,p),h=u[0],p=u[1],t.isFormData(p)?delete c["Content-Type"]:t.isPresent(p)?(p=t.requestDataAsQuery(p,{purpose:"form"}),c["Content-Type"]="application/x-www-form-urlencoded"):p=null,e.target&&(c[up.protocol.config.targetHeader]=e.target),e.failTarget&&(c[up.protocol.config.failTargetHeader]=e.failTarget),e.isCrossDomain()||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest"),(o=e.csrfToken())&&(c[up.protocol.config.csrfHeader]=o),l.open(h,f);for(i in c)a=c[i],l.setRequestHeader(i,a);return s=function(){var t;return t=e.buildResponse(l),t.isSuccess()?n(t):r(t)},l.onload=s,l.onerror=s,l.ontimeout=s,e.timeout&&(l.timeout=e.timeout),l.send(p)}}(this))},o.prototype.navigate=function(){var e,n,r,o,i;return this.transferSearchToData(),e=$('<form class="up-page-loader"></form>'),n=function(t){return $('<input type="hidden">').attr(t).appendTo(e)},"GET"===this.method?i="GET":(n({name:up.protocol.config.methodParam,value:this.method}),i="POST"),e.attr({method:i,action:this.url}),(r=up.protocol.csrfParam())&&(o=this.csrfToken())&&n({name:r,value:o}),t.each(t.requestDataAsArray(this.data),n),e.hide().appendTo("body"),up.browser.submitForm(e)},o.prototype.csrfToken=function(){return this.isSafe()||this.isCrossDomain()?void 0:up.protocol.csrfToken()},o.prototype.isCrossDomain=function(){return t.isCrossDomain(this.url)},o.prototype.buildResponse=function(t){var e,n,r;return n={method:this.method,url:this.url,text:t.responseText,status:t.status,request:this,xhr:t},(r=up.protocol.locationFromXhr(t))&&(n.url=r,n.method=null!=(e=up.protocol.methodFromXhr(t))?e:"GET"),n.title=up.protocol.titleFromXhr(t),new up.Response(n)},o.prototype.isCachable=function(){return this.isSafe()&&!t.isFormData(this.data)},o.prototype.cacheKey=function(){return[this.url,this.method,t.requestDataAsQuery(this.data),this.target].join("|")},o.wrap=function(t){return t instanceof this?t:new this(t)},o}(up.Record)}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=function(t,e){function n(){this.constructor=t}for(var o in e)r.call(e,o)&&(t[o]=e[o]);return n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype,t},r={}.hasOwnProperty;t=up.util,up.Response=function(r){function o(t){this.isFatalError=e(this.isFatalError,this),this.isError=e(this.isError,this),this.isSuccess=e(this.isSuccess,this),o.__super__.constructor.call(this,t)}return n(o,r),o.prototype.fields=function(){return["method","url","text","status","request","xhr","title"]},o.prototype.isSuccess=function(){return this.status&&this.status>=200&&this.status<=299},o.prototype.isError=function(){return!this.isSuccess()},o.prototype.isFatalError=function(){return this.isError()&&t.isBlank(this.text)},o}(up.Record)}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.UrlSet=function(){function n(n,r){this.urls=n,null==r&&(r={}),this.isEqual=e(this.isEqual,this),this.matchesAny=e(this.matchesAny,this),this.doesMatchPrefix=e(this.doesMatchPrefix,this),this.doesMatchFully=e(this.doesMatchFully,this),this.matches=e(this.matches,this),this.normalizeUrl=r.normalizeUrl||t.normalizeUrl,this.urls=t.map(this.urls,this.normalizeUrl),this.urls=t.compact(this.urls)}return n.prototype.matches=function(t){return"*"===t.substr(-1)?this.doesMatchPrefix(t.slice(0,-1)):this.doesMatchFully(t)},n.prototype.doesMatchFully=function(e){return t.contains(this.urls,e)},n.prototype.doesMatchPrefix=function(e){return t.detect(this.urls,function(t){return 0===t.indexOf(e)})},n.prototype.matchesAny=function(e){return t.detect(e,this.matches)},n.prototype.isEqual=function(e){return t.isEqual(this.urls,null!=e?e.urls:void 0)},n}()}.call(this),function(){var t=[].slice;up.browser=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C;return S=up.util,d=function(t,e){var n;return null==e&&(e={}),n=new up.Request(S.merge(e,{url:t})),n.navigate()},T=function(t){return t.submit()},g=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],console[n].apply(console,e)},n=/\%[odisf]/g,k=function(t){var n,r,o,i,u,s,a,l,p;if(s=200,o="",S.isString(t))l=t.replace(/[\n\r\t ]+/g," "),l=l.replace(/^[\n\r\t ]+/,""),l=l.replace(/[\n\r\t ]$/,""),l='"'+l+'"',o='"';else if(S.isUndefined(t))l="undefined";else if(S.isNumber(t)||S.isFunction(t))l=t.toString();else if(S.isArray(t))l="["+S.map(t,k).join(", ")+"]",o="]";else if(S.isJQuery(t))l="$("+S.map(t,k).join(", ")+")",o=")";else if(S.isElement(t)){for(n=e(t),l="<"+t.tagName.toLowerCase(),a=["id","name","class"],i=0,u=a.length;u>i;i++)r=a[i],(p=n.attr(r))&&(l+=" "+r+'="'+p+'"');l+=">",o=">"}else l=JSON.stringify(t);return l.length>s&&(l=l.substr(0,s)+" \u2026",l+=o),l},b=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],w.apply(null,[S.identity,n].concat(t.call(e)))},w=function(){var e,r,o,i;return r=arguments[0],i=arguments[1],e=3<=arguments.length?t.call(arguments,2):[],S.isBlank(i)?"":(o=0,i.replace(n,function(){var t;return t=e[o],t=r(k(t)),o+=1,t}))},E=function(){return location.href},c=S.memoize(function(){return!window.atob}),l=function(){return S.isDefined(history.pushState)&&"get"===up.protocol.initialRequestMethod()},o=S.memoize(function(){return"transition"in document.documentElement.style}),s=S.memoize(function(){return"oninput"in document.createElement("input")}),a=S.memoize(function(){return!!window.Promise}),u=S.memoize(function(){return!!window.FormData}),i=S.memoize(function(){return!!window.DOMParser}),r=S.memoize(function(){return window.console&&console.debug&&console.info&&console.warn&&console.error&&console.group&&console.groupCollapsed&&console.groupEnd}),h=S.memoize(function(){var t,n,r,o;return o=e.fn.jquery,r=o.split("."),t=parseInt(r[0]),n=parseInt(r[1]),t>=2||1===t&&n>=9}),v=function(t){var e,n;return n=null!=(e=document.cookie.match(new RegExp(t+"=(\\w+)")))?e[1]:void 0,S.isPresent(n)&&(document.cookie=t+"=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/"),n},C=function(t){return t.preload||S.isBlank(t.confirm)||window.confirm(t.confirm)?Promise.resolve():Promise.reject(new Error("User canceled action"))},f=function(){return!c()&&h()&&r()&&i()&&u()&&o()&&s()&&a()},y=S.memoize(function(){try{return window.sessionStorage}catch(t){return m()}}),m=function(){var t;return t={},{getItem:function(e){return t[e]},setItem:function(e,n){return t[e]=n}}},p=function(t){return t||(t=location.hash),t||(t=""),"#"===t[0]&&(t=t.substr(1)),S.presence(t)},{url:E,navigate:d,submitForm:T,canPushState:l,whenConfirmed:C,isSupported:f,puts:g,sprintf:b,sprintfWithFormattedArgs:w,sessionStorage:y,popCookie:v,hash:p}}(jQuery)}.call(this),function(){var t=[].slice;up.bus=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C;return w=up.util,p={},h=0,g={},E=function(t){return function(n){var r;return r=n.$element||e(this),t.apply(r.get(0),[n,r,up.syntax.data(r)])}},S=function(t,e){var n,r,o;return n=w.copy(t),u(n),o=n.pop(),r=void 0,e?(r=E(o),o._asJqueryListener=r,o._descriptionNumber=++h):(r=o._asJqueryListener,r||up.fail("up.off(): The callback %o was never registered through up.on()",o)),n.push(r),n},u=function(t){var e;return e=t[0].split(/\s+/),e=w.map(e,function(t){var e;return(e=g[t])?(up.log.warn(t+" has been renamed to "+e),e):t}),t[0]=e.join(" ")},l=function(){var n,r,o;return o=1<=arguments.length?t.call(arguments,0):[],up.browser.isSupported()?(n=S(o,!0),m(o),(r=e(document)).on.apply(r,n),function(){return k.apply(null,o)}):function(){}},k=function(){var n,r,o;return o=1<=arguments.length?t.call(arguments,0):[],n=S(o,!1),s(o),(r=e(document)).off.apply(r,n)},m=function(t){var e;return e=T(t),p[e]=t},s=function(t){var e;return e=T(t),delete p[e]},T=function(t){return w.last(t)._descriptionNumber},o=function(t,n){var r,o;return null==n&&(n={}),o=e.Event(t,n),r=n.$target||n.$element||e(document),c(t,n),r.trigger(o),o},c=function(e,n){var r,o,i;return n.hasOwnProperty("message")?(r=n.message,delete n.message,r!==!1&&(w.isArray(r)?(i=r,r=i[0],o=2<=i.length?t.call(i,1):[]):o=[],r)?w.isPresent(n)?up.puts.apply(up,[r+" (%s (%o))"].concat(t.call(o),[e],[n])):up.puts.apply(up,[r+" (%s)"].concat(t.call(o),[e])):void 0):w.isPresent(n)?up.puts("Emitted event %s (%o)",e,n):up.puts("Emitted event %s",e)},f=function(){var e,n;return e=1<=arguments.length?t.call(arguments,0):[],n=o.apply(null,e),!n.isDefaultPrevented()},C=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],new Promise(function(t,n){return f.apply(null,e)?t():n(new Error("Event "+e[0]+" was prevented"))})},d=function(t){return l("keydown","body",function(e){return w.escapePressed(e)?t(e):void 0})},a=function(t){return t.stopImmediatePropagation(),t.stopPropagation(),t.preventDefault()},r=function(t){return a(t),"up:action:consumed"!==t.type?o("up:action:consumed",{$element:e(t.target),message:!1}):void 0},b=function(){var t,e,n;n=[];for(e in p)t=p[e],n.push(t.isDefault=!0);return n},y=function(){var t,e,n,r,o,i;e=[];for(o in p)t=p[o],t.isDefault||e.push(t);for(i=[],n=0,r=e.length;r>n;n++)t=e[n],i.push(k.apply(null,t));return i},i=function(){return o("up:framework:reset",{message:"Resetting framework"}),up.protocol.reset()},v=function(t,e){return g[t]=e},n=function(){return up.browser.isSupported()?(o("up:framework:boot",{message:"Booting framework"}),o("up:framework:booted",{message:"Framework booted"}),w.nextFrame(function(){return w.whenReady().then(function(){return o("up:app:boot",{message:"Booting user application"}),o("up:app:booted",{message:"User application booted"})})})):"function"==typeof console.log?console.log("Unpoly doesn't support this browser. Framework was not booted."):void 0},l("up:framework:booted",b),l("up:framework:reset",y),{on:l,off:k,emit:o,nobodyPrevents:f,whenEmitted:C,onEscape:d,emitReset:i,haltEvent:a,consumeAction:r,renamedEvent:v,boot:n}}(jQuery),up.on=up.bus.on,up.off=up.bus.off,up.emit=up.bus.emit,up.reset=up.bus.emitReset,up.boot=up.bus.boot}.call(this),function(){up.protocol=function(t){var e,n,r,o,i,u,s,a,l;return l=up.util,i=function(t){return t.getResponseHeader(e.locationHeader)||t.responseURL},a=function(t){return t.getResponseHeader(e.titleHeader)},u=function(t){var n;return(n=t.getResponseHeader(e.methodHeader))?l.normalizeMethod(n):void 0},o=l.memoize(function(){var t;return t=up.browser.popCookie(e.methodCookie),(t||"get").toLowerCase()}),up.bus.on("up:framework:booted",o),e=l.config({targetHeader:"X-Up-Target",failTargetHeader:"X-Up-Fail-Target",locationHeader:"X-Up-Location",validateHeader:"X-Up-Validate",titleHeader:"X-Up-Title",methodHeader:"X-Up-Method",methodCookie:"_up_method",methodParam:"_method",csrfParam:function(){return t('meta[name="csrf-param"]').attr("content")},csrfToken:function(){return t('meta[name="csrf-token"]').attr("content")},csrfHeader:"X-CSRF-Token"}),n=function(){return l.evalOption(e.csrfParam)},r=function(){return l.evalOption(e.csrfToken)},s=function(){return e.reset()},{config:e,reset:s,locationFromXhr:i,titleFromXhr:a,methodFromXhr:u,csrfParam:n,csrfToken:r,initialRequestMethod:o}}(jQuery)}.call(this),function(){var t=[].slice;up.log=function(){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m;return d=up.util,n=up.browser,e="up.log.enabled",r=d.config({prefix:"[UP] ",enabled:"true"===n.sessionStorage().getItem(e),collapse:!1}),h=function(){return r.reset()},l=function(t){return""+r.prefix+t},o=function(){var e,o;return o=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],r.enabled&&o?n.puts.apply(n,["debug",l(o)].concat(t.call(e))):void 0},c=function(){var e,o;return o=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],r.enabled&&o?n.puts.apply(n,["log",l(o)].concat(t.call(e))):void 0},m=function(){var e,r;return r=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],r?n.puts.apply(n,["warn",l(r)].concat(t.call(e))):void 0},a=function(){var e,o,i,u;if(i=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],o=e.pop(),!r.enabled||!i)return o();u=r.collapse?"groupCollapsed":"group",n.puts.apply(n,[u,l(i)].concat(t.call(e)));try{return o()}finally{i&&n.puts("groupEnd")}},s=function(){var e,r;return r=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],r?n.puts.apply(n,["error",l(r)].concat(t.call(e))):void 0},p=function(){var t;return t=" __ _____ ___ ___ / /_ __\n"+("/ // / _ \\/ _ \\/ _ \\/ / // / "+up.version+"\n")+"\\___/_//_/ .__/\\___/_/\\_. / \n / / / /\n\n",t+=r.enabled?"Call `up.log.disable()` to disable logging for this session.":"Call `up.log.enable()` to enable logging for this session.",n.puts("log",t)},up.on("up:framework:boot",p),up.on("up:framework:reset",h),f=function(t){return n.sessionStorage().setItem(e,t.toString()),r.enabled=t},u=function(){return f(!0)},i=function(){return f(!1)},{puts:c,debug:o,error:s,warn:m,group:a,config:r,enable:u,disable:i}}(jQuery),up.puts=up.log.puts}.call(this),function(){var t=[].slice;up.toast=function(e){var n,r,o,i,u,s,a,l,p,c;return c=up.util,o=up.browser,n=function(t){return"<span class='up-toast-variable'>"+c.escapeHtml(t)+"</span>"},p=c.config({$toast:null}),l=function(){return i(),p.reset()},s=function(e){return c.isArray(e)?(e[0]=c.escapeHtml(e[0]),e=o.sprintfWithFormattedArgs.apply(o,[n].concat(t.call(e)))):e=c.escapeHtml(e),e},u=function(){return!!p.$toast},r=function(t,n,r){var o;return o=e('<span class="up-toast-action"></span>').text(n),o.on("click",r),o.appendTo(t)},a=function(t,n){var o,u,a,l;return null==n&&(n={}),i(),a=e('<div class="up-toast"></div>').prependTo("body"),u=e('<div class="up-toast-message"></div>').appendTo(a),o=e('<div class="up-toast-actions"></div>').appendTo(a),t=s(t),u.html(t),(l=n.action||n.inspect)&&r(o,l.label,l.callback),r(o,"Close",i),p.$toast=a},i=function(){return u()?(p.$toast.remove(),p.$toast=null):void 0},up.on("up:framework:reset",l),{open:a,close:i,reset:l,isOpen:u}}(jQuery)}.call(this),function(){var t=[].slice;up.syntax=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k;return k=up.util,n="up-destructible",r="up-destructors",o={"[up-back]":-100,"[up-drawer]":-200,"[up-dash]":-200,"[up-expand]":-300,"[data-method]":-400,"[data-confirm]":-400},m=!0,c=[],g=[],p=function(){var e,n,r,o;return o=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],up.browser.isSupported()?(n=e.pop(),r=k.options(e[0]),d(c,o,r,n)):void 0},v=function(){var e,n,r,o;return o=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],up.browser.isSupported()?(n=e.pop(),r=k.options(e[0]),m&&(r.priority=f(o)||up.fail("Unregistered priority for system macro %o",o)),d(g,o,r,n)):void 0},f=function(t){var e,n;for(n in o)if(e=o[n],t.indexOf(n)>=0)return e},s=function(t,e,n){return{selector:t,callback:n,isSystem:m,priority:e.priority||0,batch:e.batch,keep:e.keep}},d=function(t,e,n,r){var o,i,u;if(up.browser.isSupported()){for(i=s(e,n,r),o=0;(u=t[o])&&u.priority>=i.priority;)o+=1;return t.splice(o,0,i)}},u=function(t,e,n){var r,o;return up.puts(t.isSystem?void 0:"Compiling '%s' on %o",t.selector,n),t.keep&&(o=k.isString(t.keep)?t.keep:"",e.attr("up-keep",o)),r=t.callback.apply(n,[e,h(e)]),i(e,r)},y=function(t){return k.isFunction(t)?t:k.isArray(t)&&k.all(t,k.isFunction)?k.sequence.apply(k,t):void 0},i=function(t,e){var o;return(e=y(e))?(t.addClass(n),o=t.data(r)||function(){return b(t)},o=k.sequence(o,e),t.data(r,o)):void 0},b=function(t){return t.removeData(r),t.removeClass(n)},l=function(t,n){var r;return n=k.options(n),r=e(n.skip),up.log.group("Compiling fragment %o",t.get(0),function(){var n,o,i,s,a,l;for(a=[g,c],l=[],o=0,i=a.length;i>o;o++)s=a[o],l.push(function(){var o,i,a;for(a=[],o=0,i=s.length;i>o;o++)p=s[o],n=k.selectInSubtree(t,p.selector),r.length&&(n=n.filter(function(){var t;return t=e(this),k.all(r,function(e){return 0===t.closest(e).length})})),a.push(n.length?up.log.group(p.isSystem?void 0:"Compiling '%s' on %d element(s)",p.selector,n.length,function(){return p.batch?u(p,n,n.get()):n.each(function(){return u(p,e(this),this)})}):void 0);return a}());return l})},a=function(t){var o;return o=k.selectInSubtree(t,"."+n),k.each(o,function(t){var n;return(n=e(t).data(r))?n():void 0})},h=function(t){var n,r;return n=e(t),r=n.attr("up-data"),k.isString(r)&&""!==k.trim(r)?JSON.parse(r):{}},w=function(){var t;return t=function(t){return t.isSystem},c=k.select(c,t),g=k.select(g,t)},up.on("up:framework:booted",function(){return m=!1}),up.on("up:framework:reset",w),{compiler:p,macro:v,compile:l,clean:a,data:h}}(jQuery),up.compiler=up.syntax.compiler,up.macro=up.syntax.macro}.call(this),function(){up.history=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m,v;return v=up.util,n=v.config({enabled:!0,popTargets:["body"],restoreScroll:!0}),p=void 0,u=void 0,d=function(){return n.reset(),p=void 0,u=void 0},s=function(t,e){return e||(e={}),e.hash=!0,v.normalizeUrl(t,e)},r=function(t){return s(up.browser.url(),t)},o=function(t){var e;return e={stripTrailingSlash:!0},s(t,e)===r(e)},a=function(t){return u&&(p=u,u=void 0),u=t},f=function(t){return i("replaceState",t)?up.emit("up:history:replaced",{url:t}):void 0},c=function(t,e){return e=v.options(e,{force:!1}),t=s(t),!e.force&&o(t)||!up.bus.nobodyPrevents("up:history:push",{url:t,message:"Adding history entry for "+t})?void 0:i("pushState",t)?up.emit("up:history:pushed",{url:t,message:"Advanced to location "+t}):up.emit("up:history:muted",{url:t,message:"Did not advance to "+t+" (history is unavailable)"})},i=function(t,o){var i;return up.browser.canPushState()&&n.enabled?(i=e(),window.history[t](i,"",o),a(r()),!0):!1},e=function(){return{fromUp:!0}},m=function(t){var e,o,i;return(null!=t?t.fromUp:void 0)?(i=r(),up.emit("up:history:restore",{url:i,message:"Restoring location "+i}),e=n.popTargets.join(", "),o=up.replace(e,i,{history:!1,title:!0,reveal:!1,transition:"none",saveScroll:!1,restoreScroll:n.restoreScroll,layer:"page"}),o.then(function(){return i=r(),up.emit("up:history:restored",{url:i,message:"Restored location "+i})})):up.puts("Ignoring a state not pushed by Unpoly (%o)",t)},l=function(t){var e;return a(r()),up.layout.saveScroll({url:p}),e=t.originalEvent.state,m(e)},up.browser.canPushState()&&(h=function(){return t(window).on("popstate",l),f(r(),{force:!0})},"undefined"!=typeof jasmine&&null!==jasmine?h():setTimeout(h,100)),up.macro("a[up-back], [up-href][up-back]",function(t){return v.isPresent(p)?(v.setMissingAttrs(t,{"up-href":p,"up-restore-scroll":""}),t.removeAttr("up-back"),up.link.makeFollowable(t)):void 0}),up.on("up:framework:reset",d),{config:n,push:c,replace:f,url:r,isUrl:o,previousUrl:function(){return p},normalizeUrl:s}}(jQuery)}.call(this),function(){var t=[].slice;up.layout=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F;return E=up.util,o=E.config({duration:0,viewports:[".up-modal-viewport","[up-viewport]"],fixedTop:["[up-fixed~=top]"],fixedBottom:["[up-fixed~=bottom]"],anchoredRight:["[up-anchored~=right]","[up-fixed~=top]","[up-fixed~=bottom]","[up-fixed~=right]"],snap:50,substance:150,easing:"swing"}),a=new up.Cache({size:30,key:up.history.normalizeUrl}),S=new up.MotionTracker("scrolling"),p=function(){return o.reset(),a.clear(),S.reset()},g=function(t,e,n){var r;return r=T(t),n=E.options(n),n.duration=E.option(n.duration,o.duration),n.easing=E.option(n.easing,o.easing),i(r).then(function(){return up.motion.isEnabled()&&n.duration>0?k(r,e,n):y(r,e)})},T=function(t){var n;return n=e(t),n.get(0)===document?e("html, body"):n},k=function(t,e,n){var r;return r=function(){var r,o;return r=function(){return t.finish()},t.on(S.eventName,r),o=t.animate({scrollTop:e},n).promise(),o.then(function(){return t.off(S.eventName)}),o},S.claim(t,r)},y=function(t,e){return t.scrollTop(e),Promise.resolve()},i=function(t){var e;return up.motion.isEnabled()?(e=T(t),S.finish(e)):Promise.resolve()},r=function(){var t;return t=o.anchoredRight.join(","),e(t)},l=function(){var n,r,i,u;return i=function(t,n){var r,o;return r=e(t),o=E.readComputedStyleNumber(r,n),E.isPresent(o)||up.fail("Fixed element %o must have a CSS attribute %s",r.get(0),n),o+r.height()},r=function(){var t,n,r,s;for(r=e(o.fixedTop.join(", ")),s=[],t=0,n=r.length;n>t;t++)u=r[t],s.push(i(u,"top"));return s}(),n=function(){var t,n,r,s;for(r=e(o.fixedBottom.join(", ")),s=[],t=0,n=r.length;n>t;t++)u=r[t],s.push(i(u,"bottom"));return s}(),{top:Math.max.apply(Math,[0].concat(t.call(r))),bottom:Math.max.apply(Math,[0].concat(t.call(n)))}},h=function(t,n){var r;return r=e(t).first(),up.puts("Revealing fragment %o",r.get(0)),n=E.options(n),E.rejectOnError(function(){var t,i,u,s,a,p,c,h,f,d,m,v,y;return t=n.viewport?e(n.viewport):C(r),m=E.option(n.snap,o.snap),y=t.is(document),v=y?E.clientSize().height:t.outerHeight(),h=t.scrollTop(),a=h,c=void 0,p=void 0,y?(p=l(),c=0):(p={top:0,bottom:0},c=h),f=function(){return a+p.top},d=function(){return a+v-p.bottom-1},i=E.measure(r,{relative:t,includeMargin:!0}),u=i.top+c,s=u+Math.min(i.height,o.substance)-1,s>d()&&(a+=s-d()),(u<f()||n.top)&&(a=u-p.top),m>a&&i.top<.5*v&&(a=0),a!==h?g(t,a,n):Promise.resolve()})},f=function(){var t,e;return(e=up.browser.hash())&&(t=u(e))?h(t):Promise.resolve()},x=function(){return o.viewports.join(",")},C=function(t,n){var r,o;return null==n&&(n={}),r=e(t),o=r.closest(x()),0===o.length&&(o=e(document)),o},F=function(t){var n;return n=e(t),E.selectInSubtree(n,x())},P=function(){return e(document).add(x())},b=function(t){var n;return n=e(t),n.is(document)?"document":E.selectorForElement(n)},w=function(){var t,n,r,i,u;for(u={},i=o.viewports,n=0,r=i.length;r>n;n++)t=i[n],e(t).each(function(){var t,n,r;return t=e(this),n=b(t),r=t.scrollTop(),u[n]=r});return u},s=function(t){var n,r;return null==t&&(t=void 0),t||(t=document.body),r=e(t),n=r.find("[up-fixed]"),E.isPresent(o.fixedTop)&&(n=n.add(r.find(o.fixedTop.join(", ")))),E.isPresent(o.fixedBottom)&&(n=n.add(r.find(o.fixedBottom.join(", ")))),n},v=function(t){var e,n;return null==t&&(t={}),n=E.option(t.url,up.history.url()),e=E.option(t.tops,w()),a.set(n,e)},c=function(t){var e,n,r,o,i;return null==t&&(t={}),i=up.history.url(),r=void 0,t.around?(n=F(t.around),e=C(t.around),r=e.add(n)):r=P(),o=a.get(i)||{},up.log.group("Restoring scroll positions for URL %s to %o",i,o,function(){var t;return t=E.map(r,function(t){var e,n;return e=b(t),n=o[e]||0,g(t,n,{duration:0})}),Promise.all(t)})},d=function(t,n){var r,o,i;return n=E.options(n),r=e(t),n.restoreScroll?c({around:r}):n.reveal&&(o={duration:n.duration},E.isString(n.reveal)&&(i=m(n.reveal,n),r=up.first(i)||r,o.top=!0),r.length)?h(r,o):Promise.resolve()},m=function(t,e){return t=up.dom.resolveSelector(t,e.origin),"#"===t[0]&&(t+=", a[name='"+t+"']"),t},n=function(t,n){var r,o,i,u,s,a,l,p,c,h,f;for(n=E.options(n,{afterMeasure:E.noop}),i=up.layout.viewportOf(t),c=E.measure(t,{relative:!0,inner:!0}),h=t.offset(),n.afterMeasure(),E.writeInlineStyle(t,{position:"static"===E.readComputedStyle(t,"position")?"static":"relative",top:"auto",right:"auto",bottom:"auto",left:"auto",width:"100%",height:"100%"}),r=e('<div class="up-bounds"></div>'),u=E.merge(c,{position:"absolute"}),E.writeInlineStyle(r,u),r.insertBefore(t),t.appendTo(r),f=c.top,p=function(t){return 0!==t?(f+=t,E.writeInlineStyle(r,{top:f})):void 0},p(h.top-t.offset().top),o=up.layout.fixedChildren(t),a=0,l=o.length;l>a;a++)s=o[a],E.fixedToAbsolute(s,i);return{$element:t,$bounds:r,moveTop:p}},u=function(t){return(t=up.browser.hash(t))?up.first("[id='"+t+"'], a[name='"+t+"']"):void 0},up.on("up:app:booted",f),up.on("up:framework:reset",p),{reveal:h,revealHash:f,firstHashTarget:u,scroll:g,config:o,viewportOf:C,viewportsWithin:F,viewports:P,scrollTops:w,saveScroll:v,restoreScroll:c,revealOrRestoreScroll:d,anchoredRight:r,fixedChildren:s,absolutize:n}}(jQuery),up.scroll=up.layout.scroll,up.reveal=up.layout.reveal,up.revealHash=up.layout.revealHash}.call(this),function(){up.dom=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F,$,A,D,O,M,R;return M=up.util,r=M.config({fallbacks:["body"],fallbackTransition:null}),C=function(){return r.reset()},P=function(e,n){var r;return n!==!1?(r=t(e),M.isPresent(n)&&(n=M.normalizeUrl(n)),r.attr("up-source",n)):void 0},A=function(e){var n;return n=t(e).closest("[up-source]"),M.presence(n.attr("up-source"))||up.browser.url()},x=function(t,e){var n,r;return M.isString(t)?(r=t,M.contains(r,"&")&&(M.isPresent(e)?(n=M.selectorForElement(e),r=r.replace(/\&/,n)):up.fail("Found origin reference (%s) in selector %s, but no origin was given","&",r))):r=M.selectorForElement(t),r},E=function(t,e,r){var o,i,u,s,a,l,p,c,h,f;if(r=M.options(r),r.inspectResponse=u=function(){return up.browser.navigate(e,M.only(r,"method","data"))},!up.browser.canPushState()&&r.history!==!1)return r.preload||u(),M.unresolvablePromise();f=M.merge(r,{humanizedTarget:"target"}),i=M.merge(r,{humanizedTarget:"failure target",provideTarget:void 0,restoreScroll:!1}),M.renameKey(i,"failTransition","transition"),M.renameKey(i,"failLayer","layer"),M.renameKey(i,"failReveal","reveal");try{a=n(t,f),s=n(r.failTarget,i)}catch(d){return o=d,Promise.reject(o)}return h={url:e,method:r.method,data:r.data,target:a,failTarget:s,cache:r.cache,preload:r.preload,headers:r.headers,timeout:r.timeout},p=function(t){return T(!0,a,t,f)},l=function(t){var e,n;return n=function(){return Promise.reject(t)},t.isFatalError()?n():(e=T(!1,s,t,i),M.always(e,n))},c=up.request(h),r.preload||(c=c.then(p,l)),c},T=function(t,e,n,r){var o,i,u,s,a;return s=n.request,a=n.url,i=a,o=s.hash,r.reveal===!0&&o&&(r.reveal=o,i+=o),u="GET"===n.method,t?u?(r.history===!1||M.isString(r.history)||(r.history=i),r.source===!1||M.isString(r.source)||(r.source=a)):(M.isString(r.history)||(r.history=!1),M.isString(r.source)||(r.source="keep")):u?(r.history!==!1&&(r.history=i),r.source!==!1&&(r.source=a)):(r.history=!1,r.source="keep"),F(r)&&n.title&&(r.title=n.title),p(e,n.text,r)},F=function(t){return!(t.title===!1||M.isString(t.title)||t.history===!1&&t.title!==!0)},p=function(t,n,r){return up.log.group("Extracting %s from %d bytes of HTML",t,null!=n?n.length:void 0,function(){return r=M.options(r,{historyMethod:"push",requireMatch:!0,keep:!0,layer:"auto"}),r.saveScroll!==!1&&up.layout.saveScroll(),M.rejectOnError(function(){var o,i,u,s,a,l,p;for("function"==typeof r.provideTarget&&r.provideTarget(),s=k(n),o=e(t,s,r),F(r)&&(a=s.title())&&(r.title=a),R(r),p=[],i=0,u=o.length;u>i;i++)l=o[i],up.log.group("Swapping fragment %s",l.selector,function(){var t,e;return t=M.merge(r,M.only(l,"origin","reveal")),m(l.$new),e=D(l.$old,l.$new,l.pseudoClass,l.transition,t),p.push(e)});return Promise.all(p)})})},n=function(t,e){var n;return n=new up.ExtractCascade(t,e),n.bestPreflightSelector()},e=function(t,e,n){var r;return n=M.merge(n,{response:e}),r=new up.ExtractCascade(t,n),r.bestMatchingSteps()},m=function(t){var e,n,r,o,u;for(n=[],i(t.get(0),n),u=[],r=0,o=n.length;o>r;r++)e=n[r],u.push(e());return u},i=function(t,e){var n,r,o,u,s,a;if("NOSCRIPT"===t.tagName)return r=document.createElement("noscript"),r.textContent=t.innerHTML,e.push(function(){return t.parentNode.replaceChild(r,t)});if("SCRIPT"===t.tagName)return e.push(function(){return t.parentNode.removeChild(t)});for(s=t.children,a=[],o=0,u=s.length;u>o;o++)n=s[o],a.push(i(n,e));return a},k=function(e){var n;return n=M.createElementFromHtml(e),{title:function(){var t;return null!=(t=n.querySelector("head title"))?t.textContent:void 0},first:function(e){var r;return(r=t.find(e,n)[0])?t(r):void 0}}},R=function(t){return t=M.options(t,{historyMethod:"push"}),t.history&&up.history[t.historyMethod](t.history),M.isString(t.title)?document.title=t.title:void 0},D=function(t,e,n,r,o){var i,a,p,h,f;return r||(r="none"),"keep"===o.source&&(o=M.merge(o,{source:A(t)})),P(e,o.source),n?(a=e.contents().wrapAll('<div class="up-insertion"></div>').parent(),"before"===n?t.prepend(a):t.append(a),v(a.children(),o),f=up.layout.revealOrRestoreScroll(a,o),f=f.then(function(){return up.animate(a,r,o)}),f=f.then(function(){return M.unwrapElement(a)})):(p=c(t,e,o))?(l(p),Promise.resolve()):(o.keepPlans=O(t,e,o),i=t.parent(),h=M.merge(o,{afterInsert:function(){return up.hello(e,o),b(t),u(t,{log:!1})},beforeDetach:function(){return up.syntax.clean(t)},afterDetach:function(){return t.remove(),s(t,{$parent:i,log:!1})
3
- }}),up.morph(t,e,r,h))},O=function(e,n,r){var o,i,u,s,a,l,p,h;if(s=[],r.keep)for(h=e.find("[up-keep]"),u=0,l=h.length;l>u;u++)a=h[u],o=t(a),(p=c(o,n,M.merge(r,{descendantsOnly:!0})))&&(i=o.clone(),M.detachWith(o,i),p.$newElement.replaceWith(o),s.push(p));return s},c=function(t,e,n){var r,o,i,u,s;return n.keep&&(r=t,(u=M.castedAttr(r,"up-keep"))&&(M.isString(u)||(u="&"),u=x(u,r),o=n.descendantsOnly?e.find(u):M.selectInSubtree(e,u),o=o.first(),o.length&&o.is("[up-keep]")&&(s={$element:r,$newElement:o,newData:up.syntax.data(o)},i=M.merge(s,{message:["Keeping element %o",r.get(0)]}),up.bus.nobodyPrevents("up:fragment:keep",i))))?s:void 0},v=function(e,n){var r,o,i,u,s,p;for(r=t(e),n=M.options(n,{keepPlans:[]}),i=[],p=n.keepPlans,o=0,u=p.length;u>o;o++)s=p[o],l(s),i.push(s.$element);return up.syntax.compile(r,{skip:i}),a(r,n),r},a=function(t,e){return up.emit("up:fragment:inserted",{$element:t,message:["Inserted fragment %o",t.get(0)],origin:e.origin})},l=function(t){var e;return e=M.merge(t,{message:["Kept fragment %o",t.$element.get(0)]}),up.emit("up:fragment:kept",e)},u=function(t,e){var n;return $(t,e)&&(n=["Destroying fragment %o",t.get(0)]),up.emit("up:fragment:destroy",{$element:t,message:n})},s=function(t,e){var n,r;return $(t,e)&&(r=["Destroyed fragment %o",t.get(0)]),n=e.$parent||up.fail("Missing { $parent } option"),up.emit("up:fragment:destroyed",{$target:n,$parent:n,$element:t,message:r})},g=function(t){var e;return e=".up-destroying",0===t.closest(e).length},h=function(t,e){var n;return e=M.options(e,{layer:"auto"}),n=x(t,e.origin),"auto"===e.layer?d(n,e.origin):f(n,e.layer)},d=function(t,e){var n,r,o,i,u,s;for(i=["popup","modal","page"],n=void 0,M.isPresent(e)&&(s=y(e),M.remove(i,s),i.unshift(s)),r=0,u=i.length;u>r&&(o=i[r],!(n=f(t,o)));r++);return n},f=function(e,n){var r,o,i,u,s,a;for(o=t(e),i=void 0,s=0,a=o.length;a>s;s++)if(u=o[s],r=t(u),g(r)&&w(r,n)){i=r;break}return i},y=function(e){var n;return n=t(e),up.popup.contains(n)?"popup":up.modal.contains(n)?"modal":"page"},w=function(t,e){return y(t)===e},o=function(e,n){var r,o,i;return r=t(e),n=M.options(n,{animation:!1}),0===r.length?Promise.resolve():(b(r),u(r,n),R(n),o=function(){var t;return t=up.motion.animateOptions(n),up.motion.animate(r,n.animation,t)},i=function(){var t;return t=r.parent(),up.syntax.clean(r),r.remove(),s(r,{$parent:t})},o().then(i))},$=function(t,e){return e.log!==!1&&!t.is(".up-placeholder, .up-tooltip, .up-modal, .up-popup")},b=function(t){return t.addClass("up-destroying")},S=function(t,e){var n;return e=M.options(e,{cache:!1}),n=e.url||A(t),E(t,n,e)},up.on("up:app:boot",function(){var e;return e=t(document.body),P(e,up.browser.url()),v(e)}),up.on("up:framework:reset",C),{replace:E,reload:S,destroy:o,extract:p,first:h,source:A,resolveSelector:x,hello:v,config:r}}(jQuery),up.replace=up.dom.replace,up.extract=up.dom.extract,up.reload=up.dom.reload,up.destroy=up.dom.destroy,up.first=up.dom.first,up.hello=up.dom.hello,up.renamedModule("flow","dom")}.call(this),function(){var t=[].slice;up.motion=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F,$;return F=up.util,b={},a={},w={},l={},y=new up.MotionTracker("motion"),s=F.config({duration:300,delay:0,easing:"ease",enabled:!0}),S=function(){return y.reset(),b=F.copy(a),w=F.copy(l),s.reset()},d=function(){return s.enabled},r=function(t,n,r){var o,u,s,a;return o=e(t),r=i(r),u=p(n),a=$(o,n,r),a?(s=function(){return u(o,r)},y.claim(o,s,r)):E(o,n)},$=function(t,e,n){return n=i(n),d()&&!m(e)&&n.duration>0&&!v(t)},v=function(t){return t.is("body")},E=function(t,e){return F.isOptions(e)&&F.writeInlineStyle(t,e),Promise.resolve()},n=0,o=function(t,e,n){var r;return n=F.merge(n,{finishEvent:y.finishEvent}),r=new up.CssTransition(t,e,n),r.start()},i=function(){var e,n,r,o,i;return n=1<=arguments.length?t.call(arguments,0):[],i=n.shift()||{},e=F.isJQuery(n[0])?n.shift():F.nullJQuery(),o=F.isObject(n[0])?n.shift():{},r={},r.easing=F.option(i.easing,F.presentAttr(e,"up-easing"),o.easing,s.easing),r.duration=Number(F.option(i.duration,F.presentAttr(e,"up-duration"),o.duration,s.duration)),r.delay=Number(F.option(i.delay,F.presentAttr(e,"up-delay"),o.delay,s.delay)),r.trackMotion=i.trackMotion,r},c=function(t){return b[t]||up.fail("Unknown animation %o",t)},f=function(t){return y.finish(t)},g=function(t,n,r,o){var u,s,a,l,p,c,f,d,m,v,g;return o=F.options(o),o=F.assign(o,i(o)),a=e(t),s=e(n),u=a.add(s),v=h(r),g=$(a,v,o),o.afterInsert||(o.afterInsert=F.noop),o.beforeDetach||(o.beforeDetach=F.noop),o.afterDetach||(o.afterDetach=F.noop),f=function(){var t;return t=F.merge(o,{duration:0}),up.layout.revealOrRestoreScroll(s,t)},g?y.isActive(a)&&o.trackMotion===!1?v(a,s,o):(up.puts("Morphing %o to %o with transition %o",a.get(0),s.get(0),r),l=up.layout.viewportOf(a),d=l.scrollTop(),p=up.layout.absolutize(a,{afterMeasure:function(){return s.insertBefore(a),o.afterInsert()}}),m=function(){var t;return t=f(),t=t.then(function(){var t;return t=l.scrollTop(),p.moveTop(t-d),v(a,s,o)}),t=t.then(function(){return o.beforeDetach(),a.detach(),p.$bounds.remove(),o.afterDetach()})},y.claim(u,m,o)):(o.beforeDetach(),x(a,s),o.afterInsert(),o.afterDetach(),c=f())},h=function(t){var e;return m(t)?void 0:F.isFunction(t)?t:F.isArray(t)?u.apply(null,t):F.isString(t)?t.indexOf("/")>=0?u.apply(null,t.split("/")):(e=w[t])?h(e):void 0:up.fail("Unknown transition %o",t)},u=function(t,e){var n,r;return m(t)&&m(t)?void 0:(r=p(t)||F.asyncNoop,n=p(e)||F.asyncNoop,function(t,e,o){return Promise.all([r(t,o),n(e,o)])})},p=function(t){return m(t)?void 0:F.isFunction(t)?t:F.isString(t)?c(t):F.isOptions(t)?function(e,n){return o(e,t,n)}:up.fail("Unknown animation %o",t)},x=function(t,e){return t.replaceWith(e)},T=function(t,e){return w[t]=h(e)},k=function(t,e){return b[t]=p(e)},C=function(){return a=F.copy(b),l=F.copy(w)},m=function(t){return!t||"none"===t||F.isBlank(t)},k("fade-in",function(t,e){return F.writeInlineStyle(t,{opacity:0}),o(t,{opacity:1},e)}),k("fade-out",function(t,e){return F.writeInlineStyle(t,{opacity:1}),o(t,{opacity:0},e)}),P=function(t,e){return{transform:"translate("+t+"px, "+e+"px)"}},k("move-to-top",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=n.top+n.height,o(t,P(0,-r),e)}),k("move-from-top",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=n.top+n.height,F.writeInlineStyle(t,P(0,-r)),o(t,P(0,0),e)}),k("move-to-bottom",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=F.clientSize().height-n.top,o(t,P(0,r),e)}),k("move-from-bottom",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=F.clientSize().height-n.top,F.writeInlineStyle(t,P(0,r)),o(t,P(0,0),e)}),k("move-to-left",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=n.left+n.width,o(t,P(-r,0),e)}),k("move-from-left",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=n.left+n.width,F.writeInlineStyle(t,P(-r,0)),o(t,P(0,0),e)}),k("move-to-right",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=F.clientSize().width-n.left,o(t,P(r,0),e)}),k("move-from-right",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=F.clientSize().width-n.left,F.writeInlineStyle(t,P(r,0)),o(t,P(0,0),e)}),k("roll-down",function(t,e){var n,o,i;return o=t.height(),i=F.writeTemporaryStyle(t,{height:"0px",overflow:"hidden"}),n=r(t,{height:o+"px"},e),n.then(i),n}),T("move-left",["move-to-left","move-from-right"]),T("move-right",["move-to-right","move-from-left"]),T("move-up",["move-to-top","move-from-bottom"]),T("move-down",["move-to-bottom","move-from-top"]),T("cross-fade",["fade-out","fade-in"]),up.on("up:framework:booted",C),up.on("up:framework:reset",S),{morph:g,animate:r,animateOptions:i,willAnimate:$,finish:f,finishCount:function(){return y.finishCount},transition:T,animation:k,config:s,isEnabled:d,isNone:m}}(jQuery),up.transition=up.motion.transition,up.animation=up.motion.animation,up.morph=up.motion.morph,up.animate=up.motion.animate}.call(this),function(){var t=[].slice;up.proxy=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F,$,A,D,O,M,R,U,j;return U=up.util,n=void 0,S=void 0,D=void 0,b=void 0,O=void 0,C=[],l=U.config({slowDelay:300,preloadDelay:75,cacheSize:70,cacheExpiry:3e5,maxRequests:4,wrapMethods:["PATCH","PUT","DELETE"],safeMethods:["GET","OPTIONS","HEAD"]}),i=new up.Cache({size:function(){return l.cacheSize},expiry:function(){return l.cacheExpiry},key:function(t){return up.Request.wrap(t).cacheKey()},cachable:function(t){return up.Request.wrap(t).isCachable()}}),p=function(t){var e,n,r,o,u,s,a;for(t=up.Request.wrap(t),n=[t],"html"!==t.target&&(s=t.copy({target:"html"}),n.push(s),"body"!==t.target&&(u=t.copy({target:"body"}),n.push(u))),r=0,o=n.length;o>r;r++)if(e=n[r],a=i.get(e))return a},u=function(){return clearTimeout(S),S=null},s=function(){return clearTimeout(D),D=null},F=function(){return n=null,u(),s(),b=0,l.reset(),i.clear(),O=!1,C=[]},F(),y=function(){var e,n,r,o,i;return e=1<=arguments.length?t.call(arguments,0):[],r=U.extractOptions(e),U.isGiven(e[0])&&(r.url=e[0]),n=r.cache===!1,i=up.Request.wrap(r),i.isSafe()||a(),!n&&(o=p(i))?up.puts("Re-using cached response for %s %s",i.method,i.url):(o=v(i),A(i,o),o["catch"](function(){return P(i)})),r.preload||(g(),U.always(o,m)),o},r=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],up.log.warn("up.ajax() has been deprecated. Use up.request() instead."),new Promise(function(t,n){var r;return r=function(e){return t(e.text)},y.apply(null,e).then(r,n)})},h=function(){return 0===b},c=function(){return b>0},g=function(){var t;return b+=1,D?void 0:(t=function(){return c()?(up.emit("up:proxy:slow",{message:"Proxy is slow to respond"}),O=!0):void 0},D=U.setTimer(l.slowDelay,t))},m=function(){return b-=1,h()&&(s(),O)?(up.emit("up:proxy:recover",{message:"Proxy has recovered from slow response"}),O=!1):void 0},v=function(t){return b<l.maxRequests?d(t):E(t)},E=function(t){var e;return up.puts("Queuing request for %s %s",t.method,t.url),e=function(){return d(t)},e=U.previewable(e),C.push(e),e.promise},d=function(t){var e,n;return e={request:t,message:["Loading %s %s",t.method,t.url]},up.bus.nobodyPrevents("up:proxy:load",e)?(n=t.send(),U.always(n,$),U.always(n,w),n):(U.microtask(w),Promise.reject(new Error("Event up:proxy:load was prevented")))},x=function(t){var e,n;return n=t.request,t.url&&n.url!==t.url?(e=n.copy({method:t.method,url:t.url}),up.proxy.alias(n,e)):void 0},$=function(t){return t.isFatalError()?up.emit("up:proxy:fatal",{message:"Fatal error during request",request:t.request,response:t}):(t.isError()||x(t),up.emit("up:proxy:loaded",{message:["Server responded with HTTP %d (%d bytes)",t.status,t.text.length],request:t.request,response:t}))},w=function(){var t;return void("function"==typeof(t=C.shift())&&t())},o=i.alias,A=i.set,P=i.remove,a=i.clear,up.bus.renamedEvent("up:proxy:received","up:proxy:loaded"),T=function(t){var e,r;return r=parseInt(U.presentAttr(t,"up-delay"))||l.preloadDelay,t.is(n)?void 0:(n=t,u(),e=function(){return U.muteRejection(k(t)),n=null},M(e,r))},M=function(t,e){return S=setTimeout(t,e)},R=function(t){return t.is(n)?(n=void 0,u()):void 0},k=function(t){var n;return n=e(t),up.link.isSafe(n)?up.log.group("Preloading link %o",n.get(0),function(){var t;return t=up.link.followVariantForLink(n),t.preloadLink(n)}):Promise.reject(new Error("Won't preload unsafe link"))},f=function(t){return U.contains(l.safeMethods,t)},j=function(t,e,n){return U.contains(l.wrapMethods,t)&&(e=U.appendRequestData(e,up.protocol.config.methodParam,t,n),t="POST"),[t,e]},up.compiler("a[up-preload], [up-href][up-preload]",function(t){return up.link.isSafe(t)?(t.on("mouseenter touchstart",function(e){return up.link.shouldProcessEvent(e,t)?T(t):void 0}),t.on("mouseleave",function(){return R(t)})):void 0}),up.on("up:framework:reset",F),{preload:k,ajax:r,request:y,get:p,alias:o,clear:a,remove:P,isIdle:h,isBusy:c,isSafeMethod:f,wrapMethod:j,config:l}}(jQuery),up.ajax=up.proxy.ajax,up.request=up.proxy.request}.call(this),function(){up.link=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m;return d=up.util,m=function(t,e){var n;return e=d.options(e),n=d.option(e.target,"body"),up.replace(n,t,e)},u=function(e,n){var r,o;return r=t(e),o=a(r),o.followLink(r,n)},o=function(e,n){var r,o,i;return r=t(e),n=d.options(n),i=d.option(r.attr("up-href"),r.attr("href")),o=d.option(n.target,r.attr("up-target")),n.failTarget=d.option(n.failTarget,r.attr("up-fail-target")),n.fallback=d.option(n.fallback,r.attr("up-fallback")),n.transition=d.option(n.transition,d.castedAttr(r,"up-transition"),"none"),n.failTransition=d.option(n.failTransition,d.castedAttr(r,"up-fail-transition"),"none"),n.history=d.option(n.history,d.castedAttr(r,"up-history")),n.reveal=d.option(n.reveal,d.castedAttr(r,"up-reveal"),!0),n.failReveal=d.option(n.failReveal,d.castedAttr(r,"up-fail-reveal"),!0),n.cache=d.option(n.cache,d.castedAttr(r,"up-cache")),n.restoreScroll=d.option(n.restoreScroll,d.castedAttr(r,"up-restore-scroll")),n.method=s(r,n),n.origin=d.option(n.origin,r),n.layer=d.option(n.layer,r.attr("up-layer"),"auto"),n.failLayer=d.option(n.failLayer,r.attr("up-fail-layer"),"auto"),n.confirm=d.option(n.confirm,r.attr("up-confirm")),n=d.merge(n,up.motion.animateOptions(n,r)),up.browser.whenConfirmed(n).then(function(){return up.replace(o,i,n)})},i=function(t,e){return e=d.options(e),e.preload=!0,o(t,e)},s=function(e,n){var r;return r=t(e),n=d.options(n),d.option(n.method,r.attr("up-method"),r.attr("data-method"),"get").toUpperCase()},r=function(){},l=[],n=function(t,e){var n;return n=new up.FollowVariant(t,e),l.push(n),n.registerEvents(),n},p=function(t){return!!a(t,{"default":!1})},a=function(n,r){var o,i;return r=d.options(r),o=t(n),i=d.detect(l,function(t){return t.matchesLink(o)}),r["default"]!==!1&&(i||(i=e)),i},h=function(e){var n;return n=t(e),p(n)?void 0:n.attr("up-follow","")},f=function(e,n){var r,o;return o=e.target,d.isUnmodifiedMouseEvent(e)?o===n.get(0)?!0:(r=t(o).closest("a, [up-href], "+up.form.fieldSelector()).not(n),r.length?!1:!0):!1},c=function(e,n){var r,o;return r=t(e),o=s(r,n),up.proxy.isSafeMethod(o)},e=n("[up-target], [up-follow]",{follow:function(t,e){return o(t,e)},preload:function(t,e){return i(t,e)}}),up.macro("[up-dash]",function(t){var e,n;return n=d.castedAttr(t,"up-dash"),t.removeAttr("up-dash"),e={"up-preload":"","up-instant":""},n===!0?h(t):e["up-target"]=n,d.setMissingAttrs(t,e)}),up.macro("[up-expand]",function(e){var n,r,o,i,u,s,a,l,p,c;if(n=e.find("a, [up-href]"),(p=e.attr("up-expand"))&&(n=n.filter(p)),u=n.get(0)){for(c=/^up-/,a={},a["up-href"]=t(u).attr("href"),l=u.attributes,o=0,i=l.length;i>o;o++)r=l[o],s=r.name,s.match(c)&&(a[s]=r.value);return d.setMissingAttrs(e,a),e.removeAttr("up-expand"),h(e)}}),{visit:m,follow:u,makeFollowable:h,isSafe:c,isFollowable:p,shouldProcessEvent:f,followMethod:s,addFollowVariant:n,followVariantForLink:a,allowDefault:r}}(jQuery),up.visit=up.link.visit,up.follow=up.link.follow}.call(this),function(){var t=[].slice;up.form=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m;return d=up.util,r=d.config({validateTargets:["[up-fieldset]:has(&)","fieldset:has(&)","label:has(&)","form:has(&)"],fields:[":input"],observeDelay:0}),a=function(){return r.reset()},o=function(){return r.fields.join(",")},p=function(t,n){var r,o,i;return r=e(t).closest("form"),n=d.options(n),o=d.option(n.target,r.attr("up-target"),"body"),i=d.option(n.url,r.attr("action"),up.browser.url()),n.failTarget=d.option(n.failTarget,r.attr("up-fail-target"))||d.selectorForElement(r),n.reveal=d.option(n.reveal,d.castedAttr(r,"up-reveal"),!0),n.failReveal=d.option(n.failReveal,d.castedAttr(r,"up-fail-reveal"),!0),n.fallback=d.option(n.fallback,r.attr("up-fallback")),n.history=d.option(n.history,d.castedAttr(r,"up-history"),!0),n.transition=d.option(n.transition,d.castedAttr(r,"up-transition"),"none"),n.failTransition=d.option(n.failTransition,d.castedAttr(r,"up-fail-transition"),"none"),n.method=d.option(n.method,r.attr("up-method"),r.attr("data-method"),r.attr("method"),"post").toUpperCase(),n.headers=d.option(n.headers,{}),n.cache=d.option(n.cache,d.castedAttr(r,"up-cache")),n.restoreScroll=d.option(n.restoreScroll,d.castedAttr(r,"up-restore-scroll")),n.origin=d.option(n.origin,r),n.layer=d.option(n.layer,r.attr("up-layer"),"auto"),n.failLayer=d.option(n.failLayer,r.attr("up-fail-layer"),"auto"),n.data=d.requestDataFromForm(r),n=d.merge(n,up.motion.animateOptions(n,r)),n.validate&&(n.headers||(n.headers={}),n.transition=!1,n.failTransition=!1,n.headers[up.protocol.config.validateHeader]=n.validate),up.bus.whenEmitted("up:form:submit",{$element:r}).then(function(){var t;return up.feedback.start(r),up.browser.canPushState()||n.history===!1?(t=up.replace(o,i,n),d.always(t,function(){return up.feedback.stop(r)}),t):(r.get(0).submit(),d.unresolvablePromise())})},u=function(){var n,i,u,a,l,p,c,h,f,m;return m=arguments[0],c=2<=arguments.length?t.call(arguments,1):[],h={},a=void 0,1===c.length?a=c[0]:c.length>1&&(h=d.options(c[0]),a=c[1]),n=e(m),u=null,f=d.option(a,d.presentAttr(n,"up-observe")),u=d.isString(f)?new Function("value","$field",f):f||up.fail("up.observe: No change callback given"),l=d.option(d.presentAttr(n,"up-delay"),h.delay,r.observeDelay),l=parseInt(l),i=d.selectInSubtree(n,o()),p=d.map(i,function(t){return s(e(t),l,u)}),d.sequence.apply(d,p)},s=function(t,e,n){var r;return r=new up.FieldObserver(t,{delay:e,callback:n}),r.start(),r.stop},n=function(t,e){return u(t,e,function(t,e){var n;return n=e.closest("form"),up.feedback.start(e,function(){return p(n)})})},l=function(t,e){var n;return n=d.option(e.target,t.attr("up-validate")),d.isBlank(n)&&(n||(n=d.detect(r.validateTargets,function(n){var r;return r=up.dom.resolveSelector(n,e.origin),t.closest(r).length}))),d.isBlank(n)&&up.fail("Could not find default validation target for %o (tried ancestors %o)",t.get(0),r.validateTargets),d.isString(n)||(n=d.selectorForElement(n)),n},m=function(t,n){var r,o,i;return r=e(t),n=d.options(n),n.origin=r,n.target=l(r,n),n.failTarget=n.target,n.reveal=d.option(n.reveal,d.castedAttr(r,"up-reveal"),!1),n.history=!1,n.headers=d.option(n.headers,{}),n.validate=r.attr("name")||"__none__",n=d.merge(n,up.motion.animateOptions(n,r)),o=r.closest("form"),i=up.submit(o,n)},f=function(t){var e,n,r,o;return t.is("input[type=checkbox]")?t.is(":checked")?(r=t.val(),n=":checked"):n=":unchecked":t.is("input[type=radio]")?(e=t.closest("form, body").find("input[type='radio'][name='"+t.attr("name")+"']:checked"),e.length?(n=":checked",r=e.val()):n=":unchecked"):r=t.val(),o=[],d.isPresent(r)?(o.push(r),o.push(":present")):o.push(":blank"),d.isPresent(n)&&o.push(n),o},h=function(t,n){var r,o,i;return r=e(t),n=d.options(n),i=d.option(n.target,r.attr("up-switch")),d.isPresent(i)||up.fail("No switch target given for %o",r.get(0)),o=f(r),e(i).each(function(){return c(e(this),o)})},c=function(t,n){var r,o,u,s;return r=e(t),n||(n=f(i(r))),(o=r.attr("up-hide-for"))?(o=o.split(" "),u=0===d.intersect(n,o).length):(s=(s=r.attr("up-show-for"))?s.split(" "):[":present",":checked"],u=d.intersect(n,s).length>0),r.toggle(u),r.addClass("up-switched")},i=function(t){var n,r;return n=e("[up-switch]"),r=d.detect(n,function(n){var r;return r=e(n).attr("up-switch"),t.is(r)}),r?e(r):d.fail("Could not find [up-switch] field for %o",t.get(0))},up.on("submit","form[up-target]",function(t,e){return up.bus.consumeAction(t),d.muteRejection(p(e))}),up.on("change","[up-validate]",function(t,e){return d.muteRejection(m(e))}),up.compiler("[up-switch]",function(t){return h(t)}),up.on("change","[up-switch]",function(t,e){return h(e)}),up.compiler("[up-show-for]:not(.up-switched), [up-hide-for]:not(.up-switched)",function(t){return c(t)}),up.compiler("[up-observe]",function(t){return u(t)}),up.compiler("[up-autosubmit]",function(t){return n(t)}),up.compiler("[autofocus]",{batch:!0},function(t){return t.last().focus()}),up.on("up:framework:reset",a),{config:r,submit:p,observe:u,validate:m,switchTargets:h,autosubmit:n,fieldSelector:o}}(jQuery),up.submit=up.form.submit,up.observe=up.form.observe,up.autosubmit=up.form.autosubmit,up.validate=up.form.validate}.call(this),function(){up.popup=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y;return g=up.util,a=g.config({openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:150,closeDuration:100,openEasing:null,closeEasing:null,position:"bottom-right",history:!1}),m=g.config({phase:"closed",$anchor:null,$popup:null,position:null,sticky:null,url:null,coveredUrl:null,coveredTitle:null}),i=new g.DivertibleChain,d=function(){var t;return null!=(t=m.$popup)&&t.remove(),m.reset(),i.reset(),a.reset()},e=function(){var t,e,n;switch(n={},e=g.measure(m.$popup),g.isFixed(m.$anchor)?(t=m.$anchor.get(0).getBoundingClientRect(),n.position="fixed"):t=g.measure(m.$anchor),m.position){case"bottom-right":n.top=t.top+t.height,n.left=t.left+t.width-e.width;break;case"bottom-left":n.top=t.top+t.height,n.left=t.left;break;case"top-right":n.top=t.top-e.height,n.left=t.left+t.width-e.width;break;case"top-left":n.top=t.top-e.height,n.left=t.left;break;default:up.fail("Unknown position option '%s'",m.position)}return m.$popup.attr("up-position",m.position),g.writeInlineStyle(m.$popup,n)},c=function(){return m.coveredTitle=null,m.coveredUrl=null},p=function(t){var e;return e=g.$createElementFromSelector(".up-popup"),g.$createPlaceholder(t,e),e.hide(),e.appendTo(document.body),m.$popup=e},y=function(){return m.$popup.show()},h=function(){return"opened"===m.phase||"opening"===m.phase},n=function(t,e){return i.asap(s,function(){return r(t,e)})},r=function(n,r){var o,i,u,s,l,c,h;return o=t(n),o.length||up.fail("Cannot attach popup to non-existing element %o",n),r=g.options(r),h=g.option(g.pluckKey(r,"url"),o.attr("up-href"),o.attr("href")),s=g.option(g.pluckKey(r,"html")),h||s||up.fail("up.popup.attach() requires either an { url } or { html } option"),c=g.option(g.pluckKey(r,"target"),o.attr("up-popup"))||up.fail("No target selector given for [up-popup]"),l=g.option(r.position,o.attr("up-position"),a.position),r.animation=g.option(r.animation,o.attr("up-animation"),a.openAnimation),r.sticky=g.option(r.sticky,g.castedAttr(o,"up-sticky"),a.sticky),r.history=up.browser.canPushState()?g.option(r.history,g.castedAttr(o,"up-history"),a.history):!1,r.confirm=g.option(r.confirm,o.attr("up-confirm")),r.method=up.link.followMethod(o,r),r.layer="popup",r.failTarget=g.option(r.failTarget,o.attr("up-fail-target")),r.failLayer=g.option(r.failLayer,o.attr("up-fail-layer"),"auto"),r.provideTarget=function(){return p(c)},i=up.motion.animateOptions(r,o,{duration:a.openDuration,easing:a.openEasing}),u=g.merge(r,{animation:!1}),r.preload&&h?up.replace(c,h,r):up.browser.whenConfirmed(r).then(function(){return up.bus.whenEmitted("up:popup:open",{url:h,message:"Opening popup"}).then(function(){var t;return m.phase="opening",m.$anchor=o,m.position=l,r.history&&(m.coveredUrl=up.browser.url(),m.coveredTitle=document.title),m.sticky=r.sticky,t=s?up.extract(c,s,u):up.replace(c,h,u),t=t.then(function(){return e(),y(),up.animate(m.$popup,r.animation,i)}),t=t.then(function(){return m.phase="opened",up.emit("up:popup:opened",{message:"Popup opened"})})})})},u=function(t){return i.asap(function(){return s(t)})},s=function(t){var e;return h()?(t=g.options(t,{animation:a.closeAnimation,history:m.coveredUrl,title:m.coveredTitle}),e=up.motion.animateOptions(t,{duration:a.closeDuration,easing:a.closeEasing}),g.assign(t,e),up.bus.whenEmitted("up:popup:close",{message:"Closing popup",$element:m.$popup}).then(function(){return m.phase="closing",m.url=null,m.coveredUrl=null,m.coveredTitle=null,up.destroy(m.$popup,t).then(function(){return m.phase="closed",m.$popup=null,m.$anchor=null,m.sticky=null,up.emit("up:popup:closed",{message:"Popup closed"})})})):Promise.resolve()},f=function(t,e){return e=g.options(e),e.preload=!0,r(t,e)},v=function(t,e){return g.hasClass(t,"up-current")?u():n(t,e)},o=function(){return m.sticky?void 0:(c(),u())},l=function(e){var n;return n=t(e),n.closest(".up-popup").length>0},up.link.addFollowVariant("[up-popup]",{follow:function(t,e){return v(t,e)},preload:function(t,e){return f(t,e)}}),up.on("click up:action:consumed",function(e){var n;return n=t(e.target),n.closest(".up-popup, [up-popup]").length?void 0:u()}),up.on("up:fragment:inserted",function(t,e){var n;if(l(e)){if(n=e.attr("up-source"))return m.url=n}else if(t.origin&&l(t.origin))return o()}),up.bus.onEscape(u),up.on("click",".up-popup [up-close]",function(t){return u(),up.bus.consumeAction(t)}),up.on("up:history:restore",u),up.on("up:framework:reset",d),{attach:n,close:u,url:function(){return m.url},coveredUrl:function(){return m.coveredUrl},config:a,contains:l,isOpen:h}}(jQuery)}.call(this),function(){up.modal=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F;return C=up.util,u=C.config({maxWidth:null,width:null,height:null,history:!0,openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:null,closeDuration:null,openEasing:null,closeEasing:null,backdropOpenAnimation:"fade-in",backdropCloseAnimation:"fade-out",closeLabel:"\xd7",closable:!0,sticky:!1,flavor:"default",position:null,template:function(t){return'<div class="up-modal">\n <div class="up-modal-backdrop"></div>\n <div class="up-modal-viewport">\n <div class="up-modal-dialog">\n <div class="up-modal-content"></div>\n <div class="up-modal-close" up-close>'+t.closeLabel+"</div>\n </div>\n </div>\n</div>"}}),d=C.openConfig({"default":{}}),S=C.config(function(){return{phase:"closed",$anchor:null,$modal:null,sticky:null,closable:null,flavor:null,url:null,coveredUrl:null,coveredTitle:null,position:null,unshifters:[]}}),r=new C.DivertibleChain,k=function(){var t;return null!=(t=S.$modal)&&t.remove(),x(),S.reset(),r.reset(),u.reset(),d.reset()},E=function(){var t;return t=h("template"),C.evalOption(t,{closeLabel:h("closeLabel")})},l=function(){return S.coveredTitle=null,S.coveredUrl=null},a=function(e,n){var r,o,i,u;return i=t(E()),i.attr("up-flavor",S.flavor),C.isPresent(S.position)&&i.attr("up-position",S.position),o=i.find(".up-modal-dialog"),u=C.only(n,"width","maxWidth","height"),C.writeInlineStyle(o,u),S.closable||i.find(".up-modal-close").remove(),r=i.find(".up-modal-content"),C.$createPlaceholder(e,r),i.hide(),i.appendTo(document.body),S.$modal=i},P=function(){return S.$modal.show()},T=function(){var e,n,r,o,i;return C.documentHasVerticalScrollbar()?(e=t("body"),o=C.scrollbarWidth(),n=C.readComputedStyleNumber(e,"paddingRight"),r=o+n,i=C.writeTemporaryStyle(e,{paddingRight:r,overflowY:"hidden"}),S.unshifters.push(i),up.layout.anchoredRight().each(function(){var e,n,r,i;return e=t(this),n=C.readComputedStyleNumber(e,"right"),r=o+n,i=C.writeTemporaryStyle(e,{right:r}),S.unshifters.push(i)})):void 0},x=function(){var t,e;for(t=[];e=S.unshifters.pop();)t.push(e());return t},v=function(){return"opened"===S.phase||"opening"===S.phase},m=function(e,n){return n=C.options(n),n.$link=t(e),y(n)},w=function(t,e){return e=C.options(e),e.$link=t,e.preload=!0,b(e)},F=function(t,e){return e=C.options(e),e.url=t,y(e)},p=function(t,e,n){return n=C.options(n),n.html=e,n.history=C.option(n.history,!1),n.target=t,y(n)},y=function(t){return r.asap(i,function(){return b(t)})},b=function(t){var n,r,o,i,s;return t=C.options(t),n=C.option(C.pluckKey(t,"$link"),C.nullJQuery()),s=C.option(C.pluckKey(t,"url"),n.attr("up-href"),n.attr("href")),o=C.option(C.pluckKey(t,"html")),i=C.option(C.pluckKey(t,"target"),n.attr("up-modal"),"body"),t.flavor=C.option(t.flavor,n.attr("up-flavor"),u.flavor),t.position=C.option(t.position,n.attr("up-position"),h("position",t.flavor)),t.position=C.evalOption(t.position,{$link:n}),t.width=C.option(t.width,n.attr("up-width"),h("width",t.flavor)),t.maxWidth=C.option(t.maxWidth,n.attr("up-max-width"),h("maxWidth",t.flavor)),t.height=C.option(t.height,n.attr("up-height"),h("height")),t.animation=C.option(t.animation,n.attr("up-animation"),h("openAnimation",t.flavor)),t.animation=C.evalOption(t.animation,{position:t.position}),t.backdropAnimation=C.option(t.backdropAnimation,n.attr("up-backdrop-animation"),h("backdropOpenAnimation",t.flavor)),t.backdropAnimation=C.evalOption(t.backdropAnimation,{position:t.position}),t.sticky=C.option(t.sticky,C.castedAttr(n,"up-sticky"),h("sticky",t.flavor)),t.closable=C.option(t.closable,C.castedAttr(n,"up-closable"),h("closable",t.flavor)),t.confirm=C.option(t.confirm,n.attr("up-confirm")),t.method=up.link.followMethod(n,t),t.layer="modal",t.failTarget=C.option(t.failTarget,n.attr("up-fail-target")),t.failLayer=C.option(t.failLayer,n.attr("up-fail-layer"),"auto"),r=up.motion.animateOptions(t,n,{duration:h("openDuration",t.flavor),easing:h("openEasing",t.flavor)}),t.history=C.option(t.history,C.castedAttr(n,"up-history"),h("history",t.flavor)),up.browser.canPushState()||(t.history=!1),t.provideTarget=function(){return a(i,t)},t.preload?up.replace(i,s,t):up.browser.whenConfirmed(t).then(function(){return up.bus.whenEmitted("up:modal:open",{url:s,message:"Opening modal"}).then(function(){var n,u;return S.phase="opening",S.flavor=t.flavor,S.sticky=t.sticky,S.closable=t.closable,S.position=t.position,t.history&&(S.coveredUrl=up.browser.url(),S.coveredTitle=document.title),n=C.merge(t,{animation:!1}),u=o?up.extract(i,o,n):up.replace(i,s,n),u=u.then(function(){return T(),P(),e(t.animation,t.backdropAnimation,r)}),u=u.then(function(){return S.phase="opened",up.emit("up:modal:opened",{message:"Modal opened"})})})})},o=function(t){return r.asap(function(){return i(t)})},i=function(t){var n,r,o,i;return t=C.options(t),v()?(i=C.option(t.animation,h("closeAnimation")),i=C.evalOption(i,{position:S.position}),r=C.option(t.backdropAnimation,h("backdropCloseAnimation")),r=C.evalOption(r,{position:S.position}),n=up.motion.animateOptions(t,{duration:h("closeDuration"),easing:h("closeEasing")}),o=C.options(C.except(t,"animation","duration","easing","delay"),{history:S.coveredUrl,title:S.coveredTitle}),up.bus.whenEmitted("up:modal:close",{$element:S.$modal,message:"Closing modal"}).then(function(){var t;return S.phase="closing",S.url=null,S.coveredUrl=null,S.coveredTitle=null,t=e(i,r,n),t=t.then(function(){return up.destroy(S.$modal,o)}),t=t.then(function(){return x(),S.phase="closed",S.$modal=null,S.flavor=null,S.sticky=null,S.closable=null,S.position=null,up.emit("up:modal:closed",{message:"Modal closed"})})})):Promise.resolve()},g=function(t){return null==t&&(t=!0),S.$modal.toggleClass("up-modal-animating",t)},e=function(t,e,n){var r;return up.motion.isNone(t)?Promise.resolve():(g(),r=Promise.all([up.animate(S.$modal.find(".up-modal-viewport"),t,n),up.animate(S.$modal.find(".up-modal-backdrop"),e,n)]),r=r.then(function(){return g(!1)}))},n=function(){return S.sticky?void 0:(l(),o())},s=function(e){var n;return n=t(e),n.closest(".up-modal").length>0},c=function(t,e){return null==e&&(e={}),up.log.warn("up.modal.flavor() is deprecated. Use the up.modal.flavors property instead."),C.assign(f(t),e)},f=function(t){return d[t]||(d[t]={})},h=function(t,e){var n;return null==e&&(e=S.flavor),e&&(n=f(e)[t]),C.isMissing(n)&&(n=u[t]),n},up.link.addFollowVariant("[up-modal]",{follow:function(t,e){return m(t,e)},preload:function(t,e){return w(t,e)}}),up.on("click",".up-modal",function(e){var n;if(S.closable)return n=t(e.target),n.closest(".up-modal-dialog").length||n.closest("[up-modal]").length?void 0:(up.bus.consumeAction(e),o())}),up.on("up:fragment:inserted",function(t,e){var r;if(s(e)){if(r=e.attr("up-source"))return S.url=r}else if(t.origin&&s(t.origin)&&!up.popup.contains(e))return n()}),up.bus.onEscape(function(){return S.closable?o():void 0}),up.on("click",".up-modal [up-close]",function(t){return o(),up.bus.consumeAction(t)}),up.macro("a[up-drawer], [up-href][up-drawer]",function(t){var e;return e=t.attr("up-drawer"),t.attr({"up-modal":e,"up-flavor":"drawer"})}),d.drawer={openAnimation:function(t){switch(t.position){case"left":return"move-from-left";case"right":return"move-from-right"}},closeAnimation:function(t){switch(t.position){case"left":return"move-to-left";case"right":return"move-to-right"}},position:function(t){return C.isPresent(t.$link)?C.horizontalScreenHalf(t.$link):"left"}},up.on("up:history:restore",o),up.on("up:framework:reset",k),{visit:F,follow:m,extract:p,close:o,url:function(){return S.url},coveredUrl:function(){return S.coveredUrl},config:u,flavors:d,contains:s,isOpen:v,flavor:c}}(jQuery)}.call(this),function(){up.tooltip=function(t){var e,n,r,o,i,u,s,a,l,p,c,h;return h=up.util,s=h.config({position:"top",openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:100,closeDuration:50,openEasing:null,closeEasing:null}),c=h.config({phase:"closed",$anchor:null,$tooltip:null,position:null}),o=new h.DivertibleChain,p=function(){var t;
4
- return null!=(t=c.$tooltip)&&t.remove(),c.reset(),o.reset(),s.reset()},e=function(){var t,e,n;switch(e={},n=h.measure(c.$tooltip),h.isFixed(c.$anchor)?(t=c.$anchor.get(0).getBoundingClientRect(),e.position="fixed"):t=h.measure(c.$anchor),c.position){case"top":e.top=t.top-n.height,e.left=t.left+.5*(t.width-n.width);break;case"left":e.top=t.top+.5*(t.height-n.height),e.left=t.left-n.width;break;case"right":e.top=t.top+.5*(t.height-n.height),e.left=t.left+t.width;break;case"bottom":e.top=t.top+t.height,e.left=t.left+.5*(t.width-n.width);break;default:up.fail("Unknown position option '%s'",c.position)}return c.$tooltip.attr("up-position",c.position),h.writeInlineStyle(c.$tooltip,e)},a=function(t){var e;return e=h.$createElementFromSelector(".up-tooltip"),h.isGiven(t.text)?e.text(t.text):e.html(t.html),e.appendTo(document.body),c.$tooltip=e},n=function(t,e){return null==e&&(e={}),o.asap(u,function(){return r(t,e)})},r=function(n,r){var o,i,u,l,p,f;return o=t(n),r=h.options(r),l=h.option(r.html,o.attr("up-tooltip-html")),f=h.option(r.text,o.attr("up-tooltip")),p=h.option(r.position,o.attr("up-position"),s.position),u=h.option(r.animation,h.castedAttr(o,"up-animation"),s.openAnimation),i=up.motion.animateOptions(r,o,{duration:s.openDuration,easing:s.openEasing}),c.phase="opening",c.$anchor=o,a({text:f,html:l}),c.position=p,e(),up.animate(c.$tooltip,u,i).then(function(){return c.phase="opened"})},i=function(t){return o.asap(function(){return u(t)})},u=function(t){var e;return l()?(t=h.options(t,{animation:s.closeAnimation}),e=up.motion.animateOptions(t,{duration:s.closeDuration,easing:s.closeEasing}),h.assign(t,e),c.phase="closing",up.destroy(c.$tooltip,t).then(function(){return c.phase="closed",c.$tooltip=null,c.$anchor=null})):Promise.resolve()},l=function(){return"opening"===c.phase||"opened"===c.phase},up.compiler("[up-tooltip], [up-tooltip-html]",function(t){return t.on("mouseenter",function(){return n(t)}),t.on("mouseleave",function(){return i()})}),up.on("click up:action:consumed",function(){return i()}),up.on("up:framework:reset",p),up.bus.onEscape(function(){return i()}),{config:s,attach:n,isOpen:l,close:i}}(jQuery)}.call(this),function(){var t=[].slice;up.feedback=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k;return g=up.util,s=g.config({currentClasses:["up-current"],navs:["[up-nav]"]}),h=void 0,a=void 0,f=function(){return s.reset(),h=void 0,a=void 0},n="up-active",o="a, [up-href]",p=function(){return s.navs.join(",")},c=function(t){return g.isPresent(t)?g.normalizeUrl(t,{stripTrailingSlash:!0}):void 0},r="up-normalized-urls",d=function(t){var e;return(e=t.data(r))||(e=u(t),t.data(r,e)),e},u=function(t){var e,n,r,o,i,u,s,a,l,p;if(l=[],up.link.isSafe(t))for(u=["href","up-href","up-alias"],n=0,o=u.length;o>n;n++)if(e=u[n],p=g.presentAttr(t,e))for(s=p.split(/\s+/),r=0,i=s.length;i>r;r++)a=s[r],"#"!==a&&(a=c(a),l.push(a));return l},i=function(){var t;return t=[up.browser.url(),up.modal.url(),up.modal.coveredUrl(),up.popup.url(),up.popup.coveredUrl()],new up.UrlSet(t,{normalizeUrl:c})},b=function(){return h=a,a=i(),a.isEqual(h)?void 0:y(e("body"))},y=function(t){var e,n;return e=g.selectInSubtree(t,p()),n=g.selectInSubtree(e,o),w(n)},k=function(t){var e;return t.closest(p()).length?(e=g.selectInSubtree(t,o),w(e)):y(t)},w=function(t){return a||(a=i()),g.each(t,function(t){var n,r,o,i,u,l,p,c,h,f,m,v;if(n=e(t),v=d(n),r=t.classList,a.matchesAny(v)){for(c=s.currentClasses,f=[],o=0,l=c.length;l>o;o++)u=c[o],f.push(r.add(u));return f}for(h=s.currentClasses,m=[],i=0,p=h.length;p>i;i++)u=h[i],m.push(r.remove(u));return m})},l=function(t){var n;return n=e(t),n.is(o)&&(n=g.presence(n.parent(o))||n),n},m=function(){var e,r,o,i,u,s;return o=1<=arguments.length?t.call(arguments,0):[],i=o.shift(),r=o.pop(),u=g.options(o[0]),e=l(i),u.preload||e.addClass(n),r?(s=r(),g.isPromise(s)?g.always(s,function(){return v(e)}):up.warn("Expected block to return a promise, but got %o",s),s):void 0},v=function(t){var e;return e=l(t),e.removeClass(n)},up.on("up:history:pushed up:history:replaced up:history:restored up:modal:opened up:modal:closed up:popup:opened up:popup:closed",function(){return b()}),up.on("up:fragment:inserted",function(t,e){return k(e)}),up.on("up:framework:reset",f),{config:s,start:m,stop:v}}(jQuery),up.renamedModule("navigation","feedback")}.call(this),function(){up.radio=function(){var t,e,n,r;return r=up.util,t=r.config({hungry:["[up-hungry]"],hungryTransition:null}),n=function(){return t.reset()},e=function(){return t.hungry.join(",")},up.on("up:framework:reset",n),{config:t,hungrySelector:e}}(jQuery)}.call(this),function(){up.rails=function(t){var e,n;return n=up.util,e=function(){return!!t.rails},n.each(["method","confirm"],function(t){var r,o;return r="data-"+t,o="up-"+t,up.macro("["+r+"]",function(t){var i;return e()&&up.link.isFollowable(t)?(i={},i[o]=t.attr(r),n.setMissingAttrs(t,i),t.removeAttr(r)):void 0})})}(jQuery)}.call(this),function(){up.boot()}.call(this);
1
+ (function(){window.up={version:"0.56.1",renamedModule:function(t,e){return"function"==typeof Object.defineProperty?Object.defineProperty(up,t,{get:function(){return up.log.warn("up."+t+" has been renamed to up."+e),up[e]}}):void 0}}}).call(this),function(){var t=[].slice,e={}.hasOwnProperty,n=function(t,e){return function(){return t.apply(e,arguments)}};up.util=function(r){var o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F,$,A,D,O,M,R,U,j,q,L,z,_,N,K,H,I,Q,V,B,W,X,G,J,Y,Z,tt,et,nt,rt,ot,it,ut,st,at,lt,pt,ct,ht,ft,dt,mt,vt,gt,yt,bt,wt,kt,Tt,St,Et,Ct,xt,Pt,Ft,$t,At,Dt,Ot,Mt,Rt,Ut,jt,qt,Lt,zt,_t,Nt,Kt,Ht,It,Qt,Vt,Bt,Wt,Xt,Gt,Jt,Yt,Zt,te,ee,ne,re,oe,ie,ue,se,ae,le,pe,ce,he,fe,de,me,ve,ge,ye,be,we,ke,Te,Se,Ee,Ce,xe,Pe,Fe,$e,Ae,De,Oe,Me,Re,Ue,je,qe,Le,ze,_e;return Vt=function(){},w=function(){return Promise.resolve()},qt=function(e){var n,r;return r=void 0,n=!1,function(){var o;return o=1<=arguments.length?t.call(arguments,0):[],n?r:(n=!0,r=e.apply(null,o))}},Et=function(t,e){return e=e.toString(),(""===e||"80"===e)&&"http:"===t||"443"===e&&"https:"===t},Xt=function(t,e){var n,r,o;return r=re(t),n=r.protocol+"//"+r.hostname,Et(r.protocol,r.port)||(n+=":"+r.port),o=r.pathname,"/"!==o[0]&&(o="/"+o),(null!=e?e.stripTrailingSlash:void 0)===!0&&(o=o.replace(/\/$/,"")),n+=o,(null!=e?e.hash:void 0)===!0&&(n+=r.hash),(null!=e?e.search:void 0)!==!1&&(n+=r.search),n},st=function(t){var e;return e=re(location.href),t=re(t),e.protocol!==t.protocol||e.host!==t.host},re=function(t){var e;return vt(t)&&(t=J(t)),t.pathname?t:(e=r("<a>").attr({href:t}).get(0),it(e.hostname)&&(e.href=e.href),e)},Bt=function(t){return t?t.toUpperCase():"GET"},_t=function(t){return"GET"!==t&&"HEAD"!==t},o=function(t){var e,n,o,i,u,s,a,l,p,c,h,f,d,m,v,g;for(v=t.split(/[ >]/),o=null,c=h=0,d=v.length;d>h;c=++h){for(s=v[c],u=s.match(/(^|\.|\#)[A-Za-z0-9\-_]+/g),g="div",i=[],p=null,f=0,m=u.length;m>f;f++)switch(a=u[f],a[0]){case".":i.push(a.substr(1));break;case"#":p=a.substr(1);break;default:g=a}l="<"+g,i.length&&(l+=' class="'+i.join(" ")+'"'),p&&(l+=' id="'+p+'"'),l+=">",e=r(l),n&&e.appendTo(n),0===c&&(o=e),n=e}return o},i=function(t,e){var n;return null==e&&(e=document.body),n=o(t),n.addClass("up-placeholder"),n.appendTo(e),n},Ce=function(t){var e,n,o,i,u,s,a,l,p,c,h;if(e=r(t),p=void 0,c=e.prop("tagName").toLowerCase(),h=ue(e.attr("up-id")))p=k("up-id",h);else if(i=ue(e.attr("id")))p=i.match(/^[a-z0-9\-_]+$/i)?"#"+i:k("id",i);else if(l=ue(e.attr("name")))p=c+k("name",l);else if(o=ue(Qt(e)))for(p="",u=0,a=o.length;a>u;u++)s=o[u],p+="."+s;else p=(n=ue(e.attr("aria-label")))?k("aria-label",n):c;return p},k=function(t,e){return e=e.replace(/"/g,'\\"'),"["+t+'="'+e+'"]'},Qt=function(t){var e,n;return e=t.attr("class")||"",n=e.split(" "),Te(n,function(t){return Tt(t)&&!t.match(/^up-/)})},U=function(t){var e;return e=new DOMParser,e.parseFromString(t,"text/html")},b=function(){var n,r,o,i,u,s,a;for(s=arguments[0],u=2<=arguments.length?t.call(arguments,1):[],n=0,o=u.length;o>n;n++){i=u[n];for(r in i)e.call(i,r)&&(a=i[r],s[r]=a)}return s},y=Object.assign||b,Me=r.trim,Mt=function(t){return Ct(t)?function(e){return e[t]}:t},Rt=function(t,e){var n,r,o,i,u;if(0===t.length)return[];for(e=Mt(e),u=[],n=o=0,i=t.length;i>o;n=++o)r=t[n],u.push(e(r,n));return u},_=Rt,De=function(t,e){var n,r,o,i;for(i=[],n=r=0,o=t-1;o>=0?o>=r:r>=o;n=o>=0?++r:--r)i.push(e(n));return i},yt=function(t){return null===t},Pt=function(t){return void 0===t},at=function(t){return!Pt(t)},gt=function(t){return Pt(t)||yt(t)},mt=function(t){return!gt(t)},it=function(t){return gt(t)?!0:dt(t)?!1:wt(t)&&0===Object.keys(t).length?!0:0===t.length?!0:!1},ue=function(t,e){return null==e&&(e=Tt),e(t)?t:void 0},Tt=function(t){return!it(t)},dt=function(t){return"function"==typeof t},Ct=function(t){return"string"==typeof t||t instanceof String},bt=function(t){return"number"==typeof t||t instanceof Number},kt=function(t){return!("object"!=typeof t||yt(t)||vt(t)||St(t)||ft(t)||ot(t))},wt=function(t){var e;return e=typeof t,"object"===e&&!yt(t)||"function"===e},pt=function(t){return!(!t||1!==t.nodeType)},vt=function(t){return t instanceof jQuery},St=function(t){return wt(t)&&dt(t.then)},ot=Array.isArray,ft=function(t){return t instanceof FormData},Oe=function(t){return Array.prototype.slice.call(t)},O=function(t){return ot(t)?t=t.slice():wt(t)&&!dt(t)?t=y({},t):up.fail("Cannot copy %o",t),t},J=function(t){return vt(t)?t.get(0):Ct(t)?r(t).get(0):t},Lt=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],y.apply(null,[{}].concat(t.call(e)))},ne=function(t,e){var n,r,o,i;if(o=t?O(t):{},e)for(r in e)n=e[r],i=o[r],gt(i)&&(i=n),o[r]=i;return o},ee=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],L(e,mt)},L=function(t,e){var n,r,o,i;for(i=void 0,r=0,o=t.length;o>r;r++)if(n=t[r],e(n)){i=n;break}return i},m=function(t,e){var n,r,o,i,u;for(e=Mt(e),u=!1,r=o=0,i=t.length;i>o;r=++o)if(n=t[r],e(n,r)){u=!0;break}return u},f=function(t,e){var n,r,o,i,u;for(e=Mt(e),u=!0,r=o=0,i=t.length;i>o;r=++o)if(n=t[r],!e(n,r)){u=!1;break}return u},P=function(t){return Te(t,mt)},Re=function(t){return t.length<2?t:$e(g(t))},Ue=function(t,e){var n;return t.length<2?t:(e=Mt(e),n=new Set,Te(t,function(t,r){var o;return o=e(t,r),n.has(o)?!1:(n.add(o),!0)}))},$e=function(t){var e;return e=[],t.forEach(function(t){return e.push(t)}),e},g=function(t){var e;return e=new Set,t.forEach(function(t){return e.add(t)}),e},Te=function(t,e){var n;return e=Mt(e),n=[],_(t,function(t,r){return e(t,r)?n.push(t):void 0}),n},fe=function(t,e){return e=Mt(e),Te(t,function(t,n){return!e(t,n)})},rt=function(t,e){return Te(t,function(t){return A(e,t)})},c=function(t,e){return C(t,e,"add")},ve=function(t,e){return C(t,e,"remove")},C=function(t,e,n){var r;return r=J(t).classList,ot(e)?_(e,function(t){return r[n](t)}):r[n](e)},h=function(t,e){return c(t,e),function(){return ve(t,e)}},Y=function(t,e){var n;return n=J(t).classList,n.contains(e)},se=function(){var e,n,r,o;return e=arguments[0],r=2<=arguments.length?t.call(arguments,1):[],o=function(){var t,o,i;for(i=[],t=0,o=r.length;o>t;t++)n=r[t],i.push(e.attr(n));return i}(),L(o,Tt)},Fe=function(t,e){return setTimeout(e,t)},It=function(t){return setTimeout(t,0)},Nt=function(t){return Promise.resolve().then(t)},Ot=function(t){return t[t.length-1]},x=function(){var t;return t=document.documentElement,{width:t.clientWidth,height:t.clientHeight}},ke=qt(function(){var t,e,n;return t=r("<div>"),e=t.get(0),t.attr("up-viewport",""),ze(e,{position:"absolute",top:"0",left:"0",width:"100px",height:"100px",overflowY:"scroll"}),t.appendTo(document.body),n=e.offsetWidth-e.clientWidth,t.remove(),n}),z=function(){var t,e,n,o,i,u;return e=document.body,t=r(e),u=document.documentElement,n=pe(t,"overflowY"),i="scroll"===n,o="hidden"===n,i||!o&&u.scrollHeight>u.clientHeight},_e=function(t,e,n){var o,i,u;return o=r(t),i=he(o,Object.keys(e)),u=function(){return ze(o,i)},ze(o,e),n?(n(),u()):u},G=function(t){return t=J(t),t.offsetHeight},F=function(t){var e;return e=_e(t,{transition:"none"}),G(t),e},Ut=function(t){var e;return e=J(t),{top:ce(e,"marginTop"),right:ce(e,"marginRight"),bottom:ce(e,"marginBottom"),left:ce(e,"marginLeft")}},jt=function(t,e){var n,o,i,u,s,a;return e=ne(e,{relative:!1,inner:!1,includeMargin:!1}),e.relative?e.relative===!0?u=t.position():(n=r(e.relative),s=t.offset(),n.is(document)?u=s:(i=n.offset(),u={left:s.left-i.left,top:s.top-i.top})):u=t.offset(),o={left:u.left,top:u.top},e.inner?(o.width=t.width(),o.height=t.height()):(o.width=t.outerWidth(),o.height=t.outerHeight()),e.includeMargin&&(a=Ut(t),o.left-=a.left,o.top-=a.top,o.height+=a.top+a.bottom,o.width+=a.left+a.right),o},M=function(t,e){var n,r,o,i,u;for(i=t.get(0).attributes,u=[],r=0,o=i.length;o>r;r++)n=i[r],n.specified?u.push(e.attr(n.name,n.value)):u.push(void 0);return u},Ee=function(t,e){var n;return n=r(),t.is(e)&&(n=n.add(t)),n=n.add(t.find(e))},Se=function(t,e){var n,r;return r=Ee(t,e),n=t.parents(e),r.add(n)},K=function(t){return 27===t.keyCode},A=function(t,e){return t.indexOf(e)>=0},E=function(t,e){var n;switch(n=t.attr(e)){case"false":return!1;case"true":case"":case e:return!0;default:return n}},Yt=function(){var e,n,r,o,i,u;for(o=arguments[0],i=2<=arguments.length?t.call(arguments,1):[],e={},n=0,r=i.length;r>n;n++)u=i[n],u in o&&(e[u]=o[u]);return e},I=function(){var e,n,r,o,i,u;for(o=arguments[0],i=2<=arguments.length?t.call(arguments,1):[],e=O(o),n=0,r=i.length;r>n;n++)u=i[n],delete e[u];return e},Ft=function(t){return!(t.metaKey||t.shiftKey||t.ctrlKey)},$t=function(t){var e;return e=Pt(t.button)||0===t.button,e&&Ft(t)},je=function(){return new Promise(Vt)},Gt=function(){return r()},Pe=function(t,e){var n,r,o;r=[];for(n in e)o=e[n],gt(t.attr(n))?r.push(t.attr(n,o)):r.push(void 0);return r},me=function(t,e){var n;return n=t.indexOf(e),n>=0?(t.splice(n,1),e):void 0},H=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],dt(n)?n.apply(null,e):n},$=function(t){var e;return e=te(t),Object.preventExtensions(e),e},te=function(t){var e;return null==t&&(t={}),e={},e.reset=function(){var n;return n=t,dt(n)&&(n=n()),y(e,n)},e.reset(),e},qe=function(t){var e,n;return t=J(t),e=t.parentNode,n=Oe(t.childNodes),_(n,function(n){return e.insertBefore(n,t)}),e.removeChild(t)},Jt=function(t){var e,n;for(e=void 0;(t=t.parent())&&t.length;)if(n=pe(t,"position"),"absolute"===n||"relative"===n||t.is("body")){e=t;break}return e},ht=function(t){var e,n;for(e=r(t);;){if(n=pe(e,"position"),"fixed"===n)return!0;if(e=e.parent(),0===e.length||e.is(document))return!1}},W=function(t,e){var n,o,i,u;return n=r(t),o=Jt(n),i=n.position(),u=o.offset(),ze(n,{position:"absolute",left:i.left-u.left,top:i.top-u.top+e.scrollTop(),right:"",bottom:""})},ye=function(t){var e,n,r,o,i,u,s;if(ot(t),ft(t))return up.fail("Cannot convert FormData into an array");for(u=be(t),e=[],s=u.split("&"),n=0,r=s.length;r>n;n++)i=s[n],Tt(i)&&(o=i.split("="),e.push({name:decodeURIComponent(o[0]),value:decodeURIComponent(o[1])}));return e},be=function(t,e){var n;if(e=ne(e,{purpose:"url"}),Ct(t))return t.replace(/^\?/,"");if(ft(t))return up.fail("Cannot convert FormData into a query string");if(Tt(t)){switch(n=r.param(t),e.purpose){case"url":n=n.replace(/\+/g,"%20");break;case"form":n=n.replace(/\%20/g,"+");break;default:up.fail("Unknown purpose %o",e.purpose)}return n}return""},u=function(t){var e,n;return n="input[type=submit], button[type=submit], button:not([type])",e=r(document.activeElement),e.is(n)&&t.has(e)?e:t.find(n).first()},we=function(t){var e,n,o,i,s,a;return n=r(t),a=n.find("input[type=file]").length,e=u(n),o=e.attr("name"),i=e.val(),s=a?new FormData(n.get(0)):n.serializeArray(),Tt(o)&&v(s,o,i),s},v=function(t,e,n,r){var o;return t||(t=[]),ot(t)?t.push({name:e,value:n}):ft(t)?t.append(e,n):wt(t)?t[e]=n:Ct(t)&&(o=be([{name:e,value:n}],r),t=[t,o].join("&")),t},zt=function(t,e){return _(ye(e),function(e){return t=v(t,e.name,e.value)}),t},B=function(){var e,n,r,o,i,u;throw e=1<=arguments.length?t.call(arguments,0):[],ot(e[0])?(r=e[0],u=e[1]||{}):(r=e,u={}),(o=up.log).error.apply(o,r),Le().then(function(){return up.toast.open(r,u)}),n=(i=up.browser).sprintf.apply(i,r),new Error(n)},p={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"},N=function(t){return t.replace(/[&<>"]/g,function(t){return p[t]})},ie=function(t,e){var n;return n=t[e],delete t[e],n},ge=function(t,e,n){return t[n]=ie(t,e)},oe=function(t,e){var n,o;return n=r(t),o=n.data(e),n.removeData(e),o},V=function(t){var e;return e=Ot(t),kt(e)?t.pop():{}},s=/[^\-\_]+?(?=[A-Z\-\_]|$)/g,D=function(t,e,n){var r;return r=t.match(s),r=Rt(r,n),r.join(e)},At=function(t){return D(t,"-",function(t){return t.toLowerCase()})},T=function(t){return D(t,"",function(t,e){return 0===e?t.toLowerCase():t.charAt(0).toUpperCase()+t.substr(1).toLowerCase()})},Dt=function(t){return R(t,At)},S=function(t){return R(t,T)},R=function(t,e){var n,r,o;r={};for(n in t)o=t[n],n=e(n),r[n]=o;return r},Zt=function(t){return ce(t,"opacity")},Le=qt(function(){return r.isReady?Promise.resolve():new Promise(function(t){return r(t)})}),nt=function(t){return t},lt=function(t){return t=J(t),!r.contains(document.documentElement,t)},ae=function(e){var n,r;return n=Ht(),r=function(){var r,o;return r=1<=arguments.length?t.call(arguments,0):[],o=e.apply(null,r),n.resolve(o),o},r.promise=n.promise(),r},l=function(){function e(){this.asap=n(this.asap,this),this.poke=n(this.poke,this),this.allTasks=n(this.allTasks,this),this.promise=n(this.promise,this),this.reset=n(this.reset,this),this.reset()}return e.prototype.reset=function(){return this.queue=[],this.currentTask=void 0},e.prototype.promise=function(){var t;return t=Ot(this.allTasks()),(null!=t?t.promise:void 0)||Promise.resolve()},e.prototype.allTasks=function(){var t;return t=[],this.currentTask&&t.push(this.currentTask),t=t.concat(this.queue)},e.prototype.poke=function(){var t;return!this.currentTask&&(this.currentTask=this.queue.shift())?(t=this.currentTask(),d(t,function(t){return function(){return t.currentTask=void 0,t.poke()}}(this))):void 0},e.prototype.asap=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],this.queue=Rt(e,ae),this.poke(),this.promise()},e}(),Ae=function(t){var e;return e=r(t),e.is("[type=checkbox], [type=radio]")&&!e.is(":checked")?void 0:e.val()},xe=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],function(){return Rt(e,function(t){return t()})}},le=function(t){var e,n;return n=void 0,e=new Promise(function(e,r){return n=Fe(t,e)}),e.cancel=function(){return clearTimeout(n)},e},et=function(t){var e,n,r,o;return e=jt(t),r=x(),n=e.left+.5*e.width,o=.5*r.width,o>n?"left":"right"},q=function(t,e){var n;return n=r("<div></div>"),n.insertAfter(t),t.detach(),n.replaceWith(e),t},tt=function(t){return ze(t,{display:"none"})},pe=function(t,e){var n;return t=J(t),n=window.getComputedStyle(t),Q(n,e)},ce=function(t,e){var n;return n=pe(t,e),mt(n)?parseFloat(n):void 0},he=function(t,e){var n;return t=J(t),n=t.style,Q(n,e)},Q=function(e,n){return Ct(n)?e[n]:Yt.apply(null,[e].concat(t.call(n)))},ze=function(t,e){var n,r,o,i;t=J(t),o=t.style,r=[];for(n in e)i=e[n],i=Wt(n,i),r.push(o[n]=i);return r},Wt=function(t,e){return gt(e)?e="":a.has(t)&&(e=j(e)),e},a=g(["top","right","bottom","left","padding","paddingTop","paddingRight","paddingBottom","paddingLeft","margin","marginTop","marginRight","marginBottom","marginLeft","width","height","maxWidth","maxHeight","minWidth","minHeight"]),j=function(t){return bt(t)||Ct(t)&&/^\d+$/.test(t)?t.toString()+"px":t},Z=function(t){var e,n,r,o,i;return kt(t)?i=t:(n=J(n),i=getComputedStyle(n)),o=i.transitionProperty,e=i.transitionDuration,r="none"===o||"all"===o&&0===e,!r},X=function(t){var e,n,r,o;for(e=[],n=0,r=t.length;r>n;n++)o=t[n],ot(o)?e=e.concat(o):e.push(o);return e},xt=function(t){return!!t},d=function(t,e){return t.then(e,e)},Kt=function(t){return null!=t?t["catch"](Vt):void 0},Ht=function(){var t,e;return e=void 0,fe=void 0,t=new Promise(function(t,n){return e=t,fe=n}),t.resolve=e,t.reject=fe,t.promise=function(){return t},t},de=function(t){var e;try{return t()}catch(n){return e=n,Promise.reject(e)}},ut=function(t){return r(t).parents("body").length>0},ct=function(t,e){return typeof t!=typeof e?!1:ot(t)?t.length===e.length&&f(t,function(t,n){return ct(t,e[n])}):wt(t)?B("isEqual cannot compare objects yet"):t===e},{requestDataAsArray:ye,requestDataAsQuery:be,appendRequestData:v,mergeRequestData:zt,requestDataFromForm:we,offsetParent:Jt,fixedToAbsolute:W,isFixed:ht,presentAttr:se,parseUrl:re,normalizeUrl:Xt,normalizeMethod:Bt,methodAllowsPayload:_t,createElementFromHtml:U,$createElementFromSelector:o,$createPlaceholder:i,selectorForElement:Ce,assign:y,assignPolyfill:b,copy:O,merge:Lt,options:ne,option:ee,fail:B,each:_,map:Rt,times:De,any:m,all:f,detect:L,select:Te,reject:fe,intersect:rt,compact:P,uniq:Re,uniqBy:Ue,last:Ot,isNull:yt,isDefined:at,isUndefined:Pt,isGiven:mt,isMissing:gt,isPresent:Tt,isBlank:it,presence:ue,isObject:wt,isFunction:dt,isString:Ct,isNumber:bt,isElement:pt,isJQuery:vt,isPromise:St,isOptions:kt,isArray:ot,isFormData:ft,isUnmodifiedKeyEvent:Ft,isUnmodifiedMouseEvent:$t,nullJQuery:Gt,element:J,setTimer:Fe,nextFrame:It,measure:jt,addClass:c,removeClass:ve,hasClass:Y,addTemporaryClass:h,writeTemporaryStyle:_e,forceRepaint:G,concludeCssTransition:F,escapePressed:K,copyAttributes:M,selectInSubtree:Ee,selectInDynasty:Se,contains:A,toArray:Oe,castedAttr:E,clientSize:x,only:Yt,except:I,trim:Me,unresolvablePromise:je,setMissingAttrs:Pe,remove:me,memoize:qt,scrollbarWidth:ke,documentHasVerticalScrollbar:z,config:$,openConfig:te,unwrapElement:qe,camelCase:T,camelCaseKeys:S,kebabCase:At,kebabCaseKeys:Dt,error:B,pluckData:oe,pluckKey:ie,renameKey:ge,extractOptions:V,isDetached:lt,noop:Vt,asyncNoop:w,opacity:Zt,whenReady:Le,identity:nt,escapeHtml:N,DivertibleChain:l,submittedValue:Ae,sequence:xe,promiseTimer:le,previewable:ae,evalOption:H,horizontalScreenHalf:et,detachWith:q,flatten:X,isTruthy:xt,newDeferred:Ht,always:d,muteRejection:Kt,rejectOnError:de,isBodyDescendant:ut,isCrossDomain:st,microtask:Nt,isEqual:ct,hide:tt,cssLength:j,readComputedStyle:pe,readComputedStyleNumber:ce,readInlineStyle:he,writeInlineStyle:ze,hasCssTransition:Z}}(jQuery),up.fail=up.util.fail}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=[].slice;t=up.util,up.Cache=function(){function r(t){this.config=null!=t?t:{},this.get=e(this.get,this),this.isFresh=e(this.isFresh,this),this.remove=e(this.remove,this),this.set=e(this.set,this),this.timestamp=e(this.timestamp,this),this.alias=e(this.alias,this),this.makeRoomForAnotherKey=e(this.makeRoomForAnotherKey,this),this.keys=e(this.keys,this),this.log=e(this.log,this),this.clear=e(this.clear,this),this.isCachable=e(this.isCachable,this),this.isEnabled=e(this.isEnabled,this),this.normalizeStoreKey=e(this.normalizeStoreKey,this),this.expiryMillis=e(this.expiryMillis,this),this.maxKeys=e(this.maxKeys,this),this.store={}}return r.prototype.maxKeys=function(){return t.evalOption(this.config.size)},r.prototype.expiryMillis=function(){return t.evalOption(this.config.expiry)},r.prototype.normalizeStoreKey=function(t){return this.config.key?this.config.key(t):this.key.toString()},r.prototype.isEnabled=function(){return 0!==this.maxKeys()&&0!==this.expiryMillis()},r.prototype.isCachable=function(t){return this.config.cachable?this.config.cachable(t):!0},r.prototype.clear=function(){return this.store={}},r.prototype.log=function(){var t;return t=1<=arguments.length?n.call(arguments,0):[],this.config.logPrefix?(t[0]="["+this.config.logPrefix+"] "+t[0],up.puts.apply(up,t)):void 0},r.prototype.keys=function(){return Object.keys(this.store)},r.prototype.makeRoomForAnotherKey=function(){var e,n,r,o;return o=t.copy(this.keys()),e=this.maxKeys(),e&&o.length>=e&&(n=null,r=null,t.each(o,function(t){return function(e){var o,i;return o=t.store[e],i=o.timestamp,!r||r>i?(n=e,r=i):void 0}}(this)),n)?delete this.store[n]:void 0},r.prototype.alias=function(e,n){var r;return r=this.get(e,{silent:!0}),t.isDefined(r)?this.set(n,r):void 0},r.prototype.timestamp=function(){return(new Date).valueOf()},r.prototype.set=function(t,e){var n;return this.isEnabled()&&this.isCachable(t)?(this.makeRoomForAnotherKey(),n=this.normalizeStoreKey(t),this.log("Setting entry %o to %o",n,e),this.store[n]={timestamp:this.timestamp(),value:e}):void 0},r.prototype.remove=function(t){var e;return this.isCachable(t)?(e=this.normalizeStoreKey(t),delete this.store[e]):void 0},r.prototype.isFresh=function(t){var e,n;return e=this.expiryMillis(),e?(n=this.timestamp()-t.timestamp,e>n):!0},r.prototype.get=function(t,e){var n;return null==e&&(e={}),this.isCachable(t)&&(n=this.store[this.normalizeStoreKey(t)])?this.isFresh(n)?(e.silent||this.log("Cache hit for '%s'",t),n.value):(e.silent||this.log("Discarding stale cache entry for '%s'",t),void this.remove(t)):void(e.silent||this.log("Cache miss for '%s'",t))},r}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.CssTransition=function(){function n(n,r,o){this.startMotion=e(this.startMotion,this),this.resumeOldTransition=e(this.resumeOldTransition,this),this.pauseOldTransition=e(this.pauseOldTransition,this),this.finish=e(this.finish,this),this.onTransitionEnd=e(this.onTransitionEnd,this),this.stopListenToTransitionEnd=e(this.stopListenToTransitionEnd,this),this.listenToTransitionEnd=e(this.listenToTransitionEnd,this),this.stopFallbackTimer=e(this.stopFallbackTimer,this),this.startFallbackTimer=e(this.startFallbackTimer,this),this.onFinishEvent=e(this.onFinishEvent,this),this.stopListenToFinishEvent=e(this.stopListenToFinishEvent,this),this.listenToFinishEvent=e(this.listenToFinishEvent,this),this.start=e(this.start,this),this.$element=n,this.element=t.element(n),this.lastFrameCamel=t.camelCaseKeys(r),this.lastFrameKebab=t.kebabCaseKeys(r),this.lastFrameKeysKebab=Object.keys(this.lastFrameKebab),this.finishEvent=o.finishEvent,this.duration=o.duration,this.delay=o.delay,this.totalDuration=this.delay+this.duration,this.easing=o.easing,this.finished=!1}return n.prototype.start=function(){return 0===this.lastFrameKeysKebab.length?(this.finished=!0,Promise.resolve()):(this.deferred=t.newDeferred(),this.pauseOldTransition(),this.startTime=new Date,this.startFallbackTimer(),this.listenToFinishEvent(),this.listenToTransitionEnd(),this.startMotion(),this.deferred.promise())},n.prototype.listenToFinishEvent=function(){return this.finishEvent?this.$element.on(this.finishEvent,this.onFinishEvent):void 0},n.prototype.stopListenToFinishEvent=function(){return this.finishEvent?this.$element.off(this.finishEvent,this.onFinishEvent):void 0},n.prototype.onFinishEvent=function(t){return t.stopPropagation(),this.finish()},n.prototype.startFallbackTimer=function(){var e;return e=100,this.fallbackTimer=t.setTimer(this.totalDuration+e,function(t){return function(){return t.finish()}}(this))},n.prototype.stopFallbackTimer=function(){return clearTimeout(this.fallbackTimer)},n.prototype.listenToTransitionEnd=function(){return this.$element.on("transitionend",this.onTransitionEnd)},n.prototype.stopListenToTransitionEnd=function(){return this.$element.off("transitionend",this.onTransitionEnd)},n.prototype.onTransitionEnd=function(e){var n,r;if(e.target===this.element&&(r=new Date-this.startTime,r>.25*this.totalDuration&&(n=e.originalEvent.propertyName,t.contains(this.lastFrameKeysKebab,n))))return this.finish()},n.prototype.finish=function(){return this.finished?void 0:(this.finished=!0,this.stopFallbackTimer(),this.stopListenToFinishEvent(),this.stopListenToTransitionEnd(),t.concludeCssTransition(this.element),this.resumeOldTransition(),this.deferred.resolve())},n.prototype.pauseOldTransition=function(){var e,n,r,o;return e=t.readComputedStyle(this.element,["transitionProperty","transitionDuration","transitionDelay","transitionTimingFunction"]),t.hasCssTransition(e)?("all"!==e.transitionProperty&&(o=e.transitionProperty.split(/\s*,\s*/),r=t.readComputedStyle(this.element,o),n=t.camelCaseKeys(r),this.setOldTransitionTargetFrame=t.writeTemporaryStyle(this.element,n)),this.setOldTransition=t.concludeCssTransition(this.element)):void 0},n.prototype.resumeOldTransition=function(){return"function"==typeof this.setOldTransitionTargetFrame&&this.setOldTransitionTargetFrame(),"function"==typeof this.setOldTransition?this.setOldTransition():void 0},n.prototype.startMotion=function(){return t.writeInlineStyle(this.element,{transitionProperty:Object.keys(this.lastFrameKebab).join(", "),transitionDuration:this.duration+"ms",transitionDelay:this.delay+"ms",transitionTimingFunction:this.easing}),t.writeInlineStyle(this.element,this.lastFrameCamel)},n}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.ExtractCascade=function(){function n(n,r){this.oldPlanNotFound=e(this.oldPlanNotFound,this),this.matchingPlanNotFound=e(this.matchingPlanNotFound,this),this.bestMatchingSteps=e(this.bestMatchingSteps,this),this.bestPreflightSelector=e(this.bestPreflightSelector,this),this.detectPlan=e(this.detectPlan,this),this.matchingPlan=e(this.matchingPlan,this),this.newPlan=e(this.newPlan,this),this.oldPlan=e(this.oldPlan,this),this.options=t.options(r,{humanizedTarget:"selector",layer:"auto"}),this.options.transition=t.option(this.options.transition,this.options.animation),this.options.hungry=t.option(this.options.hungry,!0),this.candidates=this.buildCandidates(n),this.plans=t.map(this.candidates,function(e){return function(n,r){var o;return o=t.copy(e.options),r>0&&(o.transition=t.option(up.dom.config.fallbackTransition,e.options.transition)),new up.ExtractPlan(n,o)}}(this))}return n.prototype.buildCandidates=function(e){var n;return n=[e,this.options.fallback,up.dom.config.fallbacks],n=t.flatten(n),n=t.select(n,t.isTruthy),n=t.uniq(n),(this.options.fallback===!1||this.options.provideTarget)&&(n=[n[0]]),n},n.prototype.oldPlan=function(){return this.detectPlan("oldExists")},n.prototype.newPlan=function(){return this.detectPlan("newExists")},n.prototype.matchingPlan=function(){return this.detectPlan("matchExists")},n.prototype.detectPlan=function(e){return t.detect(this.plans,function(t){return t[e]()})},n.prototype.bestPreflightSelector=function(){var t;return t=this.options.provideTarget?this.plans[0]:this.oldPlan(),t?(t.resolveNesting(),t.selector()):this.oldPlanNotFound()},n.prototype.bestMatchingSteps=function(){var t;return(t=this.matchingPlan())?(t.addHungrySteps(),t.resolveNesting(),t.steps):this.matchingPlanNotFound()},n.prototype.matchingPlanNotFound=function(){var t,e;return this.newPlan()?this.oldPlanNotFound():(e=this.oldPlan()?"Could not find "+this.options.humanizedTarget+" in response":"Could not match "+this.options.humanizedTarget+" in current page and response",this.options.inspectResponse&&(t={label:"Open response",callback:this.options.inspectResponse}),up.fail([e+" (tried %o)",this.candidates],{action:t}))},n.prototype.oldPlanNotFound=function(){var t;return t=this.options.layer,"auto"===t&&(t="page, modal or popup"),up.fail("Could not find "+this.options.humanizedTarget+" in current "+t+" (tried %o)",this.candidates)},n}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.ExtractPlan=function(){function n(t,n){this.addHungrySteps=e(this.addHungrySteps,this),this.parseSteps=e(this.parseSteps,this),this.selector=e(this.selector,this),this.resolveNesting=e(this.resolveNesting,this),this.addSteps=e(this.addSteps,this),this.matchExists=e(this.matchExists,this),this.newExists=e(this.newExists,this),this.oldExists=e(this.oldExists,this),this.findNew=e(this.findNew,this),this.findOld=e(this.findOld,this);var r;this.reveal=n.reveal,this.origin=n.origin,this.hungry=n.hungry,this.transition=n.transition,this.response=n.response,this.oldLayer=n.layer,r=up.dom.resolveSelector(t,this.origin),this.parseSteps(r)}return n.prototype.findOld=function(){return t.each(this.steps,function(t){return function(e){return e.$old=up.dom.first(e.selector,{layer:t.oldLayer})}}(this))},n.prototype.findNew=function(){return t.each(this.steps,function(t){return function(e){return e.$new=t.response.first(e.selector)}}(this))},n.prototype.oldExists=function(){return this.findOld(),t.all(this.steps,function(t){return t.$old})},n.prototype.newExists=function(){return this.findNew(),t.all(this.steps,function(t){return t.$new})},n.prototype.matchExists=function(){return this.oldExists()&&this.newExists()},n.prototype.addSteps=function(t){return this.steps=this.steps.concat(t)},n.prototype.resolveNesting=function(){var e;if(!(this.steps.length<2))return e=t.copy(this.steps),e=t.uniqBy(e,function(t){return t.$old[0]}),e=t.select(e,function(n){return function(n,r){return t.all(e,function(t,e){var o,i;return e===r?!0:(o=n.$old[0],i=t.$old[0],t.pseudoClass||!$.contains(i,o))})}}(this)),e[0].reveal=this.steps[0].reveal,this.steps=e},n.prototype.selector=function(){return t.map(this.steps,"expression").join(", ")},n.prototype.parseSteps=function(e){var n,r;return n=/\ *,\ */,this.steps=[],r=e.split(n),t.each(r,function(t){return function(e,n){var r,o,i,u;return o=e.match(/^(.+?)(?:\:(before|after))?$/),o||up.fail('Could not parse selector literal "%s"',e),u=o[1],"html"===u&&(u="body"),i=o[2],r=0===n?t.reveal:!1,t.steps.push({expression:e,selector:u,pseudoClass:i,transition:t.transition,origin:t.origin,reveal:r})}}(this))},n.prototype.addHungrySteps=function(){var e,n,r,o,i,u,s,a,l;if(i=[],this.hungry)for(e=$(up.radio.hungrySelector()),l=t.option(up.radio.config.hungryTransition,this.transition),u=0,s=e.length;s>u;u++)o=e[u],n=$(o),a=t.selectorForElement(n),(r=this.response.first(a))&&i.push({selector:a,$old:n,$new:r,transition:l,reveal:!1,origin:null});return this.addSteps(i)},n}()}.call(this),function(){var t;t=up.util,up.ExtractStep=function(){function t(){}return t}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.FieldObserver=function(){function n(t,n){this.$field=t,this.check=e(this.check,this),this.readFieldValue=e(this.readFieldValue,this),this.requestCallback=e(this.requestCallback,this),this.isNewValue=e(this.isNewValue,this),this.scheduleTimer=e(this.scheduleTimer,this),this.cancelTimer=e(this.cancelTimer,this),this.stop=e(this.stop,this),this.start=e(this.start,this),this.delay=n.delay,this.callback=n.callback}var r;return r="input change",n.prototype.start=function(){return this.scheduledValue=null,this.processedValue=this.readFieldValue(),this.currentTimer=void 0,this.currentCallback=void 0,this.$field.on(r,this.check)},n.prototype.stop=function(){return this.$field.off(r,this.check),this.cancelTimer()},n.prototype.cancelTimer=function(){return clearTimeout(this.currentTimer),this.currentTimer=void 0},n.prototype.scheduleTimer=function(){return this.currentTimer=t.setTimer(this.delay,function(t){return function(){return t.currentTimer=void 0,t.requestCallback()}}(this))},n.prototype.isNewValue=function(t){return t!==this.processedValue&&(null===this.scheduledValue||this.scheduledValue!==t)},n.prototype.requestCallback=function(){var e;return null===this.scheduledValue||this.currentTimer||this.currentCallback?void 0:(this.processedValue=this.scheduledValue,this.scheduledValue=null,this.currentCallback=function(t){return function(){return t.callback.call(t.$field.get(0),t.processedValue,t.$field)}}(this),e=Promise.resolve(this.currentCallback()),t.always(e,function(t){return function(){return t.currentCallback=void 0,t.requestCallback()}}(this)))},n.prototype.readFieldValue=function(){return t.submittedValue(this.$field)},n.prototype.check=function(){var t;return t=this.readFieldValue(),this.isNewValue(t)?(this.scheduledValue=t,this.cancelTimer(),this.scheduleTimer()):void 0},n}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=[].slice;t=up.util,up.FollowVariant=function(){function r(t,n){this.matchesLink=e(this.matchesLink,this),this.preloadLink=e(this.preloadLink,this),this.followLink=e(this.followLink,this),this.fullSelector=e(this.fullSelector,this),this.onMousedown=e(this.onMousedown,this),this.onClick=e(this.onClick,this),this.followNow=n.follow,this.preloadNow=n.preload,this.selectors=t.split(/\s*,\s*/)}return r.prototype.onClick=function(t,e){return up.link.shouldProcessEvent(t,e)?e.is("[up-instant]")?up.bus.haltEvent(t):(up.bus.consumeAction(t),this.followLink(e)):up.link.allowDefault(t)},r.prototype.onMousedown=function(t,e){return up.link.shouldProcessEvent(t,e)?(up.bus.consumeAction(t),this.followLink(e)):void 0},r.prototype.fullSelector=function(t){var e;return null==t&&(t=""),e=[],this.selectors.forEach(function(n){return["a","[up-href]"].forEach(function(r){return e.push(""+r+n+t)})}),e.join(", ")},r.prototype.registerEvents=function(){return up.on("click",this.fullSelector(),function(e){return function(){var r;return r=1<=arguments.length?n.call(arguments,0):[],t.muteRejection(e.onClick.apply(e,r))}}(this)),up.on("mousedown",this.fullSelector("[up-instant]"),function(e){return function(){var r;return r=1<=arguments.length?n.call(arguments,0):[],t.muteRejection(e.onMousedown.apply(e,r))}}(this))},r.prototype.followLink=function(t,e){return null==e&&(e={}),up.bus.whenEmitted("up:link:follow",{$element:t}).then(function(n){return function(){return up.feedback.start(t,e,function(){return n.followNow(t,e)})}}(this))},r.prototype.preloadLink=function(t,e){return null==e&&(e={}),this.preloadNow(t,e)},r.prototype.matchesLink=function(t){return t.is(this.fullSelector())},r}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.MotionTracker=function(){function n(t){this.reset=e(this.reset,this),
2
+ this.whileForwardingFinishEvent=e(this.whileForwardingFinishEvent,this),this.forwardFinishEvent=e(this.forwardFinishEvent,this),this.unmarkCluster=e(this.unmarkCluster,this),this.markCluster=e(this.markCluster,this),this.whenElementFinished=e(this.whenElementFinished,this),this.emitFinishEvent=e(this.emitFinishEvent,this),this.finishOneElement=e(this.finishOneElement,this),this.isActive=e(this.isActive,this),this.expandFinishRequest=e(this.expandFinishRequest,this),this.finish=e(this.finish,this),this.claim=e(this.claim,this),this.activeClass="up-"+t,this.dataKey="up-"+t+"-finished",this.selector="."+this.activeClass,this.finishEvent="up:"+t+":finish",this.finishCount=0,this.clusterCount=0}return n.prototype.claim=function(e,n,r){var o;return null==r&&(r={}),o=$(e),r.trackMotion=t.option(r.trackMotion,up.motion.isEnabled()),r.trackMotion===!1?t.microtask(n):(r.trackMotion=!1,this.finish(o).then(function(t){return function(){var e;return e=t.whileForwardingFinishEvent(o,n),e=e.then(function(){return t.unmarkCluster(o)}),t.markCluster(o,e),e}}(this)))},n.prototype.finish=function(e){var n,r;return this.finishCount++,0!==this.clusterCount&&up.motion.isEnabled()?(n=this.expandFinishRequest(e),r=t.map(n,this.finishOneElement),Promise.all(r)):Promise.resolve()},n.prototype.expandFinishRequest=function(e){return e?t.selectInDynasty($(e),this.selector):$(this.selector)},n.prototype.isActive=function(e){return t.hasClass(e,this.activeClass)},n.prototype.finishOneElement=function(t){var e;return e=$(t),this.emitFinishEvent(e),this.whenElementFinished(e)},n.prototype.emitFinishEvent=function(e,n){return null==n&&(n={}),n=t.merge({$element:e,message:!1},n),up.emit(this.finishEvent,n)},n.prototype.whenElementFinished=function(t){return t.data(this.dataKey)||Promise.resolve()},n.prototype.markCluster=function(t,e){return this.clusterCount++,t.addClass(this.activeClass),t.data(this.dataKey,e)},n.prototype.unmarkCluster=function(t){return this.clusterCount--,t.removeClass(this.activeClass),t.removeData(this.dataKey)},n.prototype.forwardFinishEvent=function(t,e,n){return this.start(t,function(r){return function(){var o;return o=function(){return e.trigger(r.finishEvent)},t.on(r.finishEvent,o),n.then(function(){return t.off(r.finishEvent,o)})}}(this))},n.prototype.whileForwardingFinishEvent=function(e,n){var r;return e.length<2?n():(r=function(n){return function(r){return r.forwarded?void 0:t.each(e,function(t){var e;return e=$(t),t!==r.target&&n.isActive(e)?n.emitFinishEvent(e,{forwarded:!0}):void 0})}}(this),e.on(this.finishEvent,r),n().then(function(t){return function(){return e.off(t.finishEvent,r)}}(this)))},n.prototype.reset=function(){return this.finish().then(function(t){return function(){return t.finishCount=0,t.clusterCount=0}}(this))},n}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=[].slice;t=up.util,up.Record=function(){function r(n){this.copy=e(this.copy,this),this.attributes=e(this.attributes,this),t.assign(this,this.attributes(n))}return r.prototype.fields=function(){throw"Return an array of property names"},r.prototype.attributes=function(e){return null==e&&(e=this),t.only.apply(t,[e].concat(n.call(this.fields())))},r.prototype.copy=function(e){var n;return null==e&&(e={}),n=t.merge(this.attributes(),e),new this.constructor(n)},r}()}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=function(t,e){function n(){this.constructor=t}for(var o in e)r.call(e,o)&&(t[o]=e[o]);return n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype,t},r={}.hasOwnProperty;t=up.util,up.Request=function(r){function o(t){this.cacheKey=e(this.cacheKey,this),this.isCachable=e(this.isCachable,this),this.buildResponse=e(this.buildResponse,this),this.isCrossDomain=e(this.isCrossDomain,this),this.csrfToken=e(this.csrfToken,this),this.navigate=e(this.navigate,this),this.send=e(this.send,this),this.isSafe=e(this.isSafe,this),this.transferSearchToData=e(this.transferSearchToData,this),this.transferDataToUrl=e(this.transferDataToUrl,this),this.extractHashFromUrl=e(this.extractHashFromUrl,this),this.normalize=e(this.normalize,this),o.__super__.constructor.call(this,t),this.normalize()}return n(o,r),o.prototype.fields=function(){return["method","url","data","target","failTarget","headers","timeout"]},o.prototype.normalize=function(){return this.method=t.normalizeMethod(this.method),this.headers||(this.headers={}),this.extractHashFromUrl(),t.methodAllowsPayload(this.method)?this.transferSearchToData():this.transferDataToUrl()},o.prototype.extractHashFromUrl=function(){var e;return e=t.parseUrl(this.url),this.hash=e.hash,this.url=t.normalizeUrl(e,{hash:!1})},o.prototype.transferDataToUrl=function(){var e,n;return this.data&&!t.isFormData(this.data)?(e=t.requestDataAsQuery(this.data),n=t.contains(this.url,"?")?"&":"?",this.url+=n+e,this.data=void 0):void 0},o.prototype.transferSearchToData=function(){var e,n;return n=t.parseUrl(this.url),e=n.search,e?(this.data=t.mergeRequestData(this.data,e),this.url=t.normalizeUrl(n,{search:!1})):void 0},o.prototype.isSafe=function(){return up.proxy.isSafeMethod(this.method)},o.prototype.send=function(){return new Promise(function(e){return function(n,r){var o,i,u,s,a,l,p,c,h,f;l=new XMLHttpRequest,c=t.copy(e.headers),p=e.data,h=e.method,f=e.url,u=up.proxy.wrapMethod(h,p),h=u[0],p=u[1],t.isFormData(p)?delete c["Content-Type"]:t.isPresent(p)?(p=t.requestDataAsQuery(p,{purpose:"form"}),c["Content-Type"]="application/x-www-form-urlencoded"):p=null,e.target&&(c[up.protocol.config.targetHeader]=e.target),e.failTarget&&(c[up.protocol.config.failTargetHeader]=e.failTarget),e.isCrossDomain()||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest"),(o=e.csrfToken())&&(c[up.protocol.config.csrfHeader]=o),l.open(h,f);for(i in c)a=c[i],l.setRequestHeader(i,a);return s=function(){var t;return t=e.buildResponse(l),t.isSuccess()?n(t):r(t)},l.onload=s,l.onerror=s,l.ontimeout=s,e.timeout&&(l.timeout=e.timeout),l.send(p)}}(this))},o.prototype.navigate=function(){var e,n,r,o,i;return this.transferSearchToData(),e=$('<form class="up-page-loader"></form>'),n=function(t){return $('<input type="hidden">').attr(t).appendTo(e)},"GET"===this.method?i="GET":(n({name:up.protocol.config.methodParam,value:this.method}),i="POST"),e.attr({method:i,action:this.url}),(r=up.protocol.csrfParam())&&(o=this.csrfToken())&&n({name:r,value:o}),t.each(t.requestDataAsArray(this.data),n),e.hide().appendTo("body"),up.browser.submitForm(e)},o.prototype.csrfToken=function(){return this.isSafe()||this.isCrossDomain()?void 0:up.protocol.csrfToken()},o.prototype.isCrossDomain=function(){return t.isCrossDomain(this.url)},o.prototype.buildResponse=function(t){var e,n,r;return n={method:this.method,url:this.url,text:t.responseText,status:t.status,request:this,xhr:t},(r=up.protocol.locationFromXhr(t))&&(n.url=r,n.method=null!=(e=up.protocol.methodFromXhr(t))?e:"GET"),n.title=up.protocol.titleFromXhr(t),new up.Response(n)},o.prototype.isCachable=function(){return this.isSafe()&&!t.isFormData(this.data)},o.prototype.cacheKey=function(){return[this.url,this.method,t.requestDataAsQuery(this.data),this.target].join("|")},o.wrap=function(t){return t instanceof this?t:new this(t)},o}(up.Record)}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}},n=function(t,e){function n(){this.constructor=t}for(var o in e)r.call(e,o)&&(t[o]=e[o]);return n.prototype=e.prototype,t.prototype=new n,t.__super__=e.prototype,t},r={}.hasOwnProperty;t=up.util,up.Response=function(r){function o(t){this.isFatalError=e(this.isFatalError,this),this.isError=e(this.isError,this),this.isSuccess=e(this.isSuccess,this),o.__super__.constructor.call(this,t)}return n(o,r),o.prototype.fields=function(){return["method","url","text","status","request","xhr","title"]},o.prototype.isSuccess=function(){return this.status&&this.status>=200&&this.status<=299},o.prototype.isError=function(){return!this.isSuccess()},o.prototype.isFatalError=function(){return this.isError()&&t.isBlank(this.text)},o}(up.Record)}.call(this),function(){var t,e=function(t,e){return function(){return t.apply(e,arguments)}};t=up.util,up.UrlSet=function(){function n(n,r){this.urls=n,null==r&&(r={}),this.isEqual=e(this.isEqual,this),this.matchesAny=e(this.matchesAny,this),this.doesMatchPrefix=e(this.doesMatchPrefix,this),this.doesMatchFully=e(this.doesMatchFully,this),this.matches=e(this.matches,this),this.normalizeUrl=r.normalizeUrl||t.normalizeUrl,this.urls=t.map(this.urls,this.normalizeUrl),this.urls=t.compact(this.urls)}return n.prototype.matches=function(t){return"*"===t.substr(-1)?this.doesMatchPrefix(t.slice(0,-1)):this.doesMatchFully(t)},n.prototype.doesMatchFully=function(e){return t.contains(this.urls,e)},n.prototype.doesMatchPrefix=function(e){return t.detect(this.urls,function(t){return 0===t.indexOf(e)})},n.prototype.matchesAny=function(e){return t.detect(e,this.matches)},n.prototype.isEqual=function(e){return t.isEqual(this.urls,null!=e?e.urls:void 0)},n}()}.call(this),function(){var t=[].slice;up.browser=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C;return S=up.util,d=function(t,e){var n;return null==e&&(e={}),n=new up.Request(S.merge(e,{url:t})),n.navigate()},T=function(t){return t.submit()},g=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],console[n].apply(console,e)},n=/\%[odisf]/g,k=function(t){var n,r,o,i,u,s,a,l,p;if(s=200,o="",S.isString(t))l=t.replace(/[\n\r\t ]+/g," "),l=l.replace(/^[\n\r\t ]+/,""),l=l.replace(/[\n\r\t ]$/,""),l='"'+l+'"',o='"';else if(S.isUndefined(t))l="undefined";else if(S.isNumber(t)||S.isFunction(t))l=t.toString();else if(S.isArray(t))l="["+S.map(t,k).join(", ")+"]",o="]";else if(S.isJQuery(t))l="$("+S.map(t,k).join(", ")+")",o=")";else if(S.isElement(t)){for(n=e(t),l="<"+t.tagName.toLowerCase(),a=["id","name","class"],i=0,u=a.length;u>i;i++)r=a[i],(p=n.attr(r))&&(l+=" "+r+'="'+p+'"');l+=">",o=">"}else l=JSON.stringify(t);return l.length>s&&(l=l.substr(0,s)+" \u2026",l+=o),l},b=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],w.apply(null,[S.identity,n].concat(t.call(e)))},w=function(){var e,r,o,i;return r=arguments[0],i=arguments[1],e=3<=arguments.length?t.call(arguments,2):[],S.isBlank(i)?"":(o=0,i.replace(n,function(){var t;return t=e[o],t=r(k(t)),o+=1,t}))},E=function(){return location.href},c=S.memoize(function(){return!window.atob}),l=function(){return S.isDefined(history.pushState)&&"get"===up.protocol.initialRequestMethod()},o=S.memoize(function(){return"transition"in document.documentElement.style}),s=S.memoize(function(){return"oninput"in document.createElement("input")}),a=S.memoize(function(){return!!window.Promise}),u=S.memoize(function(){return!!window.FormData}),i=S.memoize(function(){return!!window.DOMParser}),r=S.memoize(function(){return window.console&&console.debug&&console.info&&console.warn&&console.error&&console.group&&console.groupCollapsed&&console.groupEnd}),h=S.memoize(function(){var t,n,r,o;return o=e.fn.jquery,r=o.split("."),t=parseInt(r[0]),n=parseInt(r[1]),t>=2||1===t&&n>=9}),v=function(t){var e,n;return n=null!=(e=document.cookie.match(new RegExp(t+"=(\\w+)")))?e[1]:void 0,S.isPresent(n)&&(document.cookie=t+"=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/"),n},C=function(t){return t.preload||S.isBlank(t.confirm)||window.confirm(t.confirm)?Promise.resolve():Promise.reject(new Error("User canceled action"))},f=function(){return!c()&&h()&&r()&&i()&&u()&&o()&&s()&&a()},y=S.memoize(function(){try{return window.sessionStorage}catch(t){return m()}}),m=function(){var t;return t={},{getItem:function(e){return t[e]},setItem:function(e,n){return t[e]=n}}},p=function(t){return t||(t=location.hash),t||(t=""),"#"===t[0]&&(t=t.substr(1)),S.presence(t)},{url:E,navigate:d,submitForm:T,canPushState:l,whenConfirmed:C,isSupported:f,puts:g,sprintf:b,sprintfWithFormattedArgs:w,sessionStorage:y,popCookie:v,hash:p}}(jQuery)}.call(this),function(){var t=[].slice;up.bus=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C;return w=up.util,p={},h=0,g={},E=function(t){return function(n){var r;return r=n.$element||e(this),t.apply(r.get(0),[n,r,up.syntax.data(r)])}},S=function(t,e){var n,r,o;return n=w.copy(t),u(n),o=n.pop(),r=void 0,e?(r=E(o),o._asJqueryListener=r,o._descriptionNumber=++h):(r=o._asJqueryListener,r||up.fail("up.off(): The callback %o was never registered through up.on()",o)),n.push(r),n},u=function(t){var e;return e=t[0].split(/\s+/),e=w.map(e,function(t){var e;return(e=g[t])?(up.log.warn(t+" has been renamed to "+e),e):t}),t[0]=e.join(" ")},l=function(){var n,r,o;return o=1<=arguments.length?t.call(arguments,0):[],up.browser.isSupported()?(n=S(o,!0),m(o),(r=e(document)).on.apply(r,n),function(){return k.apply(null,o)}):function(){}},k=function(){var n,r,o;return o=1<=arguments.length?t.call(arguments,0):[],n=S(o,!1),s(o),(r=e(document)).off.apply(r,n)},m=function(t){var e;return e=T(t),p[e]=t},s=function(t){var e;return e=T(t),delete p[e]},T=function(t){return w.last(t)._descriptionNumber},o=function(t,n){var r,o;return null==n&&(n={}),o=e.Event(t,n),r=n.$target||n.$element||e(document),c(t,n),r.trigger(o),o},c=function(e,n){var r,o,i;return n.hasOwnProperty("message")?(r=n.message,delete n.message,r!==!1&&(w.isArray(r)?(i=r,r=i[0],o=2<=i.length?t.call(i,1):[]):o=[],r)?w.isPresent(n)?up.puts.apply(up,[r+" (%s (%o))"].concat(t.call(o),[e],[n])):up.puts.apply(up,[r+" (%s)"].concat(t.call(o),[e])):void 0):w.isPresent(n)?up.puts("Emitted event %s (%o)",e,n):up.puts("Emitted event %s",e)},f=function(){var e,n;return e=1<=arguments.length?t.call(arguments,0):[],n=o.apply(null,e),!n.isDefaultPrevented()},C=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],new Promise(function(t,n){return f.apply(null,e)?t():n(new Error("Event "+e[0]+" was prevented"))})},d=function(t){return l("keydown","body",function(e){return w.escapePressed(e)?t(e):void 0})},a=function(t){return t.stopImmediatePropagation(),t.stopPropagation(),t.preventDefault()},r=function(t){return a(t),"up:action:consumed"!==t.type?o("up:action:consumed",{$element:e(t.target),message:!1}):void 0},b=function(){var t,e,n;n=[];for(e in p)t=p[e],n.push(t.isDefault=!0);return n},y=function(){var t,e,n,r,o,i;e=[];for(o in p)t=p[o],t.isDefault||e.push(t);for(i=[],n=0,r=e.length;r>n;n++)t=e[n],i.push(k.apply(null,t));return i},i=function(){return o("up:framework:reset",{message:"Resetting framework"}),up.protocol.reset()},v=function(t,e){return g[t]=e},n=function(){return up.browser.isSupported()?(o("up:framework:boot",{message:"Booting framework"}),o("up:framework:booted",{message:"Framework booted"}),w.nextFrame(function(){return w.whenReady().then(function(){return o("up:app:boot",{message:"Booting user application"}),o("up:app:booted",{message:"User application booted"})})})):"function"==typeof console.log?console.log("Unpoly doesn't support this browser. Framework was not booted."):void 0},l("up:framework:booted",b),l("up:framework:reset",y),{on:l,off:k,emit:o,nobodyPrevents:f,whenEmitted:C,onEscape:d,emitReset:i,haltEvent:a,consumeAction:r,renamedEvent:v,boot:n}}(jQuery),up.on=up.bus.on,up.off=up.bus.off,up.emit=up.bus.emit,up.reset=up.bus.emitReset,up.boot=up.bus.boot}.call(this),function(){up.protocol=function(t){var e,n,r,o,i,u,s,a,l;return l=up.util,i=function(t){return t.getResponseHeader(e.locationHeader)||t.responseURL},a=function(t){return t.getResponseHeader(e.titleHeader)},u=function(t){var n;return(n=t.getResponseHeader(e.methodHeader))?l.normalizeMethod(n):void 0},o=l.memoize(function(){var t;return t=up.browser.popCookie(e.methodCookie),(t||"get").toLowerCase()}),up.bus.on("up:framework:booted",o),e=l.config({targetHeader:"X-Up-Target",failTargetHeader:"X-Up-Fail-Target",locationHeader:"X-Up-Location",validateHeader:"X-Up-Validate",titleHeader:"X-Up-Title",methodHeader:"X-Up-Method",methodCookie:"_up_method",methodParam:"_method",csrfParam:function(){return t('meta[name="csrf-param"]').attr("content")},csrfToken:function(){return t('meta[name="csrf-token"]').attr("content")},csrfHeader:"X-CSRF-Token"}),n=function(){return l.evalOption(e.csrfParam)},r=function(){return l.evalOption(e.csrfToken)},s=function(){return e.reset()},{config:e,reset:s,locationFromXhr:i,titleFromXhr:a,methodFromXhr:u,csrfParam:n,csrfToken:r,initialRequestMethod:o}}(jQuery)}.call(this),function(){var t=[].slice;up.log=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v;return m=up.util,r=up.browser,n="up.log.enabled",o=m.config({prefix:"[UP] ",enabled:"true"===r.sessionStorage().getItem(n),collapse:!1}),f=function(){return o.reset()},p=function(t){return""+o.prefix+t},i=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],o.enabled&&n?r.puts.apply(r,["debug",p(n)].concat(t.call(e))):void 0},h=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],o.enabled&&n?r.puts.apply(r,["log",p(n)].concat(t.call(e))):void 0},v=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],n?r.puts.apply(r,["warn",p(n)].concat(t.call(e))):void 0},l=function(){var e,n,i,u;if(i=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],n=e.pop(),!o.enabled||!i)return n();u=o.collapse?"groupCollapsed":"group",r.puts.apply(r,[u,p(i)].concat(t.call(e)));try{return n()}finally{i&&r.puts("groupEnd")}},a=function(){var e,n;return n=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],n?r.puts.apply(r,["error",p(n)].concat(t.call(e))):void 0},c=function(){var t;return t=" __ _____ ___ ___ / /_ __\n"+("/ // / _ \\/ _ \\/ _ \\/ / // / "+up.version+"\n")+"\\___/_//_/ .__/\\___/_/\\_. / \n / / / /\n\n",t+=o.enabled?"Call `up.log.disable()` to disable logging for this session.":"Call `up.log.enable()` to enable logging for this session.",r.puts("log",t)},up.on("up:framework:boot",c),up.on("up:framework:reset",f),d=function(t){return r.sessionStorage().setItem(n,t.toString()),o.enabled=t},s=function(){return d(!0)},u=function(){return d(!1)},{puts:h,debug:i,error:a,warn:v,group:l,config:o,enable:s,disable:u}}(jQuery),up.puts=up.log.puts}.call(this),function(){var t=[].slice;up.toast=function(e){var n,r,o,i,u,s,a,l,p,c;return c=up.util,o=up.browser,n=function(t){return"<span class='up-toast-variable'>"+c.escapeHtml(t)+"</span>"},p=c.config({$toast:null}),l=function(){return i(),p.reset()},s=function(e){return c.isArray(e)?(e[0]=c.escapeHtml(e[0]),e=o.sprintfWithFormattedArgs.apply(o,[n].concat(t.call(e)))):e=c.escapeHtml(e),e},u=function(){return!!p.$toast},r=function(t,n,r){var o;return o=e('<span class="up-toast-action"></span>').text(n),o.on("click",r),o.appendTo(t)},a=function(t,n){var o,u,a,l;return null==n&&(n={}),i(),a=e('<div class="up-toast"></div>').prependTo("body"),u=e('<div class="up-toast-message"></div>').appendTo(a),o=e('<div class="up-toast-actions"></div>').appendTo(a),t=s(t),u.html(t),(l=n.action||n.inspect)&&r(o,l.label,l.callback),r(o,"Close",i),p.$toast=a},i=function(){return u()?(p.$toast.remove(),p.$toast=null):void 0},up.on("up:framework:reset",l),{open:a,close:i,reset:l,isOpen:u}}(jQuery)}.call(this),function(){var t=[].slice;up.syntax=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k;return k=up.util,n="up-destructible",r="up-destructors",o={"[up-back]":-100,"[up-drawer]":-200,"[up-dash]":-200,"[up-expand]":-300,"[data-method]":-400,"[data-confirm]":-400},m=!0,c=[],g=[],p=function(){var e,n,r,o;return o=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],up.browser.isSupported()?(n=e.pop(),r=k.options(e[0]),d(c,o,r,n)):void 0},v=function(){var e,n,r,o;return o=arguments[0],e=2<=arguments.length?t.call(arguments,1):[],up.browser.isSupported()?(n=e.pop(),r=k.options(e[0]),m&&(r.priority=f(o)||up.fail("Unregistered priority for system macro %o",o)),d(g,o,r,n)):void 0},f=function(t){var e,n;for(n in o)if(e=o[n],t.indexOf(n)>=0)return e},s=function(t,e,n){return{selector:t,callback:n,isSystem:m,priority:e.priority||0,batch:e.batch,keep:e.keep}},d=function(t,e,n,r){var o,i,u;if(up.browser.isSupported()){for(i=s(e,n,r),o=0;(u=t[o])&&u.priority>=i.priority;)o+=1;return t.splice(o,0,i)}},u=function(t,e,n){var r,o;return up.puts(t.isSystem?void 0:"Compiling '%s' on %o",t.selector,n),t.keep&&(o=k.isString(t.keep)?t.keep:"",e.attr("up-keep",o)),r=t.callback.apply(n,[e,h(e)]),i(e,r)},y=function(t){return k.isFunction(t)?t:k.isArray(t)&&k.all(t,k.isFunction)?k.sequence.apply(k,t):void 0},i=function(t,e){var o;return(e=y(e))?(t.addClass(n),o=t.data(r)||function(){return b(t)},o=k.sequence(o,e),t.data(r,o)):void 0},b=function(t){return t.removeData(r),t.removeClass(n)},l=function(t,n){var r;return n=k.options(n),r=e(n.skip),up.log.group("Compiling fragment %o",t.get(0),function(){var n,o,i,s,a,l;for(a=[g,c],l=[],o=0,i=a.length;i>o;o++)s=a[o],l.push(function(){var o,i,a;for(a=[],o=0,i=s.length;i>o;o++)p=s[o],n=k.selectInSubtree(t,p.selector),r.length&&(n=n.filter(function(){var t;return t=e(this),k.all(r,function(e){return 0===t.closest(e).length})})),n.length?a.push(up.log.group(p.isSystem?void 0:"Compiling '%s' on %d element(s)",p.selector,n.length,function(){return p.batch?u(p,n,n.get()):n.each(function(){return u(p,e(this),this)})})):a.push(void 0);return a}());return l})},a=function(t){var o;return o=k.selectInSubtree(t,"."+n),k.each(o,function(t){var n;return(n=e(t).data(r))?n():void 0})},h=function(t){var n,r;return n=e(t),r=n.attr("up-data"),k.isString(r)&&""!==k.trim(r)?JSON.parse(r):{}},w=function(){var t;return t=function(t){return t.isSystem},c=k.select(c,t),g=k.select(g,t)},up.on("up:framework:booted",function(){return m=!1}),up.on("up:framework:reset",w),{compiler:p,macro:v,compile:l,clean:a,data:h}}(jQuery),up.compiler=up.syntax.compiler,up.macro=up.syntax.macro}.call(this),function(){up.history=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m,v;return v=up.util,n=v.config({enabled:!0,popTargets:["body"],restoreScroll:!0}),p=void 0,u=void 0,d=function(){return n.reset(),p=void 0,u=void 0},s=function(t,e){return e||(e={}),e.hash=!0,v.normalizeUrl(t,e)},r=function(t){return s(up.browser.url(),t)},o=function(t){var e;return e={stripTrailingSlash:!0},s(t,e)===r(e)},a=function(t){return u&&(p=u,u=void 0),u=t},f=function(t){return i("replaceState",t)?up.emit("up:history:replaced",{url:t}):void 0},c=function(t,e){return e=v.options(e,{force:!1}),t=s(t),!e.force&&o(t)||!up.bus.nobodyPrevents("up:history:push",{url:t,message:"Adding history entry for "+t})?void 0:i("pushState",t)?up.emit("up:history:pushed",{url:t,message:"Advanced to location "+t}):up.emit("up:history:muted",{url:t,message:"Did not advance to "+t+" (history is unavailable)"})},i=function(t,o){var i;return up.browser.canPushState()&&n.enabled?(i=e(),window.history[t](i,"",o),a(r()),!0):!1},e=function(){return{fromUp:!0}},m=function(t){var e,o,i;return(null!=t?t.fromUp:void 0)?(i=r(),up.emit("up:history:restore",{url:i,message:"Restoring location "+i}),e=n.popTargets.join(", "),o=up.replace(e,i,{history:!1,title:!0,reveal:!1,transition:"none",saveScroll:!1,restoreScroll:n.restoreScroll,layer:"page"}),o.then(function(){return i=r(),up.emit("up:history:restored",{url:i,message:"Restored location "+i})})):up.puts("Ignoring a state not pushed by Unpoly (%o)",t)},l=function(t){var e;return a(r()),up.layout.saveScroll({url:p}),e=t.originalEvent.state,m(e)},up.browser.canPushState()&&(h=function(){return t(window).on("popstate",l),f(r(),{force:!0})},"undefined"!=typeof jasmine&&null!==jasmine?h():setTimeout(h,100)),up.macro("a[up-back], [up-href][up-back]",function(t){return v.isPresent(p)?(v.setMissingAttrs(t,{"up-href":p,"up-restore-scroll":""}),t.removeAttr("up-back"),up.link.makeFollowable(t)):void 0}),up.on("up:framework:reset",d),{config:n,push:c,replace:f,url:r,isUrl:o,previousUrl:function(){return p},normalizeUrl:s}}(jQuery)}.call(this),function(){var t=[].slice;up.layout=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F;return E=up.util,o=E.config({duration:0,viewports:[".up-modal-viewport","[up-viewport]"],fixedTop:["[up-fixed~=top]"],fixedBottom:["[up-fixed~=bottom]"],anchoredRight:["[up-anchored~=right]","[up-fixed~=top]","[up-fixed~=bottom]","[up-fixed~=right]"],snap:50,substance:150,easing:"swing"}),a=new up.Cache({size:30,key:up.history.normalizeUrl}),S=new up.MotionTracker("scrolling"),p=function(){return o.reset(),a.clear(),S.reset()},g=function(t,e,n){var r;return r=T(t),n=E.options(n),n.duration=E.option(n.duration,o.duration),n.easing=E.option(n.easing,o.easing),i(r).then(function(){return up.motion.isEnabled()&&n.duration>0?k(r,e,n):y(r,e)})},T=function(t){var n;return n=e(t),n.get(0)===document?e("html, body"):n},k=function(t,e,n){var r;return r=function(){var r,o;return r=function(){return t.finish()},t.on(S.eventName,r),o=t.animate({scrollTop:e},n).promise(),o.then(function(){return t.off(S.eventName)}),o},S.claim(t,r)},y=function(t,e){return t.scrollTop(e),Promise.resolve()},i=function(t){var e;return up.motion.isEnabled()?(e=T(t),S.finish(e)):Promise.resolve()},r=function(){var t;return t=o.anchoredRight.join(","),e(t)},l=function(){var n,r,i,u;return i=function(t,n){var r,o;return r=e(t),o=E.readComputedStyleNumber(r,n),E.isPresent(o)||up.fail("Fixed element %o must have a CSS attribute %s",r.get(0),n),o+r.height()},r=function(){var t,n,r,s;for(r=e(o.fixedTop.join(", ")),s=[],t=0,n=r.length;n>t;t++)u=r[t],s.push(i(u,"top"));return s}(),n=function(){var t,n,r,s;for(r=e(o.fixedBottom.join(", ")),s=[],t=0,n=r.length;n>t;t++)u=r[t],s.push(i(u,"bottom"));return s}(),{top:Math.max.apply(Math,[0].concat(t.call(r))),bottom:Math.max.apply(Math,[0].concat(t.call(n)))}},h=function(t,n){var r;return r=e(t).first(),up.puts("Revealing fragment %o",r.get(0)),n=E.options(n),E.rejectOnError(function(){var t,i,u,s,a,p,c,h,f,d,m,v,y;return t=n.viewport?e(n.viewport):C(r),m=E.option(n.snap,o.snap),y=t.is(document),v=y?E.clientSize().height:t.outerHeight(),h=t.scrollTop(),a=h,c=void 0,p=void 0,y?(p=l(),c=0):(p={top:0,bottom:0},c=h),f=function(){return a+p.top},d=function(){return a+v-p.bottom-1},i=E.measure(r,{relative:t,includeMargin:!0}),u=i.top+c,s=u+Math.min(i.height,o.substance)-1,s>d()&&(a+=s-d()),(u<f()||n.top)&&(a=u-p.top),m>a&&i.top<.5*v&&(a=0),a!==h?g(t,a,n):Promise.resolve()})},f=function(){var t,e;return(e=up.browser.hash())&&(t=u(e))?h(t):Promise.resolve()},x=function(){return o.viewports.join(",")},C=function(t,n){var r,o;return null==n&&(n={}),r=e(t),o=r.closest(x()),0===o.length&&(o=e(document)),o},F=function(t){var n;return n=e(t),E.selectInSubtree(n,x())},P=function(){return e(document).add(x())},b=function(t){var n;return n=e(t),n.is(document)?"document":E.selectorForElement(n)},w=function(){var t,n,r,i,u;for(u={},i=o.viewports,n=0,r=i.length;r>n;n++)t=i[n],e(t).each(function(){var t,n,r;return t=e(this),n=b(t),r=t.scrollTop(),u[n]=r});return u},s=function(t){var n,r;return null==t&&(t=void 0),t||(t=document.body),r=e(t),n=r.find("[up-fixed]"),E.isPresent(o.fixedTop)&&(n=n.add(r.find(o.fixedTop.join(", ")))),E.isPresent(o.fixedBottom)&&(n=n.add(r.find(o.fixedBottom.join(", ")))),n},v=function(t){var e,n;return null==t&&(t={}),n=E.option(t.url,up.history.url()),e=E.option(t.tops,w()),a.set(n,e)},c=function(t){var e,n,r,o,i;return null==t&&(t={}),i=up.history.url(),r=void 0,t.around?(n=F(t.around),e=C(t.around),r=e.add(n)):r=P(),o=a.get(i)||{},up.log.group("Restoring scroll positions for URL %s to %o",i,o,function(){var t;return t=E.map(r,function(t){var e,n;return e=b(t),n=o[e]||0,g(t,n,{duration:0})}),Promise.all(t)})},d=function(t,n){var r,o,i;return n=E.options(n),r=e(t),n.restoreScroll?c({around:r}):n.reveal&&(o={duration:n.duration},E.isString(n.reveal)&&(i=m(n.reveal,n),r=up.first(i)||r,o.top=!0),r.length)?h(r,o):Promise.resolve()},m=function(t,e){return t=up.dom.resolveSelector(t,e.origin),"#"===t[0]&&(t+=", a[name='"+t+"']"),t},n=function(t,n){var r,o,i,u,s,a,l,p,c,h,f;for(n=E.options(n,{afterMeasure:E.noop}),i=up.layout.viewportOf(t),c=E.measure(t,{relative:!0,inner:!0}),h=t.offset(),n.afterMeasure(),E.writeInlineStyle(t,{position:"static"===E.readComputedStyle(t,"position")?"static":"relative",top:"auto",right:"auto",bottom:"auto",left:"auto",width:"100%",height:"100%"}),r=e('<div class="up-bounds"></div>'),u=E.merge(c,{position:"absolute"}),E.writeInlineStyle(r,u),r.insertBefore(t),t.appendTo(r),f=c.top,p=function(t){return 0!==t?(f+=t,E.writeInlineStyle(r,{top:f})):void 0},p(h.top-t.offset().top),o=up.layout.fixedChildren(t),a=0,l=o.length;l>a;a++)s=o[a],E.fixedToAbsolute(s,i);return{$element:t,$bounds:r,moveTop:p}},u=function(t){return(t=up.browser.hash(t))?up.first("[id='"+t+"'], a[name='"+t+"']"):void 0},up.on("up:app:booted",f),up.on("up:framework:reset",p),{reveal:h,revealHash:f,firstHashTarget:u,scroll:g,config:o,viewportOf:C,viewportsWithin:F,viewports:P,scrollTops:w,saveScroll:v,restoreScroll:c,revealOrRestoreScroll:d,anchoredRight:r,fixedChildren:s,absolutize:n}}(jQuery),up.scroll=up.layout.scroll,up.reveal=up.layout.reveal,up.revealHash=up.layout.revealHash}.call(this),function(){up.dom=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F,$,A,D,O,M,R;return M=up.util,r=M.config({fallbacks:["body"],fallbackTransition:null}),C=function(){return r.reset()},P=function(e,n){var r;return n!==!1?(r=t(e),M.isPresent(n)&&(n=M.normalizeUrl(n)),r.attr("up-source",n)):void 0},A=function(e){var n;return n=t(e).closest("[up-source]"),M.presence(n.attr("up-source"))||up.browser.url()},x=function(t,e){var n,r;return M.isString(t)?(r=t,M.contains(r,"&")&&(M.isPresent(e)?(n=M.selectorForElement(e),r=r.replace(/\&/,n)):up.fail("Found origin reference (%s) in selector %s, but no origin was given","&",r))):r=M.selectorForElement(t),r},E=function(t,e,r){var o,i,u,s,a,l,p,c,h,f;if(r=M.options(r),r.inspectResponse=u=function(){return up.browser.navigate(e,M.only(r,"method","data"))},!up.browser.canPushState()&&r.history!==!1)return r.preload||u(),M.unresolvablePromise();f=M.merge(r,{humanizedTarget:"target"}),i=M.merge(r,{humanizedTarget:"failure target",provideTarget:void 0,restoreScroll:!1}),M.renameKey(i,"failTransition","transition"),M.renameKey(i,"failLayer","layer"),M.renameKey(i,"failReveal","reveal");try{a=n(t,f),s=n(r.failTarget,i)}catch(d){return o=d,Promise.reject(o)}return h={url:e,method:r.method,data:r.data,target:a,failTarget:s,cache:r.cache,preload:r.preload,headers:r.headers,timeout:r.timeout},p=function(t){return T(!0,a,t,f)},l=function(t){var e,n;return n=function(){return Promise.reject(t)},t.isFatalError()?n():(e=T(!1,s,t,i),M.always(e,n))},c=up.request(h),r.preload||(c=c.then(p,l)),c},T=function(t,e,n,r){var o,i,u,s,a;return s=n.request,a=n.url,i=a,o=s.hash,r.reveal===!0&&o&&(r.reveal=o,i+=o),u="GET"===n.method,t?u?(r.history===!1||M.isString(r.history)||(r.history=i),r.source===!1||M.isString(r.source)||(r.source=a)):(M.isString(r.history)||(r.history=!1),M.isString(r.source)||(r.source="keep")):u?(r.history!==!1&&(r.history=i),r.source!==!1&&(r.source=a)):(r.history=!1,r.source="keep"),F(r)&&n.title&&(r.title=n.title),p(e,n.text,r)},F=function(t){return!(t.title===!1||M.isString(t.title)||t.history===!1&&t.title!==!0)},p=function(t,n,r){return up.log.group("Extracting %s from %d bytes of HTML",t,null!=n?n.length:void 0,function(){return r=M.options(r,{historyMethod:"push",requireMatch:!0,keep:!0,layer:"auto"}),r.saveScroll!==!1&&up.layout.saveScroll(),M.rejectOnError(function(){var o,i,u,s,a,l,p;for("function"==typeof r.provideTarget&&r.provideTarget(),s=k(n),o=e(t,s,r),F(r)&&(a=s.title())&&(r.title=a),R(r),p=[],i=0,u=o.length;u>i;i++)l=o[i],up.log.group("Swapping fragment %s",l.selector,function(){var t,e;return t=M.merge(r,M.only(l,"origin","reveal")),m(l.$new),e=D(l.$old,l.$new,l.pseudoClass,l.transition,t),p.push(e)});return Promise.all(p)})})},n=function(t,e){var n;return n=new up.ExtractCascade(t,e),n.bestPreflightSelector()},e=function(t,e,n){var r;return n=M.merge(n,{response:e}),r=new up.ExtractCascade(t,n),r.bestMatchingSteps()},m=function(t){var e,n,r,o,u;for(n=[],i(t.get(0),n),u=[],r=0,o=n.length;o>r;r++)e=n[r],u.push(e());return u},i=function(t,e){var n,r,o,u,s,a;if("NOSCRIPT"===t.tagName)return r=document.createElement("noscript"),r.textContent=t.innerHTML,e.push(function(){return t.parentNode.replaceChild(r,t)});if("SCRIPT"===t.tagName)return e.push(function(){return t.parentNode.removeChild(t)});for(s=t.children,a=[],o=0,u=s.length;u>o;o++)n=s[o],a.push(i(n,e));return a},k=function(e){var n;return n=M.createElementFromHtml(e),{title:function(){var t;return null!=(t=n.querySelector("head title"))?t.textContent:void 0},first:function(e){var r;return(r=t.find(e,n)[0])?t(r):void 0}}},R=function(t){return t=M.options(t,{historyMethod:"push"}),
3
+ t.history&&up.history[t.historyMethod](t.history),M.isString(t.title)?document.title=t.title:void 0},D=function(t,e,n,r,o){var i,a,p,h,f;return r||(r="none"),"keep"===o.source&&(o=M.merge(o,{source:A(t)})),P(e,o.source),n?(a=e.contents().wrapAll('<div class="up-insertion"></div>').parent(),"before"===n?t.prepend(a):t.append(a),v(a.children(),o),f=up.layout.revealOrRestoreScroll(a,o),f=f.then(function(){return up.animate(a,r,o)}),f=f.then(function(){return M.unwrapElement(a)})):(p=c(t,e,o))?(l(p),Promise.resolve()):(o.keepPlans=O(t,e,o),i=t.parent(),h=M.merge(o,{beforeStart:function(){return b(t),u(t,{log:!1})},afterInsert:function(){return up.hello(e,o)},beforeDetach:function(){return up.syntax.clean(t)},afterDetach:function(){return t.remove(),s(t,{$parent:i,log:!1})}}),up.morph(t,e,r,h))},O=function(e,n,r){var o,i,u,s,a,l,p,h;if(s=[],r.keep)for(h=e.find("[up-keep]"),u=0,l=h.length;l>u;u++)a=h[u],o=t(a),(p=c(o,n,M.merge(r,{descendantsOnly:!0})))&&(i=o.clone(),M.detachWith(o,i),p.$newElement.replaceWith(o),s.push(p));return s},c=function(t,e,n){var r,o,i,u,s;return n.keep&&(r=t,(u=M.castedAttr(r,"up-keep"))&&(M.isString(u)||(u="&"),u=x(u,r),o=n.descendantsOnly?e.find(u):M.selectInSubtree(e,u),o=o.first(),o.length&&o.is("[up-keep]")&&(s={$element:r,$newElement:o,newData:up.syntax.data(o)},i=M.merge(s,{message:["Keeping element %o",r.get(0)]}),up.bus.nobodyPrevents("up:fragment:keep",i))))?s:void 0},v=function(e,n){var r,o,i,u,s,p;for(r=t(e),n=M.options(n,{keepPlans:[]}),i=[],p=n.keepPlans,o=0,u=p.length;u>o;o++)s=p[o],l(s),i.push(s.$element);return up.syntax.compile(r,{skip:i}),a(r,n),r},a=function(t,e){return up.emit("up:fragment:inserted",{$element:t,message:["Inserted fragment %o",t.get(0)],origin:e.origin})},l=function(t){var e;return e=M.merge(t,{message:["Kept fragment %o",t.$element.get(0)]}),up.emit("up:fragment:kept",e)},u=function(t,e){var n;return $(t,e)&&(n=["Destroying fragment %o",t.get(0)]),up.emit("up:fragment:destroy",{$element:t,message:n})},s=function(t,e){var n,r;return $(t,e)&&(r=["Destroyed fragment %o",t.get(0)]),n=e.$parent||up.fail("Missing { $parent } option"),up.emit("up:fragment:destroyed",{$target:n,$parent:n,$element:t,message:r})},g=function(t){var e;return e=".up-destroying",0===t.closest(e).length},h=function(t,e){var n;return e=M.options(e,{layer:"auto"}),n=x(t,e.origin),"auto"===e.layer?d(n,e.origin):f(n,e.layer)},d=function(t,e){var n,r,o,i,u,s;for(i=["popup","modal","page"],n=void 0,M.isPresent(e)&&(s=y(e),M.remove(i,s),i.unshift(s)),r=0,u=i.length;u>r&&(o=i[r],!(n=f(t,o)));r++);return n},f=function(e,n){var r,o,i,u,s,a;for(o=t(e),i=void 0,s=0,a=o.length;a>s;s++)if(u=o[s],r=t(u),g(r)&&w(r,n)){i=r;break}return i},y=function(e){var n;return n=t(e),up.popup.contains(n)?"popup":up.modal.contains(n)?"modal":"page"},w=function(t,e){return y(t)===e},o=function(e,n){var r,o,i;return r=t(e),n=M.options(n,{animation:!1}),0===r.length?Promise.resolve():(b(r),u(r,n),R(n),o=function(){var t;return t=up.motion.animateOptions(n),up.motion.animate(r,n.animation,t)},i=function(){var t;return t=r.parent(),up.syntax.clean(r),r.remove(),s(r,{$parent:t})},o().then(i))},$=function(t,e){return e.log!==!1&&!t.is(".up-placeholder, .up-tooltip, .up-modal, .up-popup")},b=function(t){return t.addClass("up-destroying")},S=function(t,e){var n;return e=M.options(e,{cache:!1}),n=e.url||A(t),E(t,n,e)},up.on("up:app:boot",function(){var e;return e=t(document.body),P(e,up.browser.url()),v(e)}),up.on("up:framework:reset",C),{replace:E,reload:S,destroy:o,extract:p,first:h,source:A,resolveSelector:x,hello:v,config:r}}(jQuery),up.replace=up.dom.replace,up.extract=up.dom.extract,up.reload=up.dom.reload,up.destroy=up.dom.destroy,up.first=up.dom.first,up.hello=up.dom.hello,up.renamedModule("flow","dom")}.call(this),function(){var t=[].slice;up.motion=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F,$;return F=up.util,b={},a={},w={},l={},y=new up.MotionTracker("motion"),s=F.config({duration:300,delay:0,easing:"ease",enabled:!0}),S=function(){return y.reset(),b=F.copy(a),w=F.copy(l),s.reset()},d=function(){return s.enabled},r=function(t,n,r){var o,u,s,a;return o=e(t),r=i(r),u=p(n),a=$(o,n,r),a?(s=function(){return u(o,r)},y.claim(o,s,r)):E(o,n)},$=function(t,e,n){return n=i(n),d()&&!m(e)&&n.duration>0&&!v(t)},v=function(t){return t.is("body")},E=function(t,e){return F.isOptions(e)&&F.writeInlineStyle(t,e),Promise.resolve()},n=0,o=function(t,e,n){var r;return n=F.merge(n,{finishEvent:y.finishEvent}),r=new up.CssTransition(t,e,n),r.start()},i=function(){var e,n,r,o,i;return n=1<=arguments.length?t.call(arguments,0):[],i=n.shift()||{},e=F.isJQuery(n[0])?n.shift():F.nullJQuery(),o=F.isObject(n[0])?n.shift():{},r={},r.easing=F.option(i.easing,F.presentAttr(e,"up-easing"),o.easing,s.easing),r.duration=Number(F.option(i.duration,F.presentAttr(e,"up-duration"),o.duration,s.duration)),r.delay=Number(F.option(i.delay,F.presentAttr(e,"up-delay"),o.delay,s.delay)),r.trackMotion=i.trackMotion,r},c=function(t){return b[t]||up.fail("Unknown animation %o",t)},f=function(t){return y.finish(t)},g=function(t,n,r,o){var u,s,a,l,p,c,f,d,m,v,g,b,w,k,T;return o=F.options(o),o=F.assign(o,i(o)),a=e(t),s=e(n),u=a.add(s),k=h(r),T=$(a,k,o),d=F.pluckKey(o,"beforeStart")||F.noop,c=F.pluckKey(o,"afterInsert")||F.noop,f=F.pluckKey(o,"beforeDetach")||F.noop,p=F.pluckKey(o,"afterDetach")||F.noop,d(),g=function(){var t;return t=F.merge(o,{duration:0}),up.layout.revealOrRestoreScroll(s,t)},T?y.isActive(a)&&o.trackMotion===!1?k(a,s,o):(up.puts("Morphing %o to %o with transition %o",a.get(0),s.get(0),r),l=up.layout.viewportOf(a),b=l.scrollTop(),m=up.layout.absolutize(a,{afterMeasure:function(){return s.insertBefore(a),c()}}),w=function(){var t;return t=g(),t=t.then(function(){var t;return t=l.scrollTop(),m.moveTop(t-b),k(a,s,o)}),t=t.then(function(){return f(),a.detach(),m.$bounds.remove(),p()})},y.claim(u,w,o)):(f(),x(a,s),c(),p(),v=g())},h=function(t){var e;return m(t)?void 0:F.isFunction(t)?t:F.isArray(t)?u.apply(null,t):F.isString(t)?t.indexOf("/")>=0?u.apply(null,t.split("/")):(e=w[t])?h(e):void 0:up.fail("Unknown transition %o",t)},u=function(t,e){var n,r;return m(t)&&m(t)?void 0:(r=p(t)||F.asyncNoop,n=p(e)||F.asyncNoop,function(t,e,o){return Promise.all([r(t,o),n(e,o)])})},p=function(t){return m(t)?void 0:F.isFunction(t)?t:F.isString(t)?c(t):F.isOptions(t)?function(e,n){return o(e,t,n)}:up.fail("Unknown animation %o",t)},x=function(t,e){return t.replaceWith(e)},T=function(t,e){return w[t]=h(e)},k=function(t,e){return b[t]=p(e)},C=function(){return a=F.copy(b),l=F.copy(w)},m=function(t){return!t||"none"===t||F.isBlank(t)},k("fade-in",function(t,e){return F.writeInlineStyle(t,{opacity:0}),o(t,{opacity:1},e)}),k("fade-out",function(t,e){return F.writeInlineStyle(t,{opacity:1}),o(t,{opacity:0},e)}),P=function(t,e){return{transform:"translate("+t+"px, "+e+"px)"}},k("move-to-top",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=n.top+n.height,o(t,P(0,-r),e)}),k("move-from-top",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=n.top+n.height,F.writeInlineStyle(t,P(0,-r)),o(t,P(0,0),e)}),k("move-to-bottom",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=F.clientSize().height-n.top,o(t,P(0,r),e)}),k("move-from-bottom",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=F.clientSize().height-n.top,F.writeInlineStyle(t,P(0,r)),o(t,P(0,0),e)}),k("move-to-left",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=n.left+n.width,o(t,P(-r,0),e)}),k("move-from-left",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=n.left+n.width,F.writeInlineStyle(t,P(-r,0)),o(t,P(0,0),e)}),k("move-to-right",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=F.clientSize().width-n.left,o(t,P(r,0),e)}),k("move-from-right",function(t,e){var n,r;return F.writeInlineStyle(t,P(0,0)),n=F.measure(t),r=F.clientSize().width-n.left,F.writeInlineStyle(t,P(r,0)),o(t,P(0,0),e)}),k("roll-down",function(t,e){var n,o,i;return o=t.height(),i=F.writeTemporaryStyle(t,{height:"0px",overflow:"hidden"}),n=r(t,{height:o+"px"},e),n.then(i),n}),T("move-left",["move-to-left","move-from-right"]),T("move-right",["move-to-right","move-from-left"]),T("move-up",["move-to-top","move-from-bottom"]),T("move-down",["move-to-bottom","move-from-top"]),T("cross-fade",["fade-out","fade-in"]),up.on("up:framework:booted",C),up.on("up:framework:reset",S),{morph:g,animate:r,animateOptions:i,willAnimate:$,finish:f,finishCount:function(){return y.finishCount},transition:T,animation:k,config:s,isEnabled:d,isNone:m}}(jQuery),up.transition=up.motion.transition,up.animation=up.motion.animation,up.morph=up.motion.morph,up.animate=up.motion.animate}.call(this),function(){var t=[].slice;up.proxy=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F,$,A,D,O,M,R,U,j;return U=up.util,n=void 0,S=void 0,D=void 0,b=void 0,O=void 0,C=[],l=U.config({slowDelay:300,preloadDelay:75,cacheSize:70,cacheExpiry:3e5,maxRequests:4,wrapMethods:["PATCH","PUT","DELETE"],safeMethods:["GET","OPTIONS","HEAD"]}),i=new up.Cache({size:function(){return l.cacheSize},expiry:function(){return l.cacheExpiry},key:function(t){return up.Request.wrap(t).cacheKey()},cachable:function(t){return up.Request.wrap(t).isCachable()}}),p=function(t){var e,n,r,o,u,s,a;for(t=up.Request.wrap(t),n=[t],"html"!==t.target&&(s=t.copy({target:"html"}),n.push(s),"body"!==t.target&&(u=t.copy({target:"body"}),n.push(u))),r=0,o=n.length;o>r;r++)if(e=n[r],a=i.get(e))return a},u=function(){return clearTimeout(S),S=null},s=function(){return clearTimeout(D),D=null},F=function(){return n=null,u(),s(),b=0,l.reset(),i.clear(),O=!1,C=[]},F(),y=function(){var e,n,r,o,i;return e=1<=arguments.length?t.call(arguments,0):[],r=U.extractOptions(e),U.isGiven(e[0])&&(r.url=e[0]),n=r.cache===!1,i=up.Request.wrap(r),i.isSafe()||a(),!n&&(o=p(i))?up.puts("Re-using cached response for %s %s",i.method,i.url):(o=v(i),A(i,o),o["catch"](function(t){return P(i)})),r.preload||(g(),U.always(o,m)),o},r=function(){var e;return e=1<=arguments.length?t.call(arguments,0):[],up.log.warn("up.ajax() has been deprecated. Use up.request() instead."),new Promise(function(t,n){var r;return r=function(e){return t(e.text)},y.apply(null,e).then(r,n)})},h=function(){return 0===b},c=function(){return b>0},g=function(){var t;return b+=1,D?void 0:(t=function(){return c()?(up.emit("up:proxy:slow",{message:"Proxy is slow to respond"}),O=!0):void 0},D=U.setTimer(l.slowDelay,t))},m=function(){return b-=1,h()&&(s(),O)?(up.emit("up:proxy:recover",{message:"Proxy has recovered from slow response"}),O=!1):void 0},v=function(t){return b<l.maxRequests?d(t):E(t)},E=function(t){var e;return up.puts("Queuing request for %s %s",t.method,t.url),e=function(){return d(t)},e=U.previewable(e),C.push(e),e.promise},d=function(t){var e,n;return e={request:t,message:["Loading %s %s",t.method,t.url]},up.bus.nobodyPrevents("up:proxy:load",e)?(n=t.send(),U.always(n,$),U.always(n,w),n):(U.microtask(w),Promise.reject(new Error("Event up:proxy:load was prevented")))},x=function(t){var e,n;return n=t.request,t.url&&n.url!==t.url?(e=n.copy({method:t.method,url:t.url}),up.proxy.alias(n,e)):void 0},$=function(t){return t.isFatalError()?up.emit("up:proxy:fatal",{message:"Fatal error during request",request:t.request,response:t}):(t.isError()||x(t),up.emit("up:proxy:loaded",{message:["Server responded with HTTP %d (%d bytes)",t.status,t.text.length],request:t.request,response:t}))},w=function(){var t;return void("function"==typeof(t=C.shift())&&t())},o=i.alias,A=i.set,P=i.remove,a=i.clear,up.bus.renamedEvent("up:proxy:received","up:proxy:loaded"),T=function(t){var e,r;return r=parseInt(U.presentAttr(t,"up-delay"))||l.preloadDelay,t.is(n)?void 0:(n=t,u(),e=function(){return U.muteRejection(k(t)),n=null},M(e,r))},M=function(t,e){return S=setTimeout(t,e)},R=function(t){return t.is(n)?(n=void 0,u()):void 0},k=function(t){var n;return n=e(t),up.link.isSafe(n)?up.log.group("Preloading link %o",n.get(0),function(){var t;return t=up.link.followVariantForLink(n),t.preloadLink(n)}):Promise.reject(new Error("Won't preload unsafe link"))},f=function(t){return U.contains(l.safeMethods,t)},j=function(t,e,n){return U.contains(l.wrapMethods,t)&&(e=U.appendRequestData(e,up.protocol.config.methodParam,t,n),t="POST"),[t,e]},up.compiler("a[up-preload], [up-href][up-preload]",function(t){return up.link.isSafe(t)?(t.on("mouseenter touchstart",function(e){return up.link.shouldProcessEvent(e,t)?T(t):void 0}),t.on("mouseleave",function(){return R(t)})):void 0}),up.on("up:framework:reset",F),{preload:k,ajax:r,request:y,get:p,alias:o,clear:a,remove:P,isIdle:h,isBusy:c,isSafeMethod:f,wrapMethod:j,config:l}}(jQuery),up.ajax=up.proxy.ajax,up.request=up.proxy.request}.call(this),function(){up.link=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m;return d=up.util,m=function(t,e){var n;return e=d.options(e),n=d.option(e.target,"body"),up.replace(n,t,e)},u=function(e,n){var r,o;return r=t(e),o=a(r),o.followLink(r,n)},o=function(e,n){var r,o,i;return r=t(e),n=d.options(n),i=d.option(r.attr("up-href"),r.attr("href")),o=d.option(n.target,r.attr("up-target")),n.failTarget=d.option(n.failTarget,r.attr("up-fail-target")),n.fallback=d.option(n.fallback,r.attr("up-fallback")),n.transition=d.option(n.transition,d.castedAttr(r,"up-transition"),"none"),n.failTransition=d.option(n.failTransition,d.castedAttr(r,"up-fail-transition"),"none"),n.history=d.option(n.history,d.castedAttr(r,"up-history")),n.reveal=d.option(n.reveal,d.castedAttr(r,"up-reveal"),!0),n.failReveal=d.option(n.failReveal,d.castedAttr(r,"up-fail-reveal"),!0),n.cache=d.option(n.cache,d.castedAttr(r,"up-cache")),n.restoreScroll=d.option(n.restoreScroll,d.castedAttr(r,"up-restore-scroll")),n.method=s(r,n),n.origin=d.option(n.origin,r),n.layer=d.option(n.layer,r.attr("up-layer"),"auto"),n.failLayer=d.option(n.failLayer,r.attr("up-fail-layer"),"auto"),n.confirm=d.option(n.confirm,r.attr("up-confirm")),n=d.merge(n,up.motion.animateOptions(n,r)),up.browser.whenConfirmed(n).then(function(){return up.replace(o,i,n)})},i=function(t,e){return e=d.options(e),e.preload=!0,o(t,e)},s=function(e,n){var r;return r=t(e),n=d.options(n),d.option(n.method,r.attr("up-method"),r.attr("data-method"),"get").toUpperCase()},r=function(t){},l=[],n=function(t,e){var n;return n=new up.FollowVariant(t,e),l.push(n),n.registerEvents(),n},p=function(t){return!!a(t,{"default":!1})},a=function(n,r){var o,i;return r=d.options(r),o=t(n),i=d.detect(l,function(t){return t.matchesLink(o)}),r["default"]!==!1&&(i||(i=e)),i},h=function(e){var n;return n=t(e),p(n)?void 0:n.attr("up-follow","")},f=function(e,n){var r,o;return o=e.target,d.isUnmodifiedMouseEvent(e)?o===n.get(0)?!0:(r=t(o).closest("a, [up-href], "+up.form.fieldSelector()).not(n),r.length?!1:!0):!1},c=function(e,n){var r,o;return r=t(e),o=s(r,n),up.proxy.isSafeMethod(o)},e=n("[up-target], [up-follow]",{follow:function(t,e){return o(t,e)},preload:function(t,e){return i(t,e)}}),up.macro("[up-dash]",function(t){var e,n;return n=d.castedAttr(t,"up-dash"),t.removeAttr("up-dash"),e={"up-preload":"","up-instant":""},n===!0?h(t):e["up-target"]=n,d.setMissingAttrs(t,e)}),up.macro("[up-expand]",function(e){var n,r,o,i,u,s,a,l,p,c;if(n=e.find("a, [up-href]"),(p=e.attr("up-expand"))&&(n=n.filter(p)),u=n.get(0)){for(c=/^up-/,a={},a["up-href"]=t(u).attr("href"),l=u.attributes,o=0,i=l.length;i>o;o++)r=l[o],s=r.name,s.match(c)&&(a[s]=r.value);return d.setMissingAttrs(e,a),e.removeAttr("up-expand"),h(e)}}),{visit:m,follow:u,makeFollowable:h,isSafe:c,isFollowable:p,shouldProcessEvent:f,followMethod:s,addFollowVariant:n,followVariantForLink:a,allowDefault:r}}(jQuery),up.visit=up.link.visit,up.follow=up.link.follow}.call(this),function(){var t=[].slice;up.form=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m;return d=up.util,r=d.config({validateTargets:["[up-fieldset]:has(&)","fieldset:has(&)","label:has(&)","form:has(&)"],fields:[":input"],observeDelay:0}),a=function(){return r.reset()},o=function(){return r.fields.join(",")},p=function(t,n){var r,o,i;return r=e(t).closest("form"),n=d.options(n),o=d.option(n.target,r.attr("up-target"),"body"),i=d.option(n.url,r.attr("action"),up.browser.url()),n.failTarget=d.option(n.failTarget,r.attr("up-fail-target"))||d.selectorForElement(r),n.reveal=d.option(n.reveal,d.castedAttr(r,"up-reveal"),!0),n.failReveal=d.option(n.failReveal,d.castedAttr(r,"up-fail-reveal"),!0),n.fallback=d.option(n.fallback,r.attr("up-fallback")),n.history=d.option(n.history,d.castedAttr(r,"up-history"),!0),n.transition=d.option(n.transition,d.castedAttr(r,"up-transition"),"none"),n.failTransition=d.option(n.failTransition,d.castedAttr(r,"up-fail-transition"),"none"),n.method=d.option(n.method,r.attr("up-method"),r.attr("data-method"),r.attr("method"),"post").toUpperCase(),n.headers=d.option(n.headers,{}),n.cache=d.option(n.cache,d.castedAttr(r,"up-cache")),n.restoreScroll=d.option(n.restoreScroll,d.castedAttr(r,"up-restore-scroll")),n.origin=d.option(n.origin,r),n.layer=d.option(n.layer,r.attr("up-layer"),"auto"),n.failLayer=d.option(n.failLayer,r.attr("up-fail-layer"),"auto"),n.data=d.requestDataFromForm(r),n=d.merge(n,up.motion.animateOptions(n,r)),n.validate&&(n.headers||(n.headers={}),n.transition=!1,n.failTransition=!1,n.headers[up.protocol.config.validateHeader]=n.validate),up.bus.whenEmitted("up:form:submit",{$element:r}).then(function(){var t;return up.feedback.start(r),up.browser.canPushState()||n.history===!1?(t=up.replace(o,i,n),d.always(t,function(){return up.feedback.stop(r)}),t):(r.get(0).submit(),d.unresolvablePromise())})},u=function(){var n,i,u,a,l,p,c,h,f,m;return m=arguments[0],c=2<=arguments.length?t.call(arguments,1):[],h={},a=void 0,1===c.length?a=c[0]:c.length>1&&(h=d.options(c[0]),a=c[1]),n=e(m),u=null,f=d.option(a,d.presentAttr(n,"up-observe")),u=d.isString(f)?new Function("value","$field",f):f||up.fail("up.observe: No change callback given"),l=d.option(d.presentAttr(n,"up-delay"),h.delay,r.observeDelay),l=parseInt(l),i=d.selectInSubtree(n,o()),p=d.map(i,function(t){return s(e(t),l,u)}),d.sequence.apply(d,p)},s=function(t,e,n){var r;return r=new up.FieldObserver(t,{delay:e,callback:n}),r.start(),r.stop},n=function(t,e){return u(t,e,function(t,e){var n;return n=e.closest("form"),up.feedback.start(e,function(){return p(n)})})},l=function(t,e){var n;return n=d.option(e.target,t.attr("up-validate")),d.isBlank(n)&&(n||(n=d.detect(r.validateTargets,function(n){var r;return r=up.dom.resolveSelector(n,e.origin),t.closest(r).length}))),d.isBlank(n)&&up.fail("Could not find default validation target for %o (tried ancestors %o)",t.get(0),r.validateTargets),d.isString(n)||(n=d.selectorForElement(n)),n},m=function(t,n){var r,o,i;return r=e(t),n=d.options(n),n.origin=r,n.target=l(r,n),n.failTarget=n.target,n.reveal=d.option(n.reveal,d.castedAttr(r,"up-reveal"),!1),n.history=!1,n.headers=d.option(n.headers,{}),n.validate=r.attr("name")||"__none__",n=d.merge(n,up.motion.animateOptions(n,r)),o=r.closest("form"),i=up.submit(o,n)},f=function(t){var e,n,r,o;return t.is("input[type=checkbox]")?t.is(":checked")?(r=t.val(),n=":checked"):n=":unchecked":t.is("input[type=radio]")?(e=t.closest("form, body").find("input[type='radio'][name='"+t.attr("name")+"']:checked"),e.length?(n=":checked",r=e.val()):n=":unchecked"):r=t.val(),o=[],d.isPresent(r)?(o.push(r),o.push(":present")):o.push(":blank"),d.isPresent(n)&&o.push(n),o},h=function(t,n){var r,o,i;return r=e(t),n=d.options(n),i=d.option(n.target,r.attr("up-switch")),d.isPresent(i)||up.fail("No switch target given for %o",r.get(0)),o=f(r),e(i).each(function(){return c(e(this),o)})},c=function(t,n){var r,o,u,s;return r=e(t),n||(n=f(i(r))),(o=r.attr("up-hide-for"))?(o=o.split(" "),u=0===d.intersect(n,o).length):(s=(s=r.attr("up-show-for"))?s.split(" "):[":present",":checked"],u=d.intersect(n,s).length>0),r.toggle(u),r.addClass("up-switched")},i=function(t){var n,r;return n=e("[up-switch]"),r=d.detect(n,function(n){var r;return r=e(n).attr("up-switch"),t.is(r)}),r?e(r):d.fail("Could not find [up-switch] field for %o",t.get(0))},up.on("submit","form[up-target]",function(t,e){return up.bus.consumeAction(t),d.muteRejection(p(e))}),up.on("change","[up-validate]",function(t,e){return d.muteRejection(m(e))}),up.compiler("[up-switch]",function(t){return h(t)}),up.on("change","[up-switch]",function(t,e){return h(e)}),up.compiler("[up-show-for]:not(.up-switched), [up-hide-for]:not(.up-switched)",function(t){return c(t)}),up.compiler("[up-observe]",function(t){return u(t)}),up.compiler("[up-autosubmit]",function(t){return n(t)}),up.compiler("[autofocus]",{batch:!0},function(t){return t.last().focus()}),up.on("up:framework:reset",a),{config:r,submit:p,observe:u,validate:m,switchTargets:h,autosubmit:n,fieldSelector:o}}(jQuery),up.submit=up.form.submit,up.observe=up.form.observe,up.autosubmit=up.form.autosubmit,up.validate=up.form.validate}.call(this),function(){up.popup=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y;return g=up.util,a=g.config({openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:150,closeDuration:100,openEasing:null,closeEasing:null,position:"bottom-right",history:!1}),m=g.config({phase:"closed",$anchor:null,$popup:null,position:null,sticky:null,url:null,coveredUrl:null,coveredTitle:null}),i=new g.DivertibleChain,d=function(){var t;return null!=(t=m.$popup)&&t.remove(),m.reset(),i.reset(),a.reset()},e=function(){var t,e,n;switch(n={},e=g.measure(m.$popup),g.isFixed(m.$anchor)?(t=m.$anchor.get(0).getBoundingClientRect(),n.position="fixed"):t=g.measure(m.$anchor),m.position){case"bottom-right":n.top=t.top+t.height,n.left=t.left+t.width-e.width;break;case"bottom-left":n.top=t.top+t.height,n.left=t.left;break;case"top-right":n.top=t.top-e.height,n.left=t.left+t.width-e.width;break;case"top-left":n.top=t.top-e.height,n.left=t.left;break;default:up.fail("Unknown position option '%s'",m.position)}return m.$popup.attr("up-position",m.position),g.writeInlineStyle(m.$popup,n)},c=function(){return m.coveredTitle=null,m.coveredUrl=null},p=function(t){var e;return e=g.$createElementFromSelector(".up-popup"),g.$createPlaceholder(t,e),e.hide(),e.appendTo(document.body),m.$popup=e},y=function(){return m.$popup.show()},h=function(){return"opened"===m.phase||"opening"===m.phase},n=function(t,e){return i.asap(s,function(){return r(t,e)})},r=function(n,r){var o,i,u,s,l,c,h;return o=t(n),o.length||up.fail("Cannot attach popup to non-existing element %o",n),r=g.options(r),h=g.option(g.pluckKey(r,"url"),o.attr("up-href"),o.attr("href")),s=g.option(g.pluckKey(r,"html")),h||s||up.fail("up.popup.attach() requires either an { url } or { html } option"),c=g.option(g.pluckKey(r,"target"),o.attr("up-popup"))||up.fail("No target selector given for [up-popup]"),l=g.option(r.position,o.attr("up-position"),a.position),r.animation=g.option(r.animation,o.attr("up-animation"),a.openAnimation),r.sticky=g.option(r.sticky,g.castedAttr(o,"up-sticky"),a.sticky),r.history=up.browser.canPushState()?g.option(r.history,g.castedAttr(o,"up-history"),a.history):!1,r.confirm=g.option(r.confirm,o.attr("up-confirm")),r.method=up.link.followMethod(o,r),r.layer="popup",r.failTarget=g.option(r.failTarget,o.attr("up-fail-target")),r.failLayer=g.option(r.failLayer,o.attr("up-fail-layer"),"auto"),r.provideTarget=function(){return p(c)},i=up.motion.animateOptions(r,o,{duration:a.openDuration,easing:a.openEasing}),u=g.merge(r,{animation:!1}),r.preload&&h?up.replace(c,h,r):up.browser.whenConfirmed(r).then(function(){return up.bus.whenEmitted("up:popup:open",{url:h,message:"Opening popup"}).then(function(){var t;return m.phase="opening",m.$anchor=o,m.position=l,r.history&&(m.coveredUrl=up.browser.url(),m.coveredTitle=document.title),m.sticky=r.sticky,t=s?up.extract(c,s,u):up.replace(c,h,u),t=t.then(function(){return e(),y(),up.animate(m.$popup,r.animation,i)}),t=t.then(function(){return m.phase="opened",up.emit("up:popup:opened",{message:"Popup opened"})})})})},u=function(t){return i.asap(function(){return s(t)})},s=function(t){var e;return h()?(t=g.options(t,{animation:a.closeAnimation,history:m.coveredUrl,title:m.coveredTitle}),e=up.motion.animateOptions(t,{duration:a.closeDuration,easing:a.closeEasing}),g.assign(t,e),up.bus.whenEmitted("up:popup:close",{message:"Closing popup",$element:m.$popup}).then(function(){return m.phase="closing",m.url=null,m.coveredUrl=null,m.coveredTitle=null,up.destroy(m.$popup,t).then(function(){return m.phase="closed",m.$popup=null,m.$anchor=null,m.sticky=null,up.emit("up:popup:closed",{message:"Popup closed"})})})):Promise.resolve()},f=function(t,e){return e=g.options(e),e.preload=!0,r(t,e)},v=function(t,e){return g.hasClass(t,"up-current")?u():n(t,e)},o=function(){return m.sticky?void 0:(c(),u())},l=function(e){var n;return n=t(e),n.closest(".up-popup").length>0},up.link.addFollowVariant("[up-popup]",{follow:function(t,e){return v(t,e)},preload:function(t,e){return f(t,e)}}),up.on("click up:action:consumed",function(e){var n;return n=t(e.target),n.closest(".up-popup, [up-popup]").length?void 0:u()}),up.on("up:fragment:inserted",function(t,e){var n;if(l(e)){if(n=e.attr("up-source"))return m.url=n}else if(t.origin&&l(t.origin))return o()}),up.bus.onEscape(u),up.on("click",".up-popup [up-close]",function(t,e){return u(),up.bus.consumeAction(t)}),up.on("up:history:restore",u),up.on("up:framework:reset",d),{attach:n,close:u,url:function(){return m.url},coveredUrl:function(){return m.coveredUrl},config:a,contains:l,isOpen:h}}(jQuery)}.call(this),function(){up.modal=function(t){var e,n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k,T,S,E,C,x,P,F;return C=up.util,u=C.config({maxWidth:null,width:null,height:null,history:!0,openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:null,closeDuration:null,openEasing:null,closeEasing:null,backdropOpenAnimation:"fade-in",backdropCloseAnimation:"fade-out",closeLabel:"\xd7",closable:!0,sticky:!1,flavor:"default",position:null,template:function(t){return'<div class="up-modal">\n <div class="up-modal-backdrop"></div>\n <div class="up-modal-viewport">\n <div class="up-modal-dialog">\n <div class="up-modal-content"></div>\n <div class="up-modal-close" up-close>'+t.closeLabel+"</div>\n </div>\n </div>\n</div>"}}),d=C.openConfig({"default":{}}),S=C.config(function(){return{phase:"closed",$anchor:null,$modal:null,sticky:null,closable:null,flavor:null,url:null,coveredUrl:null,coveredTitle:null,position:null,unshifters:[]}}),r=new C.DivertibleChain,k=function(){var t;return null!=(t=S.$modal)&&t.remove(),x(),S.reset(),r.reset(),u.reset(),d.reset()},E=function(){var t;return t=h("template"),C.evalOption(t,{closeLabel:h("closeLabel")})},l=function(){return S.coveredTitle=null,S.coveredUrl=null},a=function(e,n){var r,o,i,u;return i=t(E()),i.attr("up-flavor",S.flavor),C.isPresent(S.position)&&i.attr("up-position",S.position),o=i.find(".up-modal-dialog"),u=C.only(n,"width","maxWidth","height"),C.writeInlineStyle(o,u),S.closable||i.find(".up-modal-close").remove(),r=i.find(".up-modal-content"),C.$createPlaceholder(e,r),i.hide(),i.appendTo(document.body),S.$modal=i},P=function(){return S.$modal.show()},T=function(){var e,n,r,o,i;return C.documentHasVerticalScrollbar()?(e=t("body"),o=C.scrollbarWidth(),n=C.readComputedStyleNumber(e,"paddingRight"),r=o+n,i=C.writeTemporaryStyle(e,{paddingRight:r,overflowY:"hidden"}),S.unshifters.push(i),up.layout.anchoredRight().each(function(){var e,n,r,i;return e=t(this),n=C.readComputedStyleNumber(e,"right"),r=o+n,i=C.writeTemporaryStyle(e,{right:r}),S.unshifters.push(i)})):void 0},x=function(){var t,e;for(t=[];e=S.unshifters.pop();)t.push(e());return t},v=function(){return"opened"===S.phase||"opening"===S.phase},m=function(e,n){return n=C.options(n),n.$link=t(e),y(n)},w=function(t,e){return e=C.options(e),e.$link=t,e.preload=!0,b(e)},F=function(t,e){return e=C.options(e),e.url=t,y(e)},p=function(t,e,n){return n=C.options(n),n.html=e,n.history=C.option(n.history,!1),n.target=t,y(n)},y=function(t){return r.asap(i,function(){return b(t)})},b=function(t){var n,r,o,i,s;return t=C.options(t),n=C.option(C.pluckKey(t,"$link"),C.nullJQuery()),s=C.option(C.pluckKey(t,"url"),n.attr("up-href"),n.attr("href")),o=C.option(C.pluckKey(t,"html")),i=C.option(C.pluckKey(t,"target"),n.attr("up-modal"),"body"),t.flavor=C.option(t.flavor,n.attr("up-flavor"),u.flavor),t.position=C.option(t.position,n.attr("up-position"),h("position",t.flavor)),t.position=C.evalOption(t.position,{$link:n}),t.width=C.option(t.width,n.attr("up-width"),h("width",t.flavor)),t.maxWidth=C.option(t.maxWidth,n.attr("up-max-width"),h("maxWidth",t.flavor)),t.height=C.option(t.height,n.attr("up-height"),h("height")),t.animation=C.option(t.animation,n.attr("up-animation"),h("openAnimation",t.flavor)),t.animation=C.evalOption(t.animation,{position:t.position}),t.backdropAnimation=C.option(t.backdropAnimation,n.attr("up-backdrop-animation"),h("backdropOpenAnimation",t.flavor)),t.backdropAnimation=C.evalOption(t.backdropAnimation,{position:t.position}),t.sticky=C.option(t.sticky,C.castedAttr(n,"up-sticky"),h("sticky",t.flavor)),t.closable=C.option(t.closable,C.castedAttr(n,"up-closable"),h("closable",t.flavor)),t.confirm=C.option(t.confirm,n.attr("up-confirm")),t.method=up.link.followMethod(n,t),t.layer="modal",t.failTarget=C.option(t.failTarget,n.attr("up-fail-target")),t.failLayer=C.option(t.failLayer,n.attr("up-fail-layer"),"auto"),r=up.motion.animateOptions(t,n,{duration:h("openDuration",t.flavor),easing:h("openEasing",t.flavor)}),t.history=C.option(t.history,C.castedAttr(n,"up-history"),h("history",t.flavor)),up.browser.canPushState()||(t.history=!1),t.provideTarget=function(){return a(i,t)},t.preload?up.replace(i,s,t):up.browser.whenConfirmed(t).then(function(){return up.bus.whenEmitted("up:modal:open",{url:s,message:"Opening modal"}).then(function(){var n,u;return S.phase="opening",S.flavor=t.flavor,S.sticky=t.sticky,S.closable=t.closable,S.position=t.position,t.history&&(S.coveredUrl=up.browser.url(),S.coveredTitle=document.title),n=C.merge(t,{animation:!1}),u=o?up.extract(i,o,n):up.replace(i,s,n),u=u.then(function(){return T(),P(),e(t.animation,t.backdropAnimation,r)}),u=u.then(function(){return S.phase="opened",up.emit("up:modal:opened",{message:"Modal opened"})})})})},o=function(t){return r.asap(function(){return i(t)})},i=function(t){var n,r,o,i;return t=C.options(t),v()?(i=C.option(t.animation,h("closeAnimation")),i=C.evalOption(i,{position:S.position}),r=C.option(t.backdropAnimation,h("backdropCloseAnimation")),r=C.evalOption(r,{position:S.position}),n=up.motion.animateOptions(t,{duration:h("closeDuration"),easing:h("closeEasing")}),o=C.options(C.except(t,"animation","duration","easing","delay"),{history:S.coveredUrl,title:S.coveredTitle}),up.bus.whenEmitted("up:modal:close",{$element:S.$modal,message:"Closing modal"}).then(function(){var t;return S.phase="closing",S.url=null,S.coveredUrl=null,S.coveredTitle=null,t=e(i,r,n),t=t.then(function(){return up.destroy(S.$modal,o)}),t=t.then(function(){return x(),S.phase="closed",S.$modal=null,S.flavor=null,S.sticky=null,S.closable=null,S.position=null,up.emit("up:modal:closed",{message:"Modal closed"})})})):Promise.resolve()},g=function(t){return null==t&&(t=!0),S.$modal.toggleClass("up-modal-animating",t)},e=function(t,e,n){var r;return up.motion.isNone(t)?Promise.resolve():(g(),r=Promise.all([up.animate(S.$modal.find(".up-modal-viewport"),t,n),up.animate(S.$modal.find(".up-modal-backdrop"),e,n)]),r=r.then(function(){return g(!1)}))},n=function(){return S.sticky?void 0:(l(),o())},s=function(e){var n;return n=t(e),n.closest(".up-modal").length>0},c=function(t,e){return null==e&&(e={}),up.log.warn("up.modal.flavor() is deprecated. Use the up.modal.flavors property instead."),C.assign(f(t),e)},f=function(t){return d[t]||(d[t]={})},h=function(t,e){var n;return null==e&&(e=S.flavor),e&&(n=f(e)[t]),C.isMissing(n)&&(n=u[t]),n},up.link.addFollowVariant("[up-modal]",{follow:function(t,e){return m(t,e)},preload:function(t,e){return w(t,e)}}),up.on("click",".up-modal",function(e){var n;if(S.closable)return n=t(e.target),n.closest(".up-modal-dialog").length||n.closest("[up-modal]").length?void 0:(up.bus.consumeAction(e),o())}),up.on("up:fragment:inserted",function(t,e){var r;if(s(e)){if(r=e.attr("up-source"))return S.url=r}else if(t.origin&&s(t.origin)&&!up.popup.contains(e))return n()}),up.bus.onEscape(function(){return S.closable?o():void 0}),up.on("click",".up-modal [up-close]",function(t,e){return o(),up.bus.consumeAction(t)}),up.macro("a[up-drawer], [up-href][up-drawer]",function(t){var e;return e=t.attr("up-drawer"),t.attr({"up-modal":e,"up-flavor":"drawer"})}),d.drawer={openAnimation:function(t){switch(t.position){case"left":return"move-from-left";case"right":
4
+ return"move-from-right"}},closeAnimation:function(t){switch(t.position){case"left":return"move-to-left";case"right":return"move-to-right"}},position:function(t){return C.isPresent(t.$link)?C.horizontalScreenHalf(t.$link):"left"}},up.on("up:history:restore",o),up.on("up:framework:reset",k),{visit:F,follow:m,extract:p,close:o,url:function(){return S.url},coveredUrl:function(){return S.coveredUrl},config:u,flavors:d,contains:s,isOpen:v,flavor:c}}(jQuery)}.call(this),function(){up.tooltip=function(t){var e,n,r,o,i,u,s,a,l,p,c,h;return h=up.util,s=h.config({position:"top",openAnimation:"fade-in",closeAnimation:"fade-out",openDuration:100,closeDuration:50,openEasing:null,closeEasing:null}),c=h.config({phase:"closed",$anchor:null,$tooltip:null,position:null}),o=new h.DivertibleChain,p=function(){var t;return null!=(t=c.$tooltip)&&t.remove(),c.reset(),o.reset(),s.reset()},e=function(){var t,e,n;switch(e={},n=h.measure(c.$tooltip),h.isFixed(c.$anchor)?(t=c.$anchor.get(0).getBoundingClientRect(),e.position="fixed"):t=h.measure(c.$anchor),c.position){case"top":e.top=t.top-n.height,e.left=t.left+.5*(t.width-n.width);break;case"left":e.top=t.top+.5*(t.height-n.height),e.left=t.left-n.width;break;case"right":e.top=t.top+.5*(t.height-n.height),e.left=t.left+t.width;break;case"bottom":e.top=t.top+t.height,e.left=t.left+.5*(t.width-n.width);break;default:up.fail("Unknown position option '%s'",c.position)}return c.$tooltip.attr("up-position",c.position),h.writeInlineStyle(c.$tooltip,e)},a=function(t){var e;return e=h.$createElementFromSelector(".up-tooltip"),h.isGiven(t.text)?e.text(t.text):e.html(t.html),e.appendTo(document.body),c.$tooltip=e},n=function(t,e){return null==e&&(e={}),o.asap(u,function(){return r(t,e)})},r=function(n,r){var o,i,u,l,p,f;return o=t(n),r=h.options(r),l=h.option(r.html,o.attr("up-tooltip-html")),f=h.option(r.text,o.attr("up-tooltip")),p=h.option(r.position,o.attr("up-position"),s.position),u=h.option(r.animation,h.castedAttr(o,"up-animation"),s.openAnimation),i=up.motion.animateOptions(r,o,{duration:s.openDuration,easing:s.openEasing}),c.phase="opening",c.$anchor=o,a({text:f,html:l}),c.position=p,e(),up.animate(c.$tooltip,u,i).then(function(){return c.phase="opened"})},i=function(t){return o.asap(function(){return u(t)})},u=function(t){var e;return l()?(t=h.options(t,{animation:s.closeAnimation}),e=up.motion.animateOptions(t,{duration:s.closeDuration,easing:s.closeEasing}),h.assign(t,e),c.phase="closing",up.destroy(c.$tooltip,t).then(function(){return c.phase="closed",c.$tooltip=null,c.$anchor=null})):Promise.resolve()},l=function(){return"opening"===c.phase||"opened"===c.phase},up.compiler("[up-tooltip], [up-tooltip-html]",function(t){return t.on("mouseenter",function(){return n(t)}),t.on("mouseleave",function(){return i()})}),up.on("click up:action:consumed",function(t){return i()}),up.on("up:framework:reset",p),up.bus.onEscape(function(){return i()}),{config:s,attach:n,isOpen:l,close:i}}(jQuery)}.call(this),function(){var t=[].slice;up.feedback=function(e){var n,r,o,i,u,s,a,l,p,c,h,f,d,m,v,g,y,b,w,k;return g=up.util,s=g.config({currentClasses:["up-current"],navs:["[up-nav]"]}),h=void 0,a=void 0,f=function(){return s.reset(),h=void 0,a=void 0},n="up-active",o="a, [up-href]",p=function(){return s.navs.join(",")},c=function(t){return g.isPresent(t)?g.normalizeUrl(t,{stripTrailingSlash:!0}):void 0},r="up-normalized-urls",d=function(t){var e;return(e=t.data(r))||(e=u(t),t.data(r,e)),e},u=function(t){var e,n,r,o,i,u,s,a,l,p;if(l=[],up.link.isSafe(t))for(u=["href","up-href","up-alias"],n=0,o=u.length;o>n;n++)if(e=u[n],p=g.presentAttr(t,e))for(s=p.split(/\s+/),r=0,i=s.length;i>r;r++)a=s[r],"#"!==a&&(a=c(a),l.push(a));return l},i=function(){var t;return t=[up.browser.url(),up.modal.url(),up.modal.coveredUrl(),up.popup.url(),up.popup.coveredUrl()],new up.UrlSet(t,{normalizeUrl:c})},b=function(){return h=a,a=i(),a.isEqual(h)?void 0:y(e("body"))},y=function(t){var e,n;return e=g.selectInSubtree(t,p()),n=g.selectInSubtree(e,o),w(n)},k=function(t){var e;return t.closest(p()).length?(e=g.selectInSubtree(t,o),w(e)):y(t)},w=function(t){return a||(a=i()),g.each(t,function(t){var n,r,o,i,u,l,p,c,h,f,m,v;if(n=e(t),v=d(n),r=t.classList,a.matchesAny(v)){for(c=s.currentClasses,f=[],o=0,l=c.length;l>o;o++)u=c[o],f.push(r.add(u));return f}for(h=s.currentClasses,m=[],i=0,p=h.length;p>i;i++)u=h[i],m.push(r.remove(u));return m})},l=function(t){var n;return n=e(t),n.is(o)&&(n=g.presence(n.parent(o))||n),n},m=function(){var e,r,o,i,u,s;return o=1<=arguments.length?t.call(arguments,0):[],i=o.shift(),r=o.pop(),u=g.options(o[0]),e=l(i),u.preload||e.addClass(n),r?(s=r(),g.isPromise(s)?g.always(s,function(){return v(e)}):up.warn("Expected block to return a promise, but got %o",s),s):void 0},v=function(t){var e;return e=l(t),e.removeClass(n)},up.on("up:history:pushed up:history:replaced up:history:restored up:modal:opened up:modal:closed up:popup:opened up:popup:closed",function(t){return b()}),up.on("up:fragment:inserted",function(t,e){return k(e)}),up.on("up:framework:reset",f),{config:s,start:m,stop:v}}(jQuery),up.renamedModule("navigation","feedback")}.call(this),function(){up.radio=function(t){var e,n,r,o;return o=up.util,e=o.config({hungry:["[up-hungry]"],hungryTransition:null}),r=function(){return e.reset()},n=function(){return e.hungry.join(",")},up.on("up:framework:reset",r),{config:e,hungrySelector:n}}(jQuery)}.call(this),function(){up.rails=function(t){var e,n;return n=up.util,e=function(){return!!t.rails},n.each(["method","confirm"],function(t){var r,o;return r="data-"+t,o="up-"+t,up.macro("["+r+"]",function(t){var i;return e()&&up.link.isFollowable(t)?(i={},i[o]=t.attr(r),n.setMissingAttrs(t,i),t.removeAttr(r)):void 0})})}(jQuery)}.call(this),function(){up.boot()}.call(this);
@@ -526,10 +526,11 @@ up.dom = (($) ->
526
526
  $parent = $old.parent()
527
527
 
528
528
  morphOptions = u.merge options,
529
- afterInsert: ->
530
- up.hello($new, options)
529
+ beforeStart: ->
531
530
  markElementAsDestroying($old)
532
531
  emitFragmentDestroy($old, log: false)
532
+ afterInsert: ->
533
+ up.hello($new, options)
533
534
  beforeDetach: ->
534
535
  up.syntax.clean($old)
535
536
  afterDetach: ->
@@ -753,7 +754,8 @@ up.dom = (($) ->
753
754
 
754
755
  ###**
755
756
  Returns the first element matching the given selector, but
756
- ignores elements that are being [destroyed](/up.destroy) or [transitioned](/up.morph).
757
+ ignores elements that are being [destroyed](/up.destroy) or that are being
758
+ removed by a [transition](/up.morph).
757
759
 
758
760
  If the given argument is already a jQuery collection (or an array
759
761
  of DOM elements), the first element matching these conditions
@@ -761,6 +763,8 @@ up.dom = (($) ->
761
763
 
762
764
  Returns `undefined` if no element matches these conditions.
763
765
 
766
+ Also see the [`.up-destroying`](/up-destroying) class.
767
+
764
768
  @function up.first
765
769
  @param {string|Element|jQuery|Array<Element>} selectorOrElement
766
770
  @param {string} options.layer
@@ -876,6 +880,17 @@ up.dom = (($) ->
876
880
  # Don't log destruction for elements that are either Unpoly internals or frequently destroyed
877
881
  options.log != false && !$element.is('.up-placeholder, .up-tooltip, .up-modal, .up-popup')
878
882
 
883
+ ###**
884
+ Elements are assigned the `.up-destroying` class before they are [destroyed](/up.destroy)
885
+ or while they are being removed by a [transition](/up.morph).
886
+
887
+ If the removal is animated, the class is assigned before the animation.
888
+
889
+ Also see the [`up.first()`](/up.first) function.
890
+
891
+ @selector .up-destroying
892
+ @stable
893
+ ###
879
894
  markElementAsDestroying = ($element) ->
880
895
  $element.addClass('up-destroying')
881
896
 
@@ -342,9 +342,14 @@ up.motion = (($) ->
342
342
  transitionFn = findTransitionFn(transitionObject)
343
343
  willMorph = willAnimate($old, transitionFn, options)
344
344
 
345
- options.afterInsert ||= u.noop
346
- options.beforeDetach ||= u.noop
347
- options.afterDetach ||= u.noop
345
+ # Remove callbacks from our options hash in case transitionFn calls morph() recursively.
346
+ # If we passed on these callbacks, we might call destructors, events, etc. multiple times.
347
+ beforeStart = u.pluckKey(options, 'beforeStart') || u.noop
348
+ afterInsert = u.pluckKey(options, 'afterInsert') || u.noop
349
+ beforeDetach = u.pluckKey(options, 'beforeDetach') || u.noop
350
+ afterDetach = u.pluckKey(options, 'afterDetach') || u.noop
351
+
352
+ beforeStart()
348
353
 
349
354
  scrollNew = ->
350
355
  # Don't animate the scrolling. The { duration } option was meant for the transition.
@@ -366,7 +371,7 @@ up.motion = (($) ->
366
371
  # until absolutize() has measured the bounding box of the old element.
367
372
  afterMeasure: ->
368
373
  $new.insertBefore($old)
369
- options.afterInsert()
374
+ afterInsert()
370
375
 
371
376
  trackable = ->
372
377
  # Scroll $new into position before we start the enter animation.
@@ -382,22 +387,22 @@ up.motion = (($) ->
382
387
  transitionFn($old, $new, options)
383
388
 
384
389
  promise = promise.then ->
385
- options.beforeDetach()
390
+ beforeDetach()
386
391
  $old.detach()
387
392
  oldRemote.$bounds.remove()
388
- options.afterDetach()
393
+ afterDetach()
389
394
 
390
395
  return promise
391
396
 
392
397
  motionTracker.claim($both, trackable, options)
393
398
 
394
399
  else
395
- options.beforeDetach()
400
+ beforeDetach()
396
401
  # Swapping the elements directly with replaceWith() will cause
397
402
  # jQuery to remove all data attributes, which we use to store destructors
398
403
  swapElementsDirectly($old, $new)
399
- options.afterInsert()
400
- options.afterDetach()
404
+ afterInsert()
405
+ afterDetach()
401
406
  promise = scrollNew()
402
407
  return promise
403
408
 
@@ -4,6 +4,6 @@ module Unpoly
4
4
  # The current version of the unpoly-rails gem.
5
5
  # This version number is also used for releases of the Unpoly
6
6
  # frontend code.
7
- VERSION = '0.56.0'
7
+ VERSION = '0.56.1'
8
8
  end
9
9
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unpoly",
3
- "version": "0.56.0",
3
+ "version": "0.56.1",
4
4
  "description": "Unobtrusive JavaScript framework",
5
5
  "main": "dist/unpoly.js",
6
6
  "files": [
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- unpoly-rails (0.55.1)
4
+ unpoly-rails (0.56.0)
5
5
  rails (>= 3)
6
6
 
7
7
  GEM
@@ -1425,6 +1425,73 @@ describe 'up.dom', ->
1425
1425
  expect(input).toBeGiven()
1426
1426
  expect(document.activeElement).toBe(input)
1427
1427
 
1428
+
1429
+ it 'emits an up:fragment:destroy event while the element is still in the DOM', asyncSpec (next) ->
1430
+ $element = affix('.element')
1431
+ expect($element).toBeAttached()
1432
+
1433
+ listener = jasmine.createSpy('event listener')
1434
+ $element.on('up:fragment:destroy', listener)
1435
+
1436
+ destroyDone = up.destroy($element, animation: 'fade-out', duration: 30)
1437
+
1438
+ next ->
1439
+ expect(listener).toHaveBeenCalledWith(jasmine.objectContaining($element: $element))
1440
+ expect($element).toBeAttached()
1441
+
1442
+ next.await(destroyDone)
1443
+
1444
+ next ->
1445
+ expect($element).toBeDetached()
1446
+
1447
+ it 'emits an up:fragment:destroyed event on the former parent element after the element has been removed from the DOM', asyncSpec (next) ->
1448
+ $parent = affix('.parent')
1449
+ $element = $parent.affix('.element')
1450
+ expect($element).toBeAttached()
1451
+
1452
+ listener = jasmine.createSpy('event listener')
1453
+
1454
+ $parent.on('up:fragment:destroyed', listener)
1455
+
1456
+ destroyDone = up.destroy($element, animation: 'fade-out', duration: 30)
1457
+
1458
+ next ->
1459
+ expect(listener).not.toHaveBeenCalled()
1460
+ expect($element).toBeAttached()
1461
+
1462
+ next.await(destroyDone)
1463
+
1464
+ next ->
1465
+ expect(listener).toHaveBeenCalledWith(jasmine.objectContaining($element: $element, $parent: $parent))
1466
+ expect($element).toBeDetached()
1467
+
1468
+ it 'emits an up:fragment:destroy event while the element is still in the DOM', (done) ->
1469
+ $element = affix('.element.v1').text('v1')
1470
+ expect($element).toBeAttached()
1471
+
1472
+ listener = jasmine.createSpy('event listener')
1473
+ $element.on 'up:fragment:destroy', -> listener(u.isDetached($element))
1474
+
1475
+ extractDone = up.extract('.element', '<div class="element v2">v2</div>')
1476
+
1477
+ extractDone.then ->
1478
+ expect(listener).toHaveBeenCalledWith(false)
1479
+ done()
1480
+
1481
+ it 'emits an up:fragment:destroyed event on the former parent element after the element has been removed from the DOM', (done) ->
1482
+ $parent = affix('.parent')
1483
+ $element = $parent.affix('.element.v1').text('v1')
1484
+ expect($element).toBeAttached()
1485
+
1486
+ listener = jasmine.createSpy('event listener')
1487
+ $parent.on 'up:fragment:destroyed', -> listener(u.isDetached($element))
1488
+
1489
+ extractDone = up.extract('.element', '<div class="element v2">v2</div>')
1490
+
1491
+ extractDone.then ->
1492
+ expect(listener).toHaveBeenCalledWith(true)
1493
+ done()
1494
+
1428
1495
  describe 'cleaning up', ->
1429
1496
 
1430
1497
  it 'calls destructors on the old element', asyncSpec (next) ->
@@ -1469,6 +1536,34 @@ describe 'up.dom', ->
1469
1536
  expect('.container').toHaveText('new text')
1470
1537
  expect(destructor).toHaveBeenCalled()
1471
1538
 
1539
+ it 'marks the old element as .up-destroying before destructors', (done) ->
1540
+ destructor = jasmine.createSpy('destructor')
1541
+ up.compiler '.container', ($element) ->
1542
+ -> destructor($element.text(), $element.is('.up-destroying'))
1543
+ $container = affix('.container').text('old text')
1544
+ up.hello($container)
1545
+
1546
+ extractDone = up.extract('.container', '<div class="container">new text</div>')
1547
+
1548
+ extractDone.then ->
1549
+ expect('.container').toHaveText('new text')
1550
+ expect(destructor).toHaveBeenCalledWith('old text', true)
1551
+ done()
1552
+
1553
+ it 'marks the old element as .up-destroying before destructors after a { transition }', (done) ->
1554
+ destructor = jasmine.createSpy('destructor')
1555
+ up.compiler '.container', ($element) ->
1556
+ -> destructor($element.text(), $element.is('.up-destroying'))
1557
+ $container = affix('.container').text('old text')
1558
+ up.hello($container)
1559
+
1560
+ extractDone = up.extract('.container', '<div class="container">new text</div>', transition: 'cross-fade', duration: 100)
1561
+
1562
+ extractDone.then ->
1563
+ expect('.container').toHaveText('new text')
1564
+ expect(destructor).toHaveBeenCalledWith('old text', true)
1565
+ done()
1566
+
1472
1567
  it 'calls destructors while the element is still attached to the DOM, so destructors see ancestry and events bubble up', asyncSpec (next) ->
1473
1568
  spy = jasmine.createSpy('parent spy')
1474
1569
  up.compiler '.element', ($element) ->
@@ -1500,6 +1595,7 @@ describe 'up.dom', ->
1500
1595
  expect(spy).toHaveBeenCalledWith('old text', $parent)
1501
1596
  done()
1502
1597
 
1598
+
1503
1599
  describe 'with { transition } option', ->
1504
1600
 
1505
1601
  it 'morphs between the old and new element', asyncSpec (next) ->
@@ -1544,7 +1640,6 @@ describe 'up.dom', ->
1544
1640
  expect($('.container').length).toEqual(1)
1545
1641
  expect(u.opacity($('.container'))).toEqual(1.0)
1546
1642
 
1547
-
1548
1643
  it 'marks the old fragment as .up-destroying during the transition', asyncSpec (next) ->
1549
1644
  affix('.element').text('version 1')
1550
1645
  up.extract('.element', '<div class="element">version 2</div>', transition: 'cross-fade', duration: 200)
@@ -1558,6 +1653,34 @@ describe 'up.dom', ->
1558
1653
  expect($version2).toHaveLength(1)
1559
1654
  expect($version2).not.toHaveClass('up-destroying')
1560
1655
 
1656
+ it 'emits an up:fragment:destroy event while the old element is still in the DOM', (done) ->
1657
+ $element = affix('.element.v1').text('v1')
1658
+ expect($element).toBeAttached()
1659
+
1660
+ listener = jasmine.createSpy('event listener')
1661
+ $element.on 'up:fragment:destroy', -> listener(u.isDetached($element))
1662
+
1663
+ extractDone = up.extract('.element', '<div class="element v2">v2</div>', transition: 'cross-fade', duration: 50)
1664
+
1665
+ extractDone.then ->
1666
+ expect(listener).toHaveBeenCalledWith(false)
1667
+ done()
1668
+
1669
+ it 'emits an up:fragment:destroyed event on the former parent element after the element has been removed from the DOM', (done) ->
1670
+ $parent = affix('.parent')
1671
+ $element = $parent.affix('.element.v1').text('v1')
1672
+ expect($element).toBeAttached()
1673
+
1674
+ listener = jasmine.createSpy('event listener')
1675
+ $parent.on 'up:fragment:destroyed', -> listener(u.isDetached($element))
1676
+
1677
+ extractDone = up.extract('.element', '<div class="element v2">v2</div>', transition: 'cross-fade', duration: 50)
1678
+
1679
+ extractDone.then ->
1680
+ expect(listener).toHaveBeenCalledWith(true)
1681
+ done()
1682
+
1683
+
1561
1684
  it 'cancels an existing transition by instantly jumping to the last frame', asyncSpec (next) ->
1562
1685
  affix('.element.v1').text('version 1')
1563
1686
 
@@ -1587,6 +1710,7 @@ describe 'up.dom', ->
1587
1710
  expect($ghost3).toHaveLength(1)
1588
1711
  expect($ghost3.css('opacity')).toBeAround(0.0, 0.1)
1589
1712
 
1713
+
1590
1714
  it 'delays the resolution of the returned promise until the transition is over', (done) ->
1591
1715
  affix('.element').text('version 1')
1592
1716
  resolution = jasmine.createSpy()
@@ -1611,6 +1735,64 @@ describe 'up.dom', ->
1611
1735
  next =>
1612
1736
  expect(spy).toHaveBeenCalledWith('new text', $parent)
1613
1737
 
1738
+
1739
+ describe 'when up.morph() is called from a transition function', ->
1740
+
1741
+ it "does not emit multiple replacement events (bugfix)", (done) ->
1742
+ $element = affix('.element').text('old content')
1743
+
1744
+ transition = ($old, $new, options) ->
1745
+ up.morph($old, $new, 'cross-fade', options)
1746
+
1747
+ destroyListener = jasmine.createSpy('listener to up:fragment:destroy')
1748
+ up.on 'up:fragment:destroy', destroyListener
1749
+ destroyedListener = jasmine.createSpy('listener to up:fragment:destroyed')
1750
+ up.on 'up:fragment:destroyed', destroyedListener
1751
+ insertedListener = jasmine.createSpy('listener to up:fragment:inserted')
1752
+ up.on 'up:fragment:inserted', insertedListener
1753
+
1754
+ extractDone = up.extract('.element', '<div class="element">new content</div>', transition: transition, duration: 50, easing: 'linear')
1755
+
1756
+ extractDone.then ->
1757
+ expect(destroyListener.calls.count()).toBe(1)
1758
+ expect(destroyedListener.calls.count()).toBe(1)
1759
+ expect(insertedListener.calls.count()).toBe(1)
1760
+ done()
1761
+
1762
+ it "does not compile the element multiple times (bugfix)", (done) ->
1763
+ $element = affix('.element').text('old content')
1764
+
1765
+ transition = ($old, $new, options) ->
1766
+ up.morph($old, $new, 'cross-fade', options)
1767
+
1768
+ compiler = jasmine.createSpy('compiler')
1769
+ up.compiler '.element', compiler
1770
+
1771
+ extractDone = up.extract('.element', '<div class="element">new content</div>', transition: transition, duration: 50, easing: 'linear')
1772
+
1773
+ extractDone.then ->
1774
+ expect(compiler.calls.count()).toBe(1)
1775
+ done()
1776
+
1777
+ it "does not call destructors multiple times (bugfix)", (done) ->
1778
+ $element = affix('.element').text('old content')
1779
+
1780
+ transition = ($old, $new, options) ->
1781
+ up.morph($old, $new, 'cross-fade', options)
1782
+
1783
+ destructor = jasmine.createSpy('destructor')
1784
+ up.compiler '.element', (element) ->
1785
+ return destructor
1786
+
1787
+ up.hello($element)
1788
+
1789
+ extractDone = up.extract('.element', '<div class="element">new content</div>', transition: transition, duration: 50, easing: 'linear')
1790
+
1791
+ extractDone.then ->
1792
+ expect(destructor.calls.count()).toBe(1)
1793
+ done()
1794
+
1795
+
1614
1796
  describe 'when animation is disabled', ->
1615
1797
 
1616
1798
  beforeEach ->
@@ -2043,6 +2225,19 @@ describe 'up.dom', ->
2043
2225
  expect($('.element')).not.toExist()
2044
2226
  done()
2045
2227
 
2228
+ it 'runs an animation before removal with { animate } option', asyncSpec (next) ->
2229
+ $element = affix('.element')
2230
+ up.destroy($element, animation: 'fade-out', duration: 150, easing: 'linear')
2231
+
2232
+ next ->
2233
+ expect($element).toHaveOpacity(1.0, 0.2)
2234
+
2235
+ next.after 75, ->
2236
+ expect($element).toHaveOpacity(0.5, 0.2)
2237
+
2238
+ next.after (75 + 20), ->
2239
+ expect($element).toBeDetached()
2240
+
2046
2241
  it 'calls destructors for custom elements', (done) ->
2047
2242
  up.compiler('.element', ($element) -> destructor)
2048
2243
  destructor = jasmine.createSpy('destructor')
@@ -2051,6 +2246,48 @@ describe 'up.dom', ->
2051
2246
  expect(destructor).toHaveBeenCalled()
2052
2247
  done()
2053
2248
 
2249
+ it 'marks the old element as .up-destroying before destructors', (done) ->
2250
+ destructor = jasmine.createSpy('destructor')
2251
+ up.compiler '.container', ($element) ->
2252
+ -> destructor($element.text(), $element.is('.up-destroying'))
2253
+ $container = affix('.container').text('old text')
2254
+ up.hello($container)
2255
+
2256
+ destroyDone = up.destroy('.container')
2257
+
2258
+ destroyDone.then ->
2259
+ expect(destructor).toHaveBeenCalledWith('old text', true)
2260
+ done()
2261
+
2262
+ it 'marks the old element as .up-destroying before destructors after an { animation }', (done) ->
2263
+ destructor = jasmine.createSpy('destructor')
2264
+ up.compiler '.container', ($element) ->
2265
+ -> destructor($element.text(), $element.is('.up-destroying'))
2266
+ $container = affix('.container').text('old text')
2267
+ up.hello($container)
2268
+
2269
+ destroyDone = up.destroy('.container', animation: 'fade-out', duration: 100)
2270
+
2271
+ destroyDone.then ->
2272
+ expect(destructor).toHaveBeenCalledWith('old text', true)
2273
+ done()
2274
+
2275
+ it 'waits until an { animation } is done before calling destructors', asyncSpec (next) ->
2276
+ destructor = jasmine.createSpy('destructor')
2277
+ up.compiler '.container', ($element) ->
2278
+ -> destructor($element.text())
2279
+ $container = affix('.container').text('old text')
2280
+ up.hello($container)
2281
+
2282
+ destroyDone = up.destroy('.container', animation: 'fade-out', duration: 100)
2283
+
2284
+ next.after 50, ->
2285
+ expect(destructor).not.toHaveBeenCalled()
2286
+
2287
+ next.after (50 + (tolerance = 70)), ->
2288
+ expect(destructor).toHaveBeenCalledWith('old text',)
2289
+
2290
+
2054
2291
  it 'allows to pass a new history entry as { history } option', (done) ->
2055
2292
  up.history.config.enabled = true
2056
2293
  affix('.element')
@@ -2066,19 +2303,6 @@ describe 'up.dom', ->
2066
2303
  expect(document.title).toEqual('Title from options')
2067
2304
  done()
2068
2305
 
2069
- it 'runs an animation before removal with { animate } option', asyncSpec (next) ->
2070
- $element = affix('.element')
2071
- up.destroy($element, animation: 'fade-out', duration: 150, easing: 'linear')
2072
-
2073
- next ->
2074
- expect($element).toHaveOpacity(1.0, 0.2)
2075
-
2076
- next.after 75, ->
2077
- expect($element).toHaveOpacity(0.5, 0.2)
2078
-
2079
- next.after (75 + 20), ->
2080
- expect($element).toBeDetached()
2081
-
2082
2306
  it 'marks the element as .up-destroying while it is animating', asyncSpec (next) ->
2083
2307
  $element = affix('.element')
2084
2308
  up.destroy($element, animation: 'fade-out', duration: 80, easing: 'linear')
@@ -498,7 +498,7 @@ describe 'up.motion', ->
498
498
  transition = ($old, $new, options) ->
499
499
  up.morph($old, $new, 'cross-fade', options)
500
500
 
501
- up.morph($old, $new, transition, duration: 200, easing: 'linear')
501
+ up.morph($old, $new, transition, duration: 50, easing: 'linear')
502
502
 
503
503
  next ->
504
504
  expect(up.motion.finishCount()).toEqual(1)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unpoly-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.56.0
4
+ version: 0.56.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch