From 0497e8212826f5a89dce5aaa40a8079d06c80e99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Wed, 10 May 2017 15:10:29 +0100 Subject: [PATCH 1/3] Move assets target to a dedicated Makefile --- CONTRIBUTING.md | 14 ++++++++ Makefile | 95 ------------------------------------------------- assets/Makefile | 93 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 107 insertions(+), 95 deletions(-) create mode 100644 assets/Makefile diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2af4908b6..4350dced4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,6 +36,20 @@ To update specific vendor package run `govendor` manually: See [govendor](https://github.com/kardianos/govendor) documentation for details. +## Javascript & CSS assets + +JS and CSS assets are also vendored into `assets/static` directory. +There is a make target that allows to fetch all needed files from the +[cdnjs](https://cdnjs.com/) site. If you need to add a new JS or CSS file then +add it to the `assets/Makefile` in the `assets` target and run: + + make -C assets assets + +If the assets you're adding are not found on cdnjs then download it and place +inside `assets/static` directory. In this case you will also need to manually +include it in the `templates/js.html` template file (managed assets are all +included automatically). + ## Running To build and start `unsee` from local branch see `Running` section of the diff --git a/Makefile b/Makefile index eaaf3209e..444e9fa6c 100644 --- a/Makefile +++ b/Makefile @@ -99,98 +99,3 @@ vendor: .build/vendor.ok .PHONY: vendor-update vendor-update: .build/vendor.ok govendor fetch +v - -#======================== asset helper targets ================================= - -ASSETS_DIR := $(CURDIR)/assets/static/managed -CDNJS_PREFIX := https://cdnjs.cloudflare.com/ajax/libs - -%.js: - $(eval VERSION := $(word 2, $(subst /, ,$@))) - $(eval DIRNAME := $(shell dirname $@)) - $(eval BASENAME := $(shell basename $@)) - $(eval MAPPATH := $(@:.js=.map)) - $(eval MAPFILE := $(shell basename $(MAPPATH))) - $(eval OUTPUT := $(ASSETS_DIR)/js/$(VERSION)-$(BASENAME)) - @echo Fetching js asset $@ - @mkdir -p $(ASSETS_DIR)/js - @curl --fail -so $(OUTPUT) $(CDNJS_PREFIX)/$@ || (rm -f $(OUTPUT) && exit 1) - @( \ - export MAP=`grep sourceMappingURL $(OUTPUT) | cut -d = -f 2`; \ - (test -n "$$MAP" && echo "+ Fetching js map $${MAP}" && (curl --fail -so $(ASSETS_DIR)/js/$${MAP} $(CDNJS_PREFIX)/$(DIRNAME)/$$MAP || rm -f $(ASSETS_DIR)/js/$${MAP})); \ - (test -z "$$MAP" && echo "+ Fetching js map $(MAPPATH)" && (curl --fail -so $(ASSETS_DIR)/js/$(MAPFILE) $(CDNJS_PREFIX)/$(MAPPATH) || rm -f $(ASSETS_DIR)/js/$(MAPFILE)) || true); \ - ) || true - @echo $(VERSION)-$(shell basename $@) >> $(ASSETS_DIR)/js/assets.txt - -%.css: - $(eval VERSION := $(word 2, $(subst /, ,$@))) - $(eval OUTPUT := $(ASSETS_DIR)/css/$(VERSION)-$(shell basename $@)) - @echo Fetching css asset $@ - @mkdir -p $(ASSETS_DIR)/css - @curl --fail -so $(OUTPUT) $(CDNJS_PREFIX)/$@ || (rm -f $(OUTPUT) && exit 1) - @echo $(VERSION)-$(shell basename $@) >> $(ASSETS_DIR)/css/assets.txt - -font-awesome/4.7.0/fonts/%: - $(eval OUTPUT := $(ASSETS_DIR)/fonts/$(shell basename $@)) - @echo Fetching fonts asset $@ - @mkdir -p $(ASSETS_DIR)/fonts - @curl --fail -so $(OUTPUT) $(CDNJS_PREFIX)/$@ || (rm -f $(OUTPUT) && exit 1) - -.PHONY: clean-assets -clean-assets: - @git rm -f $(ASSETS_DIR)/*/* >/dev/null 2>&1 || true - -.PHONY: assets -assets: clean-assets -# jquery, for everything -assets: jquery/2.2.4/jquery.min.js -# moment, for timestamp parsing and printing -assets: moment.js/2.17.1/moment.min.js -# favico, for adding alert counter to the favico -assets: favico.js/0.3.10/favico.min.js -# fontawesome, for ui icons -assets: font-awesome/4.7.0/css/font-awesome.min.css -assets: font-awesome/4.7.0/fonts/fontawesome-webfont.eot -assets: font-awesome/4.7.0/fonts/fontawesome-webfont.svg -assets: font-awesome/4.7.0/fonts/fontawesome-webfont.ttf -assets: font-awesome/4.7.0/fonts/fontawesome-webfont.woff -assets: font-awesome/4.7.0/fonts/fontawesome-webfont.woff2 -assets: font-awesome/4.7.0/fonts/FontAwesome.otf -# bootstrap & bootstrap switch, for ui -assets: twitter-bootstrap/3.3.7/js/bootstrap.min.js -assets: bootswatch/3.3.7/flatly/bootstrap.min.css -assets: bootstrap-switch/3.3.2/js/bootstrap-switch.min.js -assets: bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.min.css -# nprogress, for refresh progress bar -assets: nprogress/0.2.0/nprogress.min.js -assets: nprogress/0.2.0/nprogress.min.css -# tagsinput & typeahead, for filter bar and autocomplete -assets: bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.min.js -assets: bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.css -assets: corejs-typeahead/1.1.1/typeahead.bundle.min.js -assets: bootstrap-tagsinput/0.8.0/bootstrap-tagsinput-typeahead.css -# datepicker widget for bootstrap3 -assets: bootstrap-datetimepicker/4.17.47/js/bootstrap-datetimepicker.min.js -assets: bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css -# multiselect widget for bootstrap3, used for silence form -assets: bootstrap-select/1.12.2/js/bootstrap-select.min.js -assets: bootstrap-select/1.12.2/css/bootstrap-select.min.css -# loaders.css, for animated spinners -assets: loaders.css/0.1.2/loaders.css.min.js -assets: loaders.css/0.1.2/loaders.min.css -# js-cookie, for preference state loading via cookies -assets: js-cookie/2.1.3/js.cookie.min.js -# underscore & haml, for template rendering in js -assets: underscore.js/1.8.3/underscore-min.js -# masonry, for grid layout -assets: masonry/4.1.1/masonry.pkgd.min.js -# copy to clipboard -assets: clipboard.js/1.5.16/clipboard.min.js -# sentry client -assets: raven.js/3.9.1/raven.min.js -# sha1 function used to generate id from string -assets: js-sha1/0.4.0/sha1.min.js -# allows selecting only visible elements -assets: is-in-viewport/2.4.2/isInViewport.min.js -assets: - @git add $(ASSETS_DIR)/*/* diff --git a/assets/Makefile b/assets/Makefile new file mode 100644 index 000000000..52ada6e5f --- /dev/null +++ b/assets/Makefile @@ -0,0 +1,93 @@ + +ASSETS_DIR := $(CURDIR)/static/managed +CDNJS_PREFIX := https://cdnjs.cloudflare.com/ajax/libs + +%.js: + $(eval VERSION := $(word 2, $(subst /, ,$@))) + $(eval DIRNAME := $(shell dirname $@)) + $(eval BASENAME := $(shell basename $@)) + $(eval MAPPATH := $(@:.js=.map)) + $(eval MAPFILE := $(shell basename $(MAPPATH))) + $(eval OUTPUT := $(ASSETS_DIR)/js/$(VERSION)-$(BASENAME)) + @echo Fetching js asset $@ + @mkdir -p $(ASSETS_DIR)/js + @curl --fail -so $(OUTPUT) $(CDNJS_PREFIX)/$@ || (rm -f $(OUTPUT) && exit 1) + @( \ + export MAP=`grep sourceMappingURL $(OUTPUT) | cut -d = -f 2`; \ + (test -n "$$MAP" && echo "+ Fetching js map $${MAP}" && (curl --fail -so $(ASSETS_DIR)/js/$${MAP} $(CDNJS_PREFIX)/$(DIRNAME)/$$MAP || rm -f $(ASSETS_DIR)/js/$${MAP})); \ + (test -z "$$MAP" && echo "+ Fetching js map $(MAPPATH)" && (curl --fail -so $(ASSETS_DIR)/js/$(MAPFILE) $(CDNJS_PREFIX)/$(MAPPATH) || rm -f $(ASSETS_DIR)/js/$(MAPFILE)) || true); \ + ) || true + @echo $(VERSION)-$(shell basename $@) >> $(ASSETS_DIR)/js/assets.txt + +%.css: + $(eval VERSION := $(word 2, $(subst /, ,$@))) + $(eval OUTPUT := $(ASSETS_DIR)/css/$(VERSION)-$(shell basename $@)) + @echo Fetching css asset $@ + @mkdir -p $(ASSETS_DIR)/css + @curl --fail -so $(OUTPUT) $(CDNJS_PREFIX)/$@ || (rm -f $(OUTPUT) && exit 1) + @echo $(VERSION)-$(shell basename $@) >> $(ASSETS_DIR)/css/assets.txt + +font-awesome/4.7.0/fonts/%: + $(eval OUTPUT := $(ASSETS_DIR)/fonts/$(shell basename $@)) + @echo Fetching fonts asset $@ + @mkdir -p $(ASSETS_DIR)/fonts + @curl --fail -so $(OUTPUT) $(CDNJS_PREFIX)/$@ || (rm -f $(OUTPUT) && exit 1) + +.PHONY: clean-assets +clean-assets: + @git rm -f $(ASSETS_DIR)/*/* >/dev/null 2>&1 || true + +.PHONY: assets +assets: clean-assets +# jquery, for everything +assets: jquery/2.2.4/jquery.min.js +# moment, for timestamp parsing and printing +assets: moment.js/2.17.1/moment.min.js +# favico, for adding alert counter to the favico +assets: favico.js/0.3.10/favico.min.js +# fontawesome, for ui icons +assets: font-awesome/4.7.0/css/font-awesome.min.css +assets: font-awesome/4.7.0/fonts/fontawesome-webfont.eot +assets: font-awesome/4.7.0/fonts/fontawesome-webfont.svg +assets: font-awesome/4.7.0/fonts/fontawesome-webfont.ttf +assets: font-awesome/4.7.0/fonts/fontawesome-webfont.woff +assets: font-awesome/4.7.0/fonts/fontawesome-webfont.woff2 +assets: font-awesome/4.7.0/fonts/FontAwesome.otf +# bootstrap & bootstrap switch, for ui +assets: twitter-bootstrap/3.3.7/js/bootstrap.min.js +assets: bootswatch/3.3.7/flatly/bootstrap.min.css +assets: bootstrap-switch/3.3.2/js/bootstrap-switch.min.js +assets: bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.min.css +# nprogress, for refresh progress bar +assets: nprogress/0.2.0/nprogress.min.js +assets: nprogress/0.2.0/nprogress.min.css +# tagsinput & typeahead, for filter bar and autocomplete +assets: bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.min.js +assets: bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.css +assets: corejs-typeahead/1.1.1/typeahead.bundle.min.js +assets: bootstrap-tagsinput/0.8.0/bootstrap-tagsinput-typeahead.css +# datepicker widget for bootstrap3 +assets: bootstrap-datetimepicker/4.17.47/js/bootstrap-datetimepicker.min.js +assets: bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css +# multiselect widget for bootstrap3, used for silence form +assets: bootstrap-select/1.12.2/js/bootstrap-select.min.js +assets: bootstrap-select/1.12.2/css/bootstrap-select.min.css +# loaders.css, for animated spinners +assets: loaders.css/0.1.2/loaders.css.min.js +assets: loaders.css/0.1.2/loaders.min.css +# js-cookie, for preference state loading via cookies +assets: js-cookie/2.1.3/js.cookie.min.js +# underscore & haml, for template rendering in js +assets: underscore.js/1.8.3/underscore-min.js +# masonry, for grid layout +assets: masonry/4.1.1/masonry.pkgd.min.js +# copy to clipboard +assets: clipboard.js/1.5.16/clipboard.min.js +# sentry client +assets: raven.js/3.9.1/raven.min.js +# sha1 function used to generate id from string +assets: js-sha1/0.4.0/sha1.min.js +# allows selecting only visible elements +assets: is-in-viewport/2.4.2/isInViewport.min.js +assets: + @git add $(ASSETS_DIR)/*/* From 15b5afb1a8018e38eaf80def9942f64072d46730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Wed, 10 May 2017 15:14:04 +0100 Subject: [PATCH 2/3] Update masonry --- assets/Makefile | 2 +- .../css/1.12.2-bootstrap-select.min.css | 10 ++-- .../managed/js/4.1.1-masonry.pkgd.min.js | 9 ---- .../managed/js/4.2.0-masonry.pkgd.min.js | 9 ++++ assets/static/managed/js/assets.txt | 2 +- bindata_assetfs.go | 48 +++++++++---------- 6 files changed, 40 insertions(+), 40 deletions(-) delete mode 100644 assets/static/managed/js/4.1.1-masonry.pkgd.min.js create mode 100644 assets/static/managed/js/4.2.0-masonry.pkgd.min.js diff --git a/assets/Makefile b/assets/Makefile index 52ada6e5f..7e90153e8 100644 --- a/assets/Makefile +++ b/assets/Makefile @@ -80,7 +80,7 @@ assets: js-cookie/2.1.3/js.cookie.min.js # underscore & haml, for template rendering in js assets: underscore.js/1.8.3/underscore-min.js # masonry, for grid layout -assets: masonry/4.1.1/masonry.pkgd.min.js +assets: masonry/4.2.0/masonry.pkgd.min.js # copy to clipboard assets: clipboard.js/1.5.16/clipboard.min.js # sentry client diff --git a/assets/static/managed/css/1.12.2-bootstrap-select.min.css b/assets/static/managed/css/1.12.2-bootstrap-select.min.css index d178d8248..2bbc46171 100644 --- a/assets/static/managed/css/1.12.2-bootstrap-select.min.css +++ b/assets/static/managed/css/1.12.2-bootstrap-select.min.css @@ -1,6 +1,6 @@ -/*! - * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) - * - * Copyright 2013-2017 bootstrap-select - * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\9}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn{border-radius:0}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute;height:0!important;padding:0!important}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none} \ No newline at end of file diff --git a/assets/static/managed/js/4.1.1-masonry.pkgd.min.js b/assets/static/managed/js/4.1.1-masonry.pkgd.min.js deleted file mode 100644 index 3410a360e..000000000 --- a/assets/static/managed/js/4.1.1-masonry.pkgd.min.js +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * Masonry PACKAGED v4.1.1 - * Cascading grid layout library - * http://masonry.desandro.com - * MIT License - * by David DeSandro - */ - -!function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,r,a){function h(t,e,n){var o,r="$()."+i+'("'+e+'")';return t.each(function(t,h){var u=a.data(h,i);if(!u)return void s(i+" not initialized. Cannot call methods, i.e. "+r);var d=u[e];if(!d||"_"==e.charAt(0))return void s(r+" is not a valid method");var l=d.apply(u,n);o=void 0===o?l:o}),void 0!==o?o:t}function u(t,e){t.each(function(t,n){var o=a.data(n,i);o?(o.option(e),o._init()):(o=new r(n,e),a.data(n,i,o))})}a=a||e||t.jQuery,a&&(r.prototype.option||(r.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=o.call(arguments,1);return h(this,t,e)}return u(this,t),this},n(a))}function n(t){!t||t&&t.bridget||(t.bridget=i)}var o=Array.prototype.slice,r=t.console,s="undefined"==typeof r?function(){}:function(t){r.error(t)};return n(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return-1==n.indexOf(e)&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},n=i[t]=i[t]||{};return n[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return-1!=n&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=0,o=i[n];e=e||[];for(var r=this._onceEvents&&this._onceEvents[t];o;){var s=r&&r[o];s&&(this.off(t,o),delete r[o]),o.apply(this,e),n+=s?0:1,o=i[n]}return this}},t}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("get-size/get-size",[],function(){return e()}):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=-1==t.indexOf("%")&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;u>e;e++){var i=h[e];t[i]=0}return t}function n(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1"),e}function o(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var o=n(e);r.isBoxSizeOuter=s=200==t(o.width),i.removeChild(e)}}function r(e){if(o(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var r=n(e);if("none"==r.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==r.boxSizing,l=0;u>l;l++){var c=h[l],f=r[c],m=parseFloat(f);a[c]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,g=a.paddingTop+a.paddingBottom,y=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,E=a.borderTopWidth+a.borderBottomWidth,z=d&&s,b=t(r.width);b!==!1&&(a.width=b+(z?0:p+_));var x=t(r.height);return x!==!1&&(a.height=x+(z?0:g+E)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(g+E),a.outerWidth=a.width+y,a.outerHeight=a.height+v,a}}var s,a="undefined"==typeof console?e:function(t){console.error(t)},h=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],u=h.length,d=!1;return r}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;is?"round":"floor";r=Math[a](r),this.cols=Math.max(r,1)},i.prototype.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,n=e(i);this.containerWidth=n&&n.innerWidth},i.prototype._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=e&&1>e?"round":"ceil",n=Math[i](t.size.outerWidth/this.columnWidth);n=Math.min(n,this.cols);for(var o=this._getColGroup(n),r=Math.min.apply(Math,o),s=o.indexOf(r),a={x:this.columnWidth*s,y:r},h=r+t.size.outerHeight,u=this.cols+1-o.length,d=0;u>d;d++)this.colYs[s+d]=h;return a},i.prototype._getColGroup=function(t){if(2>t)return this.colYs;for(var e=[],i=this.cols+1-t,n=0;i>n;n++){var o=this.colYs.slice(n,n+t);e[n]=Math.max.apply(Math,o)}return e},i.prototype._manageStamp=function(t){var i=e(t),n=this._getElementOffset(t),o=this._getOption("originLeft"),r=o?n.left:n.right,s=r+i.outerWidth,a=Math.floor(r/this.columnWidth);a=Math.max(0,a);var h=Math.floor(s/this.columnWidth);h-=s%this.columnWidth?0:1,h=Math.min(this.cols-1,h);for(var u=this._getOption("originTop"),d=(u?n.top:n.bottom)+i.outerHeight,l=a;h>=l;l++)this.colYs[l]=Math.max(d,this.colYs[l])},i.prototype._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},i.prototype._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},i.prototype.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}); \ No newline at end of file diff --git a/assets/static/managed/js/4.2.0-masonry.pkgd.min.js b/assets/static/managed/js/4.2.0-masonry.pkgd.min.js new file mode 100644 index 000000000..a61c0ded6 --- /dev/null +++ b/assets/static/managed/js/4.2.0-masonry.pkgd.min.js @@ -0,0 +1,9 @@ +/*! + * Masonry PACKAGED v4.2.0 + * Cascading grid layout library + * http://masonry.desandro.com + * MIT License + * by David DeSandro + */ + +!function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,r,a){function h(t,e,n){var o,r="$()."+i+'("'+e+'")';return t.each(function(t,h){var u=a.data(h,i);if(!u)return void s(i+" not initialized. Cannot call methods, i.e. "+r);var d=u[e];if(!d||"_"==e.charAt(0))return void s(r+" is not a valid method");var l=d.apply(u,n);o=void 0===o?l:o}),void 0!==o?o:t}function u(t,e){t.each(function(t,n){var o=a.data(n,i);o?(o.option(e),o._init()):(o=new r(n,e),a.data(n,i,o))})}a=a||e||t.jQuery,a&&(r.prototype.option||(r.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=o.call(arguments,1);return h(this,t,e)}return u(this,t),this},n(a))}function n(t){!t||t&&t.bridget||(t.bridget=i)}var o=Array.prototype.slice,r=t.console,s="undefined"==typeof r?function(){}:function(t){r.error(t)};return n(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return-1==n.indexOf(e)&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},n=i[t]=i[t]||{};return n[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return-1!=n&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=0,o=i[n];e=e||[];for(var r=this._onceEvents&&this._onceEvents[t];o;){var s=r&&r[o];s&&(this.off(t,o),delete r[o]),o.apply(this,e),n+=s?0:1,o=i[n]}return this}},t}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("get-size/get-size",[],function(){return e()}):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=-1==t.indexOf("%")&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;u>e;e++){var i=h[e];t[i]=0}return t}function n(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1"),e}function o(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var o=n(e);r.isBoxSizeOuter=s=200==t(o.width),i.removeChild(e)}}function r(e){if(o(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var r=n(e);if("none"==r.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==r.boxSizing,l=0;u>l;l++){var c=h[l],f=r[c],m=parseFloat(f);a[c]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,g=a.paddingTop+a.paddingBottom,y=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,z=a.borderTopWidth+a.borderBottomWidth,E=d&&s,b=t(r.width);b!==!1&&(a.width=b+(E?0:p+_));var x=t(r.height);return x!==!1&&(a.height=x+(E?0:g+z)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(g+z),a.outerWidth=a.width+y,a.outerHeight=a.height+v,a}}var s,a="undefined"==typeof console?e:function(t){console.error(t)},h=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],u=h.length,d=!1;return r}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;is?"round":"floor";r=Math[a](r),this.cols=Math.max(r,1)},n.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,n=e(i);this.containerWidth=n&&n.innerWidth},n._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=e&&1>e?"round":"ceil",n=Math[i](t.size.outerWidth/this.columnWidth);n=Math.min(n,this.cols);for(var o=this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition",r=this[o](n,t),s={x:this.columnWidth*r.col,y:r.y},a=r.y+t.size.outerHeight,h=n+r.col,u=r.col;h>u;u++)this.colYs[u]=a;return s},n._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},n._getTopColGroup=function(t){if(2>t)return this.colYs;for(var e=[],i=this.cols+1-t,n=0;i>n;n++)e[n]=this._getColGroupY(n,t);return e},n._getColGroupY=function(t,e){if(2>e)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},n._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols,n=t>1&&i+t>this.cols;i=n?0:i;var o=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=o?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},n._manageStamp=function(t){var i=e(t),n=this._getElementOffset(t),o=this._getOption("originLeft"),r=o?n.left:n.right,s=r+i.outerWidth,a=Math.floor(r/this.columnWidth);a=Math.max(0,a);var h=Math.floor(s/this.columnWidth);h-=s%this.columnWidth?0:1,h=Math.min(this.cols-1,h);for(var u=this._getOption("originTop"),d=(u?n.top:n.bottom)+i.outerHeight,l=a;h>=l;l++)this.colYs[l]=Math.max(d,this.colYs[l])},n._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},n._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},n.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}); \ No newline at end of file diff --git a/assets/static/managed/js/assets.txt b/assets/static/managed/js/assets.txt index abc1fd486..cf80d2f05 100644 --- a/assets/static/managed/js/assets.txt +++ b/assets/static/managed/js/assets.txt @@ -11,7 +11,7 @@ 0.1.2-loaders.css.min.js 2.1.3-js.cookie.min.js 1.8.3-underscore-min.js -4.1.1-masonry.pkgd.min.js +4.2.0-masonry.pkgd.min.js 1.5.16-clipboard.min.js 3.9.1-raven.min.js 0.4.0-sha1.min.js diff --git a/bindata_assetfs.go b/bindata_assetfs.go index c97186b30..e0614b130 100644 --- a/bindata_assetfs.go +++ b/bindata_assetfs.go @@ -51,8 +51,8 @@ // assets/static/managed/js/3.3.2-bootstrap-switch.min.js // assets/static/managed/js/3.3.7-bootstrap.min.js // assets/static/managed/js/3.9.1-raven.min.js -// assets/static/managed/js/4.1.1-masonry.pkgd.min.js // assets/static/managed/js/4.17.47-bootstrap-datetimepicker.min.js +// assets/static/managed/js/4.2.0-masonry.pkgd.min.js // assets/static/managed/js/assets.txt // assets/static/managed/js/bootstrap-select.js.map // assets/static/managed/js/bootstrap-tagsinput.min.js.map @@ -1156,26 +1156,6 @@ func staticManagedJs391RavenMinJs() (*asset, error) { return a, nil } -var _staticManagedJs411MasonryPkgdMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x7c\xfb\xb3\xdb\xb6\xb9\xe0\xef\xfd\x2b\x24\xcc\x0d\x4b\x58\x10\x8f\x4e\xda\x9f\xc4\x22\x9a\xc4\x76\x1a\xef\x3a\x71\x6e\xed\x6e\xb7\xab\x6a\x3d\x38\x22\x24\xa1\x97\x02\x54\x10\x74\xce\xb1\xa4\xff\x7d\x07\x2f\x02\x20\xa9\xd8\xd9\xa4\x77\x3c\xe3\x23\x82\x78\x7c\xf8\x5e\xf8\x5e\xe0\xdd\xb3\xe9\xef\x26\xcf\x26\xdf\x93\x46\x70\xf9\x34\xf9\xf1\xeb\xe7\xff\xf3\xeb\x3f\xbf\x7c\x31\xf9\xf0\xc7\xe2\xbe\xb8\xd7\xaf\x9e\x93\x66\x4b\x2a\xc6\xf7\x93\xbd\x64\xd5\xa4\x26\x4f\xa2\x55\x93\x9a\x3d\x48\x22\x9f\x74\x87\x83\x52\xa7\xe5\xdd\xdd\xd1\x4e\x51\x54\xb4\x21\xbc\x92\xa2\xd8\x8a\xa3\x99\xfa\xd5\xbb\xc9\x6b\xb6\xa5\xbc\xa1\xfa\xf1\xe1\x69\xf2\x82\x7c\x60\xd5\xe4\x05\x7d\x6b\xfa\xfd\x6e\xf2\xec\xee\x77\xbf\x9b\xee\x5a\xbe\x55\x4c\xf0\x5c\x21\x0a\xcf\xc0\x3f\x02\x8c\xd5\xd3\x89\x8a\xdd\xa4\xa2\x3b\xc6\x69\x96\xd9\xbf\x05\x39\x56\x2b\xfb\x33\x07\xff\xfc\x57\x4b\xe5\xd3\xfc\x41\xb2\x6a\x4f\xd5\x5d\xfa\x08\xd0\xda\x75\x00\x1b\xd4\xad\xc2\xe0\x59\x52\xd5\x4a\x3e\xa1\xb9\x42\x0c\x5e\xe1\x12\x88\x87\x7f\xd2\xad\x0a\x2b\x1e\x45\xd5\xd6\x34\xcb\xec\xdf\x82\x3e\x9e\x84\x54\xcd\x2a\x7d\xc4\x7a\xbc\xa4\xff\x6a\x99\xec\x20\x01\x10\x2e\x55\xf1\xcf\xff\xd4\xbf\xbf\xb1\x50\x98\x6e\xbe\x0d\x5e\xf3\x9f\x18\xaf\xc4\x4f\xa8\xb7\xeb\xb6\xa1\x93\x46\x49\xb6\x55\xa0\xf4\xaf\x26\x2c\x67\x48\x22\x02\xcf\x5d\xcb\x41\x77\x47\x1c\x9e\x3f\x10\x39\x11\x48\x62\xf0\x1f\x39\x2c\xc0\x8c\xcd\x7e\x9f\x83\xdf\xcf\xe8\xec\xf7\x00\xfe\xbe\x74\xfb\x53\x05\x25\xdb\x43\x1e\xad\x74\xb0\x03\x5b\x4c\x8a\x8a\x28\x92\x1f\x10\x83\x25\xdb\xe5\xd3\x16\xba\x31\x1f\x04\xab\x26\x4d\xce\x66\x60\xc2\x85\x9a\x30\xce\x14\x23\x35\xfb\x48\xab\x62\xf2\x9c\x70\xdd\xb6\x25\x75\x3d\x39\x52\x75\x10\x55\x83\x26\xac\xa0\xc5\x04\xcc\x24\x2c\xf5\xcc\x15\x6e\xd7\x74\x63\xa6\xac\x2e\x17\xf0\x1e\x60\x4c\x8b\xed\x81\xc8\xaf\x55\xbe\x80\xbd\x45\xe4\x0c\x4c\x58\x63\xd6\x21\x93\x0f\xa4\x66\x95\x9b\x16\xd8\xc9\x6a\x5c\x15\xe4\x74\xaa\x9f\xf2\x16\x71\x58\x0a\x6c\xc6\x2d\x30\xc6\x62\x55\x2f\xc5\x15\x22\xdb\x30\xd5\x0d\x62\xa9\xae\x1d\x9a\x5a\x8b\xd5\x21\x02\x3c\xe6\x3c\x02\xb8\x46\x80\x58\xe5\xa2\x10\x27\xd3\x85\x42\x24\x8a\xf7\x7a\xdb\x39\x84\xcb\x5c\x60\x4e\x7f\x9a\xc8\x9c\x23\x0a\x51\x18\x83\x04\x84\x57\x78\x25\x98\x5c\x2e\xf4\x72\xf1\xd4\x45\x24\xcb\x72\x59\x9c\xa4\x50\x42\x73\x92\x9b\xf4\x72\x19\x69\xc4\x01\x2a\x78\x26\x05\x6b\x7e\xac\x09\xe3\x6f\x0c\x23\xe6\x0a\x66\x59\xae\x0e\xac\x71\x9d\x1b\x4c\x0a\xfa\xa8\x28\xaf\xf2\xe9\x02\xc5\x2f\x90\xd2\x90\x20\x52\xec\xf8\x9a\x6d\x92\x49\xd9\x2e\x07\x9a\xa5\xf8\x3e\x30\xb6\xb2\xfb\xa7\x58\x14\x9a\x8c\x39\x91\xfb\xf6\x48\xb9\x6a\xd0\x3d\xf4\x6c\x73\x30\x2b\x23\x8d\xc1\xab\x6b\x6a\x5d\x13\x34\x6b\x5f\x11\xcf\x09\x84\x01\xdd\x66\xb9\xa9\xba\x5c\x54\x96\xa9\xc2\x49\xdf\xe5\x92\x77\xbf\x31\x83\x57\x8b\xf7\xaf\xa5\x24\x4f\x11\x32\x9a\x9a\x6d\x29\x92\x58\x15\x5b\xc1\x1b\x51\x53\xd4\x60\xd0\x72\x2b\xdf\x55\x00\x5c\xae\xba\xad\xc1\xf3\x75\x19\xef\x53\x16\x54\x4a\x21\x73\x05\xaf\x7e\x0b\x3c\x8f\xa8\x02\x11\xbb\xc2\xbe\xbc\xfd\x22\x2d\x43\x3f\xcc\xe9\x91\x29\x45\xe5\x5d\xf8\x09\x10\xfd\x15\x9a\x43\xab\x89\x97\x1f\x5e\xda\xa9\xf4\xf3\x35\x8f\xb6\x3d\xf5\xd3\x59\x65\xb1\xb2\x7f\x96\x86\x08\x11\x1e\x3a\x02\x28\x8d\x14\x4b\x58\x15\x90\xeb\xb1\x41\x8b\x84\xdd\xf4\xfe\xd9\x2e\x57\x59\x46\x2d\x37\x30\x6c\x38\xea\x3d\xfd\xa0\x39\x21\x79\xb8\x5c\xce\x57\xc4\x31\x5b\xab\x8d\xf9\xef\x72\x59\x6f\xdc\xb4\xf3\x7b\x8c\x79\xc1\x78\x45\x1f\xdf\xec\x72\x0a\xb3\x8c\x17\xa7\xb6\x39\x68\x11\x32\x5c\x72\x45\x7a\xe1\x2d\xbd\xb5\xb4\x65\x63\xdb\x5a\xc6\x70\xe8\x41\x2f\x63\x58\x42\xc3\x10\x9e\x73\x20\xfa\x9a\x6e\xb0\x13\x0f\xbb\xf8\x6e\xd7\x5b\x7b\xb8\xdb\x2c\x8b\x9f\xd6\xca\xe8\x2e\x96\x65\xac\xa8\x29\xdf\x2b\xa7\x30\x39\x66\xd1\x4e\x3b\x04\x4c\x31\xd7\x3d\x9b\x93\x66\xe2\x9c\xa3\xfb\x68\xe7\x9a\x4b\x0c\xcc\xbf\x19\x08\x0b\x24\x30\x5b\xf3\x4d\x49\x31\x35\x74\xd8\x09\x99\xeb\x57\x72\x80\x26\x3f\x65\x68\xd1\xd3\x8a\xd2\x4e\xd5\x60\x99\x65\x72\x2d\x36\x65\xd3\xa9\x99\xdd\x2e\x57\x48\x40\x54\xd1\x9a\x2a\x3a\xd1\x6f\xb5\x26\xb4\xea\xd7\xf0\x1d\x85\x88\xcf\x70\xb3\x5a\x2c\xef\x1d\x20\x5e\x3b\xb8\x3d\xab\xa1\x94\xc5\xa7\xda\x2f\x13\xb9\x3d\x55\xf3\x86\x7d\xa4\x77\xfe\x07\x40\xeb\x4d\xcc\xfb\xdd\x19\xfe\xab\x0e\x70\x2d\x86\x7b\xaa\xde\xb2\x8f\xd4\x0a\x61\xff\x74\xbe\x75\x34\x6b\x1d\xed\x54\xe9\x89\xc8\x86\x7e\x5b\x0b\xa2\xdb\x10\xc3\x5a\x30\x54\xc7\x2e\xe0\x0b\x00\xb3\x6c\xca\x9a\x1f\xc8\x0f\x81\x77\x26\x2c\xcb\x68\x50\xa0\x54\xcb\x6f\x74\xec\xc3\xb3\xa7\xad\xc2\xe7\x9f\x58\xa5\x0e\xcb\x05\x3a\x50\xb6\x3f\xa8\xe5\x02\x31\xce\xa9\xfc\x9b\x6b\x35\x0f\xdf\xf9\x57\xa2\x55\xe1\x95\x79\xf0\xaf\xae\x88\xe2\x45\xd9\x7e\x45\x4b\x3a\x9b\x79\x36\x3c\xe8\xc3\x5a\xe9\x83\x63\xd1\x11\xb3\xa7\xd6\xed\x1e\xf7\x54\x3d\x17\xc7\x53\xab\x68\xf5\x56\x3d\xd5\x34\x57\xdd\x4e\xe8\xe5\x42\x72\x60\x5a\x27\xb6\x89\x56\x13\x30\xa3\x33\x50\x4c\xbe\x96\x74\xf2\x24\xda\x89\x6c\x39\xd7\x76\xa4\xe6\x94\xc9\x56\x54\x74\xc2\xf8\x84\x4c\x0e\xac\xaa\x28\x9f\xb0\x9d\x24\x47\x3a\x11\x7c\xf2\x2d\x93\x74\x27\x1e\x57\x93\xb7\x94\x7a\xeb\xf2\x81\xa9\xa2\x7e\xd2\x7c\xa0\xd9\xe0\xa1\xdd\xdf\x03\x88\x22\xdc\x89\xdc\xe8\x94\x69\x05\xcf\x15\x9e\x2e\x4a\x0b\x70\x25\xb6\xe6\x60\x2b\xb6\x92\x12\x45\x5f\xd6\x54\x3f\xe5\xa0\x62\x1f\x00\x2c\x69\xd1\x68\x78\x0b\x83\x5a\x0c\xbe\x5c\x2c\x4e\x8f\x00\xf9\xd6\x13\xa9\xb4\xd5\x8b\xc1\xfd\xe9\x71\xf2\xe5\xe9\x71\xf2\x87\xd3\xe3\xe4\x8f\x71\x8f\x07\x21\x2b\x2a\xcd\x9e\x31\x68\x44\xcd\xaa\xfe\xbb\xbf\xd9\x99\x7f\x66\x86\xc7\xb7\xec\xa3\x59\xc5\x0e\x98\x3f\x88\x47\xe0\xd4\x60\x07\xfc\x83\xa8\x9e\x2e\x97\xee\xd1\xff\x70\xbb\x29\x99\x96\x4f\xca\xab\xe7\x07\x56\x57\xb9\xd3\xa2\x02\x73\xc3\x67\x05\x6b\xbe\x31\x8b\xd0\x37\x9a\x0f\x70\x83\xbf\x5c\x2c\x30\x56\xb9\xb0\xdb\x86\x88\x15\x92\x1e\xc5\x07\xea\x87\x5f\x03\x52\x65\x6e\x35\xb5\xc8\x21\x1a\x18\x11\x34\xcb\xf2\x08\xc3\xc6\xf0\x7d\x4b\x6b\xba\x55\x42\x8f\x83\x88\x66\xd9\x40\x22\x69\x96\xd1\x82\x8b\x8a\xbe\x7b\x3a\x39\x35\x28\x2d\xa4\xda\x4e\xe1\x82\x53\x80\xb1\x2c\x2a\xd6\x9c\x6a\xf2\xe4\x2d\x45\x96\xdb\x4d\x11\x7c\xbe\x96\xc4\xd1\xcb\x68\xf6\x86\x2a\x83\x63\x44\x0a\x2b\x18\x5d\xb3\xe5\xf8\x4e\x3b\x56\x98\x18\x54\x68\x24\x7f\x23\x1e\x13\x7c\xeb\x15\x3b\x4a\xa0\xda\x08\x48\x5d\xd6\x5e\x40\xb6\xf8\xb0\xae\x37\x68\x87\xe5\x7a\xbb\x41\xc7\x58\xd2\x77\xb0\x24\xeb\xed\x06\x5b\xb9\x3e\xc2\xd5\x62\x79\x34\x27\xf0\x09\x13\xcf\x40\xaf\xe9\x4e\xcd\xba\xa7\xbf\x68\xa8\xd0\x3e\xbc\x7e\x27\x4e\xe1\xed\x37\x42\x29\x71\x44\x4f\x98\x14\x47\x22\xf7\x8c\xbb\xc1\xf6\xc1\x8e\xfd\xd0\xbd\xb4\x43\xed\x6f\x37\xf2\x3d\x26\x8e\xf5\xf4\x48\x83\x9a\x99\x6f\x31\xc3\x2d\xb6\x5e\x76\xdd\xde\x89\x53\xda\xcb\x4e\x64\xbb\x7d\xc4\x55\x96\x35\xe8\x01\xab\x5c\x3a\x76\x29\x1f\xa6\x18\x4f\xef\xb3\x2c\xf7\x74\x78\x98\xe5\x1f\x57\x8b\xe5\x69\xf6\x1e\x5a\x2a\x3d\x9a\xee\x96\x1c\x9d\x7e\x78\x0c\xc3\x1c\xa1\x1e\xed\xb8\xfd\xec\x25\xd4\x96\x6b\x50\x67\xd8\xcd\x3c\xcf\xf5\x9c\xfe\x95\xa5\x27\xf6\xc3\xe7\xb9\x1e\x88\x48\x11\x74\x9d\x1f\x37\x7b\xf2\xcd\xbd\x31\xb3\x0f\x88\x5c\x0d\x79\x1a\x44\x46\xed\x4b\x67\x7d\xae\x68\x62\x5a\xba\xd6\x60\x60\xa2\x03\x5e\x83\x88\xbc\x00\x81\x98\xbc\xe1\xf1\x9d\x38\x85\x07\x8b\x59\x80\x40\x20\x6d\xf7\xe0\xc7\x75\x84\xed\x7e\x77\xa3\x7a\x64\xed\x5a\x02\x59\xbb\x26\x4f\xd4\xae\x21\x22\x2a\xd8\xa0\x16\x1f\x9c\x51\x81\x2a\x3c\xbd\xf7\x24\x92\xbf\xe5\xc9\xed\xa3\x00\xf3\x23\x51\xdb\x03\x6d\xe6\x8d\x53\x0d\x77\xfd\x86\x5f\x6f\x41\xbb\x19\xbd\xf2\xf9\xac\x23\xdc\x9e\xaa\xd1\x5b\xdb\xe0\x74\x6a\x64\x3d\x6b\x43\xd5\xaf\xe0\xf4\x11\x70\x8f\x20\x79\xe9\x97\xef\x75\xf2\xcd\xa0\x53\x45\x14\xaf\xc1\x4f\xf4\xe1\xbf\x98\x21\xb8\xf8\xa8\xff\x6f\x00\x02\x02\x6c\x10\xc3\x8b\x92\xfd\x89\x3a\xf2\x94\xcc\xeb\x20\x8e\xe9\x9a\x6d\x90\xc0\x7c\x06\xbe\xef\x4f\xac\xa1\xd0\x96\x9a\xa3\xa3\xb8\x5e\xf3\x4e\xee\xba\x1d\x52\x14\x85\x3c\xd6\x6a\x93\x33\x78\xfd\x95\x0e\xd1\x8e\x7d\xfc\xf8\x34\x6f\xd9\xbc\x55\xac\x6e\xee\xcc\xff\x00\xad\x7f\x09\xed\xff\xfd\x11\x99\x9b\xc0\xd8\x20\x8d\xd9\xc3\x5f\x5f\xfd\x55\xc3\xee\x62\x34\x7d\x7a\xde\x08\xd6\xd8\x43\xfa\x7c\x2d\x99\x73\xca\x7b\x26\xbe\x27\x37\xd3\x56\x0e\x85\xc6\xbe\xd2\x44\xec\xe2\x32\x57\xc4\x0a\x03\xb9\xe8\x8d\xb4\x1d\x72\xf5\x05\x9d\x51\xf8\x05\x35\xfd\xc8\x7f\x51\xe3\x34\x27\xbe\xbd\xe3\x26\xe3\x2a\x58\x97\x9a\x35\xe6\x6f\xae\x20\xa4\x58\x95\xb4\x6e\xe8\xc4\xba\x5a\x80\xb7\xc7\x07\x2a\xa3\x20\x80\x77\x2c\x3a\x40\x0d\xef\xa9\x98\xf7\xa8\xf5\xe5\x34\xec\xd0\x4e\xe6\x5b\x82\xe1\x77\xed\x2c\x88\x6f\xa5\x38\x8e\xfb\x39\xb1\xdb\xa4\x1d\x26\x96\x65\xca\x3b\x4c\x0c\xdd\x43\x3d\xc7\x9e\xaa\x1f\x89\xec\xb9\x4a\xcc\xe2\xb1\x54\xd3\xd4\x1c\x2a\xa1\xde\x95\x76\x73\xcd\x90\x1f\x44\x45\x91\x65\x1b\x18\xa3\x77\x4f\x95\x71\xfe\x9d\x58\x27\xc8\x73\x62\x3a\x88\x8d\xac\x6e\x98\x34\x0a\x2e\xcd\x9c\x07\xc2\xab\x9a\xf6\x9d\x3a\x4f\x0c\x20\x38\x98\xa9\xc2\xa8\x0e\x6d\xe7\xae\xe9\xc6\xba\x61\x6b\xba\x31\x47\x07\x2b\x76\xac\x56\x54\x7e\xcb\x78\xe5\xc0\x6a\x70\x1a\x9b\x52\x38\x22\xb8\x46\xb5\x35\xe8\xd6\x81\x75\x8a\x9d\x90\x2f\xd3\xa0\x96\x75\xa9\x27\x8c\x37\x8a\xf0\xad\xde\xc9\x77\xef\xbe\x7f\xed\x56\xb0\xb6\x31\x4f\x22\x6f\xa2\xa3\x24\x35\xcb\x66\x59\x68\x09\x2c\xd1\xc3\xc2\xd7\x75\x9d\x73\x88\x24\x5e\x94\xf2\x4f\xde\x35\x2d\xe5\x6c\x06\xdd\x60\xb6\x96\x1b\xa3\x58\x84\xde\x6a\x45\x1f\x44\xcb\xb7\xf4\x7b\x13\xd0\x4b\x78\x43\x93\xd6\x6a\xb6\x48\xdb\xae\xa9\xd6\x71\x74\x06\xde\xb1\x23\x15\xad\x02\x65\xfa\x72\xa8\xb0\x0d\x6a\xc5\xa6\x54\x59\xb6\xad\x29\x91\x6e\xa0\xc7\x1a\xc5\x21\xb6\x65\x1d\xe4\xd2\x8d\xc0\x0d\x55\xbe\x73\x34\x2b\x77\xce\xae\xd4\x9e\x6e\xe4\x06\x5f\x11\xbb\x5c\xee\x17\x0b\x78\x35\xfb\x12\xdb\xbf\x50\x52\x8d\x49\x63\xc7\x3d\x52\x77\x78\xab\x88\xa2\x25\xd8\x8a\xe3\x49\x4f\x05\xb0\x76\xda\x01\xe3\x8a\x4a\xb2\x55\xec\x83\x69\x59\xa9\x1c\x2e\xbb\x71\xa4\xaa\x0c\x73\xbd\x66\x8d\xa2\x9c\xca\x1c\xbc\x78\xf3\xfd\x73\xc1\x95\x6e\x13\xa4\xa2\x15\x40\x96\x91\x94\x78\x41\x9a\x03\xad\x46\xd8\x7a\xa2\xd7\x3f\xd5\x64\x4b\xf3\xbb\xbc\x80\xf9\xfa\xeb\xf9\xff\xd9\xc0\xbb\x3d\xea\x93\xc0\x4b\xf1\x0c\xcc\xc1\x8c\x5d\x61\xa1\xc4\x6b\xf1\x13\x95\xcf\x49\xa3\x8f\xd1\xd2\x93\xc8\xd9\x40\x9d\xe3\x5a\x1c\xd4\xb1\x7e\xc5\x59\x24\x03\x14\x09\x78\x0e\xb8\xc9\x7b\xb4\x92\x38\x40\x9c\x0b\x88\x1a\x0c\x2a\xa2\xc8\x1c\xcc\x24\x22\x37\xfc\x08\xcd\x6e\x60\x0d\x66\xcd\x0c\x6c\x00\x44\x87\x9f\xeb\x56\xfc\xb3\xd1\x73\x41\xd4\x26\xe2\x43\xa0\x86\x7d\x4b\x54\x1e\xb7\x1e\x20\x44\x15\x6e\x66\x60\xee\x22\xa8\x00\xd5\xd8\x87\x0a\xcb\x76\x54\xbe\x8c\x40\x98\x20\xe5\x9e\xaa\xaf\x95\x92\xec\xa1\x55\x34\x6f\xe0\xe5\xd2\x6b\xaa\x60\xa9\xe4\xd3\x99\x61\x99\x65\xff\xe3\xed\x9b\x1f\x0a\xe3\x32\xe4\x12\x5e\xb7\xfa\x6c\xc9\x49\x87\x77\x2d\x89\x39\xcf\x32\xee\x8c\x4b\xf0\x52\xff\x99\xe8\xfe\xda\x53\x36\x3b\xd7\x2e\xb1\xd6\x29\xdb\x9a\x34\xcd\x0f\xe4\x48\x67\x60\x39\x01\x33\x02\x6d\x34\xf5\x60\x82\xd3\x56\xf9\x95\x75\x96\xd5\x36\x3e\xad\x90\x40\x07\x78\xd5\xff\x7e\x75\xe4\x53\xb4\xaa\x26\x4f\x54\xde\x31\x45\x8f\xfa\x84\xbf\x11\x0a\x1d\x89\xd7\x6c\x7e\x95\x75\xd7\x9d\xe2\xd1\x2a\x30\x9c\xed\xdd\x2a\x10\x2e\x73\x55\xbc\x71\x60\xe2\xf3\x15\x85\xa7\xe2\x95\xa2\x47\x7d\xb4\x87\x48\x2b\xea\xc2\x3d\xf0\x97\xa6\x62\x54\x38\xd8\x4d\xf8\x42\x39\x9d\x1a\xcc\x68\x8a\x79\x5b\xd7\x68\xba\x48\x42\x28\x26\x11\xe1\xe3\x6c\xd4\x1d\x47\xca\x06\xf1\x6d\x4a\x0d\x53\xfb\x74\x12\x0d\x33\xa9\x81\xf3\xe3\x72\x81\x9e\x96\x8b\xab\x6d\x7f\x6f\x63\x18\x79\x1c\x72\x17\x37\x24\x7e\x44\xdc\xbb\x03\x6f\x6e\xce\xa7\x44\xca\x2d\x23\x49\x7c\x2b\xc4\x60\xa3\x15\x5a\x62\xfb\xa7\xa5\x2c\x94\x24\xdc\x02\xbc\x02\xe1\x37\x58\x82\xbf\x19\x13\xf7\x5d\x68\xd2\x3e\xd7\x8d\xf1\x3b\x21\x8f\x6e\xb8\xfe\x99\x8e\x36\x2d\xe8\x80\xcf\xfd\x19\x97\xce\x8c\x0e\x2d\x2f\xb9\x56\x8e\x51\x87\xf0\x9b\xf2\x0a\x5c\xd7\x8d\xf6\x7e\xce\xdd\x42\x4b\x12\xf7\x6e\xa2\x87\x17\xad\x24\xb6\x71\x06\xfc\xef\x78\xea\x1f\xa5\x38\x51\xa9\x9e\xf4\x7b\xff\x3b\x7e\xff\x82\xd6\xc4\xbc\x34\x3f\xc0\x15\x55\x98\x87\xa3\x0c\xdb\x0c\x8f\x0b\x4b\xe5\xd1\x21\x07\xcb\xca\xe8\x5a\x25\x5b\xe3\xcb\x70\x54\x79\xca\xc7\x87\x9f\xe5\x08\xb3\x1c\xc7\x67\xc6\xf7\x0e\x06\x46\x9b\xe5\xf9\x8a\xf4\x51\xc8\xf5\x0f\x83\x92\xe5\xf9\xea\x78\x68\xdb\x34\xf9\xd9\x33\xd8\x12\x90\x87\x46\xd4\xad\xa2\x40\x2b\x89\xea\xd7\x5a\x36\x55\x17\x43\xed\x03\xda\xd8\xc0\x6a\xcc\xfb\xa6\xff\xb6\x69\x46\x16\x8a\xbb\x59\xce\x2b\x13\x5b\x5a\x79\xc3\xa1\x5d\xb3\xcd\xe5\xc2\x4a\xba\xe6\x1b\xac\x6d\xd4\xab\x03\xe2\x47\x2f\x42\x03\x73\x61\x18\xc1\x8c\x61\x42\x6e\x71\x2b\x90\xc5\xfb\x3d\x55\x6f\x6c\x42\x10\x08\xc9\xbc\xcf\x0e\x11\xfb\x44\x37\xed\xbf\x43\xc4\xb1\x5a\xd3\x15\xa8\xf5\x98\x25\x90\xc6\xc3\xd7\xe6\x8d\x5a\xb3\x15\x50\xe2\x04\x96\xe0\xc1\x3a\xf7\x1b\x67\x9b\xf8\x19\x35\xbe\x50\x83\x4d\x6a\x21\x09\x21\xaf\xa2\xd8\x13\x87\x77\xf7\x8b\xc5\x33\x17\x98\x59\x9a\x37\xaf\xb8\xca\x39\xba\x5f\x40\x44\xcc\x68\x71\x73\xb4\xf0\xa3\x5d\x3c\xb9\x1b\x2e\xf4\xf0\xb2\x71\x21\xad\x06\xae\x16\xcb\x06\x11\xf7\x48\xf4\x23\x41\xcd\x1c\xd3\x95\x8c\x03\x5c\x4b\x99\x06\xb8\xc8\x1c\xb3\xd0\xe3\x9d\x38\x85\x0e\x2e\x52\x95\xe8\xba\xe2\x11\x37\xbd\x96\x27\x4c\x34\x35\x2d\x46\x6e\x13\x74\x80\x36\xaa\xb5\xff\xa7\x08\xe4\xe8\xc8\x3f\x8b\x8e\x02\xb3\x55\x12\xed\x59\xf6\xa2\x3d\x52\x77\x48\xc8\x8c\x1a\xdd\x64\x7f\x2f\xed\x2b\x44\x70\x6f\xcb\x33\xed\xb4\x97\x74\x2d\x37\xf6\xcd\x9e\xaa\xff\xfd\xbf\x48\xdd\xd2\x9c\x40\x44\xd7\xcd\x06\x03\x1b\xa7\x38\x60\xbe\x8a\x23\x4a\xcb\x7e\x44\xa9\xd5\x1d\x12\x8e\xd2\xea\x66\xe5\x1f\x96\xe6\x9d\x36\x70\x52\x0c\xcf\xd4\xfa\xa0\x01\x68\x03\x00\x7f\xb7\x00\xd4\x1a\x80\x4a\x03\x10\xf4\x86\x4b\xe8\x85\x94\x56\x0e\x2c\xe2\x00\x5a\xeb\x17\x1b\xaf\x02\xec\x26\x6e\x09\xf6\x08\xb2\x0f\x42\xb2\x8f\x82\x2b\x52\x83\xce\xad\x8c\xfb\x3a\x13\xad\x38\x51\xb9\xa5\xbc\x63\x86\x2c\x9b\xd2\x95\xba\xeb\x73\x80\x95\x87\x67\xf7\x8b\xc5\x0c\x7c\x01\x96\x6a\x06\x4e\x8f\xc0\x81\xf6\xf7\xff\x36\xd0\x46\x21\xb3\xb2\x36\x02\xda\xfb\x70\x70\xbc\xeb\x47\x03\x3c\x69\xfc\xdc\x79\x92\x26\x0d\xec\xe4\xb9\x39\xd0\x17\x09\xdc\x89\xb5\x32\x5a\x41\x86\x06\x6a\x1a\x1a\x2c\x30\xee\xcf\x94\x65\x72\xd0\xf8\x64\xa2\x4c\x46\x99\x47\xa0\x68\x00\x51\x93\x65\x53\xf3\x86\x35\xe1\x24\x66\x7c\x9f\x78\x9b\x11\x2e\x7a\x1b\x21\x58\xcd\x19\x3a\x60\x3a\xe7\xfa\x6c\xbe\x96\x6d\xb0\x09\x3a\xbe\x34\x13\xd7\xfa\xac\x24\xe8\xe0\x18\x31\xe0\x2c\x3f\x2b\xb1\x6c\x91\xe0\x89\x25\xb0\x8c\xce\xf9\x91\xe5\xaf\x88\x35\xcf\xf5\x39\xc9\xf8\x7e\x39\x5d\x5c\x3d\xfb\x76\x4b\xdd\x4e\xd9\xfe\x26\x7a\xa5\x63\x27\xcc\x56\x6a\x39\x57\x88\x62\xbe\xa2\xcb\x39\x45\xd6\x6a\xd1\x20\xfc\xa1\xca\xc1\xcc\xb0\x09\xb2\xc9\x34\xfd\x63\x01\x2d\x3b\x8b\x71\x56\x19\xd0\x67\x14\xf5\x7a\x86\xa3\xf8\x40\xdf\x09\xdc\x63\x3f\x54\xc5\x53\x8c\xad\x10\x69\xed\x1e\x7f\xf5\x55\x78\xca\x6d\x86\xd3\x79\x4c\xa5\x44\x12\x3b\x4d\xa3\xcd\x53\x88\x54\x11\xe8\xe3\x33\xd9\x36\xce\x64\x4e\x6e\xd7\xad\x4c\xad\xf1\xa2\xc7\x03\x70\xd0\xb2\xa6\x1b\x5b\xf4\xa2\x67\x34\x20\xa9\x71\x70\xd8\x2e\x9f\xc6\x49\xdd\x11\xa9\x1f\x9a\x8b\x70\xc8\xf4\xe9\x8e\x43\x60\x22\x36\xe1\x7a\x06\xce\x60\x17\xb4\xb0\xb0\xb3\x0d\x1e\x6e\x88\xd9\x1a\x00\x37\x54\x09\x48\x8b\xc4\x20\xd4\xa3\xa6\x8b\x1e\x3e\x73\x5a\x18\x23\xd1\xbe\x84\x36\x92\xbd\x93\xe2\x98\xd0\xc1\x34\xf8\x18\x40\x6c\x96\x25\x39\x36\x6e\x3c\x9e\xab\xed\xc0\xc9\x43\x4d\xe3\xfd\x5a\x62\xf6\x68\x3b\xa2\x2e\xf0\x74\x71\x75\x05\x5f\x40\x9c\xc8\x96\xa9\x27\x04\x66\x22\x27\xda\x24\xee\x4f\x1b\x1b\x02\x9a\x50\xa3\xfa\x67\xc4\x44\xb8\x4d\xb9\x52\xe1\x61\x88\x74\xa5\x66\xe0\xd8\x80\xa5\x8a\xcc\xe7\x11\x1f\xa0\x1e\x73\x1c\xd4\xc0\x1b\xb0\xe2\xa9\xc8\x7e\x4f\xa5\x69\xb9\x5c\x16\x57\x7f\xaa\x3a\xc4\x0e\xa2\x3f\x07\xf3\x1e\x4d\xef\xa1\xb1\x6e\x05\x1f\xf1\x79\x86\x62\x24\x78\xe2\xf9\x38\xfb\x5c\x70\x91\x34\x7f\xd6\xb8\xd2\xe6\x40\xcf\x60\x6e\x57\x9e\xc7\x6e\x5a\xf8\x7d\x2d\xab\xfe\xe8\xbe\x38\xa9\x42\x11\xb9\xa7\xca\x1f\x2e\xde\xec\x3e\x0f\x05\x02\x71\xbc\x5d\x1b\xb7\xc8\x60\xf8\x07\x72\xa4\x9b\xcb\x25\x6d\xd0\x3c\xeb\x22\x74\x7d\x8e\xe7\x1b\xc4\xf2\x5e\x23\x74\x4a\xa4\x62\x4d\x8f\x45\x21\xe2\x26\x46\x6f\x25\xa2\xe7\xa4\x5b\x0f\xa4\x0f\x8b\xb6\x8c\xba\xb5\xad\x20\xf1\x4d\x37\x8f\x15\x5a\x57\x63\xe8\x65\x97\x6f\x4a\x11\x69\x9e\x30\xdc\xbf\xbe\xf6\xcd\x2b\x95\xfa\xb5\xde\xca\xd2\x94\x1c\x6c\x62\xe0\x73\x59\x55\x19\x3a\x38\xa5\xd9\x63\x37\xdb\xeb\x16\xc7\xdd\x90\xd3\x7b\xa3\xc8\x63\x5d\x3c\x62\x51\x9d\xaf\x7d\xaf\x8d\x6a\x5d\x03\x40\x19\x59\x94\x96\xb9\x76\x78\x4c\xa8\x00\x18\x93\x2a\x30\x74\xb2\x01\xe8\x8a\xbf\xaa\x1b\xdb\x1e\x60\x47\x2f\xbf\x33\x32\xe1\xe4\x31\x15\x05\xe7\xee\x28\xed\xee\x38\xd9\x8f\xe5\x16\x5b\xb5\xa0\x87\x3b\x04\xd6\xf4\x38\x58\xc3\xe3\x38\xa4\x28\x92\x4a\x8b\xd4\xf3\x0c\xfa\xc5\xd5\x3e\xe8\x6d\x0d\x2d\x6e\x3b\x41\x62\x71\xdb\x26\x3c\x2c\x8a\x6a\xb2\xec\x97\x9f\x5f\x2b\x57\x09\xc6\xb7\x74\xc0\x80\xe3\x2c\xa6\xf7\x9e\x43\x5f\x86\x6b\x5e\x1c\x58\x45\x73\x08\x97\xa1\x25\xe9\x6a\x80\xfe\x40\x49\x1d\x03\xed\xc4\xc1\x71\xdc\x77\xa6\x26\xe8\x06\x56\xca\x9b\x7a\x3d\xf1\xfe\xf6\x54\x7d\xc7\x2a\xfa\x17\xb3\x54\xa2\x2f\x3d\x8f\xe5\xe0\x03\x6b\xd8\x43\x6d\xb9\x18\xc0\xd2\xb0\xa8\x43\xc0\xc8\xb8\xa1\xdd\xa9\x0f\xc8\xa5\x2a\x6c\x09\x93\x99\x05\x29\xb1\x54\x45\x3c\x6f\x6a\x67\x0e\xac\x54\x7a\x75\xba\x79\x64\xc1\x01\x4f\x79\xcc\x5c\x2e\x43\xce\xd0\xa3\x81\xb7\x62\x3f\xb1\xf3\x4f\xb8\x40\x0e\x9d\xae\x0a\x91\x16\xee\x3c\xf6\xa9\x6d\xf7\x08\xca\x5e\x8e\xd3\x27\x07\x4c\x30\x89\x55\xc3\x40\x90\x07\xdf\x17\x68\xfe\x5b\x69\x1b\x11\xa5\x47\x5a\x3d\xf4\xf3\x08\x9b\xd0\xd1\x50\x36\x26\xf5\x67\x12\x76\xb0\xdc\x4d\xbc\xf8\xb3\x27\x45\x8b\x29\x8b\x1a\x51\x06\x1a\xc5\x00\x9a\x45\x2a\xda\x28\x29\x9e\x46\xf5\x5c\x14\xf0\x03\xa8\xa6\x3b\xa5\xff\x9a\xd8\x84\xd1\xa6\xe2\xa4\xff\xd8\x50\x41\xaa\x5e\xbb\x27\xe3\x42\x01\x13\x25\xe4\xbf\x65\x91\x48\x97\x57\xf0\x3f\x7e\x59\x6e\x01\xdd\xa8\x40\x00\x85\x4d\x54\xc4\xc5\x05\x88\x23\x81\x64\x5a\x62\xe0\xda\x7e\xa3\x42\x83\x4f\xa5\x28\x42\x5b\x0a\x75\xfc\xc6\x01\x6e\x2a\x13\xba\x6c\x86\xad\x4a\x18\x49\x5e\xa0\xb4\x7c\xa1\x9f\xf3\x18\x4f\x6d\xd8\x6d\xdf\x4a\x70\xc8\xd8\xd7\xe5\xfd\xfc\xb9\x76\x5e\xb4\xb5\xcd\x62\x2f\x27\x3f\x64\xd9\xc1\xa7\xaf\xbe\x21\xd5\xc4\x9d\x69\x93\x9d\x90\x13\x30\xb3\x6c\x18\x22\xda\x05\x27\x47\xda\x9c\xc8\xd6\xa5\xb1\x72\x76\xb9\x28\x08\x61\x99\x64\x46\x18\x6a\xbd\x2c\xfc\x87\x6f\x6b\xd3\x23\x13\x26\x37\x20\x30\xf7\x57\x23\xce\x3e\xd6\x1d\xad\x59\xd1\x1d\x69\x6b\xd5\x24\x63\x42\xa9\xe4\x6c\x56\x97\xa9\x7b\xe3\xf0\xf8\xe7\xbf\xbe\x7a\x81\x05\xda\xae\x85\xd5\x1d\xbd\x4c\x4c\x19\xd7\x5d\x47\x5e\x3e\xe3\x4c\xbd\xb6\xb1\x31\x58\x4a\x67\x77\x5a\x6d\x96\x47\xd9\x9b\xc6\x64\x93\xe2\xea\x5f\x15\x97\x5a\x77\x99\xeb\xee\x02\x06\xfd\xac\x0c\x02\x8a\xba\x25\xb9\x04\x1a\x17\xcc\x12\x7f\x39\x64\xe0\xf4\x74\x15\x14\xde\x51\xb5\x15\x31\xf9\x5d\xfe\x7f\xff\x51\x3d\xfb\x47\xb1\xfa\x47\xf5\x0c\xe6\xff\xf8\xe9\x19\xbc\x83\x88\x61\x9a\x65\x74\x7d\xbf\x41\xdc\xfe\xfa\xd2\xde\xfb\xe9\xca\xd6\xdd\x64\x8b\x92\xc5\x85\x93\xcc\xa3\xfe\xb8\xe6\x9b\xcb\xa5\x4b\x9e\xb1\x67\xc2\x25\x35\xc3\x55\x90\xb6\x4b\xcc\xa2\x44\x73\x5e\x51\x8d\x17\x68\xab\x2d\xcd\x88\xab\x30\x08\xca\xc4\xe5\xfe\x04\x0a\x1c\x80\xcf\x5b\xc1\x15\x61\xdc\x15\xee\x2e\x23\xed\x28\x69\x4d\x4c\x4e\xfe\x8a\x02\x05\x8d\x66\xef\x82\x3b\xe1\xe9\x9d\x38\xe9\x07\x49\xb5\x74\x87\x5f\xcf\xfd\xec\xba\x69\xcc\x7e\x5d\x14\x7f\x6c\x00\x8a\x4e\x91\xe5\xd9\x1d\xa7\xcb\x45\xac\x6d\x9b\x2d\xa9\x69\xbe\x28\x16\x8b\x7b\x08\xae\x28\x3e\x88\xc2\x88\xfb\xe1\x08\xdd\xdb\x9b\xd5\xd1\x7d\xa3\xb2\x93\x8f\x5d\xcc\x1f\x10\xed\xc6\x6e\x22\x75\x9d\x55\x7a\xc9\xe8\x8a\x76\x11\xa3\xdf\x32\x22\x62\xc9\xdb\x8a\xe3\x89\xb8\xfe\xc6\x9e\xf0\xac\x9c\x65\xdd\xb5\xad\x78\x91\x35\xdd\xac\x7a\xcf\xcb\xe4\x59\x6d\xae\xa8\x37\x2d\x3e\x47\xe4\x02\xac\x79\x15\xc4\x0f\x85\x00\xae\x7e\xf3\x5d\x08\xe7\x22\x2b\x8f\xaf\x4c\xbd\x8c\x19\xf6\x3a\x6e\x00\x31\xd1\x01\x6b\xde\x84\xf8\x5e\xc4\x00\xdd\x0b\x53\xb1\xe9\x78\x01\xb0\xe6\x2f\xe6\xd7\x37\xa2\xd5\x66\x73\x9f\x31\xfc\x7b\xc6\xf7\x5d\x23\x30\x98\xbd\x91\xe7\x93\xb4\x16\xa4\xd2\xac\xdc\xf9\x6f\x8d\x22\xc7\x53\x83\xd7\x9b\xe8\x31\x21\x96\x6d\x82\x28\xa5\x64\xe2\xd3\x26\xfa\xb3\x48\xc5\x22\xb1\xc3\x62\xd5\x66\x37\x03\x60\xa9\x9c\x5a\x7b\x60\xbc\xb2\xdb\xcd\x0d\x7b\x44\xc0\x0e\xcd\x1c\xd3\x6a\xe7\xd4\xbf\xf5\xa0\x04\xae\xad\xf6\x8c\x24\xe5\x96\xd1\x5c\x97\x84\xcd\x42\x11\xa5\x9d\x26\x14\x53\xe9\x25\x7d\x41\x95\xbd\x82\x31\x60\x46\xdd\x05\x71\x8d\x35\x81\x17\xa5\x08\x75\x96\xc2\xd7\x59\x4a\x4c\xd7\x62\x83\x1a\x53\x53\xc1\x72\x69\x70\x04\x4b\x77\xa7\x29\x68\x62\x6e\x00\x1c\x5f\x7c\xac\x1c\x87\x8f\x54\x7d\xe5\x2a\xa5\x80\xde\x6e\x28\x3a\x44\x3b\x7d\xfa\x8e\xcf\x1b\x72\xfe\x1d\x56\x8b\x23\x39\xe5\xa3\x75\x40\x0e\xb7\x57\x33\xa5\x2b\x35\x18\x64\x92\x25\x6d\xa8\x93\x19\xcf\x62\xef\x8f\x84\x93\x3d\x7d\x6b\x38\x2d\xbf\xc9\x10\x89\x18\x01\x88\x28\x0e\x72\xbd\x52\xcb\xa9\xa3\x76\x27\x5d\x4c\xd1\xaa\x8c\x0e\x44\xcb\xd6\x61\x23\x5d\xc4\xba\x37\x06\x4f\x17\x96\x29\x4c\xcd\x91\x1b\xac\x1b\x22\xd0\x07\xfb\x72\x86\x52\xee\xd1\x79\x3b\x3b\xcd\xfa\xd9\x69\xab\xe8\xbe\xa7\xa4\x69\x65\xbf\x78\xd0\x9b\x48\x1c\x09\xdc\x53\x4e\xa5\x58\x0d\xef\x5b\x8a\x55\x2f\x7c\x9a\x56\x16\x0a\xb8\x14\x37\x0a\xf7\xb2\x2c\xe7\xd8\x05\x4c\xd7\x6a\x83\xf9\x8a\xe5\x1c\x6a\xa5\x28\xe0\xd2\x37\x2e\x02\x65\x7b\x72\x67\x63\xf6\x81\x68\xe6\xf5\xb7\x42\x3a\x4a\xfb\xb8\xc3\xfb\x84\x14\x81\x02\x27\xd1\x74\x4c\xe1\x31\x92\x4e\x31\x5e\x7a\x66\x79\x7d\x84\x1d\xa7\xaa\x60\xcd\xab\x3d\x17\x92\x56\x96\x21\xdf\xdf\x86\xdb\x27\x9c\xde\x6b\xb3\xfa\xb9\xab\xa0\x7b\xc3\x2d\x94\x5d\xee\x51\xef\x21\xcb\x54\x72\x4b\x8e\xe1\xf5\xa6\x1c\x2f\x92\x8c\x62\xd9\x7e\x37\xaf\xd3\xd4\x88\xd2\xe2\xae\x59\x11\x2b\xc4\x35\xb8\x96\xb5\xb1\xb9\x4b\xda\x3b\x25\x10\xb3\x8a\x41\x2b\x2c\x1b\xd5\x73\x88\x93\x62\x4b\x1b\xd7\xf7\x3f\x5b\xda\x52\x53\x6e\x1d\xa1\xf0\xf5\xcd\xbc\xb6\xc5\x54\x57\xfc\x63\x06\x0d\xe7\x1b\x86\x6e\xdb\x53\x45\x94\x16\xd7\xfd\x9e\x4a\x2d\xc4\x23\xfb\xef\x52\x38\xef\xbd\xd5\xa3\x61\xc9\x95\xd9\x2f\x52\xc5\x23\x52\xc5\x93\xc9\x14\xf8\x0d\x52\xbf\x33\x0d\x47\xb2\xc4\x8d\x5c\x7c\x74\xfe\xe8\x5e\xdd\xb5\xcc\xb6\xae\x31\xc6\xea\x72\xe9\xae\x6f\xab\x95\x71\x1f\xe2\xe8\x1a\x5e\xc0\x65\xda\x40\x3a\x26\x75\x2d\x96\x6b\x62\xf0\xf1\x98\x7b\xc3\x57\xca\x64\xc8\x4c\xdd\xfb\x32\x57\x7e\x78\x2e\x9e\x25\xb3\x21\xe5\xd2\x60\xa6\x63\x37\xf9\x2d\x85\xd2\x3b\xcb\xfd\x91\x97\x34\xde\x40\xcc\xf0\x14\x0d\xa7\xbf\xcd\xbf\xa4\x81\x70\x53\xaa\xe2\xcf\x64\xa3\xc4\x4a\xea\x7d\xa2\xf7\x4d\xf4\xd2\xe9\xa8\xdc\x65\xbe\xd1\xd4\x27\xe2\x6e\xf4\xb2\x59\x68\x34\xbd\x87\x81\x25\x93\x95\x70\xa5\x5b\x47\x06\x0f\x05\x34\xe8\xfa\x24\x41\xaa\x77\x57\xb2\xf8\xc2\x95\x86\x7c\x86\xe9\x8a\x25\xd7\xa2\x58\x52\x35\x32\x63\x83\xbb\x4b\x6c\x70\x77\x69\xc9\xd2\x42\x92\x30\xc7\x3b\x71\xea\xfa\x77\xd7\x9a\xd8\xf0\x5a\x13\x44\x0a\x7f\x4f\xd4\xa1\x38\x92\xc7\x5c\xa1\x45\x2f\x24\x6e\xe3\xfd\x74\x05\x0c\x36\xc1\x12\x58\x7c\x81\x0d\x76\xf9\x7a\x83\xb3\x11\x9d\xd4\xaf\xff\x8f\x2f\x72\x0a\x73\xa5\x4d\xbb\x51\x36\x76\xa3\x66\xc0\x8f\x06\xc8\xd4\x0b\xae\xe9\x26\xb9\x4b\x0f\xcf\xcd\x6c\x86\x1a\x8c\x65\x96\xb1\xdc\x5f\x9c\x37\x8e\xa1\xc4\xe1\x82\xc8\x2e\x9f\xd2\xcb\x65\x2a\x93\xbc\xa3\xbf\x2f\xd7\xe0\x45\x49\x87\x6a\x80\xc2\xb3\xbd\x93\x6d\xea\xbe\xad\x1e\x4e\xc0\xbb\x51\xa8\x4d\x57\x26\x79\xea\xaa\x69\xe1\x92\x75\x35\x01\x21\x28\xa5\x67\x44\x2d\xf4\x2f\x3a\xe7\x3d\x79\xba\x5c\xda\x7e\xe1\x95\xcf\x96\xb4\x85\x9d\x87\xc2\x52\x98\x5a\x33\x5f\x24\xe9\xc7\x16\x4a\x32\x2b\xc8\x88\xc1\xab\xb9\x93\x30\xfe\xde\xdc\x21\x41\xbb\x82\x99\xe3\xe6\x96\xaf\xe2\xd4\xb1\x29\x83\x37\x59\xd1\xee\x7c\xc2\xd3\x85\x55\x7a\xfc\x97\xcc\x10\x12\x52\xdd\x39\x87\x76\xd6\x18\xef\xa5\x18\xbc\xfd\x6a\xb2\x6c\xa8\xab\x0d\x75\x96\x7d\xf4\xdb\x63\x5c\xc5\x3a\xdd\x1a\x4c\x66\x05\xab\x9f\x1d\xac\x9f\xb5\xd2\xf8\xd1\xc8\xa3\x6b\x1c\x31\x2c\xfe\x83\x0f\x1d\x26\x4c\x36\xb1\x3b\x14\xcc\xc4\xa3\x76\xc0\x88\x25\x64\xb6\xf9\x33\xb6\xd0\xd7\x75\x9d\x9b\xd0\x0e\xe6\xc9\x15\x08\x97\x4b\xb0\x26\x60\x6c\x98\x0e\xad\x39\xd3\xec\x9c\x13\x87\x40\x2b\x2c\x9d\xf2\xdc\x53\x65\x5c\x33\xad\x77\xe8\x56\xa5\x3e\x55\x8a\xe1\x78\xad\x08\xcf\xfd\x29\x6e\xa8\x7c\xbf\xc5\xa8\xf7\xf3\x9a\x51\xae\xdc\xb2\x34\xd2\x96\x76\xb9\x87\x78\xd2\xb3\x09\xd6\x6a\xd3\x66\xa7\x66\x34\x51\x9c\xb4\xaf\x29\x4d\x1c\x57\x15\x4a\x9c\x42\xcf\x77\xe6\x21\x55\x88\x2e\xf0\xab\x0a\x69\x6f\x51\xd2\x54\x03\xd3\x81\xbe\x85\x3e\x34\xac\x0a\xfb\x23\x1a\xe3\x34\x30\x1d\xd1\xb1\xd7\x3e\xa5\xec\xa1\xb2\xa7\xbe\xa6\xf8\x8d\xa9\x20\x18\x13\xaa\x9b\xe8\xf2\x76\x5b\x8c\x24\x24\xb4\xe9\x0e\x91\x74\xd8\xa2\x06\x5b\x73\x6e\xff\x88\xe8\x1a\xad\xc1\x10\xd5\x18\x9a\x73\xf3\xbf\x08\xd7\x68\x1d\x56\xb8\xc3\x0a\x75\x7f\x45\x72\xf1\xd6\xe1\x81\x7b\x3c\x50\xff\x43\x24\x77\x70\xaf\xe1\x3e\x25\xda\x25\x35\xb5\x3c\x7e\x42\xbb\xc8\x75\x4e\xb8\x78\xe4\x06\x88\xf3\xba\x63\x1b\x33\x09\x32\x38\xe7\xa8\xe5\xb7\xa6\x1c\xcb\xf3\x7e\xc6\xac\xf7\x7a\x56\xc1\xe5\x70\xc6\x60\x0c\x69\x1b\x88\xf7\x6e\xfa\xe4\x12\x01\x3f\x0c\xa0\xfb\xc5\x02\x76\x66\xd2\x48\xee\x23\x5a\xd2\xc9\x2d\xa7\xb4\x72\xcd\xde\xff\xe8\x47\x51\xd1\x6e\xd8\x6b\x28\x86\x6c\xbc\xc0\x57\x0f\xc9\x32\x15\x05\xa3\x54\x74\x01\xd9\x87\xa4\x4c\xcd\x5e\x68\xd6\x4b\x92\xaa\x1f\xda\xe8\x59\x6d\x5d\x58\x23\x5c\x90\xeb\xa9\x9f\x28\x08\x62\x3d\x77\xa7\xde\xcd\x95\x79\xb3\x86\xb9\xcd\xdf\xbb\xd6\x13\xad\xe1\x61\x30\x27\x4e\x6f\xf2\xd8\x91\xa3\xc1\x12\xb4\xc9\x41\xbd\x84\x5e\xe0\x24\xe9\xcf\xaf\x10\xef\xc2\xe4\xff\x52\xe7\x2a\x82\xdd\x7c\xb8\x27\x5f\xb8\xe8\xbd\xdd\x1a\x0d\x26\x02\xfa\xdc\xe8\x02\xfa\x2c\xe8\x87\xbd\x9c\x57\xd5\x4f\x27\xab\x4f\x79\x8f\x2e\x5b\x3a\xea\x3d\x3a\x24\xf4\xfc\xa9\x51\x7f\x52\xdb\x46\xc1\xb5\x60\xcf\x34\x88\x1e\x5c\x6d\x58\x19\x0d\x90\x24\x42\x3f\x09\x99\x49\xea\xfd\x5b\xe0\xb2\x59\xf9\x6b\x8c\xb1\x9b\x61\xab\xa1\x7d\x63\xd8\x2d\x25\x87\xdf\xdd\xff\xd7\x2c\x06\x1a\x1a\xc7\xb9\x6e\xc4\xf9\x16\x25\xfd\x53\xc4\x71\xce\xf0\x8d\x3e\x5f\x12\x5e\xba\x8f\x8e\xb1\x2e\x8d\x84\x55\xc8\x49\x47\x2b\x35\x3d\x03\x89\x0f\xaf\x5b\xd2\x4f\x5e\xb7\x8c\x16\x8f\x4c\x40\x96\x65\xee\x8a\x2c\xeb\x62\x02\xd4\x22\x3c\x2d\xd3\xf8\x04\x7a\x6e\xb1\xad\x2d\xff\xa0\xe6\xeb\x1a\x41\xf8\x47\x8c\x7c\x15\xd4\xbe\x3e\x3a\x07\xb6\x9d\x0d\xb6\x25\x96\xdc\x48\x12\x79\xc4\x98\xb1\x37\x32\x94\xff\x8c\x03\x00\x48\x85\x3b\x4b\xe6\xc9\x7d\x4f\xc5\xd5\x8e\x5b\xb2\x8d\xc3\xe7\x56\x34\xe5\x23\xce\xc4\x8c\xe3\xc9\xe5\xc8\x85\x90\x38\x35\x57\x3a\x6b\x7b\xbb\xa6\x1b\x14\x17\x90\x8c\x75\x46\x6d\x96\xb5\x0e\x0d\x2f\xcc\x0d\xb9\xa8\xe7\x30\x65\xd8\x25\x94\xe0\x15\x49\x73\xa5\x6e\xc0\x34\x23\xd9\x51\x07\xb0\x16\xdd\x04\xd0\x70\xd0\x68\x58\x4d\x06\xa3\x17\xeb\x8f\xf2\xae\x4d\x2e\xc3\x17\x82\x42\xe6\x2a\xce\x70\xc6\x29\xcd\xae\x3d\xf4\xd5\x0c\xc2\x7a\x49\x92\x74\x78\xf2\x4e\x77\x0e\x09\x34\x85\x98\xdd\xaf\xdd\x36\x62\x36\x8b\xd6\xe4\x42\xaf\xe5\xef\x7d\xe6\x4c\x2b\x29\x83\x53\xf7\x79\xb7\xe8\xa7\xd1\x40\x88\xd9\x3c\xd4\x11\x9f\x8f\xcd\xf2\x1e\x35\xcb\x7b\xfa\x87\x60\x1d\x75\xb9\xb9\x5f\x77\x39\x71\x3d\x56\x45\xf0\xef\xbb\x88\xd8\xad\x71\xe3\x1a\xa2\x2a\xdc\xa7\x34\xcd\x8d\x43\x9f\x8f\x8f\x2e\x1c\xfe\xec\xd7\x04\xba\x7c\x2e\x70\x5f\xd3\x04\x11\x23\x24\x24\x2b\x76\x4c\xb9\xaf\x0b\xb1\xe6\x5b\xe6\x3f\x00\xc2\xa2\xd4\xef\xe7\x45\xc6\x51\xe7\x13\x45\xb1\xee\x1c\x6c\x45\xdd\x1e\xb9\xff\x8a\x48\xf8\xc8\x0a\xb8\x35\x60\xdf\xba\x3a\x8d\x61\xdf\xa3\xed\xf7\xdc\x4c\xd9\x1d\xf6\x5b\x51\xff\xbd\xc1\xd1\x07\xcc\x14\x5e\x94\xea\x4f\xfe\x5d\x53\xaa\xd9\x0c\x86\x9e\x56\xa9\x7a\x4b\xe3\x48\x1e\xff\x8e\x17\xd7\x64\xbf\xe9\x32\xbd\x0a\x61\xbf\xe9\x2e\xa4\x65\x20\xcc\x21\x9a\xfa\x25\xfc\x76\x13\xa5\x67\x8f\x95\xc5\x06\x31\x2b\xd4\x4e\x5d\x94\xfd\x41\x58\xeb\xfd\x9c\xc1\xe8\x73\x34\xae\x44\x6b\x9b\x2c\x78\x8d\xe2\xcf\xd1\xf0\x99\x3b\x05\x0c\x0e\x7d\x52\x21\x1d\x39\x8b\x7b\x48\x2c\xee\x38\x6a\x30\x9f\x8b\x2f\x38\x22\xb8\xc9\xb2\xfb\xaf\x9a\x15\x90\x26\xe3\xb8\x04\xbb\x5a\x08\x09\x4a\x69\xe2\x5c\x6b\xb2\xc9\x65\x40\x7a\x13\x82\x5f\xd2\x7d\x7a\x21\xe0\x70\x80\xa1\xcf\x08\x66\x7a\x4e\xb4\x17\xe3\x56\x89\x02\x0e\xb5\x8f\xcb\x44\xdd\x72\xac\xb1\x55\x8e\xec\x13\x9b\xdb\xd0\xb1\xd5\x9d\xf0\xf4\x27\xc2\xe7\xe6\x54\xe9\x78\xbb\x2b\x60\x30\x96\x7c\x20\xcd\x17\x7d\xfc\xdb\x32\x86\xfb\xaf\x68\x40\xe1\x96\xb2\x1a\x20\x6e\x31\xc8\x36\xf9\x60\x92\xbb\x01\xe3\x94\xdc\xa1\x96\xf1\x9c\x07\x7c\x87\x3b\x0a\x22\x0e\xed\xd6\x7f\x96\xa2\x3d\xd9\xaf\x29\xf8\x61\xae\xfc\x43\x3f\x22\x73\x45\x3e\x5c\xe0\x93\x10\x11\x7c\x7e\x5c\xf6\x57\x7d\xd6\xa0\xa7\xa5\xbc\xa2\x03\x96\xb3\x18\x46\x5b\x9b\x8f\xda\x8e\xd7\x9a\xd9\xfd\x5c\x84\xef\xfe\x2c\xca\xf6\xab\xaa\xac\x12\x19\x5b\x37\xb3\x6a\x83\x0f\x5e\xe5\x90\x21\xee\x3d\xd8\x7d\x83\xf6\xcb\xaf\x42\xd9\x48\x37\x5d\xfc\xc5\x9b\x4d\xc8\xc7\x1a\x48\x34\x0b\x2c\x4a\xf6\x15\x2f\xb9\xb7\xe4\x3a\xb6\xd7\xd2\xde\xb8\x8f\x29\xf2\x99\xf6\x72\xd6\x7c\xd3\x71\x6d\x8a\xa3\x6b\xfc\x19\x92\x08\xd6\x38\xf2\x30\xb4\xda\xb4\x67\x83\xa2\x34\x50\x12\x93\xd0\xef\xc4\x90\xcd\x93\x1b\x3e\x12\x8b\x95\x8d\x31\xf8\xa0\x01\x6a\xb0\x9c\xb1\x88\x3f\x10\xb1\x20\x1b\x59\xcc\xe5\x08\xbb\x90\x20\x89\x0b\x44\xa0\xbb\xeb\x17\x0d\x6a\x46\x06\x1d\xe6\xb8\x19\xf0\xaf\xf9\x1c\xe3\x21\x70\x5f\x87\xe9\xf9\x3d\x3a\x04\xfe\x6b\x6f\xed\xca\x5e\x74\xac\x70\xde\xae\x4c\x6c\xa4\x0b\x72\x40\xbf\x25\xc7\x4e\x35\x26\xe5\xe1\x2b\x6c\xbf\x8e\x16\x31\x4e\x1d\xe8\x93\x57\x28\x79\x01\xc7\xb8\x28\xce\x36\xf4\x8f\x26\xa3\xdb\xc7\xa8\x1d\xa6\xf5\xd9\xe8\xb3\xbb\xbd\xda\x8d\xbb\x26\x97\xf4\xc6\xb5\x94\xf6\x95\x9d\x8d\x3a\xcc\xb4\xf8\xa3\x34\x87\x10\xa9\x9f\x81\xdc\xf7\x8b\xa1\x8f\x0e\x32\x44\x03\xb7\x97\xf3\x39\xcd\xb2\x85\xbf\xf5\x60\xf1\x42\x37\x25\x54\xb3\x59\xe9\xbf\xf5\xd3\x11\x4c\xc1\x67\x7d\xea\xce\x23\xd5\x9f\x82\xf4\x19\x11\x90\x11\x15\x9b\xe0\x68\xec\x4c\x54\xd3\xb1\x61\xe6\x3b\x12\xe5\xff\x0b\x00\x00\xff\xff\x14\x19\x87\x77\x31\x5c\x00\x00") - -func staticManagedJs411MasonryPkgdMinJsBytes() ([]byte, error) { - return bindataRead( - _staticManagedJs411MasonryPkgdMinJs, - "static/managed/js/4.1.1-masonry.pkgd.min.js", - ) -} - -func staticManagedJs411MasonryPkgdMinJs() (*asset, error) { - bytes, err := staticManagedJs411MasonryPkgdMinJsBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "static/managed/js/4.1.1-masonry.pkgd.min.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - var _staticManagedJs41747BootstrapDatetimepickerMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x7d\xfd\x93\xdb\xb6\xb5\xe8\xef\xef\xaf\xa0\x70\x6f\x69\xa0\x8b\x65\xa4\x5d\xd7\x69\x29\xd3\x9a\x24\x6e\xeb\xdc\x7a\xe3\x34\x76\xdb\x9b\x2a\xfb\x3a\x20\x09\x89\xdc\xa5\x48\x85\xa4\x76\xad\xac\xf8\xbf\xbf\xc1\x27\x01\x92\xfa\x72\x9a\xdc\x37\x73\xc7\x33\x5e\x11\xc4\xf9\xc0\xc1\xc1\xc1\x01\xce\x01\x38\x5a\x6c\xf2\xa8\x4e\x8b\x1c\x12\xf4\x04\x36\x15\x75\xaa\xba\x4c\xa3\x1a\x4c\xd3\x05\x04\xea\x25\x08\x82\x7a\xbb\xa6\xc5\xc2\x89\xe9\x22\xcd\xa9\xeb\x8a\xbf\x1e\x59\xc5\x48\xfc\x84\x73\x70\xf7\xe3\x86\x96\x5b\x80\xc1\xaa\x58\xd1\xbc\x06\xb7\x98\xa0\x29\xcd\x2a\xea\x30\x5c\x45\x78\x47\xa3\xba\xc5\x44\x3f\xae\x8b\xb2\xae\xd0\xaa\x88\x37\x19\xf5\xe4\x63\x40\x60\x49\x7f\xdc\xa4\x25\x85\x0a\x1f\xc2\xba\x44\x22\x46\x02\xed\x13\x43\xbb\xc9\x05\xfd\xb8\xc5\x7c\xf7\x57\x06\x87\xea\xa4\x2c\x1e\x41\x58\x14\x75\x55\x97\x64\x7d\x19\x93\x9a\xd6\xe9\x8a\xae\xd3\xe8\x9e\x96\x8e\x44\x5a\xc9\xea\x4e\x5d\x38\x21\x75\xb2\x82\xc4\x34\x76\x16\x69\x59\x49\x19\x0c\x10\x10\x6c\x9c\x4c\xe0\x86\x57\xf7\xee\xaa\x41\x1a\x04\x0a\x06\xb0\xc4\xda\x34\xb0\xed\x13\x1c\xf6\x7b\x65\x14\x0a\xca\x4e\x4e\x1f\x9d\x3f\x96\x65\x51\xc2\x9f\xcb\x04\x9a\x3e\x90\xd2\x89\x02\x4d\x38\xc2\x31\x7a\x62\x65\x14\x2f\xf0\x12\x27\x38\xc5\x77\xf8\x1e\x67\xc1\x53\x83\x57\xc1\x68\x8c\xf3\x60\x34\xc1\x05\xfb\x6f\x1d\x8c\xf1\x8f\xc1\xfc\x29\xca\xaa\x6f\xc8\x8a\xfa\x20\x26\xdb\x0a\xe0\x9c\x3c\xfc\x29\x8f\x7c\x70\xc3\x7f\xbe\xaf\xe9\xda\x9f\x34\xb8\xad\xb5\x2a\xf2\x3a\x31\xea\x6d\xf7\xd4\xdb\x52\x52\xee\xa9\x36\x36\xeb\xc5\x34\x22\x31\xdd\x57\x73\xdc\xdc\xe2\x32\x98\x4b\xde\x34\x71\x85\x5d\x43\xdf\xe2\x2a\x98\x83\xba\x58\x03\x0c\xc2\xa2\xae\x8b\x15\xc0\x80\x6c\xea\x02\xdc\xe2\x3a\x98\x83\x8c\x2e\x6a\x80\x41\x99\x2e\x93\xba\x7d\xb3\x61\x98\xe9\x82\x6c\x32\x56\x68\x41\xdf\xe2\x87\xe0\x69\xb3\xf6\xaf\x7f\x8f\xaf\x7f\xef\x83\xcd\x1a\xe0\xb8\x78\xcc\xfd\xe7\x63\xfc\x7c\xec\x03\xf6\x1b\x60\x86\xd5\xbf\xfe\x1c\x5f\x7f\xee\x4b\x0a\x9c\x80\x7f\xfd\x07\x7c\xfd\x07\x5f\x51\xab\x49\xe8\xff\x01\xff\xc1\x07\x35\x09\x01\xa6\x55\x44\xd6\xd4\xbf\xfa\x1c\x5f\x7d\xee\x03\xf1\x04\x30\xcd\x6b\x5a\xfa\x93\x6b\x3c\xb9\xf6\x01\x7f\x00\x78\x4d\x96\xf4\x6f\x6b\xff\xfa\x1a\x5f\x5f\xfb\x40\x3c\x89\xd2\xd7\x8c\x93\xeb\xe7\xf8\xfa\xb9\x28\x7f\xcd\xb9\xa9\x92\x74\x51\xfb\x93\x17\x78\xf2\xc2\x07\xfc\x01\xe0\xa8\xc8\xeb\xb2\xc8\xfc\xc9\xe7\x78\xf2\xb9\x0f\xe4\x23\xc0\xd5\x9a\x44\xd4\xbf\xbe\xc2\xd7\x57\x3e\xe0\x0f\x00\xd7\xfe\xef\x9f\xe3\xdf\x3f\xf7\x41\x0d\x70\x4c\x33\x5a\x53\xff\xf9\x0b\xfc\xfc\x05\xeb\x23\xf6\x04\x1a\xfc\xc8\xf4\xe8\x63\xab\x6e\xe8\xa9\xa4\xf5\xa6\xcc\x9d\x87\x22\x8d\x9d\xf1\x28\x08\x42\xaf\xfe\xc9\x75\xf5\x63\xec\x31\x9d\xfe\x67\xc1\x4c\x4f\xbe\xc9\xb2\x4e\x11\x00\x56\x41\x83\xb7\x81\x69\xd7\xb8\x72\x4f\x25\x89\x28\x10\x58\x83\x20\x20\xbb\x1d\x43\xc6\x7e\xcd\x42\x88\xfc\xd0\x4b\xab\xd7\xa4\xa6\x90\xa0\xdd\x8e\x3d\x88\x41\x03\x09\x9a\x85\x90\x20\xff\x23\x44\x33\xc6\x18\x24\xf8\x0e\xc7\xde\xa6\xa2\xef\xf9\xb0\xc4\x2d\x69\xe4\x87\xdd\xb7\x08\x7f\x84\xc8\x75\x23\x06\x68\x54\xc4\x51\x83\x7f\xb2\xd8\x64\xd6\x86\x8d\xf3\x7c\x09\x46\xca\xd4\x90\xdd\x8e\x78\x19\xcd\x97\x75\xf2\x6a\x62\x8c\xfb\x0f\xdb\x35\x95\x63\x3f\xad\xfe\x98\x93\x30\xa3\x31\x33\xa9\x34\xaa\x2b\x87\x38\x55\x9a\x2f\x33\xea\x44\x09\x29\x49\x54\xd3\xd2\x11\x78\x9d\x35\x29\xc9\x8a\x32\xb5\x40\xd3\xea\x31\xad\xa3\x84\x11\x8e\x48\x45\xc1\x16\xf8\x52\x42\xa9\x97\xe6\x31\xfd\xf8\x6e\x01\xc1\xf7\x00\x8d\x82\xe0\x72\x32\xe5\x55\x6e\x86\xaa\xdc\x58\x55\x62\xa3\x4a\x5d\xbc\x2d\x1e\x69\xf9\x15\xa9\x28\x44\x2d\x40\x6c\x01\x24\xc0\xe7\x7f\xdf\x1c\x07\x4c\x2c\xc0\xd5\x10\x33\x2b\xab\x4a\x35\x54\xa5\x52\x55\xe4\x88\x95\x55\x46\x93\xa6\xc1\x5f\x0c\xa8\xe4\x4f\x9c\xf0\x6e\xf7\x13\xc7\xce\xff\x56\x00\x35\xf8\xcb\xe1\xba\x5b\x59\xe7\x46\xfe\x8d\x59\xdd\xaf\xcc\xba\x4c\x1b\xc3\x80\x40\xf0\xb2\x4e\x28\x89\x5f\x01\xe4\x91\xf5\x9a\xe6\x31\xe4\x65\x65\xb7\x20\xe1\x05\x71\xfc\x55\x46\xaa\x0a\x82\x75\x49\x1f\x58\x41\x5d\x97\x10\xc4\xa4\x26\x97\x44\xcc\xd1\x98\xbf\x4a\x8b\x4d\x65\x23\xa8\xd6\x24\xb7\x50\xc4\x5e\x1a\x15\x79\xe5\xa9\xea\x08\x1d\x26\xc8\x67\x92\x4b\xa1\x2e\xfb\x28\xf3\x3a\xef\xed\x2a\x51\x91\x31\xda\x00\xc7\x5e\x44\x32\x9a\xc7\xa4\xfc\x07\xa5\xf7\xd5\x0c\xbc\x00\x3e\xf8\x1d\x38\x4c\x36\xa7\x1f\xeb\x3d\xd4\xd4\xab\x13\xda\xc8\xaa\x22\x84\x10\x8e\x84\xc4\xc3\x22\xde\x1e\x95\xb8\xe8\x93\x23\x6d\xf8\x3d\xf0\xc1\xe7\x00\x21\x24\x0d\xcb\x9c\x81\xc6\xe9\x83\xdd\x0a\x36\x1d\x4b\x01\xf2\xb9\xc7\x26\xc4\x86\xad\x5d\x9f\x17\x5d\x46\x45\x1e\xd3\xbc\xa2\x71\x5b\x3f\xb4\x21\x65\x3b\x10\xc2\xc7\xc8\xca\xb9\xee\xd3\x09\x7b\x51\x56\xe4\x14\xb6\xbd\x15\xe9\x92\xe3\xd4\xc5\x04\xfb\x3f\x44\x5c\xcd\xea\xbf\x0c\xf9\xdb\x06\xbf\xde\x33\xae\x99\x46\x29\x8d\xe3\xbf\x69\xfb\x7b\x6a\xd9\x15\xd7\x85\xe1\x80\xee\xb5\x05\x44\xeb\xe2\x53\x52\xd2\x85\x0f\xfe\x83\x7b\x02\xdc\x9c\xf9\xe0\x72\x02\x70\x9d\xd6\x19\xf5\x63\xaf\x2e\x8a\xac\x4e\xd7\x95\x97\xe6\x51\x49\xd9\xc4\xf5\xa6\xd8\x94\x8d\xd9\xd0\xb0\xce\xf7\x0c\x29\x0b\xe6\x54\x03\xb2\x59\x8b\xa1\x75\xb0\x01\x3d\x68\xd0\xba\xa7\x97\x49\xb1\x29\x75\xfb\x04\x4b\xec\xed\x65\x54\xac\xd6\x45\xce\x7c\x7d\x1f\x24\x9c\xa3\x7e\x33\x19\x0a\xd5\xc2\x81\x16\x55\x49\xf1\x28\x1b\x83\x10\xa6\xff\x6e\x21\xc7\xf4\x7c\x21\x5b\x30\xa7\x0a\x99\xb9\x88\x88\xcb\x59\xcc\x40\xae\x0b\x0f\xaa\x8e\xe6\xa3\xa2\x6c\xb6\xaf\x8b\x12\xec\xe9\xa3\xa1\x9a\x5e\x52\xaf\x32\x08\x7c\xb0\x47\x66\x83\xd8\x11\xfe\xe5\x74\xf8\x26\xcd\x37\x35\x3d\x57\x8b\x05\xd4\xaf\xa7\xc7\x2b\x4e\xef\x98\x26\xaf\x24\x57\xc3\xba\xdc\xb6\x74\x8f\x36\xeb\x46\xfd\xa2\xfa\x7c\x96\xc0\x3b\x50\x9f\xa4\xd3\x95\xd2\xe9\xd5\xff\x16\x9d\x7e\x4f\xd9\x5c\x73\xae\x4e\x0b\xa8\x5f\x4f\xa7\x2b\x4e\xef\x98\x4e\x57\x92\xab\x61\x9d\x6e\x5b\xba\x47\xa7\x75\xa3\x7e\x51\x9d\x3e\x4b\xe0\x1d\xa8\xf3\x75\x3a\xd9\xed\x7e\xa6\x16\xb7\x05\xe1\xa6\xae\x8b\x4e\x1f\x85\x75\xee\x84\x75\x7e\xb9\x2e\xd3\x15\x29\xb7\x9d\x1e\x92\xed\xf0\x41\x5d\x2c\x97\x19\xfd\x96\x96\x69\x11\x1f\x15\x95\x59\xb9\xd9\xd7\x19\x7b\x06\xca\xa0\x1b\x66\x28\x92\xf8\xf3\xe9\x5e\xd8\x3c\xc4\x11\xa6\xb7\x08\x35\xf8\x8f\xc3\x0e\xd7\x21\xea\x49\x7f\xae\x3d\x85\xb8\xf2\xdf\x0e\xa1\x5e\x0d\x19\xbd\xd3\x90\xc7\x47\x91\x57\x43\xda\x77\x1a\x72\x1a\xcc\x5f\x43\x74\xdb\xf5\x34\xa9\xb7\xde\x54\x09\x0c\x5b\x4f\x42\x96\x44\xad\x1d\x96\x25\x31\xc2\xb4\xc1\x7f\xea\x4b\x7b\xae\xb1\xc6\x1e\x1b\xbf\x1f\x8a\x98\x6c\xbf\xe4\x4a\xea\xba\xa1\x00\x3e\x36\x7c\x7b\x7a\x1a\x93\xed\xa0\x4a\xc6\x64\xdb\x9c\x36\xf8\x78\x5d\x3e\xf8\x46\xb1\x57\xa5\x31\xfd\x72\xfb\x3e\x8d\xa9\xeb\x7e\x09\x91\xeb\x7e\xc1\xfe\xfb\x54\xe6\xf8\xb8\x10\x1a\xdc\xe7\xb1\xa2\x19\x8d\xea\x0f\xe9\x8a\x9e\xca\x68\xba\xa2\x9c\x4f\x21\xbe\xaf\x32\x4a\xca\x4f\xe5\x2d\x62\xc0\x03\x4c\xf1\xf2\x13\xf9\xe1\x75\x2d\x86\x8a\x8a\x7e\x3a\x43\x45\x45\x07\x19\x2a\xaa\x53\x05\xc4\xeb\x22\x65\x56\xce\x31\x13\x27\xad\xef\x43\xc4\xcc\xc8\x9f\x4f\x34\x23\xfb\xb6\xd5\x2f\x1f\xd3\x78\x49\x6b\x27\x2e\x8b\x35\xb3\xfb\x97\x2b\x9a\x6f\xc0\x5e\x93\xd1\x2e\x49\x5b\x46\xbe\x82\x48\x2d\x0b\x0f\x58\x81\xb6\xfe\x1f\x59\xfd\x05\xaf\xbf\xc9\xec\xea\x59\x5a\xd5\x97\x9b\xbc\xaa\xb7\x19\x93\x07\x5e\xf2\x5a\x59\x7a\x68\x1b\xe7\x02\xc6\x5e\x54\x64\x19\x59\x57\x74\x06\x1c\x12\x45\x45\x19\xa7\x45\x7e\x29\x14\x1e\xf8\xc0\xd8\x9e\xf9\x13\xd4\xbb\x1c\x4e\xec\xa5\x79\xc6\x43\x40\xa1\x57\xd2\x55\xf1\x40\x55\x23\x3b\xb2\x48\x58\x8d\x96\xfc\xa6\xa2\xf5\x23\xcd\xeb\xed\x82\x2f\xf9\xb4\xc1\x19\x75\xea\x3d\xa6\x31\x6b\x36\x1e\x1e\xc6\x33\x18\xee\xb1\x96\x61\x05\x90\xd8\x7b\x0f\xf8\x56\x70\x51\x64\x21\x29\xbf\xcd\x48\xc4\xe7\x72\x4e\x44\xb4\x66\xd9\x71\xed\x7a\xe2\x2f\x8b\x47\x60\x2c\xf8\xdb\x17\x51\x91\x5d\xae\xe2\xcb\x17\x86\x68\xe8\xf0\x6b\xa4\x03\x00\xa7\x70\x83\x7c\x78\x88\xf3\x85\x51\x97\x0b\x62\x61\xb2\xdf\xe9\xe7\xb6\x5b\x85\xc0\x80\x7a\x74\xd2\x9c\xf7\xaa\x6e\x18\x63\x52\x45\x2d\x4e\xa0\xfc\xc5\x39\x94\xbf\x34\x29\x5b\x64\xe9\x71\xd9\x2c\x86\x7a\x6a\xc1\xc6\xed\x9b\xde\xb8\xc5\x34\x78\x6a\x94\x6e\x86\x41\xe4\xa5\x15\x04\x69\xbe\xde\xd4\x00\xed\x76\x4a\x59\x67\x91\xc7\x2c\x15\x44\x7e\xe4\x2d\xd2\x3c\xd6\x55\x64\x31\x0e\xd9\x0f\xfa\x6e\xcd\x50\x57\xac\x77\x8c\x47\x27\xcd\xab\x9a\xe4\x11\x2d\x16\xce\x3b\x1e\xc4\x74\x5d\x48\x03\xe2\xd1\x8f\x35\xe3\x6c\x34\xc6\xd4\x46\xc0\x8c\x97\x47\x49\x94\xc0\x18\xf7\xe2\x10\x01\x37\x07\xe0\x82\x78\x51\x42\xca\x2f\x6a\x38\x46\x5e\x5d\xfc\x6d\xbd\x56\x1b\xde\x17\xc4\xab\xb2\x34\xa2\x70\x82\xa6\x6d\x3c\x64\x1e\xdd\x32\xb2\x73\x72\xcb\x7f\xa3\x86\xcf\xd0\x5f\x0f\x09\x04\xe6\xbb\x5d\x84\xbc\x75\x51\xa5\xe2\x0d\x5e\xa8\xb2\x62\xb1\xa8\x68\x0d\x99\x8d\x88\x3d\x61\xc4\xbe\x95\xd5\xd2\x7c\xe9\x3d\xd0\xb2\x4e\x23\x92\xe1\x64\xf0\x75\x52\x94\xe9\x4f\x45\x5e\x93\x6c\x9a\x2e\xa0\xae\x41\x4a\x9a\xd7\x28\x0c\xec\x02\xd5\x71\x45\x1b\x03\xb6\x7a\x07\xb1\xde\x22\x8b\x9a\x96\xb0\x40\xde\x9a\xc3\xc0\x36\xb0\xab\xba\x0e\x19\x91\x21\xc8\x41\x14\x5a\x34\x0d\x83\x08\x47\x5e\x94\xa4\x59\x5c\xd2\x1c\x22\x8f\x47\x33\x21\xd2\x68\x9b\x74\x01\x45\x90\x2e\x08\x82\xa5\xeb\xc2\x65\xb0\xf0\xea\x62\x7d\x31\xf1\x7e\xf7\xdb\xc2\x4b\x68\xba\x4c\x6a\x88\x5e\x05\x04\x3e\xa6\x79\x5c\x3c\x22\x5d\x76\xd1\x16\x55\x51\x59\x64\xd9\x87\x62\xcd\x46\x40\x0b\x75\x11\x79\xc5\xa6\xa6\xe5\x1b\xf9\xfc\x92\xa3\x9e\xf1\x91\xec\x2b\x15\x47\x58\xd3\x4f\x5c\x17\x26\x41\xc8\x84\x54\x27\xbc\x7a\x46\x17\xf5\x45\x21\xb0\xfc\x43\x94\x7e\x76\xc5\xf4\x7f\xe0\xc5\xab\x96\x1f\x89\x60\x26\x03\x83\x32\x66\xd8\x5a\xbf\xe5\xac\x30\x8d\x64\xb1\x06\xc8\x36\xd5\x8a\x37\xbf\xb0\xe6\x3a\x51\x68\x57\xe5\xd0\x2a\xe0\xc9\x1a\x61\xe1\x5e\x6f\xb2\xec\x52\xbc\x63\xc8\x2c\x48\xf3\x1d\x06\x55\x4d\xea\x34\x62\x18\x42\x2f\xe2\xaf\xa5\x5e\x89\x35\x7f\x10\x4a\x0d\xa8\x78\x2f\x66\xac\xfb\x7a\xe1\x15\x85\x64\x14\x04\x04\xd6\x49\x5a\xa1\x2e\xaa\x46\xab\x00\xc2\x63\x4e\x4b\x84\xce\xfa\x01\xf3\x4e\x98\x5c\xaf\x68\x9d\x2a\x29\x36\x59\xec\x84\xd4\x59\x33\x8b\x14\x3b\x8f\x69\x9d\xa4\xb9\x43\x9c\xbc\xc8\x2f\x05\x07\x8e\xa2\x48\x63\x27\x62\xe3\x21\xcd\x79\x44\xad\xe0\xfc\x3c\xd5\xc5\xda\x6f\xfb\x42\xf4\xbf\x4f\xb9\xde\x75\x54\x06\x0b\xa1\x1b\xb5\x43\xbb\xc2\x25\x0c\x83\x20\x88\x66\x63\x01\x8f\x7c\x81\x4d\x44\x8c\x45\xbf\xf3\x4e\x69\x6b\x89\x37\xa2\x96\x88\x22\x1b\xd5\x24\x2f\xa1\xa5\x59\x97\x91\xfd\x08\x6d\x64\xa8\x41\x0d\xfe\x2f\x2b\x50\x09\xe2\x35\x33\x5e\xf9\x92\x32\xb4\xc4\xab\xb7\x6b\xea\xba\x90\x70\x1b\xe8\xba\xe2\xaf\x97\x56\xef\xc9\x8a\x42\xe2\x15\x59\xfc\x9a\xd4\x14\xed\x76\x23\x55\x65\x64\x96\x46\x5e\x5d\xa6\xcb\x25\x2d\x21\x41\x0d\xfe\x8b\x4d\x6a\xcb\x49\x30\xec\x01\xf8\xfe\xfb\xef\xbf\x07\x08\xff\x17\x7c\x62\x14\x7d\xc6\xc6\x66\xcd\xad\x29\x16\xec\xf8\x04\x3f\xa4\xf4\x91\xe1\xf5\x17\x6a\xa7\x9e\xf1\xff\xd6\x42\x5a\x30\x74\xae\x0b\xef\x83\x1b\x52\x27\xde\x8a\x7c\x84\x6b\x2c\x7e\xa6\x39\xbc\xc6\xf7\x17\x84\x4d\xe1\x85\x9c\x2b\xbc\xd6\x7f\x73\x5e\x39\x71\xfa\x00\x90\x97\xa4\x31\x6d\x55\xd5\xac\x72\x09\x2e\x7e\x9c\xdf\xdf\x7a\x32\x33\x01\x71\xb7\x1a\xb2\xd9\xeb\xe6\x70\xb4\x40\x33\xec\x55\x35\x29\xeb\x77\x0b\x08\x98\x1f\xa2\x1f\x62\x80\xa6\x8b\xa2\x84\x9d\x48\x54\x10\x04\xa3\xb1\xe1\x50\x0c\xc5\xd2\x22\x86\xa8\xa6\x1f\x6b\x08\xfe\x03\x20\x34\x65\x86\xf8\x4b\xba\x28\x4a\x0a\x5b\xaa\x34\x8f\x25\x4d\x34\x45\x07\xd1\xc5\x85\xc6\x17\x79\x8b\xa2\x5c\x91\x1a\x82\x38\x06\x72\xc3\x29\x8e\xe1\x04\x73\x76\x07\x24\xc8\xc3\x60\x0e\x8f\x7c\x9a\x5e\x79\x83\xbf\xb1\xba\x48\x7b\x9b\x71\x5a\xf1\xe0\x36\xeb\xd3\x6a\x4e\x34\x39\xa6\x0b\x97\x37\x37\x97\xaf\x5f\x03\x74\xcb\x65\xd0\xe0\x77\xc3\x28\x68\x7e\x32\x86\x6f\x0f\x33\xc1\xf7\xed\x0d\x14\x6f\x5a\xc8\xbf\x1e\xa4\x7d\x00\xf0\xbb\x16\x30\xc4\x11\xcf\x02\x18\x85\x5e\x5a\xfd\x9d\x64\x69\x0c\x11\x52\xe1\x69\x31\xe5\x5a\xe2\x70\x5d\x10\xb3\xe1\x11\xb9\xee\x37\x6c\x65\x63\x57\x35\x9b\x6d\xd4\x1c\xbd\xeb\x57\x5d\xa5\xf9\x6b\x3e\x2e\xc3\x56\x31\x74\x29\x8e\x7a\xd5\xc9\xc7\xb6\xfa\x17\x7c\xae\xd5\x85\xfd\xda\xac\xc3\xdf\x2d\x98\xae\xbe\x96\xcc\x1b\xdc\x0c\xbd\xd6\xb1\x7a\xe6\x54\x6d\x21\x12\xf1\xfa\x3d\x82\xe0\x92\x75\x5d\x08\x12\x8e\x71\xb7\x03\x2b\xf5\xa3\xe2\x3f\x90\xeb\x7e\xbb\x57\x38\xa7\x40\x8f\xfe\xda\x07\x57\xd4\xd9\xca\xff\xeb\xbc\xa6\xe5\x03\xc9\x0e\xe3\x91\xe9\x54\x81\xc0\xa0\xdc\xc3\x61\x44\xd8\xb0\x13\x29\x13\x03\xeb\x94\xfa\x91\xd2\x9c\x4f\x7b\xf3\xf1\x2d\xe6\x7f\x27\xb7\x8a\x2f\x86\x78\x8c\x47\x13\xe6\x15\x6a\x56\x1b\xf9\x63\xdc\xe0\xf7\xa6\xe9\x61\x46\x44\xed\xe6\x0c\xdb\x9d\x6d\xd7\xee\x44\xca\x9a\x2f\x30\x7b\xc9\xec\x83\xde\x20\xd0\x4b\xf9\xa1\x2d\x5e\xbe\x3f\x72\x53\xe4\x75\x62\x59\x90\x95\x2c\xe9\xd8\x90\x9b\x9b\x1b\xdb\x88\xdc\xec\x31\x22\x22\xa8\xed\xd4\xcc\x86\xd0\xd5\xba\xde\x42\xcb\x96\x7c\xe8\x5b\xda\xfd\x58\xb8\xf1\x0d\xe5\x6b\xc6\x15\x5e\xb6\x8f\x61\x11\x33\x61\x88\x27\x9e\x09\xc0\x84\x41\x7f\x64\x5e\xbb\x59\x28\x5b\xcf\xb7\x3e\x00\x36\x77\xc1\x4b\xfa\xf0\x3d\x25\x25\x6b\x14\xfd\x11\x4e\xf6\xd7\x14\xb2\x32\xea\x5e\x9d\x48\x22\xa7\x1f\x25\x58\xa8\x1b\x29\xd5\xaa\xeb\xce\xb5\xe5\xf8\x3b\xc3\xf4\x57\x9b\xb0\x2e\x49\x54\x33\x91\x6f\x99\xbb\xc6\xb3\x58\x54\x3b\x0d\xc3\xdf\x82\xab\xd6\xf0\x1e\x5c\x78\x5b\x4a\x4a\xe6\x75\x99\x58\x65\x1f\x76\x10\x5e\xed\x41\xb8\xb4\x39\x65\x2a\xf4\x40\x01\xc2\xd4\x56\x3d\xd7\x1d\xad\x5c\x77\xc9\x30\x51\x8f\x77\x20\x8f\xce\x6b\x8c\x1a\x6e\x29\x86\x58\x6b\x5c\xd1\x93\xc9\x9c\x00\x0d\x11\x16\x99\x3a\xca\xa1\x1c\x62\x8d\x39\x10\x7f\xeb\x6a\x14\x19\xd4\x28\x99\xee\x80\xc3\x80\x98\x0a\x65\x0d\x32\x25\xeb\xdf\x09\xd1\x2c\x03\x5b\x62\x2f\x44\x71\x12\x00\xc0\xa7\xfb\xf0\x5c\x6d\x7b\xcd\xb3\x1e\x98\x32\x9c\xa2\x6f\x56\xed\x73\x34\x4e\x01\x92\x33\x74\xce\x98\x69\xf4\x4f\x3d\x85\x44\xb2\x7f\xc3\x43\x6a\x17\x9a\x6a\x17\x49\xb5\xbb\x00\x97\xe0\x62\xa9\x75\xd0\x98\xa0\xf4\xcf\x76\x5e\x5b\x9a\x64\xf6\x28\xe3\x74\x14\x69\xb6\x96\xd2\xe2\x25\x17\xc1\x33\x6e\xeb\x1c\xc3\xc4\x05\xa0\x1d\xb5\xc0\x89\x18\x9e\x80\x27\x95\x3e\xbb\x80\xda\x66\x52\xad\xb8\x7c\xa7\x8d\xeb\xa7\x0f\x00\xba\x80\xdf\xc9\x46\xcf\x00\xf0\x81\xd3\xd2\xbf\x78\x06\x5e\x3d\xbb\x68\x9b\xf7\xf2\x33\x61\x64\x5b\xc3\xc8\x58\xd2\x2a\x16\xab\x18\x67\x82\x1a\xfc\xf7\x9e\xa6\xe2\x68\x50\x57\x75\x76\x0c\x5e\x06\x91\xa9\xad\x49\x10\xc2\xa7\xad\xaf\x06\xf5\xa5\xfa\xf1\x9b\xc9\x78\x7c\xc9\xa6\x98\x34\x48\xec\x41\x3e\x1e\x0b\xa5\xbd\x6b\x5f\xe0\xfb\x60\x34\xc1\x19\xfb\x6f\xa5\x54\x79\x79\xae\x2a\x7f\x45\xf3\x7a\x53\x6e\xf9\x60\x3e\x4f\x3b\x35\x64\x74\x86\x7a\xc2\x44\x75\x19\x17\xc0\xe4\x0f\xe3\x71\x83\xf8\x36\xd2\x01\xb5\x4d\x78\xd3\x91\xb4\x49\xfb\xf4\x76\x69\xea\x6d\x62\xea\x6d\xaa\xf5\xb6\x43\xfe\x8a\x5e\x2b\xea\x07\xd4\x39\xb5\xc8\xef\xd5\xe7\x44\xf3\x9b\x4a\x7d\x26\x81\x66\x63\x72\x85\xef\x83\x13\x1a\x69\xbe\x11\xa0\x2f\x03\x82\xb3\x60\x0f\x87\x3d\x50\xf9\xa6\x05\x5d\x1d\x1a\x53\xc2\xc0\xe8\x51\x25\xd4\xf5\xd9\x05\x34\x50\xf3\x80\x95\x46\xd7\x1f\x5d\x89\x9c\x78\xee\x77\xbb\x6c\x60\x8c\x09\xaa\x82\x1a\x27\xfc\xec\xa2\xed\x9b\x17\x72\x14\xb6\x25\x13\x74\x01\x9c\x4b\x07\x98\x45\x57\xe6\xe8\x4c\xc4\x68\xb8\x12\x12\x5e\x5d\x04\xd2\x39\x92\x15\xf6\x3f\x00\xad\xa6\xed\x58\x5e\x75\x94\xe6\x4e\xd3\xe4\x6a\xa3\x58\x40\x0d\xfe\x47\x7f\x13\x30\xc2\x4b\x9c\x0c\x8f\x7a\x9e\x85\xc8\x87\xb0\x31\xe4\xef\x98\x2b\x78\x1f\xcc\x6f\x99\x73\xfa\x25\x44\xc2\x49\x4c\xcf\x1d\xaf\xdc\xd1\x43\x38\x3d\x69\xe6\x31\x2b\x9f\x33\xb4\x25\x5c\x72\xc6\xc0\x4e\x6d\x67\x45\xba\x9b\x7c\xed\xf1\xf7\x94\x3e\xbe\xa1\x24\xa6\xe5\x9f\x78\x29\xda\xef\x19\xdd\x00\xe5\x2d\xa4\x87\x86\xfa\x80\x0b\xd4\x81\xdc\xe7\x02\x85\x43\xbe\xf8\x0d\x38\xb0\x21\x80\x97\xc1\x78\xba\x7c\xf9\xfc\x6a\xba\xbc\xb8\x40\x62\xcb\xeb\x91\xd2\x7b\xbe\x6e\x72\x5d\x68\xe6\x20\x76\xf6\x0d\x5c\x57\xef\xa5\x3e\x7b\x59\xc7\x6a\x98\x45\x8f\x4c\xe9\x05\x16\x31\xf5\xf0\x00\x20\xbe\x53\xa1\x62\x66\xd9\xf9\x41\x0a\x70\x8b\x8d\xe5\xe2\x82\x37\xd0\x75\xef\x45\x3d\x50\x64\x62\xba\x56\x63\xb5\xfb\x3e\xa7\x8f\xf2\xbd\x9a\x23\x63\xe5\xdc\xa9\x2a\xda\x95\xfb\x0e\x86\xfc\xf5\x6e\xa7\x5e\x59\x1e\x81\x44\xb1\x85\x48\x22\x51\xb5\x44\x64\x19\x61\x71\xa0\x40\xca\xe4\x45\xfb\xd0\xe2\x63\xad\xa5\x79\xdc\xd9\x5c\xe2\x22\x49\x17\x5b\x80\xd9\x00\xf2\x43\xcc\x0b\xbe\x21\x2b\x5a\xf9\xf7\x8d\x91\xba\xc1\x05\x38\x64\xc2\xc8\x56\x1a\x99\x98\x6c\x99\x79\x09\xf5\x52\xe7\xad\xb0\x40\x52\xea\xcf\x2e\xee\xbd\xbb\x22\xcd\x21\x70\xd4\xec\x2f\x22\x0a\x66\x17\x84\xe6\xd6\x4a\xd2\x59\xa1\x74\x56\x41\x77\x08\x7f\x80\x08\xff\x0d\x22\xfc\x77\x88\x9a\x06\xff\xf7\x81\x25\x51\x37\x5b\xc2\xe1\x31\xd6\x7d\x9b\x52\xdc\x91\x63\xf6\xc2\x4c\x6a\x65\xe6\x62\xe1\x31\x68\x88\x5e\x4d\x26\x22\xae\x17\x89\x82\xc9\x95\xbd\x80\xe4\x7d\x04\x93\xdd\x4e\x01\xbc\x9c\x5c\xe9\xca\xec\xa1\x7d\xf3\x6a\x32\x41\x53\xa4\x5e\xfd\xe6\x79\x10\x04\x63\x11\x7d\x31\xd4\x9a\x77\x21\x35\x73\x56\xf6\xf5\x07\x5b\xee\x6b\x99\x33\x9c\xcf\xa4\x0f\x96\xec\xf7\xc1\x64\x87\x25\x33\xf0\xe6\x0d\xf0\x41\x92\x00\xa3\x4b\xb4\x3f\x96\x00\x34\x0d\xbb\x9d\x10\xa3\x06\x7f\x3f\xbc\xf2\x1e\x92\xbd\x4c\x27\x39\x2c\xfd\x84\x67\x13\xcf\x6f\x65\x94\x57\xc8\x20\x09\x26\x3c\x96\x56\xd5\x74\xbd\x4e\xf3\xe5\xec\x77\x7e\xfb\x30\x5d\x28\xd9\x8b\x86\x32\x79\x0a\x52\x10\xfd\x06\x3e\xff\x6d\x82\xa4\x54\x4d\x8c\x32\x0f\x64\x89\xd8\x2c\x74\x44\xaa\x22\xf7\x4f\xcb\x55\xe0\x56\x92\x5d\x1d\x95\x2c\x58\xad\xfa\x22\x4d\x38\x64\x5f\xa4\x14\x35\xf8\x9f\xa7\x8b\x54\x26\xd1\x1c\x16\xe9\x6a\x50\xa1\x0d\xa1\xad\x84\xd0\x04\x32\x88\x7e\x73\x35\xfe\x99\x7a\x28\x32\xcb\xb4\xc4\x04\x62\x25\xb1\xea\xb8\xc4\xaa\xaa\x2f\xb1\xdf\x71\xc8\x61\x25\xfc\xcf\xfe\x9a\x20\x34\x57\x05\x46\x24\x84\x4d\xc0\xf3\x81\x54\xbf\x5b\x66\x73\x76\x3b\x48\x06\xa1\xe6\x66\x23\xcd\x5c\xb2\x5b\x3e\xad\x51\x6b\x42\xa4\x7c\x38\x57\x10\xbd\x0a\x26\x57\xb3\xcb\xc9\x95\xcf\x5c\x26\xa6\xd8\x44\xcc\xd0\x54\x37\xf4\x0b\x80\xa4\xf9\x67\x23\x94\xec\x9b\xe0\x7d\x32\x38\xa1\x0a\xef\x5f\xec\xd0\x0f\xb5\x29\xe0\x7c\xdc\xaa\x7d\x28\x3a\x34\xd6\x8f\xe2\x90\xa3\xb6\x8f\x85\xeb\xf5\x51\x70\xa9\xa1\x03\xe0\xac\x93\x11\xfe\x6f\x88\xf0\xf7\x10\xe1\x7f\x42\xd4\xe0\x7f\x99\xfd\x58\xb8\x2e\xfc\x07\x44\xf8\x3f\xb9\x13\x48\x48\xef\xc8\x5b\x18\xac\x66\xf9\x26\xcb\x7c\xca\x8f\x8d\x12\xb5\x57\xc8\x0f\x70\x2e\xbd\x07\x92\x41\xc0\xd5\x87\x07\xc1\x45\x58\x1a\x83\xee\x1c\x28\xe2\x3c\x62\x06\x1c\x4d\xb0\x0c\xdb\xf8\x61\x83\x30\x8f\x4e\xff\x0b\x22\xbe\xa3\x19\x10\xdd\xc9\x59\xc1\x3c\x0d\x18\xcb\x1f\xf2\x00\x1c\xe9\x1e\x80\x9b\x8c\x4c\x9b\x85\xd8\x48\x26\xd2\x32\x55\x90\x87\x63\xca\x62\x93\xc7\x46\x21\xfa\xcc\xa8\xff\x5b\xe3\xb7\x1c\x9b\x15\x1c\xa3\xa9\xb1\x90\x21\x03\xdb\xd9\x6c\xe9\xc3\xd5\xb0\x05\xc7\x3a\x33\x1b\x4d\xbf\x83\x04\xcd\xd8\xc0\xc6\x8b\x56\x6d\xa5\xb4\x74\xdf\xa4\xa8\x2b\x36\xeb\xd5\x8a\xad\x7a\xff\x05\x0f\x08\xb2\xc5\x6c\xc8\x13\xf9\x30\xf6\xee\x29\x5d\x7f\x9d\x3f\x90\x2c\x8d\x67\x7b\xc1\x89\x09\xe6\x0b\xe6\x56\xcc\x68\x58\x6c\x98\xe0\xb4\x2c\x8b\x72\x08\x1a\x35\x38\x24\x7d\xdf\x60\x34\x51\x49\x15\xc5\x0c\xea\x11\xaf\x33\x3a\x50\x67\x73\x4d\xe5\x36\xa8\x6d\x34\x21\x9a\xb6\xba\x44\x36\x8a\x76\xbb\x51\xe4\xd5\x25\xc9\x75\x56\xc1\x6e\x07\x43\xb1\x79\x8d\x1a\x84\xc3\x59\xe6\xc3\xdc\x75\x73\x2f\x21\x95\x99\xaa\xcb\x8a\x84\x61\xe9\x6e\xf4\x15\x32\x18\x87\xdb\x08\x79\xb1\x58\x40\x50\xd2\x2a\xfd\x89\x02\xfc\x35\xab\xc2\x4b\xa2\x2c\x8d\xee\x01\x06\xa6\xb5\xba\x05\xfa\xf5\xaa\xd8\x54\x54\x9c\xc8\x1d\x4d\x58\xa9\xb0\x36\xac\x93\x58\x87\x9a\xe2\x64\x14\xbb\x5d\xd9\x30\x35\x09\x33\xe6\xa8\x58\xba\x93\x21\xe4\x67\x0d\x8e\x2c\x29\x13\x02\xd9\xd0\x44\x0d\x8e\xc9\x50\xe4\x48\x9f\x51\x8d\xbd\x35\x29\x2b\xfa\x75\xbe\xde\xd4\xac\xcf\x66\x22\x3a\xa4\x4f\xa6\xee\x76\xc4\x4c\x50\xe1\x1a\xce\xa3\xa5\x5b\x48\x10\xf2\x49\x0f\x01\x24\x08\x93\x06\x53\x12\x3c\xb1\xd5\x94\xdf\xdb\xd7\xe4\xd1\x4b\x71\x8a\x7a\xba\xe0\x23\x45\x95\xbc\xaf\xe9\x1a\x13\x84\x99\xd5\xf9\x0b\x0f\xd6\xaa\x23\x84\xc7\xb0\xe8\x65\xd4\x01\x54\xc6\x11\x42\x13\xdd\x5b\x38\x41\x0d\x36\x96\x8c\xbe\xb9\xa5\xab\xd4\x2e\xf4\x6a\x52\x2e\x69\x8d\x44\x02\x61\x55\x0f\xef\xdd\x8b\xd0\x12\x34\xea\xb3\x99\x5e\xec\x05\x47\x6c\x65\x13\x04\xeb\x19\x24\x04\xb6\x33\x16\x5f\x66\xeb\x0d\x6e\x59\x77\xa1\xb7\x9e\xd9\xc4\x2f\x32\x55\x76\xbb\x90\x40\x36\x88\xdf\xc2\xcb\x09\x6f\x19\x6b\x1a\x5b\xf5\x28\xf6\xbf\xa7\xa4\x1c\xe0\x5e\xf6\x4f\x6d\xb2\x25\x26\x03\x84\x27\x63\xb4\xdb\x8d\xa7\x92\xfe\x49\x2c\x1e\xe5\x48\x84\xd1\x15\x53\x62\x9b\xe5\x54\xb6\xc4\xc0\xd6\x5b\x26\xe0\x57\xe1\x90\x6c\x07\xd8\xd3\x8e\xdc\xd4\xe4\x2f\xad\x20\xf0\xf8\xda\x93\xad\x28\xba\xab\xf7\x5e\x4d\xbe\x0a\xe5\x2b\xe1\x76\xa1\x4e\x08\x8c\xc4\xda\xeb\x48\xc7\x20\x9e\x14\xb7\xdb\x09\xa3\xfd\x6e\x4d\xf3\x36\xe3\x4c\x34\xac\xc1\xf6\xb9\xba\xfe\x30\xa1\xdd\xad\x82\x44\xcc\x41\x58\xa4\x6c\x13\xc2\xc7\x46\xf7\x5c\xd3\x31\x3c\xd6\xd4\xa6\x10\xae\x86\x10\xca\x33\x0e\x27\x30\x56\x29\x3c\x95\x81\xc7\x3e\xd1\x76\x08\x8b\xd9\x15\x83\x6d\xec\x1e\x25\x3a\x09\xd9\xd1\x86\x76\x0f\x73\x9c\xca\xe2\x60\x6b\x4d\xc7\xd6\xb7\x8d\xf9\x89\x1e\x6e\x8b\x84\x5b\xbb\xbe\x5a\xf3\x35\x88\x56\x36\x35\x8f\x08\x83\xb6\xc9\x64\xb8\x48\xce\xc6\x69\xce\x97\x7e\x8b\xee\xec\xec\xe7\x45\x0d\xbd\x34\x47\x80\x7b\x66\x4b\xd7\x5d\xaa\x3c\xa8\xa7\x74\x01\xa3\x60\xd9\x9b\x9f\x71\xc4\x2f\x28\x30\xe7\x65\xe9\x2d\x4e\x97\x6d\x9e\x30\x6c\x7f\x43\xc0\xa7\x40\x84\x13\xa3\xa8\x4a\x8a\x47\xc0\x46\x73\x27\x96\x27\x18\x35\x5c\x74\x56\x20\x22\x7b\xca\x30\xcf\xa8\x35\xbb\x9b\xe9\xf2\x17\xc0\x01\x17\xfa\x94\x0d\x9b\xdf\x98\x9b\x63\x1a\xf5\xd3\x21\x9b\x06\x33\x26\xbb\xd2\x47\x4f\x43\x8b\x1a\x9e\xeb\x23\x84\xd9\x3b\xcd\x82\x74\x0e\x10\x1e\x02\xed\x03\x00\x95\x08\x24\x38\xe8\x8d\x97\x93\xb1\x9c\x48\x55\x1d\x7b\x31\x89\x0e\x8c\xac\x7f\x37\xd9\xf6\x48\x8c\x49\x78\x60\xf0\xfd\xbb\x09\xb7\xc7\x65\x34\x61\xbd\xe5\x73\xfe\x9c\xcb\x97\xba\xf6\x28\x9e\x5c\x8d\x78\xc6\x0a\x8c\x2e\x82\xc9\x15\xf2\x27\x57\x81\x7c\x0e\xc6\x88\xcf\x1a\xad\x0d\x10\x70\x11\xd3\x71\xe2\xb5\x0a\xe7\x45\x24\xcb\x60\xd6\xba\x33\x5c\x58\x16\x77\x16\x1a\xb5\xec\x39\x3e\x0f\x1d\x24\x23\xa4\xbf\x9f\x8c\x5a\x3b\x7d\x32\x19\x7e\x88\xc4\x8f\x08\xe6\x1b\xae\x7d\x13\xbb\x85\xd2\x98\xc6\x86\x31\xe5\x66\xcd\x0f\x49\x83\x17\x86\x07\x1c\x2a\x0f\x78\xc4\x98\x88\x36\x65\x49\xf3\xfa\x83\x39\x65\xb7\xcb\x7b\xd7\x85\x94\xcc\x07\xea\x09\xeb\x26\x93\x50\xd0\xad\x47\xd6\xeb\x6c\x0b\x33\x4c\xca\xe5\x86\xcd\x05\x15\xe2\xab\x0d\xbc\xec\x2f\x7c\x70\x14\x3c\x6d\x2d\x37\xad\xf5\xc9\x89\x74\xfa\xc6\x48\xb8\x07\x13\xd5\xd1\x63\x73\xfd\xa9\x7b\x6d\x8c\x1a\xbc\xb2\x1d\x56\x13\xd7\xa9\x28\x2c\x89\x9a\x08\x8e\x01\x26\x96\xe6\x9b\x90\xfb\x98\xed\xa8\xe3\x30\x48\xa3\xd3\xed\x97\xde\xba\x2c\xd6\xe6\x86\xcb\x6e\x37\x8a\xbd\x74\x99\x17\x25\xfd\x8e\x92\xb8\xc8\xb3\x2d\x9b\x7c\x44\xb5\x52\x96\xb0\x6a\x05\x5b\xe6\xe9\xe4\x76\xb1\x80\x45\xae\x6b\x3c\x78\x75\x99\xae\x20\x92\x13\xd7\x8c\x10\x18\x13\x68\xbf\x43\xc8\x5f\xb9\x2e\xbf\x69\xe7\x2b\xa1\x00\xae\x0b\x5b\x07\x6c\x69\x66\x9b\xbb\x2e\x5b\x4c\x0d\xe2\x16\x09\xc8\x3c\x7a\x20\x6f\xdf\x69\x6f\x3b\xb3\x71\x87\x41\x34\x37\x8b\x6e\x61\x28\x46\x3e\xfb\x53\x04\x7f\x86\x08\xdf\x40\x84\xdf\x0f\x9b\x2b\x6d\x92\xf7\x5b\x34\xc3\x7c\x1e\xa8\xd4\x9a\x3a\x59\xe9\x5f\x10\xe1\xb7\xf6\x02\x38\xef\xae\x7f\xf3\x7d\xcb\x5f\xbc\x20\xaa\x42\x67\x01\x7c\xde\x32\xfc\x6b\xce\xad\x30\xbe\x38\xf6\x16\x45\xb4\xa9\xde\xe5\xef\x93\xe2\xd1\x75\x47\xa2\x2f\x7c\x5e\x08\x78\xb0\x9a\xff\xec\x6c\x91\x70\xff\xa1\x61\x2b\xe6\x06\x27\x64\xe0\x7e\x9d\x62\xc6\xbc\x6a\x7f\x29\x5c\xeb\x81\x1d\x2f\x1c\x61\x7e\x63\x59\xc0\x16\xd7\x38\x09\xe6\xb7\x38\x0d\x9e\x1a\x7c\x17\x10\xef\x31\x49\xa3\x04\xdf\x07\x60\x0d\xa6\x8f\xf3\xbb\xdb\xe0\x5e\xe4\xd7\x38\x69\xee\x3c\xa2\x47\xd6\xd2\x77\x8f\xf9\xb7\x65\xb1\xa6\x65\xbd\x85\x21\x72\xdd\xc7\x79\x78\x1b\x04\xc1\xbd\xeb\xc2\x44\x1f\x9e\xd4\x66\x32\x64\x56\x71\x14\x04\x77\xae\x0b\x53\x56\x73\x34\x46\xa8\xc5\xc9\x96\x05\xdb\x2f\xd3\x3c\xae\x10\xcf\x19\x54\x4f\x43\x84\x86\x6e\xda\xd3\x00\xf3\x90\x1f\xfd\x08\x42\xaf\x5a\x67\x69\xcd\x63\x44\x98\x4a\xed\x0d\x82\x20\x91\x3f\x5d\xf7\x81\x35\x2b\x08\xe8\x5c\xbd\xbd\x9c\xdc\xca\x58\xee\x22\x18\x8d\x71\x14\xe8\x17\x57\xd3\xe8\x55\x30\x9e\x46\x97\x97\x8c\xbb\x11\x7c\x98\xd3\x79\x74\x7b\x9b\xe6\x4e\xca\x20\x82\xd1\x64\x1a\x96\x94\xdc\x37\xe9\x02\x2e\xd0\xd3\x32\xb0\xf8\x91\xef\x1a\x7e\xa6\x42\x4e\x04\xb8\x40\x98\x78\x55\x5d\xac\x59\xd3\xc8\x92\xc8\xc3\x27\x84\x87\x86\x69\x5e\xbf\x16\x87\x8d\xf8\x76\xe5\x9d\xdd\x79\x8f\x73\xd9\x3f\xb7\x01\x28\xc1\x89\x68\x1a\x7c\x6f\xcf\x1c\xfd\xcd\x00\x73\xb8\xe3\x38\x88\x66\x31\x81\x11\xf2\x99\x76\x28\x2b\xc6\x2c\x0b\xc2\x21\xa7\xf8\xf5\x6a\x45\xe3\x94\xd4\xd4\x26\x3d\x9a\x34\x38\xb3\xf4\x71\xc9\xc6\xcb\x93\x4c\x3a\xbf\x27\x38\xcc\x36\xa5\x1f\x7b\x31\x0d\x37\xcb\x19\x00\x7e\x48\xf0\x3d\xdd\xf2\x9b\xde\x52\xfe\x73\xb3\xf6\xef\x08\xe6\x4a\xef\xc7\x1e\xc9\xb2\xe2\x91\xef\xc8\x7c\xe0\x63\x69\xb6\x24\x3e\x00\x3c\xa2\x68\xd8\xac\x99\xa0\x22\x80\x96\xa4\x41\x7e\xee\xba\x30\x37\xc7\x72\x42\x10\xce\x07\xc6\x2e\xb3\xe6\x5d\x86\x17\x8b\x1e\xc7\xec\xbf\xf3\x18\x0d\xf7\x31\xca\xb0\xf7\x39\x35\x76\xdd\x24\xab\xfd\x8d\x36\xd4\xe0\x7c\xa8\x1f\xdb\x73\x5d\x32\x5b\x36\xc4\x3d\xcf\x22\x96\x1b\x8e\x53\xd2\x66\x4c\x33\x97\x6c\x6f\x9a\xf7\x68\x8c\x1a\x84\x47\x23\x71\x90\x8b\xa9\x34\xf3\xd3\xf4\x00\x8a\x1a\x5c\x9c\xcf\x4b\x34\x67\x4c\x30\xe4\x47\x70\xaf\x7b\x0e\x07\x09\x62\xc9\xe9\x6e\x07\xde\x3a\x6f\x3f\x80\x69\x1a\x10\xaf\xa4\xfc\xf4\x09\xfc\x0c\xfe\x30\x9f\xff\xdf\x1f\xe6\xb7\xbf\xfd\xe1\x16\xed\xe0\x0f\x3f\xa0\x19\x7c\xfb\xe1\xfd\xee\xed\x87\xdd\xdb\xb7\x33\xf6\x6f\x97\x3d\x4d\xf0\xf3\x06\x7d\xb6\xec\x1d\x35\x0b\xd9\x68\xe7\x3b\xf0\xaf\xf9\x29\x37\x2f\x2b\xf2\xe5\x6b\x52\x53\x91\xe9\x20\x36\x0f\xf5\xd9\xb9\x9f\x4f\x53\xa5\x22\x1f\x27\xda\xb0\x4e\xb8\x0b\x62\x8f\x7e\xac\x4b\x22\xde\x54\x33\xfb\x51\x1e\x82\x43\xfe\xfc\x16\xdf\xe9\x94\x70\x82\x5e\x8e\x5d\xb7\x7d\x4e\xe5\x33\x37\xce\x29\x5b\x0e\xef\xbd\x3e\x8e\x00\xf4\x72\xe2\xba\x69\xdb\xd0\x1f\xe6\xde\x6f\x67\x3f\xdc\x7e\xb6\xc4\x00\xd8\xf7\xcc\xbd\x9c\x60\x71\x97\x9b\xeb\xc2\x75\x70\xc5\x8f\xab\xde\xc8\xa7\x09\x7f\x8a\xe5\xd3\x18\x61\xeb\x18\xc9\x3d\xc2\xab\xdd\x8e\xf9\xd7\xa8\x61\xab\xef\xcc\x8b\x69\x55\x97\xc5\xd6\xec\x79\x36\x8b\xe1\x15\xfb\x2f\x92\x2b\x65\x2e\x2c\xc0\xe4\xf4\x21\x5d\xa9\xf3\xe6\xdd\xd7\x3c\xd4\x80\x1a\x9c\xc9\x29\x38\x48\x08\xce\xf8\xac\x19\x2c\xd9\x2f\xe6\x0e\x04\x21\xfb\x25\x5d\xb2\x81\x29\x94\x93\xde\x37\xb3\xef\x49\x5d\xeb\xb8\x79\x78\x34\x46\x38\x63\x6c\x88\x2c\xfa\x01\x2a\xfb\x08\xec\x4b\xd0\x19\xa0\x31\x91\x34\x6c\x77\xb2\x7b\x61\x22\xbf\xc6\x51\xb9\xf5\xca\xa1\x6b\x8f\x2a\x5b\xb0\xfc\x3a\xd7\xb0\x28\x32\x4a\x72\xe3\x86\xc5\x3d\xb7\x2a\x5a\xa0\x0e\x44\xc6\xed\x8a\x12\x87\x75\x9b\xe2\x1e\x9a\x01\x11\xad\x28\xc4\xc9\x50\xcb\xb4\x1c\x61\xdf\x3c\x60\xfa\xd4\xe0\x98\x6f\xe6\x8c\xb8\x6f\xd1\x39\x8f\x8a\x86\x9b\x20\x69\x42\xe4\xc8\x5f\x2d\xc3\xc6\x31\x37\x92\x3b\xf2\x6a\x5e\x34\x1d\xa0\x1c\xe3\x70\xf0\x34\x2b\x16\x0d\xd0\x71\x8a\x6c\x4e\x6e\x0f\xb1\xe1\x80\x0b\x72\x01\x9c\xb4\x72\xf2\xa2\x76\x4a\x1a\x15\xcb\x3c\xfd\x89\xc6\x23\x80\xa6\x0c\x16\x86\xcc\x26\x70\x59\x31\x35\x3f\xa7\x9f\x55\x94\x53\x6f\x08\x73\x39\xa9\x9b\x3d\x77\xbb\x9e\x5b\x4f\x3a\xb7\x7b\x0e\xc5\x50\x86\xdb\x22\x52\x72\x0c\x39\xae\x36\x55\xcd\xa4\x58\xe4\xd4\x29\x16\xce\x9c\xfb\x9d\xf2\xb6\x4d\x2c\x2f\x0a\x76\x8a\x92\xe3\xbc\x35\x24\x4c\x34\x7f\x82\xf9\x98\x2d\x8a\x65\xfb\xc5\x7c\x70\x9e\xa6\x0b\x98\xe9\xe0\x15\xa2\xae\x3b\xa4\xf6\xbb\x1d\x19\x05\x01\x9b\x7f\x07\x5b\x2a\xa7\x4f\x53\xed\xe5\x1d\xa2\x45\xa9\x06\x80\xbf\x20\x59\x45\x0d\x69\x80\x0b\x62\x8c\x04\xd9\x0e\x82\x53\xd7\x5d\x33\xb3\xc3\x5b\xa7\xe2\xbf\xe7\xb5\x4f\x41\x0d\xb7\x70\xb8\x09\x39\x7d\xfc\x27\x57\x88\x7e\x1b\x06\x47\xae\xe6\x8c\x28\x3d\xec\x65\x07\x9e\xc7\xf4\x00\x82\x73\xf8\x1f\x00\x3f\xb9\x2d\x43\xbc\xcb\x66\x99\x93\xec\x79\xed\x31\x21\x79\xcc\x9f\x2b\x90\xeb\x8e\xa0\x35\x7e\xbe\x28\x4b\xb2\xdd\xa3\x56\x26\x0a\xb3\x31\xb9\x43\x18\x14\x53\xae\x8e\x52\x99\xad\xb2\x58\x27\xf8\xce\xd4\x2b\xeb\x64\xdc\x39\x76\xb6\x73\xa8\x6e\xa6\xad\x1f\x33\xba\xf6\x3b\xe4\x77\x0a\xe4\x7d\xdc\xc3\x98\x54\x16\x40\x36\x60\xb8\x0f\xc9\xc8\x42\x32\x24\xa4\xe1\x1e\xb7\x48\xe7\x84\x2d\x55\xed\x43\x80\x9a\x9f\x76\xea\xfe\x14\x69\x99\x90\x1d\x61\x99\xaf\x98\xac\xcc\xe7\xae\xa8\x06\x39\x3b\x53\x52\x26\x8e\x93\x05\x65\x11\x56\x72\x1a\xee\x38\x69\x05\x3a\xe7\x13\xcf\x36\x02\xdd\xf3\x8d\x6c\x19\x1f\x51\x38\x46\x96\x47\x12\x18\x06\xbb\x4d\xd6\x19\x42\xd0\x11\xd7\xc9\x83\xaf\x8f\xe9\x98\xd0\xf6\x1c\xe0\xe4\x2b\x94\x78\x13\xd1\xce\x55\xf5\xfa\x1e\x0e\x7b\x8f\x04\x87\xaf\x5e\xec\x76\xe1\xcb\xf1\x6e\x97\x56\xdf\x90\x6f\x60\x88\x66\xc4\x87\xa4\x3d\xe8\x89\x82\x20\xb8\x9c\xb8\x2e\xd1\xbb\x2c\x04\x35\x78\x7e\x8b\xbc\xaa\x28\x6b\xbe\xa1\x64\xee\xc4\x8d\xac\x3c\x19\x33\x09\x70\x3c\x1d\x7d\x27\x93\x89\xa7\xbc\x73\xa8\x91\x34\x8b\xaf\x27\x41\x10\xc8\xeb\xf3\xc1\x87\x32\xa5\xb1\x73\x3d\x71\x98\xdd\xe7\xd7\xe2\x2f\xd2\x3c\x76\x88\xc3\x91\x3a\xdc\xd9\x9e\x86\x17\x17\x8d\x70\xe6\x65\xdb\xb4\x5e\xc8\xd3\x0c\xe7\x29\x83\x04\x9a\xb5\x87\x21\xa4\xcf\xe2\xeb\x92\xbd\x3a\x41\x02\x3e\x5d\x77\x71\xb5\xca\xd0\xf7\x73\xd8\xcc\x9f\x17\x8f\xfc\xc6\x04\xd7\x55\x9f\x4f\x18\x71\xaf\x88\xa7\x88\x20\x24\xae\xfe\x0f\x03\xee\x80\x4c\xbb\x87\x8f\x07\xd5\x48\x12\x86\xc8\xf9\x8a\x3b\x91\xcc\xa1\xe3\x1d\xce\x65\xd6\xea\x8f\x2f\xfc\x81\xe3\x27\x8c\x8f\xd2\xb1\xf1\x32\x27\x32\xe4\x28\x94\x63\xab\x10\x31\x8a\xa1\x91\x02\x35\xed\x09\x2b\x3c\xa8\x49\xae\xdb\x1e\x2e\x21\x22\x54\xa1\x41\x11\x5e\xe8\x77\x21\x5b\xfb\x2d\x82\xf0\x68\x40\x1a\xb5\x76\x44\xb2\x78\xa6\xbe\x08\xa0\x59\x7b\xee\xc6\xd0\x17\x51\x72\xba\xbe\x48\x06\x7e\x7d\x7d\x11\x84\xcf\xd3\x97\x03\x47\xcc\x8f\x92\xe9\xab\x0b\xbf\x10\xa6\xd5\x16\x81\xe7\x80\xb6\x48\x51\x9d\xa2\x2d\x52\x99\x5b\x75\x91\x3a\xcd\xd5\x45\xbe\xec\xe9\xcb\x40\x92\x86\xa1\x2a\xf2\x56\xa6\xf3\xd5\xc5\x00\x9c\x59\x4f\x86\xda\x18\xa5\x76\x5a\xa8\xf5\x8a\x1f\xde\x1b\xd6\x10\x12\x70\x1d\x91\x6b\x2b\xa9\x23\x7c\x25\xb3\x85\xc8\xe7\x69\x67\xe7\xeb\x88\x41\xfa\x0c\x3d\x19\x7d\x07\xc3\x93\x10\x4a\x04\x55\x45\x63\xa6\x0e\xa9\xe8\x40\x75\xed\x59\xbe\x64\xd6\xdf\xb8\x03\x86\xd6\x9b\xb5\x98\x06\xf8\x16\x70\x65\xf9\x59\x86\x90\x42\x0c\xad\x02\xd7\x6d\xc3\x4f\x00\xf4\x02\x4e\x4a\x45\x0c\x08\xd9\xe3\x62\xc7\xec\xbc\xce\x16\x30\x52\xbc\xc6\x96\x1b\xd9\x23\x11\x99\x95\x8b\x1c\xf1\xc3\x5e\x90\xab\xcf\xc1\x94\xc5\x4a\xad\x5a\x45\xb5\x6a\x64\x36\x5e\xf2\x49\x30\xed\x27\xf9\x2e\xfa\x45\x6a\xe1\x57\xb8\x2e\xe4\x1b\x4f\x4b\x02\xd5\x2a\x57\x29\xff\x50\xf6\xe3\x50\xc3\x67\xed\x78\xf1\x21\x31\x02\xf8\xdc\xc3\x80\xc2\xb1\xe0\x6b\xf9\x97\x13\x91\x01\x39\xe1\xb7\xc8\x29\x32\x84\x87\x95\x32\x63\x3c\x0f\x24\x4c\xcf\xf9\xe1\x5d\xf5\x85\x18\x80\xf9\x39\x27\xcc\x8f\x8a\x00\x95\x25\x0c\xf8\x21\xb9\xc3\x7d\xd3\x12\xd9\xb3\xe9\xe4\xba\xa7\xae\x02\x5b\x54\x83\x7b\x50\xc5\xe0\xb7\x3d\x8c\x55\xa6\x39\x76\xc3\x76\x1f\xd5\xde\x25\x15\xfe\xd7\x59\x0c\x74\xa9\x3a\xc5\x82\xdb\x53\x71\x8c\x09\x3b\xc0\x34\xa8\x86\xd0\xe5\x2a\x54\x65\x0d\x9d\xa7\xf3\x0a\xea\xac\xad\x3c\x9d\xa0\x74\xf2\x1e\x9e\x66\x8e\x59\xb5\xcc\x37\xae\xb6\x0b\x48\x4f\x99\xb9\x56\xf1\x1c\xa3\x4f\xda\xdd\xe3\x0b\x27\x0e\x7e\xf6\x06\x1f\x87\x32\x5a\xd5\xf6\x85\xf8\xc6\x13\xc9\x25\xfc\xc0\xd6\x9e\xa4\x89\xc3\xe1\xd1\xa9\x4e\x5c\x7e\x7a\x93\x14\x86\xb3\x5b\xa5\x00\x3f\xb9\x61\x0a\xc1\xbe\xb6\xe9\x2f\xf3\x9c\xa7\x7b\x1a\xec\x2c\xe5\xd3\x50\xa7\x6b\x5f\xcb\x9f\x1c\x2b\xed\x4d\x98\xe7\x71\xdc\xc2\x9d\xc5\x72\x0b\x76\x3a\xcf\x06\x8b\xfd\x11\xc2\xda\xf0\x90\xd2\xc7\x9b\xe2\xdc\x16\x28\xa8\x73\xb6\xcd\x14\xcc\xb1\xbd\xb2\x74\x01\x4b\x23\xae\x74\xc0\x02\x1a\x18\xf7\xee\xfc\x42\x70\x51\x1a\xb6\xef\x02\x20\xe6\x40\x6c\xa8\x29\x24\x2d\x03\x62\xc6\x8c\x4c\x26\xf0\x5a\x64\x72\xe8\x31\x68\xde\x8c\x79\xe6\x8e\x69\x07\xfa\x1c\x11\x76\x61\x4f\x10\xe5\xe6\x34\x51\x0e\x60\x3e\x24\xd2\xcd\x31\x91\xf6\x64\x34\xac\x7d\xbd\xbb\x2c\x3f\xdd\xae\xf5\x50\x89\xd9\x76\x2e\x82\x28\xd2\x2e\xdd\xb2\x45\xd3\x53\xe3\xd5\xc5\x7b\x2e\x2d\x91\x22\xb1\xcf\x57\xed\xa1\xb4\xb7\x65\x24\xe6\x07\x52\xa6\xe2\x18\xe3\x94\x5f\x0a\xd5\xde\xc6\x39\xfc\xe9\x30\xab\xc6\xc9\x74\x5b\x18\x4d\x50\xf7\x8b\xea\xfb\x3e\x07\x81\xf9\x60\xbb\x16\xb8\x36\xee\xf3\x32\x38\x3a\xa0\x24\x87\xe4\x61\xf0\xd7\x9d\x15\x5a\xb5\xa9\x6d\xb5\x01\x68\x7a\xf8\x3a\x53\x8b\xfd\x86\xb7\x4d\x5d\x85\xba\x4f\xb6\xfa\xfd\xc9\x2d\x50\x10\xc7\xe5\xaa\x6a\x06\xed\xcf\x8e\x4c\x2b\x43\xa6\x9a\x93\x4f\x94\xa8\xe6\x6b\xbf\x3c\xab\x93\xe4\x39\xc0\x76\x6f\xd7\xcc\xbe\xba\xf0\x3c\xdf\xcf\x04\x3d\xcf\x01\x34\x21\x0f\xb9\x15\x7a\x8e\xeb\xd9\x19\x9b\x6f\xd2\xae\xd5\x3b\x97\xe0\x9f\x39\x41\xdb\xc0\xe7\xcd\xd2\x36\xec\x19\x53\x75\x87\xe3\x61\x8b\xa9\x6f\xa7\x3f\xbf\x45\x1c\xec\xec\xb6\x70\xa8\xf3\x5a\x21\xf8\x3b\x68\xf1\x89\xbd\xd0\x3b\x25\xbe\x61\x42\x0e\x2e\xa4\x42\x9e\x0a\x2a\xb2\x3e\xe5\xc7\x28\xc3\x81\xf5\x5c\xe8\xba\x1d\xb7\x77\xdf\xca\xdc\xa4\xb8\x27\xe2\x4a\xd4\x67\x6a\xe5\x64\x30\x28\x13\xab\xcd\xe1\xa0\x58\xd4\x49\xa5\xf3\x7a\x55\x41\x9d\xd5\xa9\x0a\xe8\xf4\x3e\xd5\xcc\x11\x15\x08\xd7\x39\xa4\xe7\x46\xc3\x35\xe0\x59\x2c\x1b\x70\xa7\x73\x6d\x72\x29\x19\x17\x7b\x40\x67\xe6\xaa\x70\x98\xf3\x72\x54\x38\xc8\x19\xa9\x29\x82\x2d\xb5\x02\xb7\x47\xb7\xde\x7c\x89\x74\x48\x55\x25\x7c\x9e\xb1\x45\xa3\x40\x7c\x23\xe1\x55\x6f\xbd\x2c\x69\x2d\x72\x2e\x86\x10\x6e\xf9\xa9\x80\x4c\xe4\x50\xf6\xbe\x8b\x7a\xaa\x48\x38\xf4\xe9\x12\x11\xc4\xa4\x40\xba\xc9\x8e\xe7\xf5\x5f\x17\xfa\xac\x9e\xec\x02\x9f\xde\x82\x1e\xd3\xc4\xb4\xdf\xc5\xb9\x1b\x2c\x1a\xec\x13\xec\x77\x71\xce\x16\x4b\xcb\x1f\x69\x2d\x93\xdc\x58\x3f\xdf\x38\x49\xc0\xb3\xed\x93\x84\x3b\xca\xf6\xff\x19\xa2\xd6\xe6\x89\xa8\xdb\xb5\x78\x3f\x9c\x1b\x1e\xb6\x80\xcf\xcb\x0f\xb1\x40\xcf\xc8\x0d\xb1\xf9\x95\xcd\xb0\x8f\x89\x9f\xd7\x0a\x1b\xd6\xfe\x76\xfc\xb1\x66\x74\x8e\xa7\x23\xa7\x4a\x8a\x6c\x23\x72\xd3\x2a\x47\xa3\x31\x1a\xd0\xe1\x94\xd8\x09\x20\xd6\x55\xba\x9f\x96\x08\x62\xa1\xd8\x93\x10\x62\xd5\x31\x13\x43\xac\x17\xfb\x12\x44\x6c\x26\x7f\x66\xa2\x88\x85\xec\xec\x84\x11\x9b\x95\xd0\x08\x43\x99\x57\x2c\x7f\x9a\x20\x39\xe8\x1e\x01\xf2\x77\xa6\xe0\x78\xc1\x3e\x81\x09\x26\x7e\xa6\xa0\xde\x88\xf3\x7c\xa7\xe4\x3c\x58\x64\x0b\x3b\x9b\x46\xf3\x72\x5a\x56\x42\xa4\xb3\x12\x92\x5e\x56\x42\x02\x10\xbe\x7a\xce\x6f\x88\x36\xb3\x12\xae\x9e\x1f\xcc\x4a\x88\xf6\x66\x25\x58\x1c\x7e\x4a\x5a\xcf\x50\x8f\x99\xaf\x8c\xb4\x9e\xc1\xfe\xea\x8a\xe8\x67\xa4\xf5\x9c\xde\x5b\x16\xd1\xa2\x93\xd2\xf3\xff\x71\x6f\xa9\x8f\x15\x9c\x63\x6c\x17\x56\x9a\xab\x8e\xde\x5a\x37\x8e\x08\x79\xff\x1b\xf3\x5e\x15\xa3\x07\x73\x5f\x8f\x66\xbd\x2e\x44\x44\x18\xff\x45\xb4\xdf\xfe\x1c\xcc\x32\x88\xf4\x87\x62\xf4\x85\xb4\xbd\xc9\x4a\x7c\xd7\x43\x9f\x67\x6f\x6f\xae\x95\x68\x34\x8a\x91\x75\xfc\xaf\xf7\x01\x90\x67\x5f\xbd\x7f\x2f\xae\xdf\x72\xc0\xb3\x8b\x1e\x19\x7e\x35\x1f\xc9\xf3\x42\xec\xcf\xac\xd7\x19\xeb\xe7\xba\x70\xf2\x22\x77\x38\x4e\x87\x66\x7c\xc3\xf1\x19\xef\x87\xc8\x48\x76\xe7\xaf\x2f\x97\x65\xb1\x59\xf3\x33\x02\x79\xc0\x58\x8e\xfa\x77\x71\x8a\x6f\x3b\x02\x7d\xc6\x31\x6a\x0f\xf6\x6b\x0c\x97\x24\x8e\x59\x1d\xff\x00\x3c\xff\xe8\x9d\xfa\x2a\xd7\x91\x76\x83\x36\xb4\x9e\xe6\x69\x9d\x92\x2c\xfd\x89\x3a\xf6\xb9\x03\xfe\xc9\x93\x62\x53\xb3\x01\x67\xb5\xb5\xed\x49\xca\xcf\x4b\x9a\x3a\x67\xe7\x8c\xbf\xe1\x0b\x4e\x95\xf5\x0e\x63\x84\x45\xa2\x26\x5f\x8d\xf6\x8e\x8d\xba\xae\x9e\x6c\xf8\x7b\xfb\xdc\xe6\xb9\x67\x42\x3b\x11\x79\x9d\xa1\xbe\x94\xb7\x8a\xf2\xc3\x1f\x49\x91\xf1\xef\x8c\x0d\x45\xe4\x5b\x61\x2e\xc5\x52\xa8\x8d\x31\x2d\x72\xcf\xfe\x72\x8c\x65\x63\xc3\x20\xdc\xed\x9e\x1a\x9e\xfd\x10\x63\x1a\x70\x1b\xc7\x5a\x5b\x17\x6c\x04\x8a\x13\x2d\x62\x2b\x58\x8f\x6e\x3c\x61\x72\x1c\x8d\xf1\x32\x98\x03\x79\x54\x04\x60\x71\xbb\x82\xf8\x44\x2a\xc0\xf2\x2b\x84\x22\xf0\x0c\x64\xb6\x7e\xbb\x1d\xa1\x4c\x40\x9d\xa4\xd5\xe0\xbd\x4c\x31\xbf\x55\x42\x1c\x94\xa2\xf2\x74\x74\xf7\xa8\xc9\x6e\x07\xe3\xa0\x73\xe4\x60\xa0\xbd\x4a\x52\x3c\xb8\xb6\x07\x17\x8e\x20\xc5\x31\x42\xa8\x19\x0e\x44\x1f\x67\x58\x5f\x24\xc5\xaf\xa6\x1e\x66\x98\xdb\xb8\x65\x7f\x60\xef\xfb\x66\x1f\x04\xcf\x2e\xc2\x8b\x67\x00\x39\x2b\x5a\x27\x45\xec\x3c\x92\xca\x61\x7d\x41\x63\xa7\xc8\x99\xae\x4b\x2d\x77\xea\x84\xd4\x2a\x2f\x62\x53\x31\x37\xda\xa6\xfd\x0c\x4d\xe3\x60\x39\x0f\xd5\xc1\xf2\x25\xa6\xac\x0f\x63\xa6\x63\x0d\xc2\x8b\xdd\x8e\x78\x69\xce\x3b\x1f\x86\x78\x89\x5e\x5d\x4e\x66\xac\x35\x7e\x3c\x1d\x34\xae\x5f\xab\x6c\x14\xa5\x13\xce\x42\xda\xce\x96\x26\xcf\x55\x42\x87\xbb\x24\x78\x52\x19\xec\x3e\x00\x58\xe4\x35\xf9\x6c\xde\xeb\xe7\x82\xfb\xe0\xe6\xe6\xe6\xc6\xe1\xf7\xec\x60\x33\xab\x9a\xd5\xd7\x69\x16\x13\xac\xf2\xea\x46\x13\xac\x92\xa6\x46\x13\xdc\x4e\xa3\xfe\x68\x8c\xf5\xb5\x23\xa3\x31\x16\x89\x1f\xbe\xca\x47\x81\x08\x1b\x23\x8b\xf3\x62\xe6\xd9\xb2\x02\x33\x1b\x97\x3d\xf3\xa8\xb4\xcf\x5b\xe2\x83\x65\xb6\x5d\x27\xac\xc4\xd1\xbf\xf8\xfd\x79\xf2\xea\xad\xc1\xf7\x6a\xa7\x16\xe0\xcd\x7a\x4f\x8d\x84\x3e\x94\x45\x7e\xb9\x59\x03\xcc\x4f\x3e\x1e\xac\x25\xce\x29\xea\x8b\xae\x0e\xd6\xe5\x5f\x5a\xc2\xfc\x5a\xad\x83\xf5\xc4\x67\xb1\xe4\x75\x09\x83\x35\xab\xa8\xa4\x34\xaf\x92\xa2\x06\xf2\x7a\x85\x61\x61\x94\xa4\x4a\x80\xbc\x4b\x61\xb0\x86\x38\x71\x05\x1a\xac\xa2\xe2\xfe\x93\x24\xfb\xe7\x82\x4d\x68\xf2\xeb\xab\x92\x06\xdf\x51\x75\xda\xeb\x9d\x14\x66\xbe\x52\x77\xea\x84\x3a\xf2\x5e\x0e\xeb\x42\x2e\xf0\x9e\x3f\x38\xe2\x3b\x1f\x58\xdf\x04\xed\x83\x6f\xa5\xd8\xd4\x2b\x7d\x7f\xb3\x0f\xbe\xa1\x1f\x35\x84\x71\x3d\x96\xc2\xc5\x6f\xd4\xc7\xea\xeb\x19\x06\x26\xf1\x42\x7d\xf3\x42\xe2\x11\x85\xd6\x85\x56\x0a\x91\xbc\x46\x1c\xb7\x9f\x46\x30\x90\xa9\x97\xed\x07\x0d\x24\x42\x13\x4a\xde\x25\x6f\x80\xc9\x12\x01\xa7\x5f\x73\x40\xfd\x8a\x09\x8a\x5f\x3e\x02\xd8\x08\x76\xf8\xd5\xb3\xf6\x75\x50\x3e\xf8\x5a\x3d\xca\xd7\xd6\x75\x4a\x3e\x78\x4d\xed\xd7\xed\x57\xe2\x25\x52\x79\xf3\x6a\xf7\x7e\x28\x13\xb1\xaa\xd2\xb9\x5e\xc9\x44\xae\xaa\xb4\x1f\xec\x96\xe8\xe5\x35\xa5\xdd\xdb\xa2\x4c\xf4\xaa\x4a\xe7\x9e\x25\x13\xbd\xaa\x62\xdd\x9e\x04\xc4\x6e\x95\xa3\x3e\x4f\xdd\x7e\x48\x57\x77\x1c\x7b\x00\x0d\xd6\xd9\x10\xdc\x34\xe9\x34\x03\x69\xd8\x3a\x89\xe9\xac\xd4\x0a\xd5\xb0\x02\x15\x76\xf7\x79\x02\x3c\xc0\xdd\x98\xb1\xaf\x3f\x83\x89\x3b\xb1\x11\x4e\x52\x05\x1a\xda\x07\x36\x24\x46\x13\xdc\x8b\x80\xf9\x4f\x6d\x14\x51\x7d\x83\x4d\x45\xc2\xe4\x73\x83\xcd\x4d\x7a\x7e\x10\x1d\xdb\x27\x06\x19\x66\xb5\x11\xce\x7e\x1b\xdb\xcb\xcc\xc2\x0a\xd7\x44\x55\x92\x53\x87\x10\x86\xe5\xc1\xfa\xa6\xa7\x28\x9c\x29\xac\x37\x67\x9f\x36\x6b\xbf\xb3\xe4\xd0\x29\x70\x7c\x52\x16\xe7\xdc\x76\x3b\xfe\xa0\xb7\x6d\x61\xfb\xcd\x09\xcf\xfa\xa6\x2d\xbf\xdc\xe1\x21\xad\x52\x1e\x9e\x9e\xb5\x28\x06\x32\xa4\x3f\xe7\xa9\xf8\xc8\x1f\xaa\xc4\x96\x59\xbc\x5c\x4d\x41\x10\x89\xdc\xd8\xa6\x11\x96\xba\xc3\x74\xbb\xfc\xe1\x5e\x9e\x00\xe5\x9b\xf7\xd3\x5f\xb4\x31\x8c\xcf\x43\xed\xd0\x8d\x1d\x6e\x0c\x06\x51\x91\xd7\x65\x91\x39\x9b\x35\xf8\x1f\xeb\x08\xf1\x15\x91\xfd\x1d\x31\x91\x37\x96\x19\xec\xf2\xb9\xf0\xd7\x66\xb8\xfd\xe2\xc9\x11\x61\xb7\x0c\xf3\x8f\x20\xfe\x72\x6c\xba\xee\x31\x3e\x62\xc1\x87\xf8\x00\xe3\xaf\xcd\x48\x7b\xe0\x85\xf1\xb0\x26\x4b\xfa\xb7\x5f\x72\xb8\x1f\x97\xc6\x4d\xcb\xc9\xeb\x81\x51\xfc\x6b\x09\x44\xb2\x41\xf3\xda\xbe\xfb\x8d\x83\x88\xab\x74\x1a\x4c\xab\x88\xac\xe9\xde\xd7\x7a\x28\x54\x6b\x12\x51\x7b\x2c\x10\xd7\x25\xfd\xeb\x7a\x06\x78\x94\xb5\x9e\x79\x61\x9d\x5b\x37\x67\x03\x73\x8e\x04\xb7\xcf\x90\xc7\x2f\xcf\x60\x84\xeb\x1e\x4b\xbc\x91\x5d\x29\xf1\x2b\x0f\x33\x5a\xf7\x5b\x10\x89\xf8\x3a\xb3\xa4\x34\xdc\x2c\xd9\x94\xd1\x8d\x1d\x99\x0e\xba\xb5\x2b\x6c\xbe\x10\x37\xd7\xb5\x9e\xbb\x7e\xd6\x5f\xde\x1c\x4d\x06\xd7\x29\x0d\x9a\xfe\xbf\x00\x00\x00\xff\xff\xcf\xa4\x5a\xd5\x6e\x96\x00\x00") func staticManagedJs41747BootstrapDatetimepickerMinJsBytes() ([]byte, error) { @@ -1196,7 +1176,27 @@ func staticManagedJs41747BootstrapDatetimepickerMinJs() (*asset, error) { return a, nil } -var _staticManagedJsAssetsTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xd0\x4d\x72\x84\x20\x10\x05\xe0\x7d\xee\xd2\xaf\x04\x4d\x66\x72\x84\x5c\x20\x7b\x84\x8e\xe2\x0f\x4d\x00\x67\xca\xdb\xa7\x5c\x38\x98\xed\x83\x7e\xf5\x75\x6b\x68\x74\x34\xfd\x6e\x9c\x76\xac\x3e\x60\xca\x6f\x1a\xea\x06\x45\xab\xac\x1c\xca\x19\x36\x68\xa1\x1a\xfa\x31\x0f\x6f\xe5\x0c\x5b\xb4\xb8\x51\x2f\x52\x72\x49\x26\x5e\x63\x5d\x63\xca\x4f\x5f\xec\x58\x9b\x34\x1a\x0a\x31\xc9\x90\x38\xe7\x1a\xdf\xd1\x5c\x86\x8a\x19\xb2\x0f\x71\x7b\x09\x14\x14\x14\x95\x3d\xb2\x19\xd9\x38\xf4\x5b\x70\x0b\x9f\xaf\xdd\x81\xee\x2e\x18\x72\xa6\x70\xf1\x2b\x47\x6f\x67\x4e\x97\x16\xfd\x1f\xc7\x0b\xdb\xcb\x9a\x0a\x9a\x16\x31\x8e\x53\x86\xad\x3c\x0d\x85\x96\xa6\x0c\x2b\x32\x7b\xae\x75\x77\xb4\xb4\x85\xe3\xbb\x95\xc4\x54\x39\xc7\x09\x4d\x96\x90\x76\xc4\x79\x70\x75\xe2\x1d\xea\x83\xec\xe2\x63\x2f\x26\xb9\x7a\xb4\x4f\x28\x4a\xe6\xc1\xa1\x62\x3a\x34\x94\x47\xa3\xaa\xa2\x83\x26\x9f\xbf\xc2\xb7\xe7\x67\x94\xf4\x82\xff\x05\x00\x00\xff\xff\x05\x27\xd4\x9b\xc9\x01\x00\x00") +var _staticManagedJs420MasonryPkgdMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x7c\x6b\x93\xdb\x36\xb6\xe0\xf7\xf9\x15\x6a\xd4\x0d\x87\x30\x21\xb6\x3a\x33\x9f\xc8\x81\x55\x8e\xed\x4c\xbc\xeb\xc4\xb9\x63\xcf\xce\x66\x35\x5a\x17\x5b\x84\x24\xcc\xa5\x00\x0d\x08\x3a\xdd\x96\xf4\xdf\xb7\xf0\x22\x00\x92\x8a\x9d\x75\x72\xab\xab\x5a\x24\x9e\x07\xe7\x1c\x1c\x9c\x17\x78\xfb\xe4\xe6\x0f\xb3\x27\xb3\xef\xab\x96\x33\xf1\x38\xfb\xf1\xd9\xf3\xff\xf9\xec\xaf\x2f\x5f\xcc\x3e\xfc\x39\xff\x3a\x5f\xa8\xaa\xe7\x55\xbb\xa9\x6a\xca\x76\xb3\x9d\xa0\xf5\xac\xa9\x1e\x79\x27\x67\x0d\xbd\x17\x95\x78\x54\x0d\xf6\x52\x1e\x8b\xdb\xdb\x83\x19\x22\xaf\x49\x5b\xb1\x5a\xf0\x7c\xc3\x0f\x7a\xe8\x57\xef\x66\xaf\xe9\x86\xb0\x96\xa8\xd7\xfb\xc7\xd9\x8b\xea\x03\xad\x67\x2f\xc8\x5b\xdd\xee\x0f\xb3\x27\xb7\x7f\xf8\xc3\xcd\xb6\x63\x1b\x49\x39\x4b\x25\x22\xf0\x04\xdc\x2b\xc0\x58\x3e\x1e\x09\xdf\xce\x6a\xb2\xa5\x8c\x24\x89\xf9\xcd\xab\x43\xbd\x34\x8f\x29\xf8\xd7\xbf\x3b\x22\x1e\xe7\xf7\x82\xd6\x3b\x22\x6f\xe3\x57\x80\x56\xb6\x01\x58\xa3\x7e\x16\x0a\x4f\x82\xc8\x4e\xb0\x19\x49\x25\xa2\xf0\x02\x0b\xc0\xef\xff\x45\x36\xd2\xcf\x78\xe0\x75\xd7\x90\x24\x31\xbf\x39\x79\x38\x72\x21\xdb\x65\xfc\x8a\x55\x7f\x41\xfe\xdd\x51\xd1\x43\x02\x20\x2c\x64\xfe\xaf\xff\x54\xcf\xdf\x18\x28\x74\x33\x57\x06\x2f\xe9\xcf\x94\xd5\xfc\x67\x34\x58\x75\xd7\x92\x59\x2b\x05\xdd\x48\x50\xba\xaa\x19\x4d\x29\x12\xa8\x82\xa7\xbe\x64\xaf\x9a\x23\x06\x4f\x1f\x2a\x31\xe3\x48\x60\xf0\x1f\x29\xcc\x41\x46\xb3\x3f\xa6\xe0\x8f\x19\xc9\xfe\x08\xe0\x1f\x4b\xbb\x3e\x99\x93\x6a\xb3\x4f\x83\x99\xf6\xa6\x63\x87\xab\xbc\xae\x64\x95\xee\x11\x85\x25\xdd\xa6\x37\x1d\xb4\x7d\x3e\x70\x5a\xcf\xda\x94\x66\x60\xc6\xb8\x9c\x51\x46\x25\xad\x1a\xfa\x91\xd4\xf9\xec\x79\xc5\x54\xd9\xa6\x6a\x9a\xd9\x81\xc8\x3d\xaf\x5b\x34\xa3\x39\xc9\x67\x20\x13\xb0\x54\x23\xd7\xb8\x5b\x91\xb5\x1e\xb2\x3e\x9f\xc1\x7b\x80\x31\xc9\x37\xfb\x4a\x3c\x93\xe9\x02\x0e\x26\x11\x19\x98\xd1\x56\xcf\x53\xcd\x3e\x54\x0d\xad\xed\xb0\xc0\x0c\xd6\xe0\x3a\xaf\x8e\xc7\xe6\x31\xed\x10\x83\x25\xc7\xba\xdf\x02\x63\xcc\x97\x4d\xc1\x2f\x10\x99\x82\x1b\x55\xc0\x0b\x79\xe9\xd1\xd4\x19\xac\x8e\x11\xe0\x30\xe7\x10\xc0\x14\x02\xf8\x32\xe5\x39\x3f\xea\x26\x04\x22\x9e\xbf\x57\xcb\x4e\x21\x2c\x52\x8e\x19\xf9\x79\x26\x52\x86\x08\x44\xbe\x0f\xe2\x10\x5e\xe0\xa5\xc2\xd5\xf9\x4c\xce\x67\x47\x5d\x54\x25\x49\x2a\xf2\xa3\xe0\x92\x2b\x4e\xb2\x83\x9e\xcf\x13\x85\xd8\x43\x05\x4f\x55\x4e\xdb\x1f\x9b\x8a\xb2\x37\x9a\x11\x53\x09\x93\x24\x95\x7b\xda\xda\xc6\x2d\xae\x72\xf2\x20\x09\xab\xd3\x9b\x05\x0a\x2b\x90\x54\x90\xa0\x2a\xdf\xb2\x15\x5d\x47\x83\xd2\x6d\x0a\x14\x4b\xb1\x9d\x67\x6c\x69\xd6\x4f\x30\xcf\x15\x19\xd3\x4a\xec\xba\x03\x61\xb2\x45\x77\xd0\xb1\xcd\x5e\xcf\x8c\x14\x06\x2f\xb6\xa8\xb3\x45\x50\xcf\x7d\x41\x2c\xad\x20\xf4\xe8\xd6\xd3\xdd\xc8\xf3\x59\x26\x89\xcc\xed\xee\x3b\x9f\xd3\xfe\x19\x53\x78\x31\x78\x7f\x26\x44\xf5\x18\x20\xa3\x6d\xe8\x86\x20\x81\x65\xbe\xe1\xac\xe5\x0d\x41\x2d\x06\x1d\x33\xfb\xbb\xf6\x80\x8b\x65\xbf\x34\x78\xba\x14\xe1\x3a\x45\x4e\x84\xe0\x22\x95\xf0\xe2\x96\xc0\xd2\x80\x2a\x10\xd1\x0b\x1c\xee\xb7\x5f\x25\x65\xc8\x87\x39\x39\x50\x29\x89\xb8\xf5\x8f\x00\x91\x2f\x90\x1c\x4a\x4c\xbc\xfc\xf0\xd2\x0c\xa5\xde\x2f\x69\xb0\xec\x1b\x37\x9c\x11\x16\x4b\xf3\x53\x68\x22\x04\x78\xe8\x09\x20\x15\x52\x0c\x61\xa5\x47\xae\xc3\x06\xc9\x23\x76\x53\xeb\xa7\xdb\x54\x26\x09\x31\xdc\x40\xb1\xe6\xa8\xf7\xe4\x83\xe2\x84\xe8\xe5\x7c\x3e\x5d\x10\xc3\x74\x25\xd7\xfa\xdf\xf9\xbc\x5a\xdb\x61\xe7\x77\x18\xb3\x9c\xb2\x9a\x3c\xbc\xd9\xa6\x04\x26\x09\xcb\x8f\x5d\xbb\x57\x5b\x48\x73\xc9\x05\xa9\x89\x37\xe4\xda\xd4\x86\x8d\x4d\x69\x19\xc2\xa1\x3a\xbd\x0c\x61\xf1\x05\x63\x78\x4e\x9e\xe8\x2b\xb2\xc6\x76\x7b\x98\xc9\xb7\xdb\xc1\xdc\xe3\xd5\x26\x49\xf8\xb6\x92\x5a\x76\xd1\x24\xa1\x79\x43\xd8\x4e\x5a\x81\xc9\x30\x0d\x56\xda\x23\xe0\x06\x33\xd5\xb2\x3d\x2a\x26\x4e\x19\xba\x0b\x56\xae\xb8\x44\xc3\xfc\x9b\x81\xb0\x40\x1c\xd3\x15\x5b\x97\x04\x13\x4d\x87\x2d\x17\xa9\xaa\x12\x23\x34\xb9\x21\x7d\x89\x1a\x96\x97\x66\xa8\x16\x8b\x24\x11\x2b\xbe\x2e\xdb\x5e\xcc\x6c\xb7\xa9\x44\x1c\xa2\x9a\x34\x44\x92\x99\xaa\x55\x92\xd0\x88\x5f\xcd\x77\x04\x22\x96\xe1\x76\xb9\x28\xee\x2c\x20\x4e\x3a\xd8\x35\xcb\xf1\x2e\x0b\x4f\xb5\x5f\xb7\xe5\x76\x44\xce\x5b\xfa\x91\xdc\xba\x07\x80\x56\xeb\x90\xf7\xfb\x33\xfc\x8b\x0e\x70\xb5\x0d\x77\x44\xbe\xa5\x1f\x89\xd9\x84\xc3\xd3\xf9\xda\xd1\xac\x64\xb4\x15\xa5\xc7\x4a\xb4\xe4\xdb\x86\x57\xaa\x0c\x51\xac\x36\x86\xec\xd9\x05\x7c\x05\x60\x92\xdc\xd0\xf6\x87\xea\x07\xcf\x3b\x33\x9a\x24\xc4\x0b\x50\xa2\xf6\x6f\x70\xec\xc3\x93\xa3\xad\xc4\xa7\x9f\x69\x2d\xf7\xc5\x02\xed\x09\xdd\xed\x65\xb1\x40\x94\x31\x22\xfe\x61\x4b\xf5\xcb\x77\xae\x8a\x77\xd2\x57\xe9\x17\x57\x75\x41\x04\x2f\xca\xee\x29\x29\x49\x96\x39\x36\xdc\xab\xc3\x5a\xaa\x83\x63\xd1\x13\x73\x20\xd6\xcd\x1a\x77\x44\x3e\xe7\x87\x63\x27\x49\xfd\x56\x3e\x36\x24\x95\xfd\x4a\xc8\xf9\x5c\xa5\x40\x97\xce\x4c\x11\xa9\x67\x20\x23\x19\xc8\x67\xcf\x04\x99\x3d\xf2\x6e\x26\x3a\xc6\x94\x1e\xa9\x38\x65\xb6\xe1\x35\x99\x51\x36\xab\x66\x7b\x5a\xd7\x84\xcd\xe8\x56\x54\x07\x32\xe3\x6c\xf6\x2d\x15\x64\xcb\x1f\x96\xb3\xb7\x84\x38\xed\xf2\x9e\xca\xbc\x79\x54\x7c\xa0\xd8\xe0\xbe\xdb\xdd\x01\x88\x02\xdc\xf1\x54\xcb\x94\x9b\x1a\x9e\x6a\x7c\xb3\x28\x0d\xc0\x35\xdf\xe8\x83\x2d\xdf\x08\x52\x49\xf2\xb2\x21\xea\x2d\x05\x35\xfd\x00\x60\x49\xf2\x56\xc1\x9b\x6b\xd4\x62\xf0\xf5\x62\x71\x7c\x00\xc8\x95\x1e\xab\x5a\x69\xbd\x18\xdc\x1d\x1f\x66\x5f\x1f\x1f\x66\x7f\x3a\x3e\xcc\xfe\x1c\xb6\xb8\xe7\xa2\x26\x42\xaf\x19\x83\x96\x37\xb4\x1e\xd6\xfd\xc3\x8c\xfc\x0b\x23\x3c\xbc\xa5\x1f\xf5\x2c\xa6\xc3\xfc\x9e\x3f\x00\x2b\x06\x7b\xe0\xef\x79\xfd\x78\x3e\xf7\xaf\xee\xc1\xae\xa6\xa4\x6a\x7f\x12\x56\x3f\xdf\xd3\xa6\x4e\xad\x14\xe5\x98\x69\x3e\xcb\x69\xfb\x8d\x9e\x84\xbc\x51\x7c\x80\x5b\xfc\xf5\x62\x81\xb1\x4c\xb9\x59\x36\x44\x34\x17\xe4\xc0\x3f\x10\xd7\xfd\xe2\x91\x2a\x52\x23\xa9\x79\x0a\xd1\x48\x89\x20\x49\x92\x06\x18\xd6\x8a\xef\x5b\xd2\x90\x8d\xe4\xaa\x1f\x44\x24\x49\x46\x3b\x92\x24\x09\xc9\x19\xaf\xc9\xbb\xc7\xa3\x15\x83\xc2\x40\xaa\xf4\x14\xc6\x19\x01\x18\x8b\xbc\xa6\xed\xb1\xa9\x1e\x9d\xa6\x48\x53\xb3\xa8\x0a\x9f\x2e\x65\x65\xe9\xa5\x25\x7b\x4b\xa4\xc6\x31\xaa\x72\xb3\x31\xfa\x62\xc3\xf1\xbd\x74\xac\x71\xa5\x51\xa1\x90\xfc\x0d\x7f\x88\xf0\xad\x66\xec\x29\x81\x1a\xbd\x41\x9a\xb2\x71\x1b\x64\x83\xf7\xab\x66\x8d\xb6\x58\xac\x36\x6b\x74\x08\x77\xfa\x16\x96\xd5\x6a\xb3\xc6\x66\x5f\x1f\xe0\x72\x51\x1c\xf4\x09\x7c\xc4\x95\x63\xa0\xd7\x64\x2b\xb3\xfe\xed\x6f\x0a\x2a\xb4\xf3\xd5\xef\xf8\xd1\xd7\x7e\xc3\xa5\xe4\x07\xf4\x88\xab\xfc\x50\x89\x1d\x65\xb6\xb3\x79\x31\x7d\x3f\xf4\x95\xa6\xab\x79\xb6\x3d\xdf\xe3\xca\xb2\x9e\xea\xa9\x51\x93\xb9\x12\xdd\xdd\x60\xeb\x63\xdf\xec\x1d\x3f\xc6\xad\xcc\x40\xa6\xd9\x4b\x5c\x27\x49\x8b\xee\xb1\x4c\x85\x65\x97\xf2\xfe\x06\xe3\x9b\xbb\x24\x49\x1d\x1d\xee\xb3\xf4\xe5\x72\x51\x1c\xb3\xf7\xd0\x50\xe9\x41\x37\x37\xe4\xe8\xe5\xc3\x83\xef\x66\x09\xf5\x60\xfa\xed\xb2\x8f\x50\x69\xae\x5e\x9c\x61\x3b\xf2\x3c\x55\x63\xba\x2a\x43\x4f\xec\xba\xcf\x53\xd5\x11\x55\xb9\x97\x75\xae\x5f\xf6\xe8\x8a\x07\x7d\xb2\x0f\xa8\xba\x68\xf2\xb4\xa8\x9a\xd4\x2f\xad\xf6\xb9\x24\x91\x6a\x69\x4b\xbd\x82\x89\xf6\x78\x05\x02\xf2\x02\x04\x42\xf2\xfa\xd7\x77\xfc\xe8\x5f\x0c\x66\x01\x02\x9e\xb4\xfd\x8b\xeb\xd7\x13\xb6\x7f\xee\x7b\x0d\xc8\xda\x97\x78\xb2\xf6\x45\x8e\xa8\x7d\x41\x40\x54\xb0\x46\x1d\xde\x5b\xa5\x02\xd5\xf8\xe6\xce\x91\x48\xfc\x96\x27\xb7\xf3\x02\xcc\x0f\x95\xdc\xec\x49\x3b\x6f\xad\x68\xb8\x1d\x16\x7c\xb9\x06\x6d\x47\x74\xc2\xe7\xb3\x8e\x70\x73\xaa\x06\xb5\xa6\xc0\xf4\xca\xad\x68\x0d\x94\x68\xa5\xaf\xba\x89\xac\x58\x02\xf6\x15\x44\x95\x0e\x8a\x41\x23\x57\x0c\x7a\x89\x44\xf0\x0a\xfc\x4c\xee\xff\x8b\x6a\xba\xf3\x8f\xea\x7f\x0b\x10\xe0\x60\x8d\x28\x5e\x94\xf4\x2f\xc4\x52\xa9\xa4\x4e\x14\x31\x4c\x56\x74\x8d\x38\x66\x19\xf8\x7e\x38\xb0\x82\x42\x29\x6c\x96\x9c\xfc\x72\x49\xfb\xed\xd7\x2f\x94\xa0\xc0\xf3\xb1\x92\xeb\x94\xc2\xcb\x17\xda\x45\x5b\xfa\xf1\xe3\xe3\xbc\xa3\xf3\x4e\xd2\xa6\xbd\xd5\xff\x01\x5a\xfd\x1a\x16\xf8\xfd\x1d\x33\x57\x81\x31\xbe\x1a\xbd\x86\xbf\xbf\xfa\xbb\x82\xdd\xba\x6a\x86\xf4\xbc\xe2\xb3\x31\x67\xf5\xe9\x52\x52\x6b\x9b\x0f\x34\x7d\x47\x6e\xaa\x94\x1d\x02\xb5\x9a\xa5\x88\xd8\xbb\x67\x2e\x88\xe6\x1a\x72\x3e\xe8\x69\x1a\xa4\xf2\x2b\x92\x11\xf8\x15\xd1\xed\xaa\xff\x22\xda\x76\x8e\x4c\x7c\xcb\x4d\xda\x62\x30\x96\x35\x6d\xf5\x6f\x2a\x21\x24\x58\x96\xa4\x69\xc9\xcc\x58\x5c\x23\x5c\xaa\x32\xd6\x1d\xee\x89\x08\xca\x9c\xcd\xd1\x03\xaf\xf9\x51\x86\xfc\x48\x8c\x99\xa7\xd6\x03\xcd\x04\xae\xc4\xeb\x84\x97\x5e\xb9\xf8\x56\xf0\xc3\xb4\x09\x14\x5a\x54\xca\x96\xa2\x49\x22\x9d\x2d\x45\xd1\x1d\x54\x63\xec\x88\xfc\xb1\x12\x03\x2b\x8a\x1a\xdc\x96\xf2\x26\xd6\x94\x4a\xa8\x56\xaa\x2c\x60\xdd\xe5\x07\x5e\x13\x64\x58\x09\x86\x28\xdf\x11\xa9\xfd\x02\x76\xab\x47\x08\xb5\x5b\x77\xe4\x36\x59\x5e\xd1\x76\x24\x2c\xf4\x98\xfb\x8a\xd5\x0d\x19\xda\x7b\x8e\x40\x80\x33\x90\xc9\x5c\x8b\x13\xa5\x02\xaf\xc8\xda\x58\x68\x2b\xb2\xd6\xa7\x0a\xcd\xb7\xb4\x91\x44\x7c\x4b\x59\x6d\xc1\x6a\x71\xec\xb6\x92\x38\x60\x02\x85\x6a\xa3\xeb\xad\x3c\x3b\xe5\x5b\x2e\x5e\xc6\xfe\x2e\x63\x6d\xcf\x28\x6b\x65\xc5\x36\x6a\x25\xdf\xbd\xfb\xfe\xb5\x9d\xc1\xa8\xcd\x2c\x72\xca\xf1\x9e\x92\x44\x4f\x9b\x24\xbe\xc4\xb3\xc4\x00\x0b\xcf\x9a\x26\x65\x10\x09\xbc\x28\xc5\x5f\x9c\xd5\x5a\x8a\x2c\x83\xb6\x33\x5d\x89\xb5\x16\x36\x5c\x2d\xb5\x26\xf7\xbc\x63\x1b\xf2\xbd\xf6\xf5\x45\xbc\xa1\x48\x6b\xa4\x5d\x20\x81\x57\x44\xc9\x3d\x92\x81\x77\xf4\x40\x78\x27\x41\x19\x57\x8e\x65\xb9\x46\x2d\x5f\x97\x32\x49\x36\x0d\xa9\x84\xed\xe8\xb0\x46\xb0\x77\x7b\x19\xdb\xb9\xb4\x3d\x70\x4b\xa4\x6b\x1c\x8c\xca\xac\x1d\x2c\x94\x11\x1c\x58\xc8\x17\x44\xcf\xe7\xbb\xc5\x02\x5e\xf4\xba\xf8\xe6\x6f\xa4\xaa\xa7\x76\x68\xcf\x3d\x42\x35\x78\x2b\x2b\x49\x4a\xb0\xe1\x87\xa3\x1a\x0a\x60\x65\xcf\x03\xca\x24\x11\xd5\x46\xd2\x0f\xba\x64\x19\x80\x22\x61\xd1\x8f\x50\xd5\xb5\x66\xb3\xd7\xb4\x95\x84\x11\x91\x82\x17\x6f\xbe\x7f\xce\x99\x54\x65\xbc\xaa\x49\x0d\x90\x61\x29\xc9\x5f\x54\xed\x9e\xd4\x13\x0c\x3e\x53\x90\x1c\x9b\x6a\x43\xd2\xdb\x34\x87\xe9\xea\xd9\xfc\xff\xac\xe1\xed\x0e\x0d\x89\xe1\xf6\x73\x06\xe6\x20\xa3\x17\x98\x4b\xfe\x9a\xff\x4c\xc4\xf3\xaa\x55\x67\x6d\xe9\x88\x65\x15\xa5\xde\xba\xcd\xf7\xf2\xd0\xbc\x62\x34\xd8\x0d\x04\x71\x78\xf2\x58\x4a\x07\x54\x13\xd8\x43\x9c\x72\x88\x5a\x0c\xea\x4a\x56\x73\x90\x09\x54\x5d\x31\x36\x14\xe3\x81\x15\xc8\xda\x0c\xac\x01\x44\xfb\x5f\x6a\x96\xff\xab\x55\x63\x41\xd4\x45\x1b\xa9\x82\x0a\xf6\x4d\x25\xd3\xb0\x74\x0f\x21\xaa\x71\x9b\x81\xb9\x75\xb3\x02\xd4\x60\xe7\x4f\x2c\xbb\xc9\x9d\xa6\xb7\x86\xf6\x64\xee\x88\x7c\x26\xa5\xa0\xf7\x9d\x24\x69\x0b\xcf\xe7\x41\x51\x0d\x4b\x29\x1e\x4f\x14\x8b\x24\xf9\x1f\x6f\xdf\xfc\x90\x6b\xbb\x22\x15\xf0\xb2\x51\x27\x4f\x5a\xf5\x78\x57\x7b\x32\x65\x49\xc2\xac\x06\x0a\x5e\xaa\x9f\x99\x6a\xaf\xcc\x69\xbd\x72\x65\x37\x2b\xe9\xb2\x69\xaa\xb6\xfd\xa1\x3a\x90\x0c\x14\x33\x90\x55\xd0\xb8\x5c\xf7\xda\x83\x6d\xc4\x60\xd9\x24\x49\x63\x9c\xd8\x12\x71\xb4\x87\x17\xf5\xf7\xc5\xee\x51\xde\xc9\xa6\x7a\x24\xe2\x96\x4a\x72\x50\xe7\xff\x15\x7f\xe9\x84\x53\x67\xfd\x45\x2a\x60\x7f\xc6\x07\xb3\x40\x7f\xf2\xf7\xb3\x40\x58\xa4\x32\x7f\x63\xc1\xc4\xa7\x0b\xf2\x6f\xf9\x2b\x49\x0e\xea\xe0\xf7\xee\x58\xd4\xfb\x84\xe0\xaf\x8d\xd7\x48\x7f\xec\x6b\x1f\x87\xb4\xd2\xd5\xeb\xda\x04\xb3\xae\x69\xd0\xcd\x22\xf2\xb3\xe8\x68\x85\x73\xc6\x11\x7b\x30\x49\xe3\xe9\x37\x71\x37\x4c\xcc\xdb\x91\xb7\x54\xc7\x0f\x4e\x0f\xc5\x02\x3d\x16\x8b\x8b\x29\x7f\x6f\x1c\x1d\x69\xe8\x97\xe7\x57\x76\xfc\xc4\x76\xef\x8f\xbe\xb9\x3e\xa9\xa2\x5d\x6e\x18\x49\xe0\x6b\x7e\x08\xe3\xd2\x50\x3b\x76\x78\x6e\x8a\x5c\x8a\x8a\x19\x80\x97\xc0\x3f\x83\x02\xfc\x43\x2b\xc0\xef\x7c\x91\x32\xcc\xae\xf4\xdf\x72\x71\xb0\xdd\xd5\x63\xdc\x5b\x97\xa0\x3d\x3e\x0d\x47\x2c\xac\x92\xed\x4b\x5e\x32\x25\x1c\x83\x06\xfe\x99\xb0\x1a\x5c\x56\xad\x32\x91\x4e\xfd\x44\x45\x15\xb6\x6e\x83\x97\x17\x9d\xa8\x4c\x61\x06\xdc\x73\x38\xf4\x8f\x82\x1f\x89\x90\x8f\xaa\xde\x3d\x87\xf5\x2f\x48\x53\xe9\x4a\xfd\x00\x2e\xa8\xc6\xcc\x1f\x6a\xd8\x84\x81\xac\xef\x2a\x0d\x8e\x3b\x58\xd6\x5a\xd6\x4a\xd1\x69\x83\x87\xa1\xda\x51\x3e\x3c\x06\x0d\x47\xe8\xe9\x18\x3e\x51\xb6\xb3\x30\x50\xd2\x16\xa7\x0b\x52\x87\x22\x53\x0f\x1a\x25\xc5\xe9\x62\x79\x68\xd3\xb6\xe9\xc9\x31\x58\x01\xaa\xfb\x96\x37\x9d\x24\x40\x09\x89\xfa\x4b\x75\x9c\xba\x77\xb4\x0e\x01\x6d\x8d\xf7\x35\xe4\x7d\xdd\x7e\xd3\xb6\x13\x13\x85\xcd\x0c\xe7\x95\x91\xa6\x2d\x9d\x0a\xd1\xad\xe8\xfa\x7c\xa6\x25\x59\xb1\x35\x56\xda\xea\xc5\x02\xf1\xa3\xdb\x42\x23\xc5\x61\xec\xe6\x0c\x61\x42\x76\x72\xb3\x21\xf3\xf7\x3b\x22\xdf\x98\xa8\x21\xe0\x82\x3a\xc3\x1e\x22\xfa\x89\x66\xca\xc8\x87\x88\x61\xb9\x22\x4b\xd0\xa8\x3e\x05\x10\xda\x0d\xa0\x14\x1d\xb9\xa2\x4b\x20\xf9\x11\x14\xe0\xde\x78\x00\xd6\x56\x4b\x71\x23\x2a\x7c\xa1\x16\xeb\xf8\x43\xe4\x67\x5e\x06\x0e\x2a\x06\x6f\xef\x16\x8b\x27\xd6\x7b\x53\xe8\x9a\x57\x4c\xa6\x0c\xdd\x2d\x20\xaa\x74\x6f\x7e\xb5\x37\x77\xbd\xad\xd3\xb9\xef\xce\x55\xf7\xb2\xb5\x7e\xaf\x16\x2e\x17\x45\x8b\x2a\xfb\x5a\xa9\xd7\x0a\xb5\x73\x4c\x96\x22\xf4\x82\x15\x22\xf6\x82\x55\x73\x4c\x7d\x8b\x77\xfc\xe8\x1b\x58\x77\x56\x24\xeb\xf2\x07\xdc\x0e\x4a\x1e\x71\xa5\xa8\x69\x30\x72\x9d\xa0\x23\xb4\x11\x25\xfd\x3f\x45\x20\x4b\x47\xf6\x59\x74\xe4\x98\x2e\x23\x97\x50\x31\x70\x09\x09\xd5\x20\x22\x33\x6a\x55\x91\x79\x2e\x4c\x15\xaa\xf0\x60\xc9\x99\x32\xe9\x4b\xb2\x12\x6b\x53\xb3\x23\xf2\x7f\xff\xaf\xaa\xe9\x48\x5a\x41\x44\x56\xed\x1a\x03\xe3\xcc\xd8\x63\xb6\x0c\xdd\x4e\xc5\xd0\xed\xd4\xa9\x06\x11\x47\x29\x71\xb3\x74\x2f\x85\xae\x53\x0a\x4e\x8c\xe1\x4c\xae\xf6\x0a\x80\xce\x03\xf0\x93\x01\xa0\x51\x00\xd4\x0a\x00\x2f\x37\x6c\xd4\xcf\xc7\xbd\x52\x60\x10\x07\xd0\x4a\x55\xac\x9d\x08\x30\x8b\xb8\xb6\xb1\x27\x90\xbd\xe7\x82\x7e\xe4\x4c\x56\x0d\xe8\x0d\xcc\xb0\xad\x55\xd1\xf2\x23\x11\x1b\xc2\x7a\x66\x48\x92\x1b\xb2\x94\xb7\x43\x0e\x30\xfb\xe1\xc9\xdd\x62\x91\x81\xaf\x40\x21\x33\x70\x7c\x00\x16\xb4\x9f\xfe\xdb\x40\x9b\x84\xcc\xec\xb5\x09\xd0\xde\xfb\x83\xe3\xdd\xd0\x57\xe0\x48\xe3\xc6\x4e\xa3\x58\xaa\x67\x27\xc7\xcd\x9e\xbe\x88\xe3\x7e\x5b\x4b\x2d\x15\x84\x2f\x20\xba\xa0\xc5\x1c\xe3\xe1\x48\x49\x22\x46\x85\x8f\xda\x07\xa5\x85\x79\x00\x8a\x02\x10\xb5\x49\x72\xa3\x6b\x68\xeb\x4f\x62\xca\x76\x91\xdd\x19\xe0\x62\xb0\x90\x0a\xcb\x39\x45\x7b\x4c\xe6\x4c\x9d\xcd\x97\xb2\xf3\x3a\x41\xcf\x97\x7a\xe0\x46\x9d\x95\x15\xda\x5b\x46\xf4\x38\x4b\x4f\x92\x17\x1d\xe2\x2c\xd2\x04\x8a\xe0\x9c\x9f\x98\xfe\x82\x68\xfb\x5c\x9d\x93\x94\xed\x8a\x9b\xc5\xc5\xb1\x6f\x3f\xd5\xf5\xb8\xee\x6f\x22\x57\x7a\x76\xc2\x74\x29\x8b\xb9\x44\x04\xb3\x25\x29\xe6\x04\x19\xad\x45\x81\xf0\xa7\x3a\x05\x99\x66\x13\x64\x22\x6e\xea\x61\x01\x0d\x3b\xf3\x69\x56\x19\xd1\x67\x12\xf5\x6a\x84\x03\xff\x40\xde\x71\x3c\x60\x3f\x54\x87\x43\x4c\xcd\x10\x48\xed\x01\x7f\x0d\x45\x78\xcc\x6d\x9a\xd3\x59\x48\xa5\x68\x27\xf6\x92\x46\xa9\xa7\x10\xc9\xdc\xd3\xc7\x85\xbb\x8d\xc7\x49\x9f\xdc\xb6\x59\x19\x6b\xe3\xf9\x80\x07\xe0\xa8\x64\x45\xd6\x26\x33\x46\x8d\xa8\x41\x92\xd3\xe0\xd0\x6d\x7a\x13\x46\x7e\x27\x76\xfd\x58\x5d\x84\x63\xa6\x8f\x57\xec\x5d\x14\xa1\x0a\x37\x50\x70\x46\xab\x20\xb9\x81\x9d\xae\xf1\x78\x41\xd4\x24\x0a\xd8\xae\x92\x43\x92\x47\x0a\xa1\xea\x75\xb3\x18\xe0\x33\x25\xb9\x56\x12\x4d\x25\x34\x7e\xee\xad\xe0\x87\x88\x0e\xba\xc0\xf9\x00\x42\xb5\x2c\x0a\xc4\x31\x6d\xf1\x5c\x4c\x03\x56\xdd\x37\x24\x5c\xaf\x21\xe6\x80\xb6\x13\xe2\x02\xdf\x2c\x2e\x36\x2b\x0c\xf0\x63\xb5\xa1\xf2\x11\x81\x8c\xa7\x95\x52\x89\x87\xc3\x86\x8a\x80\x22\xd4\xa4\xfc\x99\x50\x11\xae\x53\xae\x94\x78\xec\x2c\x5d\xca\x0c\x1c\x5a\x50\xc8\x40\x7d\x9e\xb0\x01\x9a\x29\xc3\x41\x8e\xac\x01\xb3\x3d\x65\xb5\xdb\x11\xa1\x4b\xce\xe7\xc5\xc5\x9d\xaa\x16\xb1\x23\xef\xcf\x5e\xd7\xa3\x9b\x3b\xa8\xb5\x5b\xce\x26\x6c\x9e\xf1\x36\xe2\x2c\xb2\x7c\xac\x7e\xce\x19\x8f\x8a\x3f\xab\x5f\x69\x02\xa5\x27\x30\x37\x33\xcf\x43\x33\xcd\x3f\x5f\xca\x7a\xd8\x7b\xb8\x9d\x64\x2e\x2b\xb1\x23\xd2\x1d\x2e\x4e\xed\x3e\x8d\x37\x04\x62\x78\xb3\xd2\x66\x91\xc6\xf0\x0f\xd5\x81\xac\xcf\xe7\xb8\x40\xf1\xac\xf5\xd5\x0d\x39\x9e\xad\x11\x4d\x07\x85\xd0\x0a\x91\x9a\xb6\x03\x16\x85\x88\x69\x0f\xbe\xd9\x11\x03\x23\xdd\x58\x20\x43\x58\x94\x66\xd4\xcf\x6d\x36\x12\x5b\xf7\xe3\x98\x4d\x6b\x13\x11\xdd\xde\x65\xeb\x92\x07\x92\xc7\x77\x77\xd5\x97\xa1\x7a\x25\x63\xbb\xd6\x69\x59\x8a\x92\xa3\x45\x8c\x6c\x2e\x23\x2a\x7d\x03\x2b\x34\x07\xec\x66\x5a\x5d\xe3\xb8\x2b\xfb\xf4\x4e\x0b\xf2\x50\x16\x4f\x68\x54\xa7\xcb\xd0\x6a\x23\x4a\xd6\x00\x50\x06\x1a\xa5\x61\xae\x2d\x9e\xda\x54\x00\x4c\xed\x2a\x30\x36\xb2\x01\xe8\x33\xc4\xea\x2b\xcb\x1e\x61\x47\x4d\xbf\xd5\x7b\xc2\xee\xc7\x78\x2b\x58\x73\x47\x2a\x73\xc7\xee\xfd\x70\xdf\x62\x23\x16\x54\x77\x8b\xc0\x86\x1c\x46\x73\x38\x1c\xfb\x60\x45\x94\x8e\x11\x5b\x9e\x5e\xbe\xd8\x04\x09\xb5\xac\xb1\xc6\x6d\x06\x88\x34\x6e\x53\x84\xc7\x99\x53\x6d\x92\xfc\xfa\xf3\x6b\x69\xd3\xc5\xd8\x86\x8c\x18\x70\x9a\xc5\xd4\xda\x53\xe8\x72\x75\x75\xc5\x9e\xd6\x24\x85\xb0\xf0\x25\x51\x53\x0d\xf4\x07\x52\x35\x21\xd0\x76\x3b\x58\x8e\xfb\x4e\x27\x0e\x5d\xc1\x4a\x79\x55\xae\x47\xd6\xdf\x8e\xc8\xef\x68\x4d\xfe\xa6\xa7\x8a\xe4\xa5\xe3\xb1\x14\x7c\xa0\x2d\xbd\x6f\x0c\x17\x03\x58\x6a\x16\xb5\x08\x98\xe8\x37\xd6\x3b\xd5\x01\x59\xc8\xdc\xe4\x39\xe9\x51\x90\xe4\x85\xcc\xc3\x71\x63\x3d\x73\xa4\xa5\x92\x8b\x95\xcd\x13\x13\x8e\x78\xca\x61\xe6\x7c\x1e\x73\x86\xea\x0d\x9c\x16\xfb\x89\x95\x7f\xc2\x04\xb2\xe8\xb4\xa9\x8a\x24\xb7\xe7\xb1\x0b\x7c\xdb\x57\x50\x0e\x22\xa0\x2e\x38\xa0\x9d\x49\xb4\x1e\x3b\x82\x1c\xf8\x2e\x8b\xf3\x77\xa5\x6d\x40\x94\x01\x69\x55\xd7\xcf\x23\x6c\x44\x47\x4d\xd9\x90\xd4\x9f\x49\xd8\xd1\x74\x57\xf1\xe2\xce\x9e\x18\x2d\x3a\x77\x6a\x42\x18\x28\x14\x03\xa8\x27\xa9\x49\x2b\x05\x7f\x9c\x94\x73\x81\xc3\x0f\xa0\x86\x6c\xa5\xfa\xd5\xbe\x09\x2d\x4d\xf9\x51\xfd\x18\x57\x41\x2c\x5e\xfb\x37\x6d\x42\x01\xed\x25\x64\xbf\x65\x26\x49\x1f\x57\x70\x0f\xbf\x2e\xb6\x80\xae\xe4\x27\x80\xdc\x04\x2a\xc2\xd4\x03\xc4\x10\x47\x22\x4e\x40\xb0\x65\xbf\x51\x1a\xc2\xa7\x42\x14\xbe\x2c\x86\x3a\xac\xb1\x80\xeb\xbc\x85\x3e\x9a\x61\x72\x16\x26\x82\x17\x28\x4e\x6e\x18\xc6\x3c\xa6\x43\x1b\x66\xd9\xd7\x02\x1c\x22\xb4\x75\xd9\x30\x92\xae\x8c\x17\xa5\x6d\xd3\xd0\xca\x49\xf7\x49\xb2\x77\xe1\xab\x6f\xaa\x7a\x66\xcf\xb4\xd9\x96\x8b\x19\xc8\x0c\x1b\x7a\x8f\x76\xce\xaa\x03\x69\x8f\xd5\xc6\x86\xb1\x52\x7a\x3e\x4b\x08\x61\x19\x45\x46\x28\xea\xdc\x5e\xf8\x0f\x57\xd6\xc5\x47\x26\x8c\xae\x49\x60\xe6\xee\x4f\x9c\x9c\xaf\x3b\x98\xb3\x26\xdb\xaa\x6b\x64\x1b\xf5\xf1\xf9\x94\x59\xd6\x94\xb1\x79\x63\xf1\xf8\xd7\xbf\xbf\x7a\x81\x39\xda\xac\xb8\x91\x1d\x83\x48\x4c\x19\x26\x67\x07\x56\x3e\x65\x54\xbe\x36\xbe\x31\x58\x0a\xab\x77\x1a\x69\x96\x06\xd1\x9b\x56\x47\x93\xc2\x14\x61\x19\xe6\x63\xf7\x31\xec\xfe\x96\x06\xf9\xac\x08\x02\x0a\x9a\x45\xb1\x04\x12\x66\xd5\x56\xee\x06\xc9\xc8\xe8\xe9\x73\x29\x9c\xa1\x6a\xf2\x65\xd2\xdb\xf4\xff\xfe\xb3\x7e\xf2\xcf\x7c\xf9\xcf\xfa\x09\x4c\xff\xf9\xf3\x13\x78\x0b\x11\xc5\x24\x49\xc8\xea\x6e\x8d\x98\x79\xfa\xda\x5c\x0e\xea\x73\xdb\xed\x60\x8b\x92\x86\xd9\x95\xd4\xa1\xfe\xb0\x62\xeb\xf3\xb9\x0f\x9e\xd1\x27\xdc\x06\x35\xfd\x7d\x91\xae\x0f\xcc\xa2\x48\x72\x5e\x50\x83\x17\x68\xa3\x34\xcd\x80\xab\x30\xf0\xc2\xc4\xc6\xfe\x38\xf2\x1c\x80\x4f\x1b\xce\x64\x45\x99\xcd\xee\x2d\x02\xe9\x28\x48\x53\xe9\xe8\xfc\x05\x79\x0a\x6a\xc9\xde\x3b\x77\xfc\xdb\x3b\x7e\x54\x2f\x82\xa8\xdd\xed\x9f\x9e\xbb\xd1\x55\xd1\x94\xfe\xba\xc8\xff\xdc\x02\x14\x9c\x22\xc5\xc9\x1e\xa7\xc5\x22\x94\xb6\xed\xa6\x6a\x48\xba\xc8\x17\x8b\x3b\x08\x2e\x28\x3c\x88\x7c\x8f\xbb\x71\x0f\xd5\xda\xa9\xd5\xc1\xa5\xa4\xb2\xdf\x1f\xdb\x90\x3f\x20\xda\x4e\x5d\x57\xea\x1b\xcb\xf8\x26\xd2\x05\x6d\x03\x46\xbf\xa6\x44\x84\x3b\x6f\xc3\x0f\xc7\xca\xb6\xd7\xfa\x84\x63\xe5\x24\xe9\xef\x76\x85\x93\xac\xc8\x7a\x39\x78\x2f\xa2\x77\xb9\xbe\xa0\xc1\xb0\xf8\x14\x90\x0b\xd0\xf6\x95\xdf\x7e\xc8\x3b\x70\x55\xcd\x77\xde\x9d\x8b\xcc\x7e\x7c\xa5\x33\x67\x74\xb7\xd7\x61\x01\x08\x89\x0e\x68\xfb\xc6\xfb\xf7\x02\x06\xe8\x2b\x74\x5a\xa7\xe5\x05\x40\xdb\xbf\xe9\xa7\x6f\x78\xa7\xd4\xe6\x21\x63\xb8\x7a\xca\x76\x7d\x21\xd0\x98\xbd\x12\xe7\x13\xa4\xe1\x55\xad\x58\xb9\xb7\xdf\x5a\x59\x1d\x8e\x2d\x5e\xad\x83\xd7\x88\x58\xa6\x08\xa2\x98\x92\x91\x4d\x1b\xc9\xcf\x3c\xde\x16\x91\x1e\x16\x8a\x36\xb3\x18\x00\x4b\x69\xc5\xda\x3d\x65\xb5\x59\x6e\xaa\xd9\x23\x00\x76\xac\xe6\xe8\x52\x33\xa6\x7a\x56\x9d\x22\xb8\x36\xca\x32\x12\x84\x19\x46\xb3\x4d\x22\x36\xf3\x29\x96\x66\x18\x9f\x56\xa5\xa6\x74\xa9\x55\xe6\x9e\xc6\x88\x19\x55\x13\xc4\x14\xd6\x38\x5e\x94\xdc\x67\x61\x72\x97\x85\x29\x30\x59\xf1\x35\x6a\x75\x4e\x05\x4d\x85\xc6\x11\x2c\xed\xc5\x27\x2f\x89\x99\x06\x70\x7a\xf2\xa9\x74\x1c\x36\x91\xff\x95\xca\x98\x02\x6a\xb9\x3e\x25\x11\x6d\xd5\xe9\x3b\x3d\xae\x8f\xf9\xf7\x58\xcd\x0f\xd5\x31\x9d\xcc\x03\xb2\xb8\xbd\xe8\x21\x6d\xaa\xc1\x28\x92\x2c\x48\x4b\xec\x9e\x71\x2c\xf6\xfe\x50\xb1\x6a\x47\xde\x6a\x4e\x4b\xaf\x32\x44\xb4\x8d\x00\x44\x04\xfb\x7d\xbd\x94\xc5\x8d\xa5\x76\xbf\xbb\xa8\x24\x75\x19\x1c\x88\x86\xad\xfd\x42\x7a\x8f\xf5\xa0\x0f\xbe\x59\x18\xa6\xd0\x39\x47\xb6\xb3\x2a\x08\x40\x1f\xad\xcb\x2a\x4a\xa9\x43\xe7\xf5\xe8\x34\x1d\x46\xa7\x8d\xa0\xfb\x9e\x54\x6d\x27\x86\x69\x84\x4e\x45\x62\x88\xe3\x81\x70\x2a\xf9\x72\x7c\x29\x93\x2f\x07\xee\xd3\x38\xc7\x90\xc3\x82\x5f\x49\xe1\x4b\x92\x94\x61\xeb\x30\x5d\xc9\x35\x66\x4b\x9a\x32\xa8\x84\x22\x87\x85\x2b\x5c\x78\xca\x0e\xf6\x9d\xf1\xd9\x7b\xa2\xe9\xea\x6f\xb9\xb0\x94\x76\x7e\x87\xf7\x11\x29\x3c\x05\x8e\xbc\xed\x99\xc2\x61\x24\x1e\x62\x3a\xf5\xcc\xf0\xfa\x04\x3b\xde\xc8\x9c\xb6\xaf\x76\x8c\x0b\x52\x1b\x86\x7c\x7f\x1d\x6e\x17\x70\x7a\xaf\xd4\xea\xe7\x36\x97\xee\x0d\x33\x50\xf6\xb1\x47\xb5\x86\x24\x91\xd1\x55\x3a\x8a\x57\xeb\x72\x3a\x5d\x32\xf0\x65\xbb\xd5\xbc\x8e\x43\x23\x52\x6d\x77\xc5\x8a\x58\x22\xa6\xc0\x35\xac\x8d\xf5\x85\xd3\xc1\x29\x81\xa8\x11\x0c\x4a\x60\x19\xaf\x9e\x45\x9c\xe0\x1b\xd2\xda\xb6\xff\xd9\x91\x8e\xe8\x64\xec\x00\x85\xaf\xaf\xc6\xb5\x0d\xa6\xfa\xe4\x1f\xdd\x69\x3c\xde\xd8\x75\xdb\x1d\xeb\x4a\xaa\xed\xba\xdb\x11\xa1\x36\xf1\xc4\xfa\xfb\x10\xce\x7b\xa7\xf5\x28\x58\x52\xa9\xd7\x8b\x64\xfe\x80\x64\xfe\xa8\x23\x05\x6e\x81\xc4\xad\x4c\xc1\x11\x4d\x71\x25\x16\x1f\x9c\x3f\xaa\x55\x7f\x77\xb3\x6b\x1a\x8c\xb1\x3c\x9f\xfb\x3b\xde\x72\xa9\xcd\x87\xd0\xbb\x86\x17\xb0\x88\x0b\xaa\x9e\x49\x6d\x89\xe1\x9a\x10\x7c\x3c\x65\xde\xb0\xa5\xd4\x11\x32\x9d\x15\x5f\xa4\xd2\x75\x4f\xf9\x93\x68\x34\x24\x6d\x18\x4c\x37\xec\x07\xbf\x26\x50\x06\x67\xb9\x3b\xf2\xa2\xc2\x2b\x88\x19\x9f\xa2\xfe\xf4\x37\xf1\x97\xd8\x11\xae\x53\x55\xdc\x99\xac\x85\x58\x49\x9c\x4d\xf4\xbe\x0d\x2a\xad\x8c\x4a\x6d\xe4\x1b\xdd\xb8\x40\xdc\x95\x56\x26\x0a\x8d\x6e\xee\xa0\x67\xc9\x68\x26\x5c\xab\xd2\x89\xce\xe3\x0d\xea\x65\x7d\x14\x20\x55\xab\x2b\x69\x78\x2b\x4b\x41\x9e\x61\xb2\xa4\xd1\xdd\x29\x1a\x65\x8d\x64\x74\x74\xc1\x89\x8e\x2e\x38\x15\x34\x4e\x24\xf1\x63\xbc\xe3\xc7\xbe\x7d\x7f\xf7\x89\x8e\xef\x3e\x41\x24\xf1\xf7\x95\xdc\xe7\x87\xea\x21\x95\x68\x31\x70\x89\x1b\x7f\x3f\x59\x02\x8d\x4d\x50\x00\x83\x2f\xb0\xc6\x36\x5e\xaf\x71\x36\x21\x93\x86\xb7\x03\xc2\xdb\x9e\x5c\xdf\x7b\x53\x66\x94\xf1\xdd\xc8\x0c\xb8\xde\x00\xe9\x7c\xc1\x15\x59\x47\x17\xee\xe1\xa9\xcd\x32\xd4\x62\x2c\x92\x84\xa6\xee\x76\xbd\x36\x0c\x05\xf6\xd7\x47\xb6\xe9\x0d\x39\x9f\x6f\x44\x14\x77\x74\x97\xea\x5a\xbc\x28\xc9\x58\x0c\x10\x78\x32\x17\xb7\x75\x06\xb8\x91\xc3\x11\x78\x57\x52\xb6\xc9\x52\x07\x4f\x6d\x36\x2d\x2c\x68\x9f\x13\xe0\x9d\x52\x6a\x44\xd4\x41\x57\xd1\x1b\xef\xd1\xdb\xf9\xdc\x0d\x13\xaf\x5c\xb4\xa4\xcb\xcd\x38\x04\x96\x5c\xe7\x9a\xb9\x24\x49\xd7\x37\x97\x82\x9a\x8d\x8c\x28\xbc\xe8\xdb\x09\xd3\xf5\xfa\x86\x09\xda\xe6\x54\x1f\x37\xd7\x6c\x15\x2b\x8e\x75\x42\xbc\x8e\x8a\xf6\xe7\x13\xbe\x59\x18\xa1\xc7\x7e\xcd\x08\x3e\x20\xd5\x9f\x73\x68\x6b\x94\xf1\x41\x88\xc1\xe9\xaf\x3a\xca\x86\xfa\xdc\x50\xab\xd9\x07\xcf\x0e\xe3\x32\x94\xe9\x46\x61\xd2\x33\x18\xf9\x6c\x61\xfd\xac\x99\xa6\x8f\x46\x16\x5c\xe8\x08\x61\x71\x5f\x85\xe8\x31\xa1\xa3\x89\xfd\xa1\xa0\x07\x9e\xd4\x03\x26\x34\x21\xbd\xcc\x5f\xd0\x85\x9e\x35\x4d\xaa\x5d\x3b\x98\x45\x97\x21\x6c\x2c\xc1\xa8\x80\xa1\x62\x3a\xd6\xe6\x74\xb1\x35\x4e\x2c\x02\xcd\x66\xe9\x85\xe7\x8e\x48\x6d\x9a\x29\xb9\x43\x36\x32\xb6\xa9\x62\x0c\x87\x73\x05\x78\x1e\x0e\x71\x45\xe4\xbb\x25\x06\xad\x9f\x37\x94\x30\x69\xa7\x25\x81\xb4\x34\xd3\xdd\x87\x83\x9e\xb4\xb3\x56\xa9\x36\x5b\x99\x91\x48\x70\x92\xa1\xa4\xd4\x7e\x5c\x99\x4b\x7e\xf4\x2d\xdf\xe9\x97\x58\x20\x5a\xc7\xaf\xcc\x85\xb9\x6a\x49\x62\x09\x4c\x46\xf2\x16\x3a\xd7\xb0\xcc\xcd\x43\xd0\xc7\x4a\x60\x32\x21\x63\x2f\x43\x4a\x99\x43\x65\x47\x5c\x4e\xf1\x1b\x9d\x41\x30\xb5\xa9\xae\xa2\xcb\xe9\x6d\x21\x92\x10\x57\xaa\x3b\x44\xc2\x62\x8b\x68\x6c\xcd\x99\xf9\xe1\xc1\x5d\x5b\x8d\x21\xa2\x30\x34\x67\xfa\x3f\xf7\x77\x6d\x2d\x56\x98\xc5\x0a\xb1\xbf\x3c\xba\x9d\x6b\xf1\xc0\x1c\x1e\x88\x7b\xe0\xd1\x45\xdd\x8b\xbf\x74\x89\xb6\x51\x4e\x2d\x0b\xdf\xd0\x36\x30\x9d\x23\x2e\x9e\xb8\x01\x62\xad\xee\x50\xc7\x8c\x9c\x0c\xd6\x38\xea\xd8\xb5\x21\xa7\xe2\xbc\x9f\x31\xea\x9d\x1a\x95\x33\x31\x1e\xd1\x2b\x43\x4a\x07\x62\x83\x3b\x3f\xa9\x40\xc0\x75\x03\xe8\x6e\xb1\x80\xbd\x9a\x34\x11\xfb\x08\xa6\xb4\xfb\x96\x11\x52\xdb\x62\x67\x7f\x0c\xbd\xa8\x68\x3b\x6e\x35\xde\x86\x74\x3a\xc1\x57\x75\x49\x12\x19\x38\xa3\x64\x70\x4b\xd9\xb9\xa4\x74\xce\x9e\x2f\x56\x53\x56\xf5\xd0\xb5\x31\xd0\xda\x7a\xb7\x86\xbf\x2a\x37\x10\x3f\x81\x13\xc4\x58\xee\x56\xbc\xeb\x7b\xf5\x7a\x0e\x7d\xe5\x7f\x70\xad\x27\x98\xc3\xc1\xa0\x4f\x9c\xc1\xe0\xa1\x21\x47\xbc\x26\x68\x82\x83\x6a\x0a\x35\xc1\x51\x90\x5f\x9e\x21\x5c\x85\x8e\xff\xc5\xc6\x55\x00\xbb\xfe\xba\x4f\xba\xb0\xde\x7b\xb3\x34\xe2\x55\x04\xf4\xb9\xde\x05\xf4\x59\xd0\x8f\x5b\x59\xab\x6a\x18\x4e\x96\x9f\xb2\x1e\x6d\xb4\x74\xd2\x7a\xb4\x48\x18\xd8\x53\x93\xf6\xa4\xd2\x8d\xbc\x69\x41\x9f\x28\x10\x1d\xb8\x4a\xb1\xd2\x12\x20\x0a\x84\x7e\x12\x32\x1d\xd4\xfb\x5d\xe0\x32\x51\xf9\x4b\x88\xb1\xab\x6e\xab\xb1\x7e\xa3\xd9\x2d\x26\x87\x5b\xdd\xff\xd7\x28\x1a\x1a\x12\xfa\xb9\xae\xf8\xf9\x16\x25\xf9\x4b\xc0\x71\x56\xf1\x0d\xbe\x71\xe2\x2b\xed\x97\xc9\x68\x1f\x46\xc2\xd2\xc7\xa4\x83\x99\xda\x81\x82\xc4\xc6\x17\x2f\xc9\x27\x2f\x5e\x06\x93\x07\x2a\x20\x4d\x12\x7b\x59\x96\xf6\x3e\x01\x62\x10\x1e\xa7\x69\x7c\x02\x3d\xd7\xd8\xd6\xa4\x7f\x10\xfd\x09\x0e\xbf\xf9\x27\x94\x7c\xe9\xc5\xbe\x3a\x3a\x47\xba\x9d\x71\xb6\x45\x9a\xdc\x44\x10\x79\x42\x99\x31\x37\x32\xa4\xfb\xd6\x03\x00\x48\xfa\x3b\x4b\xfa\xcd\x7e\x74\xc5\xe6\x8e\x1b\xb2\x4d\xc3\x67\x67\xd4\xe9\x23\x56\xc5\x0c\xfd\xc9\xe5\xc4\x85\x90\x30\x34\x57\x5a\x6d\x7b\xb3\x22\x6b\x14\x26\x90\x4c\x35\x46\x5d\x92\x74\x16\x0d\x2f\xf4\x0d\xb9\xa0\xe5\x38\x64\xd8\x07\x94\xe0\x05\x09\x7d\xa5\x6e\xc4\x34\x13\xd1\x51\x0b\xb0\xda\xba\x11\xa0\xfe\xa0\x51\xb0\xea\x08\xc6\xc0\xd7\x1f\xc4\x5d\xdb\x54\xf8\xcf\x08\xf9\xc8\x55\x18\xe1\x0c\x43\x9a\x7d\xb9\x6f\xab\x18\x84\x0e\x82\x24\x71\xf7\xa8\x4e\x35\xf6\x01\x34\x89\xa8\x59\xaf\x59\x36\xa2\x26\x8a\xd6\xa6\x5c\xcd\xe5\xee\x7d\xa6\x54\x09\x29\x8d\x53\xfb\x0d\xb8\xe0\x51\x4b\x20\x44\x4d\x1c\xea\x80\x4f\x87\xb6\xb8\x43\x6d\x71\x47\xfe\xe4\xb5\xa3\x3e\x36\xf7\x65\x97\x13\x57\x53\x59\x04\xbf\xdf\x45\xc4\x7e\x8e\x2b\xd7\x10\x65\x6e\xbf\xb7\xa9\x6f\x1c\xba\x78\x7c\x70\xe1\xf0\x17\xbf\x35\xd0\xc7\x73\x81\xfd\xe4\x26\x80\xe5\x80\x8e\xf9\x96\x4a\xfb\xed\x21\xda\x7e\x6b\x9f\x41\xe9\x3e\x62\x36\xfa\x36\x1c\xfb\x4c\x0f\x39\xea\x6d\xa3\xc0\xe7\x9d\x82\x0d\x6f\xba\x03\x73\x9f\x1c\xf1\x5f\x64\x01\xd7\x3a\xec\x3a\x9b\xaf\x31\x6e\x7b\x30\xed\x9e\xeb\x21\xfb\x43\x7f\xc3\x9b\x9f\x5a\x1c\x7c\xed\x4c\xe2\x45\x29\xff\xe2\xea\xda\x52\x66\x19\xf4\x2d\x8d\x70\x75\x1a\xc7\xa1\x7a\xf8\x09\xdb\x5c\x22\x1f\xea\x7b\xce\x9b\x57\xac\x26\x0f\x78\xa1\x54\xd3\x78\xda\x41\xe6\xb0\x43\x42\xef\xea\xd2\x10\xa7\x10\xdd\xb8\x29\xdd\xf2\x23\x61\x68\x8e\x9b\xc5\x1a\x51\xb3\xd9\xad\x18\x29\x87\x9d\xb0\x3a\x0f\x52\x0a\x83\x6f\xd9\xd8\xd4\xad\x4d\x34\xe1\x25\xf0\x4b\x07\xdd\x33\x7b\x3a\x68\x9c\xba\x60\x43\xdc\x33\x0b\x5b\x08\xcc\x6f\x19\x6a\x31\x9b\xf3\xaf\x18\xaa\x70\x9b\x24\x77\x4f\xdb\x25\x10\x3a\x12\x59\x80\x6d\xc3\xb9\x00\xa5\xd0\xfe\xaf\x55\xb5\x4e\x85\x27\x42\xeb\x9d\x62\x42\x7f\x9c\x81\x8d\xf1\xf2\x19\xae\x4d\xc7\x9e\xe6\x9a\xdc\x32\x12\xc7\x3e\x13\xb2\x88\x84\x2f\xc3\x0a\x47\xe5\xc4\xea\xb0\xbe\x1b\x1d\xea\xe0\xec\x93\x2e\x74\x7d\xb2\xf4\x7c\xdd\x27\x31\x68\x6d\xde\x93\xe1\xab\x21\xae\x4d\x2a\xc3\xdd\x53\xe2\xd1\xb5\x21\xb4\x01\x88\x19\x6c\xd1\x75\x3a\x1a\xe4\x76\xc4\x24\x25\xb3\x68\xa4\x2c\x65\x1e\xb7\xfe\x9e\x42\x1c\x31\x0a\x98\xf6\x8d\x32\xa1\x97\x40\xad\xee\xbb\x90\x93\xdd\x02\x41\xa1\xeb\xde\xf1\x63\x58\x68\x6f\x0e\xae\xf8\x5a\x4d\x07\x51\x8b\x4f\x0f\xc5\x10\xaa\x27\x4a\xde\x37\xe8\xb1\x10\xf9\xe3\x05\x29\xc1\xfe\x98\x85\x6b\x31\x79\xfc\x68\x8f\x59\x66\x5a\x76\x58\xff\x96\xfb\xa7\x5d\xd9\x45\xdb\x6f\xd5\xad\x71\xe5\x64\x4b\xeb\xc8\x11\x03\x75\xd5\xac\xe8\x5b\xfe\x55\xf0\xee\x68\x82\xb4\x0e\x5b\x36\xf3\x45\xbd\xa2\xfe\x2b\x7a\xa7\x0d\x6f\x0a\xd2\x5f\x62\xa4\x10\x3d\x16\x4a\x93\x63\xc3\xb1\x86\x0a\xf6\xd7\x4f\x7d\x1a\x4b\x0f\x7b\xf8\x7d\x9e\xb5\x8f\x0f\x37\x6d\x76\x37\x57\x4c\xb8\x28\xe9\x53\x56\xb2\x2c\x83\xe6\x46\xa9\x77\xc3\x9b\x49\x7e\xd2\x28\x0e\x3e\x81\xc2\xe2\xea\xb1\x7b\xfc\xeb\xa7\x64\x0c\xc6\x4a\xae\xc3\x1b\x5c\x46\xaa\x19\x43\x4a\x22\x99\xf9\x4f\x08\xba\xfd\x18\xa2\x86\x42\x37\xed\x24\x93\x5c\xbf\xb3\x34\x96\x8e\xfd\x0e\x68\x11\xc3\xf2\xe9\x5d\x92\xd0\x4c\x3e\xf5\x72\x97\x62\xb6\x5c\x14\xb4\x74\x69\xec\x03\xde\x57\x5a\xe7\x90\x85\xa2\x2b\x72\x13\xf2\x98\x2f\x69\x26\x8b\x2b\xb5\x48\x53\x9b\x22\x7b\x51\x22\xc6\xbc\xd2\x36\x0c\xe1\x43\x9f\xd2\x58\x1f\x57\x36\x2b\x0a\x02\x7c\x91\xb7\x49\xd5\xf1\xb1\xc8\x8a\xee\x6e\x09\xcc\x97\xc6\x7b\xe4\xdc\x41\xa8\xc5\x22\xa3\xc1\xca\x51\x65\xb8\x56\x4b\xd3\x54\x4c\x08\x81\xca\xcb\xd2\x05\xaa\xa0\xbd\xc5\x19\x74\x6a\x27\x3a\xed\xe7\xb8\x1d\x49\x25\xfd\x35\xce\xbd\x97\x29\x3d\x79\xe6\x77\x68\xef\xa5\x4a\x77\x6d\x55\xe6\x0a\x6b\x8d\xd3\x6e\xa9\xbd\x5e\xbd\xfb\x0a\xba\x25\xd9\xcd\xdf\xe0\xaa\xdc\x3f\xc5\xe6\xe3\x78\x01\xb3\x36\x6b\xbf\x96\x1a\x45\x15\xd0\xef\x80\x30\x7a\x34\x54\x31\xf4\x19\x3d\xc5\xcb\x7e\x30\x97\x5d\x70\xb2\xb7\x91\xfb\x7e\x97\x88\xa3\xa6\xcf\x99\x24\x49\x9d\xcd\x21\x47\x91\x33\xa7\x21\xa5\x10\x22\x39\x82\xd7\xd5\x86\x30\x07\x6a\x08\x22\x5e\x46\x94\xf3\x39\x49\x92\x85\xbb\xbb\x62\x70\x40\xd6\x25\x94\x59\x56\xba\xef\x39\xf5\xc4\x91\xf0\xc9\x90\x92\xf3\xe0\xa0\x56\x80\x7c\x86\xf7\x6a\xe2\x40\x8c\xf0\x31\xa5\xb7\xc8\x9b\xa9\x6e\xfa\x1b\x20\xe5\xff\x0b\x00\x00\xff\xff\x37\xb6\x61\xe2\x12\x5e\x00\x00") + +func staticManagedJs420MasonryPkgdMinJsBytes() ([]byte, error) { + return bindataRead( + _staticManagedJs420MasonryPkgdMinJs, + "static/managed/js/4.2.0-masonry.pkgd.min.js", + ) +} + +func staticManagedJs420MasonryPkgdMinJs() (*asset, error) { + bytes, err := staticManagedJs420MasonryPkgdMinJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/managed/js/4.2.0-masonry.pkgd.min.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticManagedJsAssetsTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xd0\x4d\x72\x84\x20\x10\x05\xe0\x7d\xee\xd2\xaf\x04\x4d\x66\x72\x84\x5c\x20\x7b\x06\x3a\x8a\x3f\x34\x01\x9c\x29\x6f\x9f\x72\xa1\x98\xed\x83\x7e\xf5\x75\x6b\x68\x74\x34\xfe\xae\x9c\x36\x2c\x3e\x60\xcc\x6f\x1a\xea\x06\x45\x8b\x2c\x1c\xca\x11\x36\x68\xa1\x1a\xfa\x31\x4f\x6f\xe5\x08\x5b\xb4\xb8\xd1\x43\xa4\xe4\x92\x4c\xbc\xc6\xba\xc6\x94\x5f\xbe\xd8\xa1\x36\x69\x34\x14\x62\x92\x3e\x71\xce\x35\xbe\xa3\xb9\x0c\x15\xd3\x67\x1f\xe2\x7a\x0a\x14\x14\x14\x95\x2d\xb2\x19\xd8\x38\x3c\xd6\xe0\x66\x3e\x5e\xbb\x1d\xdd\x5d\x30\xe4\x4c\xe1\xe2\x17\x8e\xde\x4e\x9c\x2e\x2d\xfa\x3f\x8e\x67\xb6\x97\x35\x15\x34\xcd\x62\x1c\xa7\x0c\x5b\x79\x1a\x0a\x2d\x8d\x19\x56\x64\xf2\x5c\xeb\xee\x68\x69\x0d\xfb\x77\x2b\x89\xe9\xe4\xec\x4b\x2e\x26\x4b\x48\x1b\xe2\xd4\xbb\x3a\xf1\x0e\xf5\x41\x76\xf6\xf1\x21\x26\xb9\x7a\xb4\x4f\x28\x4a\xe6\xc9\xa1\x62\x3a\x34\x94\x07\xa3\xaa\xa2\x83\x26\x9f\xbf\xc2\xb7\xe7\x57\x94\x74\xc2\xff\x02\x00\x00\xff\xff\xc8\x21\x1a\x3e\xc9\x01\x00\x00") func staticManagedJsAssetsTxtBytes() ([]byte, error) { return bindataRead( @@ -1599,8 +1599,8 @@ var _bindata = map[string]func() (*asset, error){ "static/managed/js/3.3.2-bootstrap-switch.min.js": staticManagedJs332BootstrapSwitchMinJs, "static/managed/js/3.3.7-bootstrap.min.js": staticManagedJs337BootstrapMinJs, "static/managed/js/3.9.1-raven.min.js": staticManagedJs391RavenMinJs, - "static/managed/js/4.1.1-masonry.pkgd.min.js": staticManagedJs411MasonryPkgdMinJs, "static/managed/js/4.17.47-bootstrap-datetimepicker.min.js": staticManagedJs41747BootstrapDatetimepickerMinJs, + "static/managed/js/4.2.0-masonry.pkgd.min.js": staticManagedJs420MasonryPkgdMinJs, "static/managed/js/assets.txt": staticManagedJsAssetsTxt, "static/managed/js/bootstrap-select.js.map": staticManagedJsBootstrapSelectJsMap, "static/managed/js/bootstrap-tagsinput.min.js.map": staticManagedJsBootstrapTagsinputMinJsMap, @@ -1708,8 +1708,8 @@ var _bintree = &bintree{nil, map[string]*bintree{ "3.3.2-bootstrap-switch.min.js": &bintree{staticManagedJs332BootstrapSwitchMinJs, map[string]*bintree{}}, "3.3.7-bootstrap.min.js": &bintree{staticManagedJs337BootstrapMinJs, map[string]*bintree{}}, "3.9.1-raven.min.js": &bintree{staticManagedJs391RavenMinJs, map[string]*bintree{}}, - "4.1.1-masonry.pkgd.min.js": &bintree{staticManagedJs411MasonryPkgdMinJs, map[string]*bintree{}}, "4.17.47-bootstrap-datetimepicker.min.js": &bintree{staticManagedJs41747BootstrapDatetimepickerMinJs, map[string]*bintree{}}, + "4.2.0-masonry.pkgd.min.js": &bintree{staticManagedJs420MasonryPkgdMinJs, map[string]*bintree{}}, "assets.txt": &bintree{staticManagedJsAssetsTxt, map[string]*bintree{}}, "bootstrap-select.js.map": &bintree{staticManagedJsBootstrapSelectJsMap, map[string]*bintree{}}, "bootstrap-tagsinput.min.js.map": &bintree{staticManagedJsBootstrapTagsinputMinJsMap, map[string]*bintree{}}, From fcb6c5200dd54ac81fe277e15692d7ba643f93c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Wed, 10 May 2017 15:26:26 +0100 Subject: [PATCH 3/3] Update frontend assets --- assets/Makefile | 18 +- .../css/3.3.2-bootstrap-switch.min.css | 22 - .../css/3.3.4-bootstrap-switch.min.css | 10 + assets/static/managed/css/assets.txt | 2 +- assets/static/managed/js/0.4.0-sha1.min.js | 9 - assets/static/managed/js/0.4.1-sha1.min.js | 9 + .../static/managed/js/1.5.16-clipboard.min.js | 7 - .../static/managed/js/1.6.1-clipboard.min.js | 7 + .../static/managed/js/2.1.3-js.cookie.min.js | 2 - .../static/managed/js/2.1.4-js.cookie.min.js | 2 + assets/static/managed/js/2.17.1-moment.min.js | 551 ------------------ assets/static/managed/js/2.18.1-moment.min.js | 7 + assets/static/managed/js/2.2.4-jquery.min.js | 4 - .../managed/js/2.4.2-isInViewport.min.js | 5 - .../managed/js/3.0.0-isInViewport.min.js | 6 + assets/static/managed/js/3.15.0-raven.min.js | 3 + assets/static/managed/js/3.2.1-jquery.min.js | 4 + .../managed/js/3.3.2-bootstrap-switch.min.js | 22 - .../managed/js/3.3.4-bootstrap-switch.min.js | 10 + assets/static/managed/js/3.9.1-raven.min.js | 3 - assets/static/managed/js/assets.txt | 16 +- .../static/managed/js/isInViewport.min.js.map | 1 + assets/static/managed/js/jquery.min.map | 2 +- assets/static/managed/js/js.cookie.min.js.map | 2 +- assets/static/managed/js/raven.min.js.map | 2 +- assets/static/ui.js | 2 +- bindata_assetfs.go | 241 ++++---- 27 files changed, 213 insertions(+), 756 deletions(-) delete mode 100644 assets/static/managed/css/3.3.2-bootstrap-switch.min.css create mode 100644 assets/static/managed/css/3.3.4-bootstrap-switch.min.css delete mode 100644 assets/static/managed/js/0.4.0-sha1.min.js create mode 100644 assets/static/managed/js/0.4.1-sha1.min.js delete mode 100644 assets/static/managed/js/1.5.16-clipboard.min.js create mode 100644 assets/static/managed/js/1.6.1-clipboard.min.js delete mode 100644 assets/static/managed/js/2.1.3-js.cookie.min.js create mode 100644 assets/static/managed/js/2.1.4-js.cookie.min.js delete mode 100644 assets/static/managed/js/2.17.1-moment.min.js create mode 100644 assets/static/managed/js/2.18.1-moment.min.js delete mode 100644 assets/static/managed/js/2.2.4-jquery.min.js delete mode 100644 assets/static/managed/js/2.4.2-isInViewport.min.js create mode 100644 assets/static/managed/js/3.0.0-isInViewport.min.js create mode 100644 assets/static/managed/js/3.15.0-raven.min.js create mode 100644 assets/static/managed/js/3.2.1-jquery.min.js delete mode 100644 assets/static/managed/js/3.3.2-bootstrap-switch.min.js create mode 100644 assets/static/managed/js/3.3.4-bootstrap-switch.min.js delete mode 100644 assets/static/managed/js/3.9.1-raven.min.js create mode 100644 assets/static/managed/js/isInViewport.min.js.map diff --git a/assets/Makefile b/assets/Makefile index 7e90153e8..7d0432782 100644 --- a/assets/Makefile +++ b/assets/Makefile @@ -40,9 +40,9 @@ clean-assets: .PHONY: assets assets: clean-assets # jquery, for everything -assets: jquery/2.2.4/jquery.min.js +assets: jquery/3.2.1/jquery.min.js # moment, for timestamp parsing and printing -assets: moment.js/2.17.1/moment.min.js +assets: moment.js/2.18.1/moment.min.js # favico, for adding alert counter to the favico assets: favico.js/0.3.10/favico.min.js # fontawesome, for ui icons @@ -56,8 +56,8 @@ assets: font-awesome/4.7.0/fonts/FontAwesome.otf # bootstrap & bootstrap switch, for ui assets: twitter-bootstrap/3.3.7/js/bootstrap.min.js assets: bootswatch/3.3.7/flatly/bootstrap.min.css -assets: bootstrap-switch/3.3.2/js/bootstrap-switch.min.js -assets: bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.min.css +assets: bootstrap-switch/3.3.4/js/bootstrap-switch.min.js +assets: bootstrap-switch/3.3.4/css/bootstrap3/bootstrap-switch.min.css # nprogress, for refresh progress bar assets: nprogress/0.2.0/nprogress.min.js assets: nprogress/0.2.0/nprogress.min.css @@ -76,18 +76,18 @@ assets: bootstrap-select/1.12.2/css/bootstrap-select.min.css assets: loaders.css/0.1.2/loaders.css.min.js assets: loaders.css/0.1.2/loaders.min.css # js-cookie, for preference state loading via cookies -assets: js-cookie/2.1.3/js.cookie.min.js +assets: js-cookie/2.1.4/js.cookie.min.js # underscore & haml, for template rendering in js assets: underscore.js/1.8.3/underscore-min.js # masonry, for grid layout assets: masonry/4.2.0/masonry.pkgd.min.js # copy to clipboard -assets: clipboard.js/1.5.16/clipboard.min.js +assets: clipboard.js/1.6.1/clipboard.min.js # sentry client -assets: raven.js/3.9.1/raven.min.js +assets: raven.js/3.15.0/raven.min.js # sha1 function used to generate id from string -assets: js-sha1/0.4.0/sha1.min.js +assets: js-sha1/0.4.1/sha1.min.js # allows selecting only visible elements -assets: is-in-viewport/2.4.2/isInViewport.min.js +assets: is-in-viewport/3.0.0/isInViewport.min.js assets: @git add $(ASSETS_DIR)/*/* diff --git a/assets/static/managed/css/3.3.2-bootstrap-switch.min.css b/assets/static/managed/css/3.3.2-bootstrap-switch.min.css deleted file mode 100644 index 6eb3d4d9e..000000000 --- a/assets/static/managed/css/3.3.2-bootstrap-switch.min.css +++ /dev/null @@ -1,22 +0,0 @@ -/* ======================================================================== - * bootstrap-switch - v3.3.2 - * http://www.bootstrap-switch.org - * ======================================================================== - * Copyright 2012-2013 Mattia Larentis - * - * ======================================================================== - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ======================================================================== - */ - -.bootstrap-switch{display:inline-block;direction:ltr;cursor:pointer;border-radius:4px;border:1px solid;border-color:#ccc;position:relative;text-align:left;overflow:hidden;line-height:8px;z-index:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-switch .bootstrap-switch-container{display:inline-block;top:0;border-radius:4px;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block !important;height:100%;padding:6px 12px;font-size:14px;line-height:20px}.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-handle-off{text-align:center;z-index:1}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{color:#fff;background:#428bca}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info{color:#fff;background:#5bc0de}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success{color:#fff;background:#5cb85c}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning{background:#f0ad4e;color:#fff}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger{color:#fff;background:#d9534f}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default{color:#000;background:#eee}.bootstrap-switch .bootstrap-switch-label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;color:#333;background:#fff}.bootstrap-switch .bootstrap-switch-handle-on{border-bottom-left-radius:3px;border-top-left-radius:3px}.bootstrap-switch .bootstrap-switch-handle-off{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch input[type='radio'],.bootstrap-switch input[type='checkbox']{position:absolute !important;top:0;left:0;opacity:0;filter:alpha(opacity=0);z-index:-1}.bootstrap-switch input[type='radio'].form-control,.bootstrap-switch input[type='checkbox'].form-control{height:auto}.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label{padding:1px 5px;font-size:12px;line-height:1.5}.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label{padding:5px 10px;font-size:12px;line-height:1.5}.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label{padding:6px 16px;font-size:18px;line-height:1.33}.bootstrap-switch.bootstrap-switch-disabled,.bootstrap-switch.bootstrap-switch-readonly,.bootstrap-switch.bootstrap-switch-indeterminate{cursor:default !important}.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label{opacity:.5;filter:alpha(opacity=50);cursor:default !important}.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container{-webkit-transition:margin-left .5s;transition:margin-left .5s}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on{border-bottom-left-radius:0;border-top-left-radius:0;border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off{border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-left-radius:3px;border-top-left-radius:3px}.bootstrap-switch.bootstrap-switch-focused{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label{border-bottom-left-radius:3px;border-top-left-radius:3px} \ No newline at end of file diff --git a/assets/static/managed/css/3.3.4-bootstrap-switch.min.css b/assets/static/managed/css/3.3.4-bootstrap-switch.min.css new file mode 100644 index 000000000..77006595e --- /dev/null +++ b/assets/static/managed/css/3.3.4-bootstrap-switch.min.css @@ -0,0 +1,10 @@ +/** + * bootstrap-switch - Turn checkboxes and radio buttons into toggle switches. + * + * @version v3.3.4 + * @homepage https://bttstrp.github.io/bootstrap-switch + * @author Mattia Larentis (http://larentis.eu) + * @license Apache-2.0 + */ + +.bootstrap-switch{display:inline-block;direction:ltr;cursor:pointer;border-radius:4px;border:1px solid #ccc;position:relative;text-align:left;overflow:hidden;line-height:8px;z-index:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-switch .bootstrap-switch-container{display:inline-block;top:0;border-radius:4px;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:table-cell;vertical-align:middle;padding:6px 12px;font-size:14px;line-height:20px}.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-handle-on{text-align:center;z-index:1}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary{color:#fff;background:#337ab7}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info{color:#fff;background:#5bc0de}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success{color:#fff;background:#5cb85c}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning{background:#f0ad4e;color:#fff}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger{color:#fff;background:#d9534f}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{color:#000;background:#eee}.bootstrap-switch .bootstrap-switch-label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;color:#333;background:#fff}.bootstrap-switch span::before{content:"\200b"}.bootstrap-switch .bootstrap-switch-handle-on{border-bottom-left-radius:3px;border-top-left-radius:3px}.bootstrap-switch .bootstrap-switch-handle-off{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch input[type=radio],.bootstrap-switch input[type=checkbox]{position:absolute!important;top:0;left:0;margin:0;z-index:-1;opacity:0;filter:alpha(opacity=0);visibility:hidden}.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label{padding:1px 5px;font-size:12px;line-height:1.5}.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label{padding:5px 10px;font-size:12px;line-height:1.5}.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label{padding:6px 16px;font-size:18px;line-height:1.3333333}.bootstrap-switch.bootstrap-switch-disabled,.bootstrap-switch.bootstrap-switch-indeterminate,.bootstrap-switch.bootstrap-switch-readonly{cursor:default!important}.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label{opacity:.5;filter:alpha(opacity=50);cursor:default!important}.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container{-webkit-transition:margin-left .5s;-o-transition:margin-left .5s;transition:margin-left .5s}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on{border-radius:0 3px 3px 0}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off{border-radius:3px 0 0 3px}.bootstrap-switch.bootstrap-switch-focused{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label{border-bottom-left-radius:3px;border-top-left-radius:3px} \ No newline at end of file diff --git a/assets/static/managed/css/assets.txt b/assets/static/managed/css/assets.txt index 158cf263c..66209a9e5 100644 --- a/assets/static/managed/css/assets.txt +++ b/assets/static/managed/css/assets.txt @@ -1,6 +1,6 @@ 4.7.0-font-awesome.min.css 3.3.7-bootstrap.min.css -3.3.2-bootstrap-switch.min.css +3.3.4-bootstrap-switch.min.css 0.2.0-nprogress.min.css 0.8.0-bootstrap-tagsinput.css 0.8.0-bootstrap-tagsinput-typeahead.css diff --git a/assets/static/managed/js/0.4.0-sha1.min.js b/assets/static/managed/js/0.4.0-sha1.min.js deleted file mode 100644 index b1bb7362a..000000000 --- a/assets/static/managed/js/0.4.0-sha1.min.js +++ /dev/null @@ -1,9 +0,0 @@ -/* - * [js-sha1]{@link https://github.com/emn178/js-sha1} - * - * @version 0.4.0 - * @author Chen, Yi-Cyuan [emn178@gmail.com] - * @copyright Chen, Yi-Cyuan 2014-2016 - * @license MIT - */ -!function(t){"use strict";function h(t){t?(f[0]=f[16]=f[1]=f[2]=f[3]=f[4]=f[5]=f[6]=f[7]=f[8]=f[9]=f[10]=f[11]=f[12]=f[13]=f[14]=f[15]=0,this.blocks=f):this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.h0=1732584193,this.h1=4023233417,this.h2=2562383102,this.h3=271733878,this.h4=3285377520,this.block=this.start=this.bytes=0,this.finalized=this.hashed=!1,this.first=!0}var i="object"==typeof process&&process.versions&&process.versions.node;i&&(t=global);var s=!t.JS_SHA1_TEST&&"object"==typeof module&&module.exports,e="function"==typeof define&&define.amd,r="0123456789abcdef".split(""),o=[-2147483648,8388608,32768,128],n=[24,16,8,0],a=["hex","array","digest","arrayBuffer"],f=[],u=function(t){return function(i){return new h(!0).update(i)[t]()}},c=function(){var t=u("hex");i&&(t=p(t)),t.create=function(){return new h},t.update=function(h){return t.create().update(h)};for(var s=0;sr;){if(this.hashed&&(this.hashed=!1,a[0]=this.block,a[16]=a[1]=a[2]=a[3]=a[4]=a[5]=a[6]=a[7]=a[8]=a[9]=a[10]=a[11]=a[12]=a[13]=a[14]=a[15]=0),i)for(e=this.start;o>r&&64>e;++r)a[e>>2]|=h[r]<r&&64>e;++r)s=h.charCodeAt(r),128>s?a[e>>2]|=s<s?(a[e>>2]|=(192|s>>6)<>2]|=(128|63&s)<s||s>=57344?(a[e>>2]|=(224|s>>12)<>2]|=(128|s>>6&63)<>2]|=(128|63&s)<>2]|=(240|s>>18)<>2]|=(128|s>>12&63)<>2]|=(128|s>>6&63)<>2]|=(128|63&s)<=64?(this.block=a[16],this.start=e-64,this.hash(),this.hashed=!0):this.start=e}return this}},h.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var t=this.blocks,h=this.lastByteIndex;t[16]=this.block,t[h>>2]|=o[3&h],this.block=t[16],h>=56&&(this.hashed||this.hash(),t[0]=this.block,t[16]=t[1]=t[2]=t[3]=t[4]=t[5]=t[6]=t[7]=t[8]=t[9]=t[10]=t[11]=t[12]=t[13]=t[14]=t[15]=0),t[15]=this.bytes<<3,this.hash()}},h.prototype.hash=function(){var t,h,i,s=this.h0,e=this.h1,r=this.h2,o=this.h3,n=this.h4,a=this.blocks;for(h=16;80>h;++h)i=a[h-3]^a[h-8]^a[h-14]^a[h-16],a[h]=i<<1|i>>>31;for(h=0;20>h;h+=5)t=e&r|~e&o,i=s<<5|s>>>27,n=i+t+n+1518500249+a[h]<<0,e=e<<30|e>>>2,t=s&e|~s&r,i=n<<5|n>>>27,o=i+t+o+1518500249+a[h+1]<<0,s=s<<30|s>>>2,t=n&s|~n&e,i=o<<5|o>>>27,r=i+t+r+1518500249+a[h+2]<<0,n=n<<30|n>>>2,t=o&n|~o&s,i=r<<5|r>>>27,e=i+t+e+1518500249+a[h+3]<<0,o=o<<30|o>>>2,t=r&o|~r&n,i=e<<5|e>>>27,s=i+t+s+1518500249+a[h+4]<<0,r=r<<30|r>>>2;for(;40>h;h+=5)t=e^r^o,i=s<<5|s>>>27,n=i+t+n+1859775393+a[h]<<0,e=e<<30|e>>>2,t=s^e^r,i=n<<5|n>>>27,o=i+t+o+1859775393+a[h+1]<<0,s=s<<30|s>>>2,t=n^s^e,i=o<<5|o>>>27,r=i+t+r+1859775393+a[h+2]<<0,n=n<<30|n>>>2,t=o^n^s,i=r<<5|r>>>27,e=i+t+e+1859775393+a[h+3]<<0,o=o<<30|o>>>2,t=r^o^n,i=e<<5|e>>>27,s=i+t+s+1859775393+a[h+4]<<0,r=r<<30|r>>>2;for(;60>h;h+=5)t=e&r|e&o|r&o,i=s<<5|s>>>27,n=i+t+n-1894007588+a[h]<<0,e=e<<30|e>>>2,t=s&e|s&r|e&r,i=n<<5|n>>>27,o=i+t+o-1894007588+a[h+1]<<0,s=s<<30|s>>>2,t=n&s|n&e|s&e,i=o<<5|o>>>27,r=i+t+r-1894007588+a[h+2]<<0,n=n<<30|n>>>2,t=o&n|o&s|n&s,i=r<<5|r>>>27,e=i+t+e-1894007588+a[h+3]<<0,o=o<<30|o>>>2,t=r&o|r&n|o&n,i=e<<5|e>>>27,s=i+t+s-1894007588+a[h+4]<<0,r=r<<30|r>>>2;for(;80>h;h+=5)t=e^r^o,i=s<<5|s>>>27,n=i+t+n-899497514+a[h]<<0,e=e<<30|e>>>2,t=s^e^r,i=n<<5|n>>>27,o=i+t+o-899497514+a[h+1]<<0,s=s<<30|s>>>2,t=n^s^e,i=o<<5|o>>>27,r=i+t+r-899497514+a[h+2]<<0,n=n<<30|n>>>2,t=o^n^s,i=r<<5|r>>>27,e=i+t+e-899497514+a[h+3]<<0,o=o<<30|o>>>2,t=r^o^n,i=e<<5|e>>>27,s=i+t+s-899497514+a[h+4]<<0,r=r<<30|r>>>2;this.h0=this.h0+s<<0,this.h1=this.h1+e<<0,this.h2=this.h2+r<<0,this.h3=this.h3+o<<0,this.h4=this.h4+n<<0},h.prototype.hex=function(){this.finalize();var t=this.h0,h=this.h1,i=this.h2,s=this.h3,e=this.h4;return r[t>>28&15]+r[t>>24&15]+r[t>>20&15]+r[t>>16&15]+r[t>>12&15]+r[t>>8&15]+r[t>>4&15]+r[15&t]+r[h>>28&15]+r[h>>24&15]+r[h>>20&15]+r[h>>16&15]+r[h>>12&15]+r[h>>8&15]+r[h>>4&15]+r[15&h]+r[i>>28&15]+r[i>>24&15]+r[i>>20&15]+r[i>>16&15]+r[i>>12&15]+r[i>>8&15]+r[i>>4&15]+r[15&i]+r[s>>28&15]+r[s>>24&15]+r[s>>20&15]+r[s>>16&15]+r[s>>12&15]+r[s>>8&15]+r[s>>4&15]+r[15&s]+r[e>>28&15]+r[e>>24&15]+r[e>>20&15]+r[e>>16&15]+r[e>>12&15]+r[e>>8&15]+r[e>>4&15]+r[15&e]},h.prototype.toString=h.prototype.hex,h.prototype.digest=function(){this.finalize();var t=this.h0,h=this.h1,i=this.h2,s=this.h3,e=this.h4;return[t>>24&255,t>>16&255,t>>8&255,255&t,h>>24&255,h>>16&255,h>>8&255,255&h,i>>24&255,i>>16&255,i>>8&255,255&i,s>>24&255,s>>16&255,s>>8&255,255&s,e>>24&255,e>>16&255,e>>8&255,255&e]},h.prototype.array=h.prototype.digest,h.prototype.arrayBuffer=function(){this.finalize();var t=new ArrayBuffer(20),h=new DataView(t);return h.setUint32(0,this.h0),h.setUint32(4,this.h1),h.setUint32(8,this.h2),h.setUint32(12,this.h3),h.setUint32(16,this.h4),t};var d=c();s?module.exports=d:(t.sha1=d,e&&define(function(){return d}))}(this); \ No newline at end of file diff --git a/assets/static/managed/js/0.4.1-sha1.min.js b/assets/static/managed/js/0.4.1-sha1.min.js new file mode 100644 index 000000000..1d10bbe21 --- /dev/null +++ b/assets/static/managed/js/0.4.1-sha1.min.js @@ -0,0 +1,9 @@ +/* + * [js-sha1]{@link https://github.com/emn178/js-sha1} + * + * @version 0.4.1 + * @author Chen, Yi-Cyuan [emn178@gmail.com] + * @copyright Chen, Yi-Cyuan 2014-2016 + * @license MIT + */ +!function(){"use strict";function t(t){t?(f[0]=f[16]=f[1]=f[2]=f[3]=f[4]=f[5]=f[6]=f[7]=f[8]=f[9]=f[10]=f[11]=f[12]=f[13]=f[14]=f[15]=0,this.blocks=f):this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.h0=1732584193,this.h1=4023233417,this.h2=2562383102,this.h3=271733878,this.h4=3285377520,this.block=this.start=this.bytes=0,this.finalized=this.hashed=!1,this.first=!0}var h="object"==typeof window?window:{},i=!h.JS_SHA1_NO_NODE_JS&&"object"==typeof process&&process.versions&&process.versions.node;i&&(h=global);var s=!h.JS_SHA1_NO_COMMON_JS&&"object"==typeof module&&module.exports,e="function"==typeof define&&define.amd,r="0123456789abcdef".split(""),o=[-2147483648,8388608,32768,128],n=[24,16,8,0],a=["hex","array","digest","arrayBuffer"],f=[],u=function(h){return function(i){return new t(!0).update(i)[h]()}},c=function(){var h=u("hex");i&&(h=p(h)),h.create=function(){return new t},h.update=function(t){return h.create().update(t)};for(var s=0;sr;){if(this.hashed&&(this.hashed=!1,a[0]=this.block,a[16]=a[1]=a[2]=a[3]=a[4]=a[5]=a[6]=a[7]=a[8]=a[9]=a[10]=a[11]=a[12]=a[13]=a[14]=a[15]=0),i)for(e=this.start;o>r&&64>e;++r)a[e>>2]|=t[r]<r&&64>e;++r)s=t.charCodeAt(r),128>s?a[e>>2]|=s<s?(a[e>>2]|=(192|s>>6)<>2]|=(128|63&s)<s||s>=57344?(a[e>>2]|=(224|s>>12)<>2]|=(128|s>>6&63)<>2]|=(128|63&s)<>2]|=(240|s>>18)<>2]|=(128|s>>12&63)<>2]|=(128|s>>6&63)<>2]|=(128|63&s)<=64?(this.block=a[16],this.start=e-64,this.hash(),this.hashed=!0):this.start=e}return this}},t.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var t=this.blocks,h=this.lastByteIndex;t[16]=this.block,t[h>>2]|=o[3&h],this.block=t[16],h>=56&&(this.hashed||this.hash(),t[0]=this.block,t[16]=t[1]=t[2]=t[3]=t[4]=t[5]=t[6]=t[7]=t[8]=t[9]=t[10]=t[11]=t[12]=t[13]=t[14]=t[15]=0),t[15]=this.bytes<<3,this.hash()}},t.prototype.hash=function(){var t,h,i,s=this.h0,e=this.h1,r=this.h2,o=this.h3,n=this.h4,a=this.blocks;for(h=16;80>h;++h)i=a[h-3]^a[h-8]^a[h-14]^a[h-16],a[h]=i<<1|i>>>31;for(h=0;20>h;h+=5)t=e&r|~e&o,i=s<<5|s>>>27,n=i+t+n+1518500249+a[h]<<0,e=e<<30|e>>>2,t=s&e|~s&r,i=n<<5|n>>>27,o=i+t+o+1518500249+a[h+1]<<0,s=s<<30|s>>>2,t=n&s|~n&e,i=o<<5|o>>>27,r=i+t+r+1518500249+a[h+2]<<0,n=n<<30|n>>>2,t=o&n|~o&s,i=r<<5|r>>>27,e=i+t+e+1518500249+a[h+3]<<0,o=o<<30|o>>>2,t=r&o|~r&n,i=e<<5|e>>>27,s=i+t+s+1518500249+a[h+4]<<0,r=r<<30|r>>>2;for(;40>h;h+=5)t=e^r^o,i=s<<5|s>>>27,n=i+t+n+1859775393+a[h]<<0,e=e<<30|e>>>2,t=s^e^r,i=n<<5|n>>>27,o=i+t+o+1859775393+a[h+1]<<0,s=s<<30|s>>>2,t=n^s^e,i=o<<5|o>>>27,r=i+t+r+1859775393+a[h+2]<<0,n=n<<30|n>>>2,t=o^n^s,i=r<<5|r>>>27,e=i+t+e+1859775393+a[h+3]<<0,o=o<<30|o>>>2,t=r^o^n,i=e<<5|e>>>27,s=i+t+s+1859775393+a[h+4]<<0,r=r<<30|r>>>2;for(;60>h;h+=5)t=e&r|e&o|r&o,i=s<<5|s>>>27,n=i+t+n-1894007588+a[h]<<0,e=e<<30|e>>>2,t=s&e|s&r|e&r,i=n<<5|n>>>27,o=i+t+o-1894007588+a[h+1]<<0,s=s<<30|s>>>2,t=n&s|n&e|s&e,i=o<<5|o>>>27,r=i+t+r-1894007588+a[h+2]<<0,n=n<<30|n>>>2,t=o&n|o&s|n&s,i=r<<5|r>>>27,e=i+t+e-1894007588+a[h+3]<<0,o=o<<30|o>>>2,t=r&o|r&n|o&n,i=e<<5|e>>>27,s=i+t+s-1894007588+a[h+4]<<0,r=r<<30|r>>>2;for(;80>h;h+=5)t=e^r^o,i=s<<5|s>>>27,n=i+t+n-899497514+a[h]<<0,e=e<<30|e>>>2,t=s^e^r,i=n<<5|n>>>27,o=i+t+o-899497514+a[h+1]<<0,s=s<<30|s>>>2,t=n^s^e,i=o<<5|o>>>27,r=i+t+r-899497514+a[h+2]<<0,n=n<<30|n>>>2,t=o^n^s,i=r<<5|r>>>27,e=i+t+e-899497514+a[h+3]<<0,o=o<<30|o>>>2,t=r^o^n,i=e<<5|e>>>27,s=i+t+s-899497514+a[h+4]<<0,r=r<<30|r>>>2;this.h0=this.h0+s<<0,this.h1=this.h1+e<<0,this.h2=this.h2+r<<0,this.h3=this.h3+o<<0,this.h4=this.h4+n<<0},t.prototype.hex=function(){this.finalize();var t=this.h0,h=this.h1,i=this.h2,s=this.h3,e=this.h4;return r[t>>28&15]+r[t>>24&15]+r[t>>20&15]+r[t>>16&15]+r[t>>12&15]+r[t>>8&15]+r[t>>4&15]+r[15&t]+r[h>>28&15]+r[h>>24&15]+r[h>>20&15]+r[h>>16&15]+r[h>>12&15]+r[h>>8&15]+r[h>>4&15]+r[15&h]+r[i>>28&15]+r[i>>24&15]+r[i>>20&15]+r[i>>16&15]+r[i>>12&15]+r[i>>8&15]+r[i>>4&15]+r[15&i]+r[s>>28&15]+r[s>>24&15]+r[s>>20&15]+r[s>>16&15]+r[s>>12&15]+r[s>>8&15]+r[s>>4&15]+r[15&s]+r[e>>28&15]+r[e>>24&15]+r[e>>20&15]+r[e>>16&15]+r[e>>12&15]+r[e>>8&15]+r[e>>4&15]+r[15&e]},t.prototype.toString=t.prototype.hex,t.prototype.digest=function(){this.finalize();var t=this.h0,h=this.h1,i=this.h2,s=this.h3,e=this.h4;return[t>>24&255,t>>16&255,t>>8&255,255&t,h>>24&255,h>>16&255,h>>8&255,255&h,i>>24&255,i>>16&255,i>>8&255,255&i,s>>24&255,s>>16&255,s>>8&255,255&s,e>>24&255,e>>16&255,e>>8&255,255&e]},t.prototype.array=t.prototype.digest,t.prototype.arrayBuffer=function(){this.finalize();var t=new ArrayBuffer(20),h=new DataView(t);return h.setUint32(0,this.h0),h.setUint32(4,this.h1),h.setUint32(8,this.h2),h.setUint32(12,this.h3),h.setUint32(16,this.h4),t};var d=c();s?module.exports=d:(h.sha1=d,e&&define(function(){return d}))}(); \ No newline at end of file diff --git a/assets/static/managed/js/1.5.16-clipboard.min.js b/assets/static/managed/js/1.5.16-clipboard.min.js deleted file mode 100644 index 1d7c5d5d7..000000000 --- a/assets/static/managed/js/1.5.16-clipboard.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * clipboard.js v1.5.16 - * https://zenorocha.github.io/clipboard.js - * - * Licensed MIT © Zeno Rocha - */ -!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.Clipboard=e()}}(function(){var e,t,n;return function e(t,n,i){function o(a,c){if(!n[a]){if(!t[a]){var l="function"==typeof require&&require;if(!c&&l)return l(a,!0);if(r)return r(a,!0);var s=new Error("Cannot find module '"+a+"'");throw s.code="MODULE_NOT_FOUND",s}var u=n[a]={exports:{}};t[a][0].call(u.exports,function(e){var n=t[a][1][e];return o(n?n:e)},u,u.exports,e,t,n,i)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function e(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function e(){var t=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=document.body.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px";var i=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.addEventListener("focus",window.scrollTo(0,i)),this.fakeElem.style.top=i+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=(0,o.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function e(){this.fakeHandler&&(document.body.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function e(){this.selectedText=(0,o.default)(this.target),this.copyText()}},{key:"copyText",value:function e(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function e(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function e(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function e(){this.removeFake()}},{key:"action",set:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function e(){return this._action}},{key:"target",set:function e(t){if(void 0!==t){if(!t||"object"!==("undefined"==typeof t?"undefined":r(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function e(){return this._target}}]),e}();e.exports=c})},{select:5}],8:[function(t,n,i){!function(o,r){if("function"==typeof e&&e.amd)e(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if("undefined"!=typeof i)r(n,t("./clipboard-action"),t("tiny-emitter"),t("good-listener"));else{var a={exports:{}};r(a,o.clipboardAction,o.tinyEmitter,o.goodListener),o.clipboard=a.exports}}(this,function(e,t,n,i){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e,t){var n="data-clipboard-"+e;if(t.hasAttribute(n))return t.getAttribute(n)}var s=o(t),u=o(n),f=o(i),d=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText}},{key:"listenClick",value:function e(t){var n=this;this.listener=(0,f.default)(t,"click",function(e){return n.onClick(e)})}},{key:"onClick",value:function e(t){var n=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s.default({action:this.action(n),target:this.target(n),text:this.text(n),trigger:n,emitter:this})}},{key:"defaultAction",value:function e(t){return l("action",t)}},{key:"defaultTarget",value:function e(t){var n=l("target",t);if(n)return document.querySelector(n)}},{key:"defaultText",value:function e(t){return l("text",t)}},{key:"destroy",value:function e(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}]),t}(u.default);e.exports=h})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)}); \ No newline at end of file diff --git a/assets/static/managed/js/1.6.1-clipboard.min.js b/assets/static/managed/js/1.6.1-clipboard.min.js new file mode 100644 index 000000000..1993676f9 --- /dev/null +++ b/assets/static/managed/js/1.6.1-clipboard.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v1.6.1 + * https://zenorocha.github.io/clipboard.js + * + * Licensed MIT © Zeno Rocha + */ +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.Clipboard=e()}}(function(){var e,t,n;return function e(t,n,o){function i(a,c){if(!n[a]){if(!t[a]){var l="function"==typeof require&&require;if(!c&&l)return l(a,!0);if(r)return r(a,!0);var u=new Error("Cannot find module '"+a+"'");throw u.code="MODULE_NOT_FOUND",u}var s=n[a]={exports:{}};t[a][0].call(s.exports,function(e){var n=t[a][1][e];return i(n?n:e)},s,s.exports,e,t,n,o)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function e(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function e(){var t=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=document.body.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px";var o=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=o+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=(0,i.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function e(){this.fakeHandler&&(document.body.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function e(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function e(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function e(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function e(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function e(){this.removeFake()}},{key:"action",set:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function e(){return this._action}},{key:"target",set:function e(t){if(void 0!==t){if(!t||"object"!==("undefined"==typeof t?"undefined":r(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function e(){return this._target}}]),e}();e.exports=c})},{select:5}],8:[function(t,n,o){!function(i,r){if("function"==typeof e&&e.amd)e(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if("undefined"!=typeof o)r(n,t("./clipboard-action"),t("tiny-emitter"),t("good-listener"));else{var a={exports:{}};r(a,i.clipboardAction,i.tinyEmitter,i.goodListener),i.clipboard=a.exports}}(this,function(e,t,n,o){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e,t){var n="data-clipboard-"+e;if(t.hasAttribute(n))return t.getAttribute(n)}var u=i(t),s=i(n),f=i(o),d=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText}},{key:"listenClick",value:function e(t){var n=this;this.listener=(0,f.default)(t,"click",function(e){return n.onClick(e)})}},{key:"onClick",value:function e(t){var n=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new u.default({action:this.action(n),target:this.target(n),text:this.text(n),trigger:n,emitter:this})}},{key:"defaultAction",value:function e(t){return l("action",t)}},{key:"defaultTarget",value:function e(t){var n=l("target",t);if(n)return document.querySelector(n)}},{key:"defaultText",value:function e(t){return l("text",t)}},{key:"destroy",value:function e(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],n="string"==typeof t?[t]:t,o=!!document.queryCommandSupported;return n.forEach(function(e){o=o&&!!document.queryCommandSupported(e)}),o}}]),t}(s.default);e.exports=h})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)}); \ No newline at end of file diff --git a/assets/static/managed/js/2.1.3-js.cookie.min.js b/assets/static/managed/js/2.1.3-js.cookie.min.js deleted file mode 100644 index de7f6fe41..000000000 --- a/assets/static/managed/js/2.1.3-js.cookie.min.js +++ /dev/null @@ -1,2 +0,0 @@ -!function(e){var n=!1;if("function"==typeof define&&define.amd&&(define(e),n=!0),"object"==typeof exports&&(module.exports=e(),n=!0),!n){var o=window.Cookies,t=window.Cookies=e();t.noConflict=function(){return window.Cookies=o,t}}}(function(){function e(){for(var e=0,n={};e1){if(i=e({path:"/"},t.defaults,i),"number"==typeof i.expires){var a=new Date;a.setMilliseconds(a.getMilliseconds()+864e5*i.expires),i.expires=a}try{c=JSON.stringify(r),/^[\{\[]/.test(c)&&(r=c)}catch(e){}return r=o.write?o.write(r,n):encodeURIComponent(String(r)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),n=encodeURIComponent(String(n)),n=n.replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent),n=n.replace(/[\(\)]/g,escape),document.cookie=[n,"=",r,i.expires?"; expires="+i.expires.toUTCString():"",i.path?"; path="+i.path:"",i.domain?"; domain="+i.domain:"",i.secure?"; secure":""].join("")}n||(c={});for(var p=document.cookie?document.cookie.split("; "):[],s=/(%[0-9A-Z]{2})+/g,d=0;d1){if(i=e({path:"/"},t.defaults,i),"number"==typeof i.expires){var a=new Date;a.setMilliseconds(a.getMilliseconds()+864e5*i.expires),i.expires=a}i.expires=i.expires?i.expires.toUTCString():"";try{c=JSON.stringify(r),/^[\{\[]/.test(c)&&(r=c)}catch(e){}r=o.write?o.write(r,n):encodeURIComponent(String(r)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),n=encodeURIComponent(String(n)),n=n.replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent),n=n.replace(/[\(\)]/g,escape);var f="";for(var s in i)i[s]&&(f+="; "+s,i[s]!==!0&&(f+="="+i[s]));return document.cookie=n+"="+r+f}n||(c={});for(var p=document.cookie?document.cookie.split("; "):[],d=0;d0)for(c in rd)d=rd[c],e=b[d],p(e)||(a[d]=e);return a} -// Moment prototype object -function r(b){q(this,b),this._d=new Date(null!=b._d?b._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)), -// Prevent infinite loop in case updateOffset creates new moment -// objects. -sd===!1&&(sd=!0,a.updateOffset(this),sd=!1)}function s(a){return a instanceof r||null!=a&&null!=a._isAMomentObject}function t(a){return a<0?Math.ceil(a)||0:Math.floor(a)}function u(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=t(b)),c} -// compare two arrays, return the number of differences -function v(a,b,c){var d,e=Math.min(a.length,b.length),f=Math.abs(a.length-b.length),g=0;for(d=0;d0?"future":"past"];return z(c)?c(b):c.replace(/%s/i,b)}function J(a,b){var c=a.toLowerCase();Dd[c]=Dd[c+"s"]=Dd[b]=a}function K(a){return"string"==typeof a?Dd[a]||Dd[a.toLowerCase()]:void 0}function L(a){var b,c,d={};for(c in a)i(a,c)&&(b=K(c),b&&(d[b]=a[c]));return d}function M(a,b){Ed[a]=b}function N(a){var b=[];for(var c in a)b.push({unit:c,priority:Ed[c]});return b.sort(function(a,b){return a.priority-b.priority}),b}function O(b,c){return function(d){return null!=d?(Q(this,b,d),a.updateOffset(this,c),this):P(this,b)}}function P(a,b){return a.isValid()?a._d["get"+(a._isUTC?"UTC":"")+b]():NaN}function Q(a,b,c){a.isValid()&&a._d["set"+(a._isUTC?"UTC":"")+b](c)} -// MOMENTS -function R(a){return a=K(a),z(this[a])?this[a]():this}function S(a,b){if("object"==typeof a){a=L(a);for(var c=N(a),d=0;d=0;return(f?c?"+":"":"-")+Math.pow(10,Math.max(0,e)).toString().substr(1)+d} -// token: 'M' -// padded: ['MM', 2] -// ordinal: 'Mo' -// callback: function () { this.month() + 1 } -function U(a,b,c,d){var e=d;"string"==typeof d&&(e=function(){return this[d]()}),a&&(Id[a]=e),b&&(Id[b[0]]=function(){return T(e.apply(this,arguments),b[1],b[2])}),c&&(Id[c]=function(){return this.localeData().ordinal(e.apply(this,arguments),a)})}function V(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function W(a){var b,c,d=a.match(Fd);for(b=0,c=d.length;b=0&&Gd.test(a);)a=a.replace(Gd,c),Gd.lastIndex=0,d-=1;return a}function Z(a,b,c){$d[a]=z(b)?b:function(a,d){return a&&c?c:b}}function $(a,b){return i($d,a)?$d[a](b._strict,b._locale):new RegExp(_(a))} -// Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript -function _(a){return aa(a.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e}))}function aa(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function ba(a,b){var c,d=b;for("string"==typeof a&&(a=[a]),f(b)&&(d=function(a,c){c[b]=u(a)}),c=0;c=0&&isFinite(h.getFullYear())&&h.setFullYear(a),h}function ta(a){var b=new Date(Date.UTC.apply(null,arguments)); -//the Date.UTC function remaps years 0-99 to 1900-1999 -return a<100&&a>=0&&isFinite(b.getUTCFullYear())&&b.setUTCFullYear(a),b} -// start-of-first-week - start-of-year -function ua(a,b,c){var// first-week day -- which january is always in the first week (4 for iso, 1 for other) -d=7+b-c, -// first-week day local weekday -- which local weekday is fwd -e=(7+ta(a,0,d).getUTCDay()-b)%7;return-e+d-1} -//http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday -function va(a,b,c,d,e){var f,g,h=(7+c-d)%7,i=ua(a,d,e),j=1+7*(b-1)+h+i;return j<=0?(f=a-1,g=pa(f)+j):j>pa(a)?(f=a+1,g=j-pa(a)):(f=a,g=j),{year:f,dayOfYear:g}}function wa(a,b,c){var d,e,f=ua(a.year(),b,c),g=Math.floor((a.dayOfYear()-f-1)/7)+1;return g<1?(e=a.year()-1,d=g+xa(e,b,c)):g>xa(a.year(),b,c)?(d=g-xa(a.year(),b,c),e=a.year()+1):(e=a.year(),d=g),{week:d,year:e}}function xa(a,b,c){var d=ua(a,b,c),e=ua(a+1,b,c);return(pa(a)-d+e)/7} -// HELPERS -// LOCALES -function ya(a){return wa(a,this._week.dow,this._week.doy).week}function za(){return this._week.dow}function Aa(){return this._week.doy} -// MOMENTS -function Ba(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")}function Ca(a){var b=wa(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")} -// HELPERS -function Da(a,b){return"string"!=typeof a?a:isNaN(a)?(a=b.weekdaysParse(a),"number"==typeof a?a:null):parseInt(a,10)}function Ea(a,b){return"string"==typeof a?b.weekdaysParse(a)%7||7:isNaN(a)?null:a}function Fa(a,b){return a?c(this._weekdays)?this._weekdays[a.day()]:this._weekdays[this._weekdays.isFormat.test(b)?"format":"standalone"][a.day()]:this._weekdays}function Ga(a){return a?this._weekdaysShort[a.day()]:this._weekdaysShort}function Ha(a){return a?this._weekdaysMin[a.day()]:this._weekdaysMin}function Ia(a,b,c){var d,e,f,g=a.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],d=0;d<7;++d)f=k([2e3,1]).day(d),this._minWeekdaysParse[d]=this.weekdaysMin(f,"").toLocaleLowerCase(),this._shortWeekdaysParse[d]=this.weekdaysShort(f,"").toLocaleLowerCase(),this._weekdaysParse[d]=this.weekdays(f,"").toLocaleLowerCase();return c?"dddd"===b?(e=je.call(this._weekdaysParse,g),e!==-1?e:null):"ddd"===b?(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:null):(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null):"dddd"===b?(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null))):"ddd"===b?(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null))):(e=je.call(this._minWeekdaysParse,g),e!==-1?e:(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:null)))}function Ja(a,b,c){var d,e,f;if(this._weekdaysParseExact)return Ia.call(this,a,b,c);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),d=0;d<7;d++){ -// test the regex -if( -// make the regex if we don't have it already -e=k([2e3,1]).day(d),c&&!this._fullWeekdaysParse[d]&&(this._fullWeekdaysParse[d]=new RegExp("^"+this.weekdays(e,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[d]=new RegExp("^"+this.weekdaysShort(e,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[d]=new RegExp("^"+this.weekdaysMin(e,"").replace(".",".?")+"$","i")),this._weekdaysParse[d]||(f="^"+this.weekdays(e,"")+"|^"+this.weekdaysShort(e,"")+"|^"+this.weekdaysMin(e,""),this._weekdaysParse[d]=new RegExp(f.replace(".",""),"i")),c&&"dddd"===b&&this._fullWeekdaysParse[d].test(a))return d;if(c&&"ddd"===b&&this._shortWeekdaysParse[d].test(a))return d;if(c&&"dd"===b&&this._minWeekdaysParse[d].test(a))return d;if(!c&&this._weekdaysParse[d].test(a))return d}} -// MOMENTS -function Ka(a){if(!this.isValid())return null!=a?this:NaN;var b=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=a?(a=Da(a,this.localeData()),this.add(a-b,"d")):b}function La(a){if(!this.isValid())return null!=a?this:NaN;var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")}function Ma(a){if(!this.isValid())return null!=a?this:NaN; -// behaves the same as moment#day except -// as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) -// as a setter, sunday should belong to the previous week. -if(null!=a){var b=Ea(a,this.localeData());return this.day(this.day()%7?b:b-7)}return this.day()||7}function Na(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysStrictRegex:this._weekdaysRegex):(i(this,"_weekdaysRegex")||(this._weekdaysRegex=ue),this._weekdaysStrictRegex&&a?this._weekdaysStrictRegex:this._weekdaysRegex)}function Oa(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(i(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ve),this._weekdaysShortStrictRegex&&a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Pa(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(i(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=we),this._weekdaysMinStrictRegex&&a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Qa(){function a(a,b){return b.length-a.length}var b,c,d,e,f,g=[],h=[],i=[],j=[];for(b=0;b<7;b++) -// make the regex if we don't have it already -c=k([2e3,1]).day(b),d=this.weekdaysMin(c,""),e=this.weekdaysShort(c,""),f=this.weekdays(c,""),g.push(d),h.push(e),i.push(f),j.push(d),j.push(e),j.push(f);for( -// Sorting makes sure if one weekday (or abbr) is a prefix of another it -// will match the longer piece. -g.sort(a),h.sort(a),i.sort(a),j.sort(a),b=0;b<7;b++)h[b]=aa(h[b]),i[b]=aa(i[b]),j[b]=aa(j[b]);this._weekdaysRegex=new RegExp("^("+j.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+i.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+h.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+g.join("|")+")","i")} -// FORMATTING -function Ra(){return this.hours()%12||12}function Sa(){return this.hours()||24}function Ta(a,b){U(a,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),b)})} -// PARSING -function Ua(a,b){return b._meridiemParse} -// LOCALES -function Va(a){ -// IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays -// Using charAt should be more compatible. -return"p"===(a+"").toLowerCase().charAt(0)}function Wa(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"}function Xa(a){return a?a.toLowerCase().replace("_","-"):a} -// pick the locale from the array -// try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each -// substring from most specific to least, but move to the next array item if it's a more specific variant than the current root -function Ya(a){for(var b,c,d,e,f=0;f0;){if(d=Za(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&v(e,c,!0)>=b-1) -//the next array item is better than a shallower substring of this one -break;b--}f++}return null}function Za(a){var b=null; -// TODO: Find a better way to register and load all the locales in Node -if(!Be[a]&&"undefined"!=typeof module&&module&&module.exports)try{b=xe._abbr,require("./locale/"+a), -// because defineLocale currently also sets the global locale, we -// want to undo that for lazy loaded locales -$a(b)}catch(a){}return Be[a]} -// This function will load locale and then set the global locale. If -// no arguments are passed in, it will simply return the current global -// locale key. -function $a(a,b){var c; -// moment.duration._locale = moment._locale = data; -return a&&(c=p(b)?bb(a):_a(a,b),c&&(xe=c)),xe._abbr}function _a(a,b){if(null!==b){var c=Ae;if(b.abbr=a,null!=Be[a])y("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),c=Be[a]._config;else if(null!=b.parentLocale){if(null==Be[b.parentLocale])return Ce[b.parentLocale]||(Ce[b.parentLocale]=[]),Ce[b.parentLocale].push({name:a,config:b}),null;c=Be[b.parentLocale]._config} -// backwards compat for now: also set the locale -// make sure we set the locale AFTER all child locales have been -// created, so we won't end up with the child locale set. -return Be[a]=new C(B(c,b)),Ce[a]&&Ce[a].forEach(function(a){_a(a.name,a.config)}),$a(a),Be[a]} -// useful for testing -return delete Be[a],null}function ab(a,b){if(null!=b){var c,d=Ae; -// MERGE -null!=Be[a]&&(d=Be[a]._config),b=B(d,b),c=new C(b),c.parentLocale=Be[a],Be[a]=c, -// backwards compat for now: also set the locale -$a(a)}else -// pass null for config to unupdate, useful for tests -null!=Be[a]&&(null!=Be[a].parentLocale?Be[a]=Be[a].parentLocale:null!=Be[a]&&delete Be[a]);return Be[a]} -// returns locale data -function bb(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return xe;if(!c(a)){if( -//short-circuit everything else -b=Za(a))return b;a=[a]}return Ya(a)}function cb(){return wd(Be)}function db(a){var b,c=a._a;return c&&m(a).overflow===-2&&(b=c[be]<0||c[be]>11?be:c[ce]<1||c[ce]>ea(c[ae],c[be])?ce:c[de]<0||c[de]>24||24===c[de]&&(0!==c[ee]||0!==c[fe]||0!==c[ge])?de:c[ee]<0||c[ee]>59?ee:c[fe]<0||c[fe]>59?fe:c[ge]<0||c[ge]>999?ge:-1,m(a)._overflowDayOfYear&&(bce)&&(b=ce),m(a)._overflowWeeks&&b===-1&&(b=he),m(a)._overflowWeekday&&b===-1&&(b=ie),m(a).overflow=b),a} -// date from iso format -function eb(a){var b,c,d,e,f,g,h=a._i,i=De.exec(h)||Ee.exec(h);if(i){for(m(a).iso=!0,b=0,c=Ge.length;bpa(e)&&(m(a)._overflowDayOfYear=!0),c=ta(e,0,a._dayOfYear),a._a[be]=c.getUTCMonth(),a._a[ce]=c.getUTCDate()),b=0;b<3&&null==a._a[b];++b)a._a[b]=f[b]=d[b]; -// Zero out whatever was not defaulted, including time -for(;b<7;b++)a._a[b]=f[b]=null==a._a[b]?2===b?1:0:a._a[b]; -// Check for 24:00:00.000 -24===a._a[de]&&0===a._a[ee]&&0===a._a[fe]&&0===a._a[ge]&&(a._nextDay=!0,a._a[de]=0),a._d=(a._useUTC?ta:sa).apply(null,f), -// Apply timezone offset from input. The actual utcOffset can be changed -// with parseZone. -null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm),a._nextDay&&(a._a[de]=24)}}function jb(a){var b,c,d,e,f,g,h,i;if(b=a._w,null!=b.GG||null!=b.W||null!=b.E)f=1,g=4, -// TODO: We need to take the current isoWeekYear, but that depends on -// how we interpret now (local, utc, fixed offset). So create -// a now version of current config (take local/utc/offset flags, and -// create now). -c=gb(b.GG,a._a[ae],wa(sb(),1,4).year),d=gb(b.W,1),e=gb(b.E,1),(e<1||e>7)&&(i=!0);else{f=a._locale._week.dow,g=a._locale._week.doy;var j=wa(sb(),f,g);c=gb(b.gg,a._a[ae],j.year), -// Default to current week. -d=gb(b.w,j.week),null!=b.d?( -// weekday -- low day numbers are considered next week -e=b.d,(e<0||e>6)&&(i=!0)):null!=b.e?( -// local weekday -- counting starts from begining of week -e=b.e+f,(b.e<0||b.e>6)&&(i=!0)): -// default to begining of week -e=f}d<1||d>xa(c,f,g)?m(a)._overflowWeeks=!0:null!=i?m(a)._overflowWeekday=!0:(h=va(c,d,e,f,g),a._a[ae]=h.year,a._dayOfYear=h.dayOfYear)} -// date from string and format string -function kb(b){ -// TODO: Move this to another part of the creation flow to prevent circular deps -if(b._f===a.ISO_8601)return void eb(b);b._a=[],m(b).empty=!0; -// This array is used to make a Date, either with `new Date` or `Date.UTC` -var c,d,e,f,g,h=""+b._i,i=h.length,j=0;for(e=Y(b._f,b._locale).match(Fd)||[],c=0;c0&&m(b).unusedInput.push(g),h=h.slice(h.indexOf(d)+d.length),j+=d.length), -// don't parse if it's not a known token -Id[f]?(d?m(b).empty=!1:m(b).unusedTokens.push(f),da(f,d,b)):b._strict&&!d&&m(b).unusedTokens.push(f); -// add remaining unparsed input length to the string -m(b).charsLeftOver=i-j,h.length>0&&m(b).unusedInput.push(h), -// clear _12h flag if hour is <= 12 -b._a[de]<=12&&m(b).bigHour===!0&&b._a[de]>0&&(m(b).bigHour=void 0),m(b).parsedDateParts=b._a.slice(0),m(b).meridiem=b._meridiem, -// handle meridiem -b._a[de]=lb(b._locale,b._a[de],b._meridiem),ib(b),db(b)}function lb(a,b,c){var d; -// Fallback -return null==c?b:null!=a.meridiemHour?a.meridiemHour(b,c):null!=a.isPM?(d=a.isPM(c),d&&b<12&&(b+=12),d||12!==b||(b=0),b):b} -// date from string and array of format strings -function mb(a){var b,c,d,e,f;if(0===a._f.length)return m(a).invalidFormat=!0,void(a._d=new Date(NaN));for(e=0;e -// 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset -// +0200, so we adjust the time as needed, to be valid. -// -// Keeping the time actually adds/subtracts (one hour) -// from the actual represented time. That is why we call updateOffset -// a second time. In case it wants us to change the offset again -// _changeInProgress == true case, then we have to adjust, because -// there is no such time in the given timezone. -function Db(b,c){var d,e=this._offset||0;if(!this.isValid())return null!=b?this:NaN;if(null!=b){if("string"==typeof b){if(b=Ab(Xd,b),null===b)return this}else Math.abs(b)<16&&(b=60*b);return!this._isUTC&&c&&(d=Cb(this)),this._offset=b,this._isUTC=!0,null!=d&&this.add(d,"m"),e!==b&&(!c||this._changeInProgress?Tb(this,Ob(b-e,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,a.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?e:Cb(this)}function Eb(a,b){return null!=a?("string"!=typeof a&&(a=-a),this.utcOffset(a,b),this):-this.utcOffset()}function Fb(a){return this.utcOffset(0,a)}function Gb(a){return this._isUTC&&(this.utcOffset(0,a),this._isUTC=!1,a&&this.subtract(Cb(this),"m")),this}function Hb(){if(null!=this._tzm)this.utcOffset(this._tzm);else if("string"==typeof this._i){var a=Ab(Wd,this._i);null!=a?this.utcOffset(a):this.utcOffset(0,!0)}return this}function Ib(a){return!!this.isValid()&&(a=a?sb(a).utcOffset():0,(this.utcOffset()-a)%60===0)}function Jb(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Kb(){if(!p(this._isDSTShifted))return this._isDSTShifted;var a={};if(q(a,this),a=pb(a),a._a){var b=a._isUTC?k(a._a):sb(a._a);this._isDSTShifted=this.isValid()&&v(a._a,b.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}function Lb(){return!!this.isValid()&&!this._isUTC}function Mb(){return!!this.isValid()&&this._isUTC}function Nb(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function Ob(a,b){var c,d,e,g=a, -// matching against regexp is expensive, do it on demand -h=null;// checks for null or undefined -return xb(a)?g={ms:a._milliseconds,d:a._days,M:a._months}:f(a)?(g={},b?g[b]=a:g.milliseconds=a):(h=Ne.exec(a))?(c="-"===h[1]?-1:1,g={y:0,d:u(h[ce])*c,h:u(h[de])*c,m:u(h[ee])*c,s:u(h[fe])*c,ms:u(yb(1e3*h[ge]))*c}):(h=Oe.exec(a))?(c="-"===h[1]?-1:1,g={y:Pb(h[2],c),M:Pb(h[3],c),w:Pb(h[4],c),d:Pb(h[5],c),h:Pb(h[6],c),m:Pb(h[7],c),s:Pb(h[8],c)}):null==g?g={}:"object"==typeof g&&("from"in g||"to"in g)&&(e=Rb(sb(g.from),sb(g.to)),g={},g.ms=e.milliseconds,g.M=e.months),d=new wb(g),xb(a)&&i(a,"_locale")&&(d._locale=a._locale),d}function Pb(a,b){ -// We'd normally use ~~inp for this, but unfortunately it also -// converts floats to ints. -// inp may be undefined, so careful calling replace on it. -var c=a&&parseFloat(a.replace(",",".")); -// apply sign while we're at it -return(isNaN(c)?0:c)*b}function Qb(a,b){var c={milliseconds:0,months:0};return c.months=b.month()-a.month()+12*(b.year()-a.year()),a.clone().add(c.months,"M").isAfter(b)&&--c.months,c.milliseconds=+b-+a.clone().add(c.months,"M"),c}function Rb(a,b){var c;return a.isValid()&&b.isValid()?(b=Bb(b,a),a.isBefore(b)?c=Qb(a,b):(c=Qb(b,a),c.milliseconds=-c.milliseconds,c.months=-c.months),c):{milliseconds:0,months:0}} -// TODO: remove 'name' arg after deprecation is removed -function Sb(a,b){return function(c,d){var e,f; -//invert the arguments, but complain about it -return null===d||isNaN(+d)||(y(b,"moment()."+b+"(period, number) is deprecated. Please use moment()."+b+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),f=c,c=d,d=f),c="string"==typeof c?+c:c,e=Ob(c,d),Tb(this,e,a),this}}function Tb(b,c,d,e){var f=c._milliseconds,g=yb(c._days),h=yb(c._months);b.isValid()&&(e=null==e||e,f&&b._d.setTime(b._d.valueOf()+f*d),g&&Q(b,"Date",P(b,"Date")+g*d),h&&ja(b,P(b,"Month")+h*d),e&&a.updateOffset(b,g||h))}function Ub(a,b){var c=a.diff(b,"days",!0);return c<-6?"sameElse":c<-1?"lastWeek":c<0?"lastDay":c<1?"sameDay":c<2?"nextDay":c<7?"nextWeek":"sameElse"}function Vb(b,c){ -// We want to compare the start of today, vs this. -// Getting start-of-today depends on whether we're local/utc/offset or not. -var d=b||sb(),e=Bb(d,this).startOf("day"),f=a.calendarFormat(this,e)||"sameElse",g=c&&(z(c[f])?c[f].call(this,d):c[f]);return this.format(g||this.localeData().calendar(f,this,sb(d)))}function Wb(){return new r(this)}function Xb(a,b){var c=s(a)?a:sb(a);return!(!this.isValid()||!c.isValid())&&(b=K(p(b)?"millisecond":b),"millisecond"===b?this.valueOf()>c.valueOf():c.valueOf()f&&(b=f),Fc.call(this,a,b,c,d,e))}function Fc(a,b,c,d,e){var f=va(a,b,c,d,e),g=ta(f.year,0,f.dayOfYear);return this.year(g.getUTCFullYear()),this.month(g.getUTCMonth()),this.date(g.getUTCDate()),this} -// MOMENTS -function Gc(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)} -// HELPERS -// MOMENTS -function Hc(a){var b=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")}function Ic(a,b){b[ge]=u(1e3*("0."+a))} -// MOMENTS -function Jc(){return this._isUTC?"UTC":""}function Kc(){return this._isUTC?"Coordinated Universal Time":""}function Lc(a){return sb(1e3*a)}function Mc(){return sb.apply(null,arguments).parseZone()}function Nc(a){return a}function Oc(a,b,c,d){var e=bb(),f=k().set(d,b);return e[c](f,a)}function Pc(a,b,c){if(f(a)&&(b=a,a=void 0),a=a||"",null!=b)return Oc(a,b,c,"month");var d,e=[];for(d=0;d<12;d++)e[d]=Oc(a,d,c,"month");return e} -// () -// (5) -// (fmt, 5) -// (fmt) -// (true) -// (true, 5) -// (true, fmt, 5) -// (true, fmt) -function Qc(a,b,c,d){"boolean"==typeof a?(f(b)&&(c=b,b=void 0),b=b||""):(b=a,c=b,a=!1,f(b)&&(c=b,b=void 0),b=b||"");var e=bb(),g=a?e._week.dow:0;if(null!=c)return Oc(b,(c+g)%7,d,"day");var h,i=[];for(h=0;h<7;h++)i[h]=Oc(b,(h+g)%7,d,"day");return i}function Rc(a,b){return Pc(a,b,"months")}function Sc(a,b){return Pc(a,b,"monthsShort")}function Tc(a,b,c){return Qc(a,b,c,"weekdays")}function Uc(a,b,c){return Qc(a,b,c,"weekdaysShort")}function Vc(a,b,c){return Qc(a,b,c,"weekdaysMin")}function Wc(){var a=this._data;return this._milliseconds=Ze(this._milliseconds),this._days=Ze(this._days),this._months=Ze(this._months),a.milliseconds=Ze(a.milliseconds),a.seconds=Ze(a.seconds),a.minutes=Ze(a.minutes),a.hours=Ze(a.hours),a.months=Ze(a.months),a.years=Ze(a.years),this}function Xc(a,b,c,d){var e=Ob(b,c);return a._milliseconds+=d*e._milliseconds,a._days+=d*e._days,a._months+=d*e._months,a._bubble()} -// supports only 2.0-style add(1, 's') or add(duration) -function Yc(a,b){return Xc(this,a,b,1)} -// supports only 2.0-style subtract(1, 's') or subtract(duration) -function Zc(a,b){return Xc(this,a,b,-1)}function $c(a){return a<0?Math.floor(a):Math.ceil(a)}function _c(){var a,b,c,d,e,f=this._milliseconds,g=this._days,h=this._months,i=this._data; -// if we have a mix of positive and negative values, bubble down first -// check: https://github.com/moment/moment/issues/2166 -// The following code bubbles up values, see the tests for -// examples of what that means. -// convert days to months -// 12 months -> 1 year -return f>=0&&g>=0&&h>=0||f<=0&&g<=0&&h<=0||(f+=864e5*$c(bd(h)+g),g=0,h=0),i.milliseconds=f%1e3,a=t(f/1e3),i.seconds=a%60,b=t(a/60),i.minutes=b%60,c=t(b/60),i.hours=c%24,g+=t(c/24),e=t(ad(g)),h+=e,g-=$c(bd(e)),d=t(h/12),h%=12,i.days=g,i.months=h,i.years=d,this}function ad(a){ -// 400 years have 146097 days (taking into account leap year rules) -// 400 years have 12 months === 4800 -return 4800*a/146097}function bd(a){ -// the reverse of daysToMonths -return 146097*a/4800}function cd(a){var b,c,d=this._milliseconds;if(a=K(a),"month"===a||"year"===a)return b=this._days+d/864e5,c=this._months+ad(b),"month"===a?c:c/12;switch( -// handle milliseconds separately because of floating point math errors (issue #1867) -b=this._days+Math.round(bd(this._months)),a){case"week":return b/7+d/6048e5;case"day":return b+d/864e5;case"hour":return 24*b+d/36e5;case"minute":return 1440*b+d/6e4;case"second":return 86400*b+d/1e3; -// Math.floor prevents floating point math errors here -case"millisecond":return Math.floor(864e5*b)+d;default:throw new Error("Unknown unit "+a)}} -// TODO: Use this.as('ms')? -function dd(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*u(this._months/12)}function ed(a){return function(){return this.as(a)}}function fd(a){return a=K(a),this[a+"s"]()}function gd(a){return function(){return this._data[a]}}function hd(){return t(this.days()/7)} -// helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize -function id(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function jd(a,b,c){var d=Ob(a).abs(),e=of(d.as("s")),f=of(d.as("m")),g=of(d.as("h")),h=of(d.as("d")),i=of(d.as("M")),j=of(d.as("y")),k=e0,k[4]=c,id.apply(null,k)} -// This function allows you to set the rounding function for relative time strings -function kd(a){return void 0===a?of:"function"==typeof a&&(of=a,!0)} -// This function allows you to set a threshold for relative time strings -function ld(a,b){return void 0!==pf[a]&&(void 0===b?pf[a]:(pf[a]=b,!0))}function md(a){var b=this.localeData(),c=jd(this,!a,b);return a&&(c=b.pastFuture(+this,c)),b.postformat(c)}function nd(){ -// for ISO strings we do not use the normal bubbling rules: -// * milliseconds bubble up until they become hours -// * days do not bubble at all -// * months bubble up until they become years -// This is because there is no context-free conversion between hours and days -// (think of clock changes) -// and also not between days and months (28-31 days per month) -var a,b,c,d=qf(this._milliseconds)/1e3,e=qf(this._days),f=qf(this._months); -// 3600 seconds -> 60 minutes -> 1 hour -a=t(d/60),b=t(a/60),d%=60,a%=60, -// 12 months -> 1 year -c=t(f/12),f%=12; -// inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js -var g=c,h=f,i=e,j=b,k=a,l=d,m=this.asSeconds();return m?(m<0?"-":"")+"P"+(g?g+"Y":"")+(h?h+"M":"")+(i?i+"D":"")+(j||k||l?"T":"")+(j?j+"H":"")+(k?k+"M":"")+(l?l+"S":""):"P0D"}var od,pd;pd=Array.prototype.some?Array.prototype.some:function(a){for(var b=Object(this),c=b.length>>>0,d=0;d68?1900:2e3)}; -// MOMENTS -var pe=O("FullYear",!0); -// FORMATTING -U("w",["ww",2],"wo","week"),U("W",["WW",2],"Wo","isoWeek"), -// ALIASES -J("week","w"),J("isoWeek","W"), -// PRIORITIES -M("week",5),M("isoWeek",5), -// PARSING -Z("w",Od),Z("ww",Od,Kd),Z("W",Od),Z("WW",Od,Kd),ca(["w","ww","W","WW"],function(a,b,c,d){b[d.substr(0,1)]=u(a)});var qe={dow:0,// Sunday is the first day of the week. -doy:6}; -// FORMATTING -U("d",0,"do","day"),U("dd",0,0,function(a){return this.localeData().weekdaysMin(this,a)}),U("ddd",0,0,function(a){return this.localeData().weekdaysShort(this,a)}),U("dddd",0,0,function(a){return this.localeData().weekdays(this,a)}),U("e",0,0,"weekday"),U("E",0,0,"isoWeekday"), -// ALIASES -J("day","d"),J("weekday","e"),J("isoWeekday","E"), -// PRIORITY -M("day",11),M("weekday",11),M("isoWeekday",11), -// PARSING -Z("d",Od),Z("e",Od),Z("E",Od),Z("dd",function(a,b){return b.weekdaysMinRegex(a)}),Z("ddd",function(a,b){return b.weekdaysShortRegex(a)}),Z("dddd",function(a,b){return b.weekdaysRegex(a)}),ca(["dd","ddd","dddd"],function(a,b,c,d){var e=c._locale.weekdaysParse(a,d,c._strict); -// if we didn't get a weekday name, mark the date as invalid -null!=e?b.d=e:m(c).invalidWeekday=a}),ca(["d","e","E"],function(a,b,c,d){b[d]=u(a)}); -// LOCALES -var re="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),se="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),te="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),ue=Zd,ve=Zd,we=Zd;U("H",["HH",2],0,"hour"),U("h",["hh",2],0,Ra),U("k",["kk",2],0,Sa),U("hmm",0,0,function(){return""+Ra.apply(this)+T(this.minutes(),2)}),U("hmmss",0,0,function(){return""+Ra.apply(this)+T(this.minutes(),2)+T(this.seconds(),2)}),U("Hmm",0,0,function(){return""+this.hours()+T(this.minutes(),2)}),U("Hmmss",0,0,function(){return""+this.hours()+T(this.minutes(),2)+T(this.seconds(),2)}),Ta("a",!0),Ta("A",!1), -// ALIASES -J("hour","h"), -// PRIORITY -M("hour",13),Z("a",Ua),Z("A",Ua),Z("H",Od),Z("h",Od),Z("HH",Od,Kd),Z("hh",Od,Kd),Z("hmm",Pd),Z("hmmss",Qd),Z("Hmm",Pd),Z("Hmmss",Qd),ba(["H","HH"],de),ba(["a","A"],function(a,b,c){c._isPm=c._locale.isPM(a),c._meridiem=a}),ba(["h","hh"],function(a,b,c){b[de]=u(a),m(c).bigHour=!0}),ba("hmm",function(a,b,c){var d=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d)),m(c).bigHour=!0}),ba("hmmss",function(a,b,c){var d=a.length-4,e=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d,2)),b[fe]=u(a.substr(e)),m(c).bigHour=!0}),ba("Hmm",function(a,b,c){var d=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d))}),ba("Hmmss",function(a,b,c){var d=a.length-4,e=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d,2)),b[fe]=u(a.substr(e))});var xe,ye=/[ap]\.?m?\.?/i,ze=O("Hours",!0),Ae={calendar:xd,longDateFormat:yd,invalidDate:zd,ordinal:Ad,ordinalParse:Bd,relativeTime:Cd,months:le,monthsShort:me,week:qe,weekdays:re,weekdaysMin:te,weekdaysShort:se,meridiemParse:ye},Be={},Ce={},De=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Ee=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Fe=/Z|[+-]\d\d(?::?\d\d)?/,Ge=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/], -// YYYYMM is NOT allowed by the standard -["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],He=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Ie=/^\/?Date\((\-?\d+)/i;a.createFromInputFallback=x("value provided is not in a recognized ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(a){a._d=new Date(a._i+(a._useUTC?" UTC":""))}), -// constant that refers to the ISO standard -a.ISO_8601=function(){};var Je=x("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var a=sb.apply(null,arguments);return this.isValid()&&a.isValid()?athis?this:a:o()}),Le=function(){return Date.now?Date.now():+new Date};zb("Z",":"),zb("ZZ",""), -// PARSING -Z("Z",Xd),Z("ZZ",Xd),ba(["Z","ZZ"],function(a,b,c){c._useUTC=!0,c._tzm=Ab(Xd,a)}); -// HELPERS -// timezone chunker -// '+10:00' > ['10', '00'] -// '-1530' > ['-15', '30'] -var Me=/([\+\-]|\d\d)/gi; -// HOOKS -// This function will be called whenever a moment is mutated. -// It is intended to keep the offset in sync with the timezone. -a.updateOffset=function(){}; -// ASP.NET json date format regex -var Ne=/^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,Oe=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;Ob.fn=wb.prototype;var Pe=Sb(1,"add"),Qe=Sb(-1,"subtract");a.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",a.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Re=x("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(a){return void 0===a?this.localeData():this.locale(a)}); -// FORMATTING -U(0,["gg",2],0,function(){return this.weekYear()%100}),U(0,["GG",2],0,function(){return this.isoWeekYear()%100}),zc("gggg","weekYear"),zc("ggggg","weekYear"),zc("GGGG","isoWeekYear"),zc("GGGGG","isoWeekYear"), -// ALIASES -J("weekYear","gg"),J("isoWeekYear","GG"), -// PRIORITY -M("weekYear",1),M("isoWeekYear",1), -// PARSING -Z("G",Vd),Z("g",Vd),Z("GG",Od,Kd),Z("gg",Od,Kd),Z("GGGG",Sd,Md),Z("gggg",Sd,Md),Z("GGGGG",Td,Nd),Z("ggggg",Td,Nd),ca(["gggg","ggggg","GGGG","GGGGG"],function(a,b,c,d){b[d.substr(0,2)]=u(a)}),ca(["gg","GG"],function(b,c,d,e){c[e]=a.parseTwoDigitYear(b)}), -// FORMATTING -U("Q",0,"Qo","quarter"), -// ALIASES -J("quarter","Q"), -// PRIORITY -M("quarter",7), -// PARSING -Z("Q",Jd),ba("Q",function(a,b){b[be]=3*(u(a)-1)}), -// FORMATTING -U("D",["DD",2],"Do","date"), -// ALIASES -J("date","D"), -// PRIOROITY -M("date",9), -// PARSING -Z("D",Od),Z("DD",Od,Kd),Z("Do",function(a,b){return a?b._ordinalParse:b._ordinalParseLenient}),ba(["D","DD"],ce),ba("Do",function(a,b){b[ce]=u(a.match(Od)[0],10)}); -// MOMENTS -var Se=O("Date",!0); -// FORMATTING -U("DDD",["DDDD",3],"DDDo","dayOfYear"), -// ALIASES -J("dayOfYear","DDD"), -// PRIORITY -M("dayOfYear",4), -// PARSING -Z("DDD",Rd),Z("DDDD",Ld),ba(["DDD","DDDD"],function(a,b,c){c._dayOfYear=u(a)}), -// FORMATTING -U("m",["mm",2],0,"minute"), -// ALIASES -J("minute","m"), -// PRIORITY -M("minute",14), -// PARSING -Z("m",Od),Z("mm",Od,Kd),ba(["m","mm"],ee); -// MOMENTS -var Te=O("Minutes",!1); -// FORMATTING -U("s",["ss",2],0,"second"), -// ALIASES -J("second","s"), -// PRIORITY -M("second",15), -// PARSING -Z("s",Od),Z("ss",Od,Kd),ba(["s","ss"],fe); -// MOMENTS -var Ue=O("Seconds",!1); -// FORMATTING -U("S",0,0,function(){return~~(this.millisecond()/100)}),U(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),U(0,["SSS",3],0,"millisecond"),U(0,["SSSS",4],0,function(){return 10*this.millisecond()}),U(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),U(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),U(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),U(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),U(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}), -// ALIASES -J("millisecond","ms"), -// PRIORITY -M("millisecond",16), -// PARSING -Z("S",Rd,Jd),Z("SS",Rd,Kd),Z("SSS",Rd,Ld);var Ve;for(Ve="SSSS";Ve.length<=9;Ve+="S")Z(Ve,Ud);for(Ve="S";Ve.length<=9;Ve+="S")ba(Ve,Ic); -// MOMENTS -var We=O("Milliseconds",!1); -// FORMATTING -U("z",0,0,"zoneAbbr"),U("zz",0,0,"zoneName");var Xe=r.prototype;Xe.add=Pe,Xe.calendar=Vb,Xe.clone=Wb,Xe.diff=bc,Xe.endOf=oc,Xe.format=gc,Xe.from=hc,Xe.fromNow=ic,Xe.to=jc,Xe.toNow=kc,Xe.get=R,Xe.invalidAt=xc,Xe.isAfter=Xb,Xe.isBefore=Yb,Xe.isBetween=Zb,Xe.isSame=$b,Xe.isSameOrAfter=_b,Xe.isSameOrBefore=ac,Xe.isValid=vc,Xe.lang=Re,Xe.locale=lc,Xe.localeData=mc,Xe.max=Ke,Xe.min=Je,Xe.parsingFlags=wc,Xe.set=S,Xe.startOf=nc,Xe.subtract=Qe,Xe.toArray=sc,Xe.toObject=tc,Xe.toDate=rc,Xe.toISOString=ec,Xe.inspect=fc,Xe.toJSON=uc,Xe.toString=dc,Xe.unix=qc,Xe.valueOf=pc,Xe.creationData=yc, -// Year -Xe.year=pe,Xe.isLeapYear=ra, -// Week Year -Xe.weekYear=Ac,Xe.isoWeekYear=Bc, -// Quarter -Xe.quarter=Xe.quarters=Gc, -// Month -Xe.month=ka,Xe.daysInMonth=la, -// Week -Xe.week=Xe.weeks=Ba,Xe.isoWeek=Xe.isoWeeks=Ca,Xe.weeksInYear=Dc,Xe.isoWeeksInYear=Cc, -// Day -Xe.date=Se,Xe.day=Xe.days=Ka,Xe.weekday=La,Xe.isoWeekday=Ma,Xe.dayOfYear=Hc, -// Hour -Xe.hour=Xe.hours=ze, -// Minute -Xe.minute=Xe.minutes=Te, -// Second -Xe.second=Xe.seconds=Ue, -// Millisecond -Xe.millisecond=Xe.milliseconds=We, -// Offset -Xe.utcOffset=Db,Xe.utc=Fb,Xe.local=Gb,Xe.parseZone=Hb,Xe.hasAlignedHourOffset=Ib,Xe.isDST=Jb,Xe.isLocal=Lb,Xe.isUtcOffset=Mb,Xe.isUtc=Nb,Xe.isUTC=Nb, -// Timezone -Xe.zoneAbbr=Jc,Xe.zoneName=Kc, -// Deprecations -Xe.dates=x("dates accessor is deprecated. Use date instead.",Se),Xe.months=x("months accessor is deprecated. Use month instead",ka),Xe.years=x("years accessor is deprecated. Use year instead",pe),Xe.zone=x("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",Eb),Xe.isDSTShifted=x("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Kb);var Ye=C.prototype;Ye.calendar=D,Ye.longDateFormat=E,Ye.invalidDate=F,Ye.ordinal=G,Ye.preparse=Nc,Ye.postformat=Nc,Ye.relativeTime=H,Ye.pastFuture=I,Ye.set=A, -// Month -Ye.months=fa,Ye.monthsShort=ga,Ye.monthsParse=ia,Ye.monthsRegex=na,Ye.monthsShortRegex=ma, -// Week -Ye.week=ya,Ye.firstDayOfYear=Aa,Ye.firstDayOfWeek=za, -// Day of Week -Ye.weekdays=Fa,Ye.weekdaysMin=Ha,Ye.weekdaysShort=Ga,Ye.weekdaysParse=Ja,Ye.weekdaysRegex=Na,Ye.weekdaysShortRegex=Oa,Ye.weekdaysMinRegex=Pa, -// Hours -Ye.isPM=Va,Ye.meridiem=Wa,$a("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(a){var b=a%10,c=1===u(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}), -// Side effect imports -a.lang=x("moment.lang is deprecated. Use moment.locale instead.",$a),a.langData=x("moment.langData is deprecated. Use moment.localeData instead.",bb);var Ze=Math.abs,$e=ed("ms"),_e=ed("s"),af=ed("m"),bf=ed("h"),cf=ed("d"),df=ed("w"),ef=ed("M"),ff=ed("y"),gf=gd("milliseconds"),hf=gd("seconds"),jf=gd("minutes"),kf=gd("hours"),lf=gd("days"),mf=gd("months"),nf=gd("years"),of=Math.round,pf={s:45,// seconds to minute -m:45,// minutes to hour -h:22,// hours to day -d:26,// days to month -M:11},qf=Math.abs,rf=wb.prototype; -// Deprecations -// Side effect imports -// FORMATTING -// PARSING -// Side effect imports -return rf.abs=Wc,rf.add=Yc,rf.subtract=Zc,rf.as=cd,rf.asMilliseconds=$e,rf.asSeconds=_e,rf.asMinutes=af,rf.asHours=bf,rf.asDays=cf,rf.asWeeks=df,rf.asMonths=ef,rf.asYears=ff,rf.valueOf=dd,rf._bubble=_c,rf.get=fd,rf.milliseconds=gf,rf.seconds=hf,rf.minutes=jf,rf.hours=kf,rf.days=lf,rf.weeks=hd,rf.months=mf,rf.years=nf,rf.humanize=md,rf.toISOString=nd,rf.toString=nd,rf.toJSON=nd,rf.locale=lc,rf.localeData=mc,rf.toIsoString=x("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",nd),rf.lang=Re,U("X",0,0,"unix"),U("x",0,0,"valueOf"),Z("x",Vd),Z("X",Yd),ba("X",function(a,b,c){c._d=new Date(1e3*parseFloat(a,10))}),ba("x",function(a,b,c){c._d=new Date(u(a))}),a.version="2.17.1",b(sb),a.fn=Xe,a.min=ub,a.max=vb,a.now=Le,a.utc=k,a.unix=Lc,a.months=Rc,a.isDate=g,a.locale=$a,a.invalid=o,a.duration=Ob,a.isMoment=s,a.weekdays=Tc,a.parseZone=Mc,a.localeData=bb,a.isDuration=xb,a.monthsShort=Sc,a.weekdaysMin=Vc,a.defineLocale=_a,a.updateLocale=ab,a.locales=cb,a.weekdaysShort=Uc,a.normalizeUnits=K,a.relativeTimeRounding=kd,a.relativeTimeThreshold=ld,a.calendarFormat=Ub,a.prototype=Xe,a}); \ No newline at end of file diff --git a/assets/static/managed/js/2.18.1-moment.min.js b/assets/static/managed/js/2.18.1-moment.min.js new file mode 100644 index 000000000..770f8bc54 --- /dev/null +++ b/assets/static/managed/js/2.18.1-moment.min.js @@ -0,0 +1,7 @@ +//! moment.js +//! version : 2.18.1 +//! authors : Tim Wood, Iskren Chernev, Moment.js contributors +//! license : MIT +//! momentjs.com +!function(a,b){"object"==typeof exports&&"undefined"!=typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):a.moment=b()}(this,function(){"use strict";function a(){return sd.apply(null,arguments)}function b(a){sd=a}function c(a){return a instanceof Array||"[object Array]"===Object.prototype.toString.call(a)}function d(a){return null!=a&&"[object Object]"===Object.prototype.toString.call(a)}function e(a){var b;for(b in a)return!1;return!0}function f(a){return void 0===a}function g(a){return"number"==typeof a||"[object Number]"===Object.prototype.toString.call(a)}function h(a){return a instanceof Date||"[object Date]"===Object.prototype.toString.call(a)}function i(a,b){var c,d=[];for(c=0;c0)for(c=0;c0?"future":"past"];return z(c)?c(b):c.replace(/%s/i,b)}function J(a,b){var c=a.toLowerCase();Hd[c]=Hd[c+"s"]=Hd[b]=a}function K(a){return"string"==typeof a?Hd[a]||Hd[a.toLowerCase()]:void 0}function L(a){var b,c,d={};for(c in a)j(a,c)&&(b=K(c),b&&(d[b]=a[c]));return d}function M(a,b){Id[a]=b}function N(a){var b=[];for(var c in a)b.push({unit:c,priority:Id[c]});return b.sort(function(a,b){return a.priority-b.priority}),b}function O(b,c){return function(d){return null!=d?(Q(this,b,d),a.updateOffset(this,c),this):P(this,b)}}function P(a,b){return a.isValid()?a._d["get"+(a._isUTC?"UTC":"")+b]():NaN}function Q(a,b,c){a.isValid()&&a._d["set"+(a._isUTC?"UTC":"")+b](c)}function R(a){return a=K(a),z(this[a])?this[a]():this}function S(a,b){if("object"==typeof a){a=L(a);for(var c=N(a),d=0;d=0;return(f?c?"+":"":"-")+Math.pow(10,Math.max(0,e)).toString().substr(1)+d}function U(a,b,c,d){var e=d;"string"==typeof d&&(e=function(){return this[d]()}),a&&(Md[a]=e),b&&(Md[b[0]]=function(){return T(e.apply(this,arguments),b[1],b[2])}),c&&(Md[c]=function(){return this.localeData().ordinal(e.apply(this,arguments),a)})}function V(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function W(a){var b,c,d=a.match(Jd);for(b=0,c=d.length;b=0&&Kd.test(a);)a=a.replace(Kd,c),Kd.lastIndex=0,d-=1;return a}function Z(a,b,c){ce[a]=z(b)?b:function(a,d){return a&&c?c:b}}function $(a,b){return j(ce,a)?ce[a](b._strict,b._locale):new RegExp(_(a))}function _(a){return aa(a.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e}))}function aa(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function ba(a,b){var c,d=b;for("string"==typeof a&&(a=[a]),g(b)&&(d=function(a,c){c[b]=u(a)}),c=0;c=0&&isFinite(h.getFullYear())&&h.setFullYear(a),h}function ta(a){var b=new Date(Date.UTC.apply(null,arguments));return a<100&&a>=0&&isFinite(b.getUTCFullYear())&&b.setUTCFullYear(a),b}function ua(a,b,c){var d=7+b-c,e=(7+ta(a,0,d).getUTCDay()-b)%7;return-e+d-1}function va(a,b,c,d,e){var f,g,h=(7+c-d)%7,i=ua(a,d,e),j=1+7*(b-1)+h+i;return j<=0?(f=a-1,g=pa(f)+j):j>pa(a)?(f=a+1,g=j-pa(a)):(f=a,g=j),{year:f,dayOfYear:g}}function wa(a,b,c){var d,e,f=ua(a.year(),b,c),g=Math.floor((a.dayOfYear()-f-1)/7)+1;return g<1?(e=a.year()-1,d=g+xa(e,b,c)):g>xa(a.year(),b,c)?(d=g-xa(a.year(),b,c),e=a.year()+1):(e=a.year(),d=g),{week:d,year:e}}function xa(a,b,c){var d=ua(a,b,c),e=ua(a+1,b,c);return(pa(a)-d+e)/7}function ya(a){return wa(a,this._week.dow,this._week.doy).week}function za(){return this._week.dow}function Aa(){return this._week.doy}function Ba(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")}function Ca(a){var b=wa(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")}function Da(a,b){return"string"!=typeof a?a:isNaN(a)?(a=b.weekdaysParse(a),"number"==typeof a?a:null):parseInt(a,10)}function Ea(a,b){return"string"==typeof a?b.weekdaysParse(a)%7||7:isNaN(a)?null:a}function Fa(a,b){return a?c(this._weekdays)?this._weekdays[a.day()]:this._weekdays[this._weekdays.isFormat.test(b)?"format":"standalone"][a.day()]:c(this._weekdays)?this._weekdays:this._weekdays.standalone}function Ga(a){return a?this._weekdaysShort[a.day()]:this._weekdaysShort}function Ha(a){return a?this._weekdaysMin[a.day()]:this._weekdaysMin}function Ia(a,b,c){var d,e,f,g=a.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],d=0;d<7;++d)f=l([2e3,1]).day(d),this._minWeekdaysParse[d]=this.weekdaysMin(f,"").toLocaleLowerCase(),this._shortWeekdaysParse[d]=this.weekdaysShort(f,"").toLocaleLowerCase(),this._weekdaysParse[d]=this.weekdays(f,"").toLocaleLowerCase();return c?"dddd"===b?(e=ne.call(this._weekdaysParse,g),e!==-1?e:null):"ddd"===b?(e=ne.call(this._shortWeekdaysParse,g),e!==-1?e:null):(e=ne.call(this._minWeekdaysParse,g),e!==-1?e:null):"dddd"===b?(e=ne.call(this._weekdaysParse,g),e!==-1?e:(e=ne.call(this._shortWeekdaysParse,g),e!==-1?e:(e=ne.call(this._minWeekdaysParse,g),e!==-1?e:null))):"ddd"===b?(e=ne.call(this._shortWeekdaysParse,g),e!==-1?e:(e=ne.call(this._weekdaysParse,g),e!==-1?e:(e=ne.call(this._minWeekdaysParse,g),e!==-1?e:null))):(e=ne.call(this._minWeekdaysParse,g),e!==-1?e:(e=ne.call(this._weekdaysParse,g),e!==-1?e:(e=ne.call(this._shortWeekdaysParse,g),e!==-1?e:null)))}function Ja(a,b,c){var d,e,f;if(this._weekdaysParseExact)return Ia.call(this,a,b,c);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),d=0;d<7;d++){if(e=l([2e3,1]).day(d),c&&!this._fullWeekdaysParse[d]&&(this._fullWeekdaysParse[d]=new RegExp("^"+this.weekdays(e,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[d]=new RegExp("^"+this.weekdaysShort(e,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[d]=new RegExp("^"+this.weekdaysMin(e,"").replace(".",".?")+"$","i")),this._weekdaysParse[d]||(f="^"+this.weekdays(e,"")+"|^"+this.weekdaysShort(e,"")+"|^"+this.weekdaysMin(e,""),this._weekdaysParse[d]=new RegExp(f.replace(".",""),"i")),c&&"dddd"===b&&this._fullWeekdaysParse[d].test(a))return d;if(c&&"ddd"===b&&this._shortWeekdaysParse[d].test(a))return d;if(c&&"dd"===b&&this._minWeekdaysParse[d].test(a))return d;if(!c&&this._weekdaysParse[d].test(a))return d}}function Ka(a){if(!this.isValid())return null!=a?this:NaN;var b=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=a?(a=Da(a,this.localeData()),this.add(a-b,"d")):b}function La(a){if(!this.isValid())return null!=a?this:NaN;var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")}function Ma(a){if(!this.isValid())return null!=a?this:NaN;if(null!=a){var b=Ea(a,this.localeData());return this.day(this.day()%7?b:b-7)}return this.day()||7}function Na(a){return this._weekdaysParseExact?(j(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysStrictRegex:this._weekdaysRegex):(j(this,"_weekdaysRegex")||(this._weekdaysRegex=ye),this._weekdaysStrictRegex&&a?this._weekdaysStrictRegex:this._weekdaysRegex)}function Oa(a){return this._weekdaysParseExact?(j(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(j(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ze),this._weekdaysShortStrictRegex&&a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Pa(a){return this._weekdaysParseExact?(j(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(j(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ae),this._weekdaysMinStrictRegex&&a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Qa(){function a(a,b){return b.length-a.length}var b,c,d,e,f,g=[],h=[],i=[],j=[];for(b=0;b<7;b++)c=l([2e3,1]).day(b),d=this.weekdaysMin(c,""),e=this.weekdaysShort(c,""),f=this.weekdays(c,""),g.push(d),h.push(e),i.push(f),j.push(d),j.push(e),j.push(f);for(g.sort(a),h.sort(a),i.sort(a),j.sort(a),b=0;b<7;b++)h[b]=aa(h[b]),i[b]=aa(i[b]),j[b]=aa(j[b]);this._weekdaysRegex=new RegExp("^("+j.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+i.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+h.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+g.join("|")+")","i")}function Ra(){return this.hours()%12||12}function Sa(){return this.hours()||24}function Ta(a,b){U(a,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),b)})}function Ua(a,b){return b._meridiemParse}function Va(a){return"p"===(a+"").toLowerCase().charAt(0)}function Wa(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"}function Xa(a){return a?a.toLowerCase().replace("_","-"):a}function Ya(a){for(var b,c,d,e,f=0;f0;){if(d=Za(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&v(e,c,!0)>=b-1)break;b--}f++}return null}function Za(a){var b=null;if(!Fe[a]&&"undefined"!=typeof module&&module&&module.exports)try{b=Be._abbr,require("./locale/"+a),$a(b)}catch(a){}return Fe[a]}function $a(a,b){var c;return a&&(c=f(b)?bb(a):_a(a,b),c&&(Be=c)),Be._abbr}function _a(a,b){if(null!==b){var c=Ee;if(b.abbr=a,null!=Fe[a])y("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),c=Fe[a]._config;else if(null!=b.parentLocale){if(null==Fe[b.parentLocale])return Ge[b.parentLocale]||(Ge[b.parentLocale]=[]),Ge[b.parentLocale].push({name:a,config:b}),null;c=Fe[b.parentLocale]._config}return Fe[a]=new C(B(c,b)),Ge[a]&&Ge[a].forEach(function(a){_a(a.name,a.config)}),$a(a),Fe[a]}return delete Fe[a],null}function ab(a,b){if(null!=b){var c,d=Ee;null!=Fe[a]&&(d=Fe[a]._config),b=B(d,b),c=new C(b),c.parentLocale=Fe[a],Fe[a]=c,$a(a)}else null!=Fe[a]&&(null!=Fe[a].parentLocale?Fe[a]=Fe[a].parentLocale:null!=Fe[a]&&delete Fe[a]);return Fe[a]}function bb(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return Be;if(!c(a)){if(b=Za(a))return b;a=[a]}return Ya(a)}function cb(){return Ad(Fe)}function db(a){var b,c=a._a;return c&&n(a).overflow===-2&&(b=c[fe]<0||c[fe]>11?fe:c[ge]<1||c[ge]>ea(c[ee],c[fe])?ge:c[he]<0||c[he]>24||24===c[he]&&(0!==c[ie]||0!==c[je]||0!==c[ke])?he:c[ie]<0||c[ie]>59?ie:c[je]<0||c[je]>59?je:c[ke]<0||c[ke]>999?ke:-1,n(a)._overflowDayOfYear&&(bge)&&(b=ge),n(a)._overflowWeeks&&b===-1&&(b=le),n(a)._overflowWeekday&&b===-1&&(b=me),n(a).overflow=b),a}function eb(a){var b,c,d,e,f,g,h=a._i,i=He.exec(h)||Ie.exec(h);if(i){for(n(a).iso=!0,b=0,c=Ke.length;b10?"YYYY ":"YY "),f="HH:mm"+(c[4]?":ss":""),c[1]){var l=new Date(c[2]),m=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"][l.getDay()];if(c[1].substr(0,3)!==m)return n(a).weekdayMismatch=!0,void(a._isValid=!1)}switch(c[5].length){case 2:0===i?h=" +0000":(i=k.indexOf(c[5][1].toUpperCase())-12,h=(i<0?" -":" +")+(""+i).replace(/^-?/,"0").match(/..$/)[0]+"00");break;case 4:h=j[c[5]];break;default:h=j[" GMT"]}c[5]=h,a._i=c.splice(1).join(""),g=" ZZ",a._f=d+e+f+g,lb(a),n(a).rfc2822=!0}else a._isValid=!1}function gb(b){var c=Me.exec(b._i);return null!==c?void(b._d=new Date(+c[1])):(eb(b),void(b._isValid===!1&&(delete b._isValid,fb(b),b._isValid===!1&&(delete b._isValid,a.createFromInputFallback(b)))))}function hb(a,b,c){return null!=a?a:null!=b?b:c}function ib(b){var c=new Date(a.now());return b._useUTC?[c.getUTCFullYear(),c.getUTCMonth(),c.getUTCDate()]:[c.getFullYear(),c.getMonth(),c.getDate()]}function jb(a){var b,c,d,e,f=[];if(!a._d){for(d=ib(a),a._w&&null==a._a[ge]&&null==a._a[fe]&&kb(a),null!=a._dayOfYear&&(e=hb(a._a[ee],d[ee]),(a._dayOfYear>pa(e)||0===a._dayOfYear)&&(n(a)._overflowDayOfYear=!0),c=ta(e,0,a._dayOfYear),a._a[fe]=c.getUTCMonth(),a._a[ge]=c.getUTCDate()),b=0;b<3&&null==a._a[b];++b)a._a[b]=f[b]=d[b];for(;b<7;b++)a._a[b]=f[b]=null==a._a[b]?2===b?1:0:a._a[b];24===a._a[he]&&0===a._a[ie]&&0===a._a[je]&&0===a._a[ke]&&(a._nextDay=!0,a._a[he]=0),a._d=(a._useUTC?ta:sa).apply(null,f),null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm),a._nextDay&&(a._a[he]=24)}}function kb(a){var b,c,d,e,f,g,h,i;if(b=a._w,null!=b.GG||null!=b.W||null!=b.E)f=1,g=4,c=hb(b.GG,a._a[ee],wa(tb(),1,4).year),d=hb(b.W,1),e=hb(b.E,1),(e<1||e>7)&&(i=!0);else{f=a._locale._week.dow,g=a._locale._week.doy;var j=wa(tb(),f,g);c=hb(b.gg,a._a[ee],j.year),d=hb(b.w,j.week),null!=b.d?(e=b.d,(e<0||e>6)&&(i=!0)):null!=b.e?(e=b.e+f,(b.e<0||b.e>6)&&(i=!0)):e=f}d<1||d>xa(c,f,g)?n(a)._overflowWeeks=!0:null!=i?n(a)._overflowWeekday=!0:(h=va(c,d,e,f,g),a._a[ee]=h.year,a._dayOfYear=h.dayOfYear)}function lb(b){if(b._f===a.ISO_8601)return void eb(b);if(b._f===a.RFC_2822)return void fb(b);b._a=[],n(b).empty=!0;var c,d,e,f,g,h=""+b._i,i=h.length,j=0;for(e=Y(b._f,b._locale).match(Jd)||[],c=0;c0&&n(b).unusedInput.push(g),h=h.slice(h.indexOf(d)+d.length),j+=d.length),Md[f]?(d?n(b).empty=!1:n(b).unusedTokens.push(f),da(f,d,b)):b._strict&&!d&&n(b).unusedTokens.push(f);n(b).charsLeftOver=i-j,h.length>0&&n(b).unusedInput.push(h),b._a[he]<=12&&n(b).bigHour===!0&&b._a[he]>0&&(n(b).bigHour=void 0),n(b).parsedDateParts=b._a.slice(0),n(b).meridiem=b._meridiem,b._a[he]=mb(b._locale,b._a[he],b._meridiem),jb(b),db(b)}function mb(a,b,c){var d;return null==c?b:null!=a.meridiemHour?a.meridiemHour(b,c):null!=a.isPM?(d=a.isPM(c),d&&b<12&&(b+=12),d||12!==b||(b=0),b):b}function nb(a){var b,c,d,e,f;if(0===a._f.length)return n(a).invalidFormat=!0,void(a._d=new Date(NaN));for(e=0;ethis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Ob(){if(!f(this._isDSTShifted))return this._isDSTShifted;var a={};if(q(a,this),a=qb(a),a._a){var b=a._isUTC?l(a._a):tb(a._a);this._isDSTShifted=this.isValid()&&v(a._a,b.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}function Pb(){return!!this.isValid()&&!this._isUTC}function Qb(){return!!this.isValid()&&this._isUTC}function Rb(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function Sb(a,b){var c,d,e,f=a,h=null;return Bb(a)?f={ms:a._milliseconds,d:a._days,M:a._months}:g(a)?(f={},b?f[b]=a:f.milliseconds=a):(h=Te.exec(a))?(c="-"===h[1]?-1:1,f={y:0,d:u(h[ge])*c,h:u(h[he])*c,m:u(h[ie])*c,s:u(h[je])*c,ms:u(Cb(1e3*h[ke]))*c}):(h=Ue.exec(a))?(c="-"===h[1]?-1:1,f={y:Tb(h[2],c),M:Tb(h[3],c),w:Tb(h[4],c),d:Tb(h[5],c),h:Tb(h[6],c),m:Tb(h[7],c),s:Tb(h[8],c)}):null==f?f={}:"object"==typeof f&&("from"in f||"to"in f)&&(e=Vb(tb(f.from),tb(f.to)),f={},f.ms=e.milliseconds,f.M=e.months),d=new Ab(f),Bb(a)&&j(a,"_locale")&&(d._locale=a._locale),d}function Tb(a,b){var c=a&&parseFloat(a.replace(",","."));return(isNaN(c)?0:c)*b}function Ub(a,b){var c={milliseconds:0,months:0};return c.months=b.month()-a.month()+12*(b.year()-a.year()),a.clone().add(c.months,"M").isAfter(b)&&--c.months,c.milliseconds=+b-+a.clone().add(c.months,"M"),c}function Vb(a,b){var c;return a.isValid()&&b.isValid()?(b=Fb(b,a),a.isBefore(b)?c=Ub(a,b):(c=Ub(b,a),c.milliseconds=-c.milliseconds,c.months=-c.months),c):{milliseconds:0,months:0}}function Wb(a,b){return function(c,d){var e,f;return null===d||isNaN(+d)||(y(b,"moment()."+b+"(period, number) is deprecated. Please use moment()."+b+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),f=c,c=d,d=f),c="string"==typeof c?+c:c,e=Sb(c,d),Xb(this,e,a),this}}function Xb(b,c,d,e){var f=c._milliseconds,g=Cb(c._days),h=Cb(c._months);b.isValid()&&(e=null==e||e,f&&b._d.setTime(b._d.valueOf()+f*d),g&&Q(b,"Date",P(b,"Date")+g*d),h&&ja(b,P(b,"Month")+h*d),e&&a.updateOffset(b,g||h))}function Yb(a,b){var c=a.diff(b,"days",!0);return c<-6?"sameElse":c<-1?"lastWeek":c<0?"lastDay":c<1?"sameDay":c<2?"nextDay":c<7?"nextWeek":"sameElse"}function Zb(b,c){var d=b||tb(),e=Fb(d,this).startOf("day"),f=a.calendarFormat(this,e)||"sameElse",g=c&&(z(c[f])?c[f].call(this,d):c[f]);return this.format(g||this.localeData().calendar(f,this,tb(d)))}function $b(){return new r(this)}function _b(a,b){var c=s(a)?a:tb(a);return!(!this.isValid()||!c.isValid())&&(b=K(f(b)?"millisecond":b),"millisecond"===b?this.valueOf()>c.valueOf():c.valueOf()9999?X(a,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):z(Date.prototype.toISOString)?this.toDate().toISOString():X(a,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]")}function jc(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var a="moment",b="";this.isLocal()||(a=0===this.utcOffset()?"moment.utc":"moment.parseZone",b="Z");var c="["+a+'("]',d=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",e="-MM-DD[T]HH:mm:ss.SSS",f=b+'[")]';return this.format(c+d+e+f)}function kc(b){b||(b=this.isUtc()?a.defaultFormatUtc:a.defaultFormat);var c=X(this,b);return this.localeData().postformat(c)}function lc(a,b){return this.isValid()&&(s(a)&&a.isValid()||tb(a).isValid())?Sb({to:this,from:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()}function mc(a){return this.from(tb(),a)}function nc(a,b){return this.isValid()&&(s(a)&&a.isValid()||tb(a).isValid())?Sb({from:this,to:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()}function oc(a){return this.to(tb(),a)}function pc(a){var b;return void 0===a?this._locale._abbr:(b=bb(a),null!=b&&(this._locale=b),this)}function qc(){return this._locale}function rc(a){switch(a=K(a)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":case"date":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===a&&this.weekday(0),"isoWeek"===a&&this.isoWeekday(1),"quarter"===a&&this.month(3*Math.floor(this.month()/3)),this}function sc(a){return a=K(a),void 0===a||"millisecond"===a?this:("date"===a&&(a="day"),this.startOf(a).add(1,"isoWeek"===a?"week":a).subtract(1,"ms"))}function tc(){return this._d.valueOf()-6e4*(this._offset||0)}function uc(){return Math.floor(this.valueOf()/1e3)}function vc(){return new Date(this.valueOf())}function wc(){var a=this;return[a.year(),a.month(),a.date(),a.hour(),a.minute(),a.second(),a.millisecond()]}function xc(){var a=this;return{years:a.year(),months:a.month(),date:a.date(),hours:a.hours(),minutes:a.minutes(),seconds:a.seconds(),milliseconds:a.milliseconds()}}function yc(){return this.isValid()?this.toISOString():null}function zc(){return o(this)}function Ac(){ +return k({},n(this))}function Bc(){return n(this).overflow}function Cc(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Dc(a,b){U(0,[a,a.length],0,b)}function Ec(a){return Ic.call(this,a,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)}function Fc(a){return Ic.call(this,a,this.isoWeek(),this.isoWeekday(),1,4)}function Gc(){return xa(this.year(),1,4)}function Hc(){var a=this.localeData()._week;return xa(this.year(),a.dow,a.doy)}function Ic(a,b,c,d,e){var f;return null==a?wa(this,d,e).year:(f=xa(a,d,e),b>f&&(b=f),Jc.call(this,a,b,c,d,e))}function Jc(a,b,c,d,e){var f=va(a,b,c,d,e),g=ta(f.year,0,f.dayOfYear);return this.year(g.getUTCFullYear()),this.month(g.getUTCMonth()),this.date(g.getUTCDate()),this}function Kc(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)}function Lc(a){var b=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")}function Mc(a,b){b[ke]=u(1e3*("0."+a))}function Nc(){return this._isUTC?"UTC":""}function Oc(){return this._isUTC?"Coordinated Universal Time":""}function Pc(a){return tb(1e3*a)}function Qc(){return tb.apply(null,arguments).parseZone()}function Rc(a){return a}function Sc(a,b,c,d){var e=bb(),f=l().set(d,b);return e[c](f,a)}function Tc(a,b,c){if(g(a)&&(b=a,a=void 0),a=a||"",null!=b)return Sc(a,b,c,"month");var d,e=[];for(d=0;d<12;d++)e[d]=Sc(a,d,c,"month");return e}function Uc(a,b,c,d){"boolean"==typeof a?(g(b)&&(c=b,b=void 0),b=b||""):(b=a,c=b,a=!1,g(b)&&(c=b,b=void 0),b=b||"");var e=bb(),f=a?e._week.dow:0;if(null!=c)return Sc(b,(c+f)%7,d,"day");var h,i=[];for(h=0;h<7;h++)i[h]=Sc(b,(h+f)%7,d,"day");return i}function Vc(a,b){return Tc(a,b,"months")}function Wc(a,b){return Tc(a,b,"monthsShort")}function Xc(a,b,c){return Uc(a,b,c,"weekdays")}function Yc(a,b,c){return Uc(a,b,c,"weekdaysShort")}function Zc(a,b,c){return Uc(a,b,c,"weekdaysMin")}function $c(){var a=this._data;return this._milliseconds=df(this._milliseconds),this._days=df(this._days),this._months=df(this._months),a.milliseconds=df(a.milliseconds),a.seconds=df(a.seconds),a.minutes=df(a.minutes),a.hours=df(a.hours),a.months=df(a.months),a.years=df(a.years),this}function _c(a,b,c,d){var e=Sb(b,c);return a._milliseconds+=d*e._milliseconds,a._days+=d*e._days,a._months+=d*e._months,a._bubble()}function ad(a,b){return _c(this,a,b,1)}function bd(a,b){return _c(this,a,b,-1)}function cd(a){return a<0?Math.floor(a):Math.ceil(a)}function dd(){var a,b,c,d,e,f=this._milliseconds,g=this._days,h=this._months,i=this._data;return f>=0&&g>=0&&h>=0||f<=0&&g<=0&&h<=0||(f+=864e5*cd(fd(h)+g),g=0,h=0),i.milliseconds=f%1e3,a=t(f/1e3),i.seconds=a%60,b=t(a/60),i.minutes=b%60,c=t(b/60),i.hours=c%24,g+=t(c/24),e=t(ed(g)),h+=e,g-=cd(fd(e)),d=t(h/12),h%=12,i.days=g,i.months=h,i.years=d,this}function ed(a){return 4800*a/146097}function fd(a){return 146097*a/4800}function gd(a){if(!this.isValid())return NaN;var b,c,d=this._milliseconds;if(a=K(a),"month"===a||"year"===a)return b=this._days+d/864e5,c=this._months+ed(b),"month"===a?c:c/12;switch(b=this._days+Math.round(fd(this._months)),a){case"week":return b/7+d/6048e5;case"day":return b+d/864e5;case"hour":return 24*b+d/36e5;case"minute":return 1440*b+d/6e4;case"second":return 86400*b+d/1e3;case"millisecond":return Math.floor(864e5*b)+d;default:throw new Error("Unknown unit "+a)}}function hd(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*u(this._months/12):NaN}function id(a){return function(){return this.as(a)}}function jd(a){return a=K(a),this.isValid()?this[a+"s"]():NaN}function kd(a){return function(){return this.isValid()?this._data[a]:NaN}}function ld(){return t(this.days()/7)}function md(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function nd(a,b,c){var d=Sb(a).abs(),e=uf(d.as("s")),f=uf(d.as("m")),g=uf(d.as("h")),h=uf(d.as("d")),i=uf(d.as("M")),j=uf(d.as("y")),k=e<=vf.ss&&["s",e]||e0,k[4]=c,md.apply(null,k)}function od(a){return void 0===a?uf:"function"==typeof a&&(uf=a,!0)}function pd(a,b){return void 0!==vf[a]&&(void 0===b?vf[a]:(vf[a]=b,"s"===a&&(vf.ss=b-1),!0))}function qd(a){if(!this.isValid())return this.localeData().invalidDate();var b=this.localeData(),c=nd(this,!a,b);return a&&(c=b.pastFuture(+this,c)),b.postformat(c)}function rd(){if(!this.isValid())return this.localeData().invalidDate();var a,b,c,d=wf(this._milliseconds)/1e3,e=wf(this._days),f=wf(this._months);a=t(d/60),b=t(a/60),d%=60,a%=60,c=t(f/12),f%=12;var g=c,h=f,i=e,j=b,k=a,l=d,m=this.asSeconds();return m?(m<0?"-":"")+"P"+(g?g+"Y":"")+(h?h+"M":"")+(i?i+"D":"")+(j||k||l?"T":"")+(j?j+"H":"")+(k?k+"M":"")+(l?l+"S":""):"P0D"}var sd,td;td=Array.prototype.some?Array.prototype.some:function(a){for(var b=Object(this),c=b.length>>>0,d=0;d68?1900:2e3)};var te=O("FullYear",!0);U("w",["ww",2],"wo","week"),U("W",["WW",2],"Wo","isoWeek"),J("week","w"),J("isoWeek","W"),M("week",5),M("isoWeek",5),Z("w",Sd),Z("ww",Sd,Od),Z("W",Sd),Z("WW",Sd,Od),ca(["w","ww","W","WW"],function(a,b,c,d){b[d.substr(0,1)]=u(a)});var ue={dow:0,doy:6};U("d",0,"do","day"),U("dd",0,0,function(a){return this.localeData().weekdaysMin(this,a)}),U("ddd",0,0,function(a){return this.localeData().weekdaysShort(this,a)}),U("dddd",0,0,function(a){return this.localeData().weekdays(this,a)}),U("e",0,0,"weekday"),U("E",0,0,"isoWeekday"),J("day","d"),J("weekday","e"),J("isoWeekday","E"),M("day",11),M("weekday",11),M("isoWeekday",11),Z("d",Sd),Z("e",Sd),Z("E",Sd),Z("dd",function(a,b){return b.weekdaysMinRegex(a)}),Z("ddd",function(a,b){return b.weekdaysShortRegex(a)}),Z("dddd",function(a,b){return b.weekdaysRegex(a)}),ca(["dd","ddd","dddd"],function(a,b,c,d){var e=c._locale.weekdaysParse(a,d,c._strict);null!=e?b.d=e:n(c).invalidWeekday=a}),ca(["d","e","E"],function(a,b,c,d){b[d]=u(a)});var ve="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),we="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),xe="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),ye=be,ze=be,Ae=be;U("H",["HH",2],0,"hour"),U("h",["hh",2],0,Ra),U("k",["kk",2],0,Sa),U("hmm",0,0,function(){return""+Ra.apply(this)+T(this.minutes(),2)}),U("hmmss",0,0,function(){return""+Ra.apply(this)+T(this.minutes(),2)+T(this.seconds(),2)}),U("Hmm",0,0,function(){return""+this.hours()+T(this.minutes(),2)}),U("Hmmss",0,0,function(){return""+this.hours()+T(this.minutes(),2)+T(this.seconds(),2)}),Ta("a",!0),Ta("A",!1),J("hour","h"),M("hour",13),Z("a",Ua),Z("A",Ua),Z("H",Sd),Z("h",Sd),Z("k",Sd),Z("HH",Sd,Od),Z("hh",Sd,Od),Z("kk",Sd,Od),Z("hmm",Td),Z("hmmss",Ud),Z("Hmm",Td),Z("Hmmss",Ud),ba(["H","HH"],he),ba(["k","kk"],function(a,b,c){var d=u(a);b[he]=24===d?0:d}),ba(["a","A"],function(a,b,c){c._isPm=c._locale.isPM(a),c._meridiem=a}),ba(["h","hh"],function(a,b,c){b[he]=u(a),n(c).bigHour=!0}),ba("hmm",function(a,b,c){var d=a.length-2;b[he]=u(a.substr(0,d)),b[ie]=u(a.substr(d)),n(c).bigHour=!0}),ba("hmmss",function(a,b,c){var d=a.length-4,e=a.length-2;b[he]=u(a.substr(0,d)),b[ie]=u(a.substr(d,2)),b[je]=u(a.substr(e)),n(c).bigHour=!0}),ba("Hmm",function(a,b,c){var d=a.length-2;b[he]=u(a.substr(0,d)),b[ie]=u(a.substr(d))}),ba("Hmmss",function(a,b,c){var d=a.length-4,e=a.length-2;b[he]=u(a.substr(0,d)),b[ie]=u(a.substr(d,2)),b[je]=u(a.substr(e))});var Be,Ce=/[ap]\.?m?\.?/i,De=O("Hours",!0),Ee={calendar:Bd,longDateFormat:Cd,invalidDate:Dd,ordinal:Ed,dayOfMonthOrdinalParse:Fd,relativeTime:Gd,months:pe,monthsShort:qe,week:ue,weekdays:ve,weekdaysMin:xe,weekdaysShort:we,meridiemParse:Ce},Fe={},Ge={},He=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Ie=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Je=/Z|[+-]\d\d(?::?\d\d)?/,Ke=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],Le=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Me=/^\/?Date\((\-?\d+)/i,Ne=/^((?:Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d?\d\s(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(?:\d\d)?\d\d\s)(\d\d:\d\d)(\:\d\d)?(\s(?:UT|GMT|[ECMP][SD]T|[A-IK-Za-ik-z]|[+-]\d{4}))$/;a.createFromInputFallback=x("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(a){a._d=new Date(a._i+(a._useUTC?" UTC":""))}),a.ISO_8601=function(){},a.RFC_2822=function(){};var Oe=x("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var a=tb.apply(null,arguments);return this.isValid()&&a.isValid()?athis?this:a:p()}),Qe=function(){return Date.now?Date.now():+new Date},Re=["year","quarter","month","week","day","hour","minute","second","millisecond"];Db("Z",":"),Db("ZZ",""),Z("Z",_d),Z("ZZ",_d),ba(["Z","ZZ"],function(a,b,c){c._useUTC=!0,c._tzm=Eb(_d,a)});var Se=/([\+\-]|\d\d)/gi;a.updateOffset=function(){};var Te=/^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,Ue=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;Sb.fn=Ab.prototype,Sb.invalid=zb;var Ve=Wb(1,"add"),We=Wb(-1,"subtract");a.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",a.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Xe=x("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(a){return void 0===a?this.localeData():this.locale(a)});U(0,["gg",2],0,function(){return this.weekYear()%100}),U(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Dc("gggg","weekYear"),Dc("ggggg","weekYear"),Dc("GGGG","isoWeekYear"),Dc("GGGGG","isoWeekYear"),J("weekYear","gg"),J("isoWeekYear","GG"),M("weekYear",1),M("isoWeekYear",1),Z("G",Zd),Z("g",Zd),Z("GG",Sd,Od),Z("gg",Sd,Od),Z("GGGG",Wd,Qd),Z("gggg",Wd,Qd),Z("GGGGG",Xd,Rd),Z("ggggg",Xd,Rd),ca(["gggg","ggggg","GGGG","GGGGG"],function(a,b,c,d){b[d.substr(0,2)]=u(a)}),ca(["gg","GG"],function(b,c,d,e){c[e]=a.parseTwoDigitYear(b)}),U("Q",0,"Qo","quarter"),J("quarter","Q"),M("quarter",7),Z("Q",Nd),ba("Q",function(a,b){b[fe]=3*(u(a)-1)}),U("D",["DD",2],"Do","date"),J("date","D"),M("date",9),Z("D",Sd),Z("DD",Sd,Od),Z("Do",function(a,b){return a?b._dayOfMonthOrdinalParse||b._ordinalParse:b._dayOfMonthOrdinalParseLenient}),ba(["D","DD"],ge),ba("Do",function(a,b){b[ge]=u(a.match(Sd)[0],10)});var Ye=O("Date",!0);U("DDD",["DDDD",3],"DDDo","dayOfYear"),J("dayOfYear","DDD"),M("dayOfYear",4),Z("DDD",Vd),Z("DDDD",Pd),ba(["DDD","DDDD"],function(a,b,c){c._dayOfYear=u(a)}),U("m",["mm",2],0,"minute"),J("minute","m"),M("minute",14),Z("m",Sd),Z("mm",Sd,Od),ba(["m","mm"],ie);var Ze=O("Minutes",!1);U("s",["ss",2],0,"second"),J("second","s"),M("second",15),Z("s",Sd),Z("ss",Sd,Od),ba(["s","ss"],je);var $e=O("Seconds",!1);U("S",0,0,function(){return~~(this.millisecond()/100)}),U(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),U(0,["SSS",3],0,"millisecond"),U(0,["SSSS",4],0,function(){return 10*this.millisecond()}),U(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),U(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),U(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),U(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),U(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),J("millisecond","ms"),M("millisecond",16),Z("S",Vd,Nd),Z("SS",Vd,Od),Z("SSS",Vd,Pd);var _e;for(_e="SSSS";_e.length<=9;_e+="S")Z(_e,Yd);for(_e="S";_e.length<=9;_e+="S")ba(_e,Mc);var af=O("Milliseconds",!1);U("z",0,0,"zoneAbbr"),U("zz",0,0,"zoneName");var bf=r.prototype;bf.add=Ve,bf.calendar=Zb,bf.clone=$b,bf.diff=fc,bf.endOf=sc,bf.format=kc,bf.from=lc,bf.fromNow=mc,bf.to=nc,bf.toNow=oc,bf.get=R,bf.invalidAt=Bc,bf.isAfter=_b,bf.isBefore=ac,bf.isBetween=bc,bf.isSame=cc,bf.isSameOrAfter=dc,bf.isSameOrBefore=ec,bf.isValid=zc,bf.lang=Xe,bf.locale=pc,bf.localeData=qc,bf.max=Pe,bf.min=Oe,bf.parsingFlags=Ac,bf.set=S,bf.startOf=rc,bf.subtract=We,bf.toArray=wc,bf.toObject=xc,bf.toDate=vc,bf.toISOString=ic,bf.inspect=jc,bf.toJSON=yc,bf.toString=hc,bf.unix=uc,bf.valueOf=tc,bf.creationData=Cc,bf.year=te,bf.isLeapYear=ra,bf.weekYear=Ec,bf.isoWeekYear=Fc,bf.quarter=bf.quarters=Kc,bf.month=ka,bf.daysInMonth=la,bf.week=bf.weeks=Ba,bf.isoWeek=bf.isoWeeks=Ca,bf.weeksInYear=Hc,bf.isoWeeksInYear=Gc,bf.date=Ye,bf.day=bf.days=Ka,bf.weekday=La,bf.isoWeekday=Ma,bf.dayOfYear=Lc,bf.hour=bf.hours=De,bf.minute=bf.minutes=Ze,bf.second=bf.seconds=$e,bf.millisecond=bf.milliseconds=af,bf.utcOffset=Hb,bf.utc=Jb,bf.local=Kb,bf.parseZone=Lb,bf.hasAlignedHourOffset=Mb,bf.isDST=Nb,bf.isLocal=Pb,bf.isUtcOffset=Qb,bf.isUtc=Rb,bf.isUTC=Rb,bf.zoneAbbr=Nc,bf.zoneName=Oc,bf.dates=x("dates accessor is deprecated. Use date instead.",Ye),bf.months=x("months accessor is deprecated. Use month instead",ka),bf.years=x("years accessor is deprecated. Use year instead",te),bf.zone=x("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",Ib),bf.isDSTShifted=x("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Ob);var cf=C.prototype;cf.calendar=D,cf.longDateFormat=E,cf.invalidDate=F,cf.ordinal=G,cf.preparse=Rc,cf.postformat=Rc,cf.relativeTime=H,cf.pastFuture=I,cf.set=A,cf.months=fa,cf.monthsShort=ga,cf.monthsParse=ia,cf.monthsRegex=na,cf.monthsShortRegex=ma,cf.week=ya,cf.firstDayOfYear=Aa,cf.firstDayOfWeek=za,cf.weekdays=Fa,cf.weekdaysMin=Ha,cf.weekdaysShort=Ga,cf.weekdaysParse=Ja,cf.weekdaysRegex=Na,cf.weekdaysShortRegex=Oa,cf.weekdaysMinRegex=Pa,cf.isPM=Va,cf.meridiem=Wa,$a("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(a){var b=a%10,c=1===u(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),a.lang=x("moment.lang is deprecated. Use moment.locale instead.",$a),a.langData=x("moment.langData is deprecated. Use moment.localeData instead.",bb);var df=Math.abs,ef=id("ms"),ff=id("s"),gf=id("m"),hf=id("h"),jf=id("d"),kf=id("w"),lf=id("M"),mf=id("y"),nf=kd("milliseconds"),of=kd("seconds"),pf=kd("minutes"),qf=kd("hours"),rf=kd("days"),sf=kd("months"),tf=kd("years"),uf=Math.round,vf={ss:44,s:45,m:45,h:22,d:26,M:11},wf=Math.abs,xf=Ab.prototype;return xf.isValid=yb,xf.abs=$c,xf.add=ad,xf.subtract=bd,xf.as=gd,xf.asMilliseconds=ef,xf.asSeconds=ff,xf.asMinutes=gf,xf.asHours=hf,xf.asDays=jf,xf.asWeeks=kf,xf.asMonths=lf,xf.asYears=mf,xf.valueOf=hd,xf._bubble=dd,xf.get=jd,xf.milliseconds=nf,xf.seconds=of,xf.minutes=pf,xf.hours=qf,xf.days=rf,xf.weeks=ld,xf.months=sf,xf.years=tf,xf.humanize=qd,xf.toISOString=rd,xf.toString=rd,xf.toJSON=rd,xf.locale=pc,xf.localeData=qc,xf.toIsoString=x("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",rd),xf.lang=Xe,U("X",0,0,"unix"),U("x",0,0,"valueOf"),Z("x",Zd),Z("X",ae),ba("X",function(a,b,c){c._d=new Date(1e3*parseFloat(a,10))}),ba("x",function(a,b,c){c._d=new Date(u(a))}),a.version="2.18.1",b(tb),a.fn=bf,a.min=vb,a.max=wb,a.now=Qe,a.utc=l,a.unix=Pc,a.months=Vc,a.isDate=h,a.locale=$a,a.invalid=p,a.duration=Sb,a.isMoment=s,a.weekdays=Xc,a.parseZone=Qc,a.localeData=bb,a.isDuration=Bb,a.monthsShort=Wc,a.weekdaysMin=Zc,a.defineLocale=_a,a.updateLocale=ab,a.locales=cb,a.weekdaysShort=Yc,a.normalizeUnits=K,a.relativeTimeRounding=od,a.relativeTimeThreshold=pd,a.calendarFormat=Yb,a.prototype=bf,a}); \ No newline at end of file diff --git a/assets/static/managed/js/2.2.4-jquery.min.js b/assets/static/managed/js/2.2.4-jquery.min.js deleted file mode 100644 index 4024b6622..000000000 --- a/assets/static/managed/js/2.2.4-jquery.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! jQuery v2.2.4 | (c) jQuery Foundation | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="2.2.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isPlainObject:function(a){var b;if("object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype||{},"isPrototypeOf"))return!1;for(b in a);return void 0===b||k.call(a,b)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=d.createElement("script"),b.text=a,d.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:h.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(d=e.call(arguments,2),f=function(){return a.apply(b||this,d.concat(e.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return h.call(b,a)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&f.parentNode&&(this.length=1,this[0]=f),this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?h.call(n(a),this[0]):h.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||n.uniqueSort(e),D.test(a)&&e.reverse()),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J),n.ready()}n.ready.promise=function(b){return I||(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(n.ready):(d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J))),I.promise(b)},n.ready.promise();var K=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)K(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},L=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function M(){this.expando=n.expando+M.uid++}M.uid=1,M.prototype={register:function(a,b){var c=b||{};return a.nodeType?a[this.expando]=c:Object.defineProperty(a,this.expando,{value:c,writable:!0,configurable:!0}),a[this.expando]},cache:function(a){if(!L(a))return{};var b=a[this.expando];return b||(b={},L(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c){var d,e=this.cache(a);if("string"==typeof b)e[b]=c;else for(d in b)e[d]=b[d];return e},get:function(a,b){return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=a[this.expando];if(void 0!==f){if(void 0===b)this.register(a);else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in f?d=[b,e]:(d=e,d=d in f?[d]:d.match(G)||[])),c=d.length;while(c--)delete f[d[c]]}(void 0===b||n.isEmptyObject(f))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a){var b=a[this.expando];return void 0!==b&&!n.isEmptyObject(b)}};var N=new M,O=new M,P=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Q=/[A-Z]/g;function R(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Q,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:P.test(c)?n.parseJSON(c):c; -}catch(e){}O.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return O.hasData(a)||N.hasData(a)},data:function(a,b,c){return O.access(a,b,c)},removeData:function(a,b){O.remove(a,b)},_data:function(a,b,c){return N.access(a,b,c)},_removeData:function(a,b){N.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=O.get(f),1===f.nodeType&&!N.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),R(f,d,e[d])));N.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){O.set(this,a)}):K(this,function(b){var c,d;if(f&&void 0===b){if(c=O.get(f,a)||O.get(f,a.replace(Q,"-$&").toLowerCase()),void 0!==c)return c;if(d=n.camelCase(a),c=O.get(f,d),void 0!==c)return c;if(c=R(f,d,void 0),void 0!==c)return c}else d=n.camelCase(a),this.each(function(){var c=O.get(this,d);O.set(this,d,b),a.indexOf("-")>-1&&void 0!==c&&O.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){O.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=N.get(a,b),c&&(!d||n.isArray(c)?d=N.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return N.get(a,c)||N.access(a,c,{empty:n.Callbacks("once memory").add(function(){N.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length",""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};$.optgroup=$.option,$.tbody=$.tfoot=$.colgroup=$.caption=$.thead,$.th=$.td;function _(a,b){var c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function aa(a,b){for(var c=0,d=a.length;d>c;c++)N.set(a[c],"globalEval",!b||N.get(b[c],"globalEval"))}var ba=/<|&#?\w+;/;function ca(a,b,c,d,e){for(var f,g,h,i,j,k,l=b.createDocumentFragment(),m=[],o=0,p=a.length;p>o;o++)if(f=a[o],f||0===f)if("object"===n.type(f))n.merge(m,f.nodeType?[f]:f);else if(ba.test(f)){g=g||l.appendChild(b.createElement("div")),h=(Y.exec(f)||["",""])[1].toLowerCase(),i=$[h]||$._default,g.innerHTML=i[1]+n.htmlPrefilter(f)+i[2],k=i[0];while(k--)g=g.lastChild;n.merge(m,g.childNodes),g=l.firstChild,g.textContent=""}else m.push(b.createTextNode(f));l.textContent="",o=0;while(f=m[o++])if(d&&n.inArray(f,d)>-1)e&&e.push(f);else if(j=n.contains(f.ownerDocument,f),g=_(l.appendChild(f),"script"),j&&aa(g),c){k=0;while(f=g[k++])Z.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var da=/^key/,ea=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,fa=/^([^.]*)(?:\.(.+)|)/;function ga(){return!0}function ha(){return!1}function ia(){try{return d.activeElement}catch(a){}}function ja(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ja(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=ha;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return"undefined"!=typeof n&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(G)||[""],j=b.length;while(j--)h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.hasData(a)&&N.get(a);if(r&&(i=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&N.remove(a,"handle events")}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(N.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!==this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,la=/\s*$/g;function pa(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function qa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function ra(a){var b=na.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function sa(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(N.hasData(a)&&(f=N.access(a),g=N.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}O.hasData(a)&&(h=O.access(a),i=n.extend({},h),O.set(b,i))}}function ta(a,b){var c=b.nodeName.toLowerCase();"input"===c&&X.test(a.type)?b.checked=a.checked:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}function ua(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&ma.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),ua(f,b,c,d)});if(o&&(e=ca(b,a[0].ownerDocument,!1,a,d),g=e.firstChild,1===e.childNodes.length&&(e=g),g||d)){for(h=n.map(_(e,"script"),qa),i=h.length;o>m;m++)j=e,m!==p&&(j=n.clone(j,!0,!0),i&&n.merge(h,_(j,"script"))),c.call(a[m],j,m);if(i)for(k=h[h.length-1].ownerDocument,n.map(h,ra),m=0;i>m;m++)j=h[m],Z.test(j.type||"")&&!N.access(j,"globalEval")&&n.contains(k,j)&&(j.src?n._evalUrl&&n._evalUrl(j.src):n.globalEval(j.textContent.replace(oa,"")))}return a}function va(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(_(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&aa(_(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(ka,"<$1>")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=_(h),f=_(a),d=0,e=f.length;e>d;d++)ta(f[d],g[d]);if(b)if(c)for(f=f||_(a),g=g||_(h),d=0,e=f.length;e>d;d++)sa(f[d],g[d]);else sa(a,h);return g=_(h,"script"),g.length>0&&aa(g,!i&&_(a,"script")),h},cleanData:function(a){for(var b,c,d,e=n.event.special,f=0;void 0!==(c=a[f]);f++)if(L(c)){if(b=c[N.expando]){if(b.events)for(d in b.events)e[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);c[N.expando]=void 0}c[O.expando]&&(c[O.expando]=void 0)}}}),n.fn.extend({domManip:ua,detach:function(a){return va(this,a,!0)},remove:function(a){return va(this,a)},text:function(a){return K(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.appendChild(a)}})},prepend:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(_(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return K(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!la.test(a)&&!$[(Y.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(_(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return ua(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(_(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),f=e.length-1,h=0;f>=h;h++)c=h===f?this:this.clone(!0),n(e[h])[b](c),g.apply(d,c.get());return this.pushStack(d)}});var wa,xa={HTML:"block",BODY:"block"};function ya(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function za(a){var b=d,c=xa[a];return c||(c=ya(a,b),"none"!==c&&c||(wa=(wa||n("