demo.mobiscroll.com Open in urlscan Pro
65.109.101.6  Public Scan

URL: https://demo.mobiscroll.com/Scripts/demo.fullscreen.5x
Submission: On August 20 via manual from US — Scanned from FI

Form analysis 0 forms found in the DOM

Text Content

/*!
 * jQuery Validation Plugin v1.15.1
 *
 * http://jqueryvalidation.org/
 *
 * Copyright (c) 2016 Jörn Zaefferer
 * Released under the MIT license
 */
(function(n){typeof define=="function"&&define.amd?define(["jquery"],n):typeof module=="object"&&module.exports?module.exports=n(require("jquery")):n(jQuery)})(function(n){n.extend(n.fn,{validate:function(t){if(!this.length){t&&t.debug&&window.console&&console.warn("Nothing selected, can't validate, returning nothing.");return}var i=n.data(this[0],"validator");if(i)return i;if(this.attr("novalidate","novalidate"),i=new n.validator(t,this[0]),n.data(this[0],"validator",i),i.settings.onsubmit){this.on("click.validate",":submit",function(t){i.settings.submitHandler&&(i.submitButton=t.target);n(this).hasClass("cancel")&&(i.cancelSubmit=!0);n(this).attr("formnovalidate")!==undefined&&(i.cancelSubmit=!0)});this.on("submit.validate",function(t){function r(){var u,r;return i.settings.submitHandler?(i.submitButton&&(u=n("<input type='hidden'/>").attr("name",i.submitButton.name).val(n(i.submitButton).val()).appendTo(i.currentForm)),r=i.settings.submitHandler.call(i,i.currentForm,t),i.submitButton&&u.remove(),r!==undefined)?r:!1:!0}return(i.settings.debug&&t.preventDefault(),i.cancelSubmit)?(i.cancelSubmit=!1,r()):i.form()?i.pendingRequest?(i.formSubmitted=!0,!1):r():(i.focusInvalid(),!1)})}return i},valid:function(){var t,i,r;return n(this[0]).is("form")?t=this.validate().form():(r=[],t=!0,i=n(this[0].form).validate(),this.each(function(){t=i.element(this)&&t;t||(r=r.concat(i.errorList))}),i.errorList=r),t},rules:function(t,i){var r=this[0],e,s,f,u,o,h;if(r!=null&&r.form!=null){if(t){e=n.data(r.form,"validator").settings;s=e.rules;f=n.validator.staticRules(r);switch(t){case"add":n.extend(f,n.validator.normalizeRule(i));delete f.messages;s[r.name]=f;i.messages&&(e.messages[r.name]=n.extend(e.messages[r.name],i.messages));break;case"remove":return i?(h={},n.each(i.split(/\s/),function(t,i){h[i]=f[i];delete f[i];i==="required"&&n(r).removeAttr("aria-required")}),h):(delete s[r.name],f)}}return u=n.validator.normalizeRules(n.extend({},n.validator.classRules(r),n.validator.attributeRules(r),n.validator.dataRules(r),n.validator.staticRules(r)),r),u.required&&(o=u.required,delete u.required,u=n.extend({required:o},u),n(r).attr("aria-required","true")),u.remote&&(o=u.remote,delete u.remote,u=n.extend(u,{remote:o})),u}}});n.extend(n.expr[":"],{blank:function(t){return!n.trim(""+n(t).val())},filled:function(t){var i=n(t).val();return i!==null&&!!n.trim(""+i)},unchecked:function(t){return!n(t).prop("checked")}});n.validator=function(t,i){this.settings=n.extend(!0,{},n.validator.defaults,t);this.currentForm=i;this.init()};n.validator.format=function(t,i){return arguments.length===1?function(){var i=n.makeArray(arguments);return i.unshift(t),n.validator.format.apply(this,i)}:i===undefined?t:(arguments.length>2&&i.constructor!==Array&&(i=n.makeArray(arguments).slice(1)),i.constructor!==Array&&(i=[i]),n.each(i,function(n,i){t=t.replace(new RegExp("\\{"+n+"\\}","g"),function(){return i})}),t)};n.extend(n.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",pendingClass:"pending",validClass:"valid",errorElement:"label",focusCleanup:!1,focusInvalid:!0,errorContainer:n([]),errorLabelContainer:n([]),onsubmit:!0,ignore:":hidden",ignoreTitle:!1,onfocusin:function(n){this.lastActive=n;this.settings.focusCleanup&&(this.settings.unhighlight&&this.settings.unhighlight.call(this,n,this.settings.errorClass,this.settings.validClass),this.hideThese(this.errorsFor(n)))},onfocusout:function(n){!this.checkable(n)&&(n.name in this.submitted||!this.optional(n))&&this.element(n)},onkeyup:function(t,i){(i.which!==9||this.elementValue(t)!=="")&&n.inArray(i.keyCode,[16,17,18,20,35,36,37,38,39,40,45,144,225])===-1&&(t.name in this.submitted||t.name in this.invalid)&&this.element(t)},onclick:function(n){n.name in this.submitted?this.element(n):n.parentNode.name in this.submitted&&this.element(n.parentNode)},highlight:function(t,i,r){t.type==="radio"?this.findByName(t.name).addClass(i).removeClass(r):n(t).addClass(i).removeClass(r)},unhighlight:function(t,i,r){t.type==="radio"?this.findByName(t.name).removeClass(i).addClass(r):n(t).removeClass(i).addClass(r)}},setDefaults:function(t){n.extend(n.validator.defaults,t)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",equalTo:"Please enter the same value again.",maxlength:n.validator.format("Please enter no more than {0} characters."),minlength:n.validator.format("Please enter at least {0} characters."),rangelength:n.validator.format("Please enter a value between {0} and {1} characters long."),range:n.validator.format("Please enter a value between {0} and {1}."),max:n.validator.format("Please enter a value less than or equal to {0}."),min:n.validator.format("Please enter a value greater than or equal to {0}."),step:n.validator.format("Please enter a multiple of {0}.")},autoCreateRanges:!1,prototype:{init:function(){function i(t){!this.form&&this.hasAttribute("contenteditable")&&(this.form=n(this).closest("form")[0]);var r=n.data(this.form,"validator"),u="on"+t.type.replace(/^validate/,""),i=r.settings;i[u]&&!n(this).is(i.ignore)&&i[u].call(r,this,t)}this.labelContainer=n(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||n(this.currentForm);this.containers=n(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var r=this.groups={},t;n.each(this.settings.groups,function(t,i){typeof i=="string"&&(i=i.split(/\s/));n.each(i,function(n,i){r[i]=t})});t=this.settings.rules;n.each(t,function(i,r){t[i]=n.validator.normalizeRule(r)});n(this.currentForm).on("focusin.validate focusout.validate keyup.validate",":text, [type='password'], [type='file'], select, textarea, [type='number'], [type='search'], [type='tel'], [type='url'], [type='email'], [type='datetime'], [type='date'], [type='month'], [type='week'], [type='time'], [type='datetime-local'], [type='range'], [type='color'], [type='radio'], [type='checkbox'], [contenteditable]",i).on("click.validate","select, option, [type='radio'], [type='checkbox']",i);if(this.settings.invalidHandler)n(this.currentForm).on("invalid-form.validate",this.settings.invalidHandler);n(this.currentForm).find("[required], [data-rule-required], .required").attr("aria-required","true")},form:function(){return this.checkForm(),n.extend(this.submitted,this.errorMap),this.invalid=n.extend({},this.errorMap),this.valid()||n(this.currentForm).triggerHandler("invalid-form",[this]),this.showErrors(),this.valid()},checkForm:function(){this.prepareForm();for(var n=0,t=this.currentElements=this.elements();t[n];n++)this.check(t[n]);return this.valid()},element:function(t){var i=this.clean(t),r=this.validationTargetFor(i),u=this,f=!0,e,o;return r===undefined?delete this.invalid[i.name]:(this.prepareElement(r),this.currentElements=n(r),o=this.groups[r.name],o&&n.each(this.groups,function(n,t){t===o&&n!==r.name&&(i=u.validationTargetFor(u.clean(u.findByName(n))),i&&i.name in u.invalid&&(u.currentElements.push(i),f=u.check(i)&&f))}),e=this.check(r)!==!1,f=f&&e,this.invalid[r.name]=e?!1:!0,this.numberOfInvalids()||(this.toHide=this.toHide.add(this.containers)),this.showErrors(),n(t).attr("aria-invalid",!e)),f},showErrors:function(t){if(t){var i=this;n.extend(this.errorMap,t);this.errorList=n.map(this.errorMap,function(n,t){return{message:n,element:i.findByName(t)[0]}});this.successList=n.grep(this.successList,function(n){return!(n.name in t)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){n.fn.resetForm&&n(this.currentForm).resetForm();this.invalid={};this.submitted={};this.prepareForm();this.hideErrors();var t=this.elements().removeData("previousValue").removeAttr("aria-invalid");this.resetElements(t)},resetElements:function(n){var t;if(this.settings.unhighlight)for(t=0;n[t];t++)this.settings.unhighlight.call(this,n[t],this.settings.errorClass,""),this.findByName(n[t].name).removeClass(this.settings.validClass);else n.removeClass(this.settings.errorClass).removeClass(this.settings.validClass)},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(n){var t=0;for(var i in n)n[i]&&t++;return t},hideErrors:function(){this.hideThese(this.toHide)},hideThese:function(n){n.not(this.containers).text("");this.addWrapper(n).hide()},valid:function(){return this.size()===0},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{n(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(t){}},findLastActive:function(){var t=this.lastActive;return t&&n.grep(this.errorList,function(n){return n.element.name===t.name}).length===1&&t},elements:function(){var t=this,i={};return n(this.currentForm).find("input, select, textarea, [contenteditable]").not(":submit, :reset, :image, :disabled").not(this.settings.ignore).filter(function(){var r=this.name||n(this).attr("name");return(!r&&t.settings.debug&&window.console&&console.error("%o has no name assigned",this),this.hasAttribute("contenteditable")&&(this.form=n(this).closest("form")[0]),r in i||!t.objectLength(n(this).rules()))?!1:(i[r]=!0,!0)})},clean:function(t){return n(t)[0]},errors:function(){var t=this.settings.errorClass.split(" ").join(".");return n(this.settings.errorElement+"."+t,this.errorContext)},resetInternals:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=n([]);this.toHide=n([])},reset:function(){this.resetInternals();this.currentElements=n([])},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers)},prepareElement:function(n){this.reset();this.toHide=this.errorsFor(n)},elementValue:function(t){var f=n(t),u=t.type,i,r;return u==="radio"||u==="checkbox"?this.findByName(t.name).filter(":checked").val():u==="number"&&typeof t.validity!="undefined"?t.validity.badInput?"NaN":f.val():(i=t.hasAttribute("contenteditable")?f.text():f.val(),u==="file")?i.substr(0,12)==="C:\\fakepath\\"?i.substr(12):(r=i.lastIndexOf("/"),r>=0)?i.substr(r+1):(r=i.lastIndexOf("\\"),r>=0)?i.substr(r+1):i:typeof i=="string"?i.replace(/\r/g,""):i},check:function(t){t=this.validationTargetFor(this.clean(t));var i=n(t).rules(),h=n.map(i,function(n,t){return t}).length,s=!1,u=this.elementValue(t),f,e,r;if(typeof i.normalizer=="function"){if(u=i.normalizer.call(t,u),typeof u!="string")throw new TypeError("The normalizer should return a string value.");delete i.normalizer}for(e in i){r={method:e,parameters:i[e]};try{if(f=n.validator.methods[e].call(this,u,t,r.parameters),f==="dependency-mismatch"&&h===1){s=!0;continue}if(s=!1,f==="pending"){this.toHide=this.toHide.not(this.errorsFor(t));return}if(!f)return this.formatAndAdd(t,r),!1}catch(o){this.settings.debug&&window.console&&console.log("Exception occurred when checking element "+t.id+", check the '"+r.method+"' method.",o);o instanceof TypeError&&(o.message+=".  Exception occurred when checking element "+t.id+", check the '"+r.method+"' method.");throw o;}}if(!s)return this.objectLength(i)&&this.successList.push(t),!0},customDataMessage:function(t,i){return n(t).data("msg"+i.charAt(0).toUpperCase()+i.substring(1).toLowerCase())||n(t).data("msg")},customMessage:function(n,t){var i=this.settings.messages[n];return i&&(i.constructor===String?i:i[t])},findDefined:function(){for(var n=0;n<arguments.length;n++)if(arguments[n]!==undefined)return arguments[n];return undefined},defaultMessage:function(t,i){typeof i=="string"&&(i={method:i});var r=this.findDefined(this.customMessage(t.name,i.method),this.customDataMessage(t,i.method),!this.settings.ignoreTitle&&t.title||undefined,n.validator.messages[i.method],"<strong>Warning: No message defined for "+t.name+"<\/strong>"),u=/\$?\{(\d+)\}/g;return typeof r=="function"?r=r.call(this,i.parameters,t):u.test(r)&&(r=n.validator.format(r.replace(u,"{$1}"),i.parameters)),r},formatAndAdd:function(n,t){var i=this.defaultMessage(n,t);this.errorList.push({message:i,element:n,method:t.method});this.errorMap[n.name]=i;this.submitted[n.name]=i},addWrapper:function(n){return this.settings.wrapper&&(n=n.add(n.parent(this.settings.wrapper))),n},defaultShowErrors:function(){for(var i,t,n=0;this.errorList[n];n++)t=this.errorList[n],this.settings.highlight&&this.settings.highlight.call(this,t.element,this.settings.errorClass,this.settings.validClass),this.showLabel(t.element,t.message);if(this.errorList.length&&(this.toShow=this.toShow.add(this.containers)),this.settings.success)for(n=0;this.successList[n];n++)this.showLabel(this.successList[n]);if(this.settings.unhighlight)for(n=0,i=this.validElements();i[n];n++)this.settings.unhighlight.call(this,i[n],this.settings.errorClass,this.settings.validClass);this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return n(this.errorList).map(function(){return this.element})},showLabel:function(t,i){var u,s,e,o,r=this.errorsFor(t),h=this.idOrName(t),f=n(t).attr("aria-describedby");r.length?(r.removeClass(this.settings.validClass).addClass(this.settings.errorClass),r.html(i)):(r=n("<"+this.settings.errorElement+">").attr("id",h+"-error").addClass(this.settings.errorClass).html(i||""),u=r,this.settings.wrapper&&(u=r.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()),this.labelContainer.length?this.labelContainer.append(u):this.settings.errorPlacement?this.settings.errorPlacement.call(this,u,n(t)):u.insertAfter(t),r.is("label")?r.attr("for",h):r.parents("label[for='"+this.escapeCssMeta(h)+"']").length===0&&(e=r.attr("id"),f?f.match(new RegExp("\\b"+this.escapeCssMeta(e)+"\\b"))||(f+=" "+e):f=e,n(t).attr("aria-describedby",f),s=this.groups[t.name],s&&(o=this,n.each(o.groups,function(t,i){i===s&&n("[name='"+o.escapeCssMeta(t)+"']",o.currentForm).attr("aria-describedby",r.attr("id"))}))));!i&&this.settings.success&&(r.text(""),typeof this.settings.success=="string"?r.addClass(this.settings.success):this.settings.success(r,t));this.toShow=this.toShow.add(r)},errorsFor:function(t){var r=this.escapeCssMeta(this.idOrName(t)),u=n(t).attr("aria-describedby"),i="label[for='"+r+"'], label[for='"+r+"'] *";return u&&(i=i+", #"+this.escapeCssMeta(u).replace(/\s+/g,", #")),this.errors().filter(i)},escapeCssMeta:function(n){return n.replace(/([\\!"#$%&'()*+,./:;<=>?@\[\]^`{|}~])/g,"\\$1")},idOrName:function(n){return this.groups[n.name]||(this.checkable(n)?n.name:n.id||n.name)},validationTargetFor:function(t){return this.checkable(t)&&(t=this.findByName(t.name)),n(t).not(this.settings.ignore)[0]},checkable:function(n){return/radio|checkbox/i.test(n.type)},findByName:function(t){return n(this.currentForm).find("[name='"+this.escapeCssMeta(t)+"']")},getLength:function(t,i){switch(i.nodeName.toLowerCase()){case"select":return n("option:selected",i).length;case"input":if(this.checkable(i))return this.findByName(i.name).filter(":checked").length}return t.length},depend:function(n,t){return this.dependTypes[typeof n]?this.dependTypes[typeof n](n,t):!0},dependTypes:{boolean:function(n){return n},string:function(t,i){return!!n(t,i.form).length},"function":function(n,t){return n(t)}},optional:function(t){var i=this.elementValue(t);return!n.validator.methods.required.call(this,i,t)&&"dependency-mismatch"},startRequest:function(t){this.pending[t.name]||(this.pendingRequest++,n(t).addClass(this.settings.pendingClass),this.pending[t.name]=!0)},stopRequest:function(t,i){this.pendingRequest--;this.pendingRequest<0&&(this.pendingRequest=0);delete this.pending[t.name];n(t).removeClass(this.settings.pendingClass);i&&this.pendingRequest===0&&this.formSubmitted&&this.form()?(n(this.currentForm).submit(),this.formSubmitted=!1):!i&&this.pendingRequest===0&&this.formSubmitted&&(n(this.currentForm).triggerHandler("invalid-form",[this]),this.formSubmitted=!1)},previousValue:function(t,i){return i=typeof i=="string"&&i||"remote",n.data(t,"previousValue")||n.data(t,"previousValue",{old:null,valid:!0,message:this.defaultMessage(t,{method:i})})},destroy:function(){this.resetForm();n(this.currentForm).off(".validate").removeData("validator").find(".validate-equalTo-blur").off(".validate-equalTo").removeClass("validate-equalTo-blur")}},classRuleSettings:{required:{required:!0},email:{email:!0},url:{url:!0},date:{date:!0},dateISO:{dateISO:!0},number:{number:!0},digits:{digits:!0},creditcard:{creditcard:!0}},addClassRules:function(t,i){t.constructor===String?this.classRuleSettings[t]=i:n.extend(this.classRuleSettings,t)},classRules:function(t){var i={},r=n(t).attr("class");return r&&n.each(r.split(" "),function(){this in n.validator.classRuleSettings&&n.extend(i,n.validator.classRuleSettings[this])}),i},normalizeAttributeRule:function(n,t,i,r){/min|max|step/.test(i)&&(t===null||/number|range|text/.test(t))&&(r=Number(r),isNaN(r)&&(r=undefined));r||r===0?n[i]=r:t===i&&t!=="range"&&(n[i]=!0)},attributeRules:function(t){var r={},f=n(t),e=t.getAttribute("type"),u,i;for(u in n.validator.methods)u==="required"?(i=t.getAttribute(u),i===""&&(i=!0),i=!!i):i=f.attr(u),this.normalizeAttributeRule(r,e,u,i);return r.maxlength&&/-1|2147483647|524288/.test(r.maxlength)&&delete r.maxlength,r},dataRules:function(t){var r={},f=n(t),e=t.getAttribute("type"),i,u;for(i in n.validator.methods)u=f.data("rule"+i.charAt(0).toUpperCase()+i.substring(1).toLowerCase()),this.normalizeAttributeRule(r,e,i,u);return r},staticRules:function(t){var i={},r=n.data(t.form,"validator");return r.settings.rules&&(i=n.validator.normalizeRule(r.settings.rules[t.name])||{}),i},normalizeRules:function(t,i){return n.each(t,function(r,u){if(u===!1){delete t[r];return}if(u.param||u.depends){var f=!0;switch(typeof u.depends){case"string":f=!!n(u.depends,i.form).length;break;case"function":f=u.depends.call(i,i)}f?t[r]=u.param!==undefined?u.param:!0:(n.data(i.form,"validator").resetElements(n(i)),delete t[r])}}),n.each(t,function(r,u){t[r]=n.isFunction(u)&&r!=="normalizer"?u(i):u}),n.each(["minlength","maxlength"],function(){t[this]&&(t[this]=Number(t[this]))}),n.each(["rangelength","range"],function(){var i;t[this]&&(n.isArray(t[this])?t[this]=[Number(t[this][0]),Number(t[this][1])]:typeof t[this]=="string"&&(i=t[this].replace(/[\[\]]/g,"").split(/[\s,]+/),t[this]=[Number(i[0]),Number(i[1])]))}),n.validator.autoCreateRanges&&(t.min!=null&&t.max!=null&&(t.range=[t.min,t.max],delete t.min,delete t.max),t.minlength!=null&&t.maxlength!=null&&(t.rangelength=[t.minlength,t.maxlength],delete t.minlength,delete t.maxlength)),t},normalizeRule:function(t){if(typeof t=="string"){var i={};n.each(t.split(/\s/),function(){i[this]=!0});t=i}return t},addMethod:function(t,i,r){n.validator.methods[t]=i;n.validator.messages[t]=r!==undefined?r:n.validator.messages[t];i.length<3&&n.validator.addClassRules(t,n.validator.normalizeRule(t))},methods:{required:function(t,i,r){if(!this.depend(r,i))return"dependency-mismatch";if(i.nodeName.toLowerCase()==="select"){var u=n(i).val();return u&&u.length>0}return this.checkable(i)?this.getLength(t,i)>0:t.length>0},email:function(n,t){return this.optional(t)||/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test(n)},url:function(n,t){return this.optional(t)||/^(?:(?:(?:https?|ftp):)?\/\/)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})).?)(?::\d{2,5})?(?:[/?#]\S*)?$/i.test(n)},date:function(n,t){return this.optional(t)||!/Invalid|NaN/.test(new Date(n).toString())},dateISO:function(n,t){return this.optional(t)||/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(n)},number:function(n,t){return this.optional(t)||/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(n)},digits:function(n,t){return this.optional(t)||/^\d+$/.test(n)},minlength:function(t,i,r){var u=n.isArray(t)?t.length:this.getLength(t,i);return this.optional(i)||u>=r},maxlength:function(t,i,r){var u=n.isArray(t)?t.length:this.getLength(t,i);return this.optional(i)||u<=r},rangelength:function(t,i,r){var u=n.isArray(t)?t.length:this.getLength(t,i);return this.optional(i)||u>=r[0]&&u<=r[1]},min:function(n,t,i){return this.optional(t)||n>=i},max:function(n,t,i){return this.optional(t)||n<=i},range:function(n,t,i){return this.optional(t)||n>=i[0]&&n<=i[1]},step:function(t,i,r){var u=n(i).attr("type"),h="Step attribute on input type "+u+" is not supported.",c=new RegExp("\\b"+u+"\\b"),l=u&&!c.test("text,number,range"),e=function(n){var t=(""+n).match(/(?:\.(\d+))?$/);return t?t[1]?t[1].length:0:0},o=function(n){return Math.round(n*Math.pow(10,f))},s=!0,f;if(l)throw new Error(h);return f=e(r),(e(t)>f||o(t)%o(r)!=0)&&(s=!1),this.optional(i)||s},equalTo:function(t,i,r){var u=n(r);if(this.settings.onfocusout&&u.not(".validate-equalTo-blur").length)u.addClass("validate-equalTo-blur").on("blur.validate-equalTo",function(){n(i).valid()});return t===u.val()},remote:function(t,i,r,u){if(this.optional(i))return"dependency-mismatch";u=typeof u=="string"&&u||"remote";var e=this.previousValue(i,u),f,o,s;return(this.settings.messages[i.name]||(this.settings.messages[i.name]={}),e.originalMessage=e.originalMessage||this.settings.messages[i.name][u],this.settings.messages[i.name][u]=e.message,r=typeof r=="string"&&{url:r}||r,s=n.param(n.extend({data:t},r.data)),e.old===s)?e.valid:(e.old=s,f=this,this.startRequest(i),o={},o[i.name]=t,n.ajax(n.extend(!0,{mode:"abort",port:"validate"+i.name,dataType:"json",data:o,context:f.currentForm,success:function(n){var r=n===!0||n==="true",o,s,h;f.settings.messages[i.name][u]=e.originalMessage;r?(h=f.formSubmitted,f.resetInternals(),f.toHide=f.errorsFor(i),f.formSubmitted=h,f.successList.push(i),f.invalid[i.name]=!1,f.showErrors()):(o={},s=n||f.defaultMessage(i,{method:u,parameters:t}),o[i.name]=e.message=s,f.invalid[i.name]=!0,f.showErrors(o));e.valid=r;f.stopRequest(i,r)}},r)),"pending")}}});var t={},i;n.ajaxPrefilter?n.ajaxPrefilter(function(n,i,r){var u=n.port;n.mode==="abort"&&(t[u]&&t[u].abort(),t[u]=r)}):(i=n.ajax,n.ajax=function(r){var f=("mode"in r?r:n.ajaxSettings).mode,u=("port"in r?r:n.ajaxSettings).port;return f==="abort"?(t[u]&&t[u].abort(),t[u]=i.apply(this,arguments),t[u]):i.apply(this,arguments)})});
/*!
** Unobtrusive validation support library for jQuery and jQuery Validate
** Copyright (C) Microsoft Corporation. All rights reserved.
*/
(function(n){function i(n,t,i){n.rules[t]=i;n.message&&(n.messages[t]=n.message)}function h(n){return n.replace(/^\s+|\s+$/g,"").split(/\s*,\s*/g)}function f(n){return n.replace(/([!"#$%&'()*+,./:;<=>?@\[\\\]^`{|}~])/g,"\\$1")}function e(n){return n.substr(0,n.lastIndexOf(".")+1)}function o(n,t){return n.indexOf("*.")===0&&(n=n.replace("*.",t)),n}function c(t,i){var r=n(this).find("[data-valmsg-for='"+f(i[0].name)+"']"),u=r.attr("data-valmsg-replace"),e=u?n.parseJSON(u)!==!1:null;r.removeClass("field-validation-valid").addClass("field-validation-error");t.data("unobtrusiveContainer",r);e?(r.empty(),t.removeClass("input-validation-error").appendTo(r)):t.hide()}function l(t,i){var u=n(this).find("[data-valmsg-summary=true]"),r=u.find("ul");r&&r.length&&i.errorList.length&&(r.empty(),u.addClass("validation-summary-errors").removeClass("validation-summary-valid"),n.each(i.errorList,function(){n("<li />").html(this.message).appendTo(r)}))}function a(t){var i=t.data("unobtrusiveContainer"),r=i.attr("data-valmsg-replace"),u=r?n.parseJSON(r):null;i&&(i.addClass("field-validation-valid").removeClass("field-validation-error"),t.removeData("unobtrusiveContainer"),u&&i.empty())}function v(){var t=n(this),i="__jquery_unobtrusive_validation_form_reset";if(!t.data(i)){t.data(i,!0);try{t.data("validator").resetForm()}finally{t.removeData(i)}t.find(".validation-summary-errors").addClass("validation-summary-valid").removeClass("validation-summary-errors");t.find(".field-validation-error").addClass("field-validation-valid").removeClass("field-validation-error").removeData("unobtrusiveContainer").find(">*").removeData("unobtrusiveContainer")}}function s(t){var i=n(t),f=i.data(u),s=n.proxy(v,t),e=r.unobtrusive.options||{},o=function(i,r){var u=e[i];u&&n.isFunction(u)&&u.apply(t,r)};return f||(f={options:{errorClass:e.errorClass||"input-validation-error",errorElement:e.errorElement||"span",errorPlacement:function(){c.apply(t,arguments);o("errorPlacement",arguments)},invalidHandler:function(){l.apply(t,arguments);o("invalidHandler",arguments)},messages:{},rules:{},success:function(){a.apply(t,arguments);o("success",arguments)}},attachValidation:function(){i.off("reset."+u,s).on("reset."+u,s).validate(this.options)},validate:function(){return i.validate(),i.valid()}},i.data(u,f)),f}var r=n.validator,t,u="unobtrusiveValidation";r.unobtrusive={adapters:[],parseElement:function(t,i){var u=n(t),f=u.parents("form")[0],r,e,o;f&&(r=s(f),r.options.rules[t.name]=e={},r.options.messages[t.name]=o={},n.each(this.adapters,function(){var i="data-val-"+this.name,r=u.attr(i),s={};r!==undefined&&(i+="-",n.each(this.params,function(){s[this]=u.attr(i+this)}),this.adapt({element:t,form:f,message:r,params:s,rules:e,messages:o}))}),n.extend(e,{__dummy__:!0}),i||r.attachValidation())},parse:function(t){var i=n(t),u=i.parents().addBack().filter("form").add(i.find("form")).has("[data-val=true]");i.find("[data-val=true]").each(function(){r.unobtrusive.parseElement(this,!0)});u.each(function(){var n=s(this);n&&n.attachValidation()})}};t=r.unobtrusive.adapters;t.add=function(n,t,i){return i||(i=t,t=[]),this.push({name:n,params:t,adapt:i}),this};t.addBool=function(n,t){return this.add(n,function(r){i(r,t||n,!0)})};t.addMinMax=function(n,t,r,u,f,e){return this.add(n,[f||"min",e||"max"],function(n){var f=n.params.min,e=n.params.max;f&&e?i(n,u,[f,e]):f?i(n,t,f):e&&i(n,r,e)})};t.addSingleVal=function(n,t,r){return this.add(n,[t||"val"],function(u){i(u,r||n,u.params[t])})};r.addMethod("__dummy__",function(){return!0});r.addMethod("regex",function(n,t,i){var r;return this.optional(t)?!0:(r=new RegExp(i).exec(n),r&&r.index===0&&r[0].length===n.length)});r.addMethod("nonalphamin",function(n,t,i){var r;return i&&(r=n.match(/\W/g),r=r&&r.length>=i),r});r.methods.extension?(t.addSingleVal("accept","mimtype"),t.addSingleVal("extension","extension")):t.addSingleVal("extension","extension","accept");t.addSingleVal("regex","pattern");t.addBool("creditcard").addBool("date").addBool("digits").addBool("email").addBool("number").addBool("url");t.addMinMax("length","minlength","maxlength","rangelength").addMinMax("range","min","max","range");t.addMinMax("minlength","minlength").addMinMax("maxlength","minlength","maxlength");t.add("equalto",["other"],function(t){var r=e(t.element.name),u=t.params.other,s=o(u,r),h=n(t.form).find(":input").filter("[name='"+f(s)+"']")[0];i(t,"equalTo",h)});t.add("required",function(n){(n.element.tagName.toUpperCase()!=="INPUT"||n.element.type.toUpperCase()!=="CHECKBOX")&&i(n,"required",!0)});t.add("remote",["url","type","additionalfields"],function(t){var r={url:t.params.url,type:t.params.type||"GET",data:{}},u=e(t.element.name);n.each(h(t.params.additionalfields||t.element.name),function(i,e){var s=o(e,u);r.data[s]=function(){var i=n(t.form).find(":input").filter("[name='"+f(s)+"']");return i.is(":checkbox")?i.filter(":checked").val()||i.filter(":hidden").val()||"":i.is(":radio")?i.filter(":checked").val()||"":i.val()}});i(t,"remote",r)});t.add("password",["min","nonalphamin","regex"],function(n){n.params.min&&i(n,"minlength",n.params.min);n.params.nonalphamin&&i(n,"nonalphamin",n.params.nonalphamin);n.params.regex&&i(n,"regex",n.params.regex)});n(function(){r.unobtrusive.parse(document)})})(jQuery);
/*
 AngularJS v1.5.8
 (c) 2010-2016 Google, Inc. http://angularjs.org
 License: MIT
*/
(function(C){'use strict';function N(a){return function(){var b=arguments[0],d;d="["+(a?a+":":"")+b+"] http://errors.angularjs.org/1.5.8/"+(a?a+"/":"")+b;for(b=1;b<arguments.length;b++){d=d+(1==b?"?":"&")+"p"+(b-1)+"=";var c=encodeURIComponent,e;e=arguments[b];e="function"==typeof e?e.toString().replace(/ \{[\s\S]*$/,""):"undefined"==typeof e?"undefined":"string"!=typeof e?JSON.stringify(e):e;d+=c(e)}return Error(d)}}function ta(a){if(null==a||Va(a))return!1;if(L(a)||G(a)||F&&a instanceof F)return!0;
var b="length"in Object(a)&&a.length;return T(b)&&(0<=b&&(b-1 in a||a instanceof Array)||"function"==typeof a.item)}function q(a,b,d){var c,e;if(a)if(z(a))for(c in a)"prototype"==c||"length"==c||"name"==c||a.hasOwnProperty&&!a.hasOwnProperty(c)||b.call(d,a[c],c,a);else if(L(a)||ta(a)){var f="object"!==typeof a;c=0;for(e=a.length;c<e;c++)(f||c in a)&&b.call(d,a[c],c,a)}else if(a.forEach&&a.forEach!==q)a.forEach(b,d,a);else if(sc(a))for(c in a)b.call(d,a[c],c,a);else if("function"===typeof a.hasOwnProperty)for(c in a)a.hasOwnProperty(c)&&
b.call(d,a[c],c,a);else for(c in a)ua.call(a,c)&&b.call(d,a[c],c,a);return a}function tc(a,b,d){for(var c=Object.keys(a).sort(),e=0;e<c.length;e++)b.call(d,a[c[e]],c[e]);return c}function uc(a){return function(b,d){a(d,b)}}function Yd(){return++pb}function Pb(a,b,d){for(var c=a.$$hashKey,e=0,f=b.length;e<f;++e){var g=b[e];if(D(g)||z(g))for(var h=Object.keys(g),k=0,l=h.length;k<l;k++){var m=h[k],n=g[m];d&&D(n)?da(n)?a[m]=new Date(n.valueOf()):Wa(n)?a[m]=new RegExp(n):n.nodeName?a[m]=n.cloneNode(!0):
Qb(n)?a[m]=n.clone():(D(a[m])||(a[m]=L(n)?[]:{}),Pb(a[m],[n],!0)):a[m]=n}}c?a.$$hashKey=c:delete a.$$hashKey;return a}function S(a){return Pb(a,va.call(arguments,1),!1)}function Zd(a){return Pb(a,va.call(arguments,1),!0)}function Z(a){return parseInt(a,10)}function Rb(a,b){return S(Object.create(a),b)}function A(){}function Xa(a){return a}function ha(a){return function(){return a}}function vc(a){return z(a.toString)&&a.toString!==ma}function y(a){return"undefined"===typeof a}function w(a){return"undefined"!==
typeof a}function D(a){return null!==a&&"object"===typeof a}function sc(a){return null!==a&&"object"===typeof a&&!wc(a)}function G(a){return"string"===typeof a}function T(a){return"number"===typeof a}function da(a){return"[object Date]"===ma.call(a)}function z(a){return"function"===typeof a}function Wa(a){return"[object RegExp]"===ma.call(a)}function Va(a){return a&&a.window===a}function Ya(a){return a&&a.$evalAsync&&a.$watch}function Ga(a){return"boolean"===typeof a}function $d(a){return a&&T(a.length)&&
ae.test(ma.call(a))}function Qb(a){return!(!a||!(a.nodeName||a.prop&&a.attr&&a.find))}function be(a){var b={};a=a.split(",");var d;for(d=0;d<a.length;d++)b[a[d]]=!0;return b}function wa(a){return Q(a.nodeName||a[0]&&a[0].nodeName)}function Za(a,b){var d=a.indexOf(b);0<=d&&a.splice(d,1);return d}function pa(a,b){function d(a,b){var d=b.$$hashKey,e;if(L(a)){e=0;for(var f=a.length;e<f;e++)b.push(c(a[e]))}else if(sc(a))for(e in a)b[e]=c(a[e]);else if(a&&"function"===typeof a.hasOwnProperty)for(e in a)a.hasOwnProperty(e)&&
(b[e]=c(a[e]));else for(e in a)ua.call(a,e)&&(b[e]=c(a[e]));d?b.$$hashKey=d:delete b.$$hashKey;return b}function c(a){if(!D(a))return a;var b=f.indexOf(a);if(-1!==b)return g[b];if(Va(a)||Ya(a))throw xa("cpws");var b=!1,c=e(a);void 0===c&&(c=L(a)?[]:Object.create(wc(a)),b=!0);f.push(a);g.push(c);return b?d(a,c):c}function e(a){switch(ma.call(a)){case "[object Int8Array]":case "[object Int16Array]":case "[object Int32Array]":case "[object Float32Array]":case "[object Float64Array]":case "[object Uint8Array]":case "[object Uint8ClampedArray]":case "[object Uint16Array]":case "[object Uint32Array]":return new a.constructor(c(a.buffer),
a.byteOffset,a.length);case "[object ArrayBuffer]":if(!a.slice){var b=new ArrayBuffer(a.byteLength);(new Uint8Array(b)).set(new Uint8Array(a));return b}return a.slice(0);case "[object Boolean]":case "[object Number]":case "[object String]":case "[object Date]":return new a.constructor(a.valueOf());case "[object RegExp]":return b=new RegExp(a.source,a.toString().match(/[^\/]*$/)[0]),b.lastIndex=a.lastIndex,b;case "[object Blob]":return new a.constructor([a],{type:a.type})}if(z(a.cloneNode))return a.cloneNode(!0)}
var f=[],g=[];if(b){if($d(b)||"[object ArrayBuffer]"===ma.call(b))throw xa("cpta");if(a===b)throw xa("cpi");L(b)?b.length=0:q(b,function(a,d){"$$hashKey"!==d&&delete b[d]});f.push(a);g.push(b);return d(a,b)}return c(a)}function na(a,b){if(a===b)return!0;if(null===a||null===b)return!1;if(a!==a&&b!==b)return!0;var d=typeof a,c;if(d==typeof b&&"object"==d)if(L(a)){if(!L(b))return!1;if((d=a.length)==b.length){for(c=0;c<d;c++)if(!na(a[c],b[c]))return!1;return!0}}else{if(da(a))return da(b)?na(a.getTime(),
b.getTime()):!1;if(Wa(a))return Wa(b)?a.toString()==b.toString():!1;if(Ya(a)||Ya(b)||Va(a)||Va(b)||L(b)||da(b)||Wa(b))return!1;d=U();for(c in a)if("$"!==c.charAt(0)&&!z(a[c])){if(!na(a[c],b[c]))return!1;d[c]=!0}for(c in b)if(!(c in d)&&"$"!==c.charAt(0)&&w(b[c])&&!z(b[c]))return!1;return!0}return!1}function $a(a,b,d){return a.concat(va.call(b,d))}function ab(a,b){var d=2<arguments.length?va.call(arguments,2):[];return!z(b)||b instanceof RegExp?b:d.length?function(){return arguments.length?b.apply(a,
$a(d,arguments,0)):b.apply(a,d)}:function(){return arguments.length?b.apply(a,arguments):b.call(a)}}function ce(a,b){var d=b;"string"===typeof a&&"$"===a.charAt(0)&&"$"===a.charAt(1)?d=void 0:Va(b)?d="$WINDOW":b&&C.document===b?d="$DOCUMENT":Ya(b)&&(d="$SCOPE");return d}function bb(a,b){if(!y(a))return T(b)||(b=b?2:null),JSON.stringify(a,ce,b)}function xc(a){return G(a)?JSON.parse(a):a}function yc(a,b){a=a.replace(de,"");var d=Date.parse("Jan 01, 1970 00:00:00 "+a)/6E4;return isNaN(d)?b:d}function Sb(a,
b,d){d=d?-1:1;var c=a.getTimezoneOffset();b=yc(b,c);d*=b-c;a=new Date(a.getTime());a.setMinutes(a.getMinutes()+d);return a}function ya(a){a=F(a).clone();try{a.empty()}catch(b){}var d=F("<div>").append(a).html();try{return a[0].nodeType===Ma?Q(d):d.match(/^(<[^>]+>)/)[1].replace(/^<([\w\-]+)/,function(a,b){return"<"+Q(b)})}catch(c){return Q(d)}}function zc(a){try{return decodeURIComponent(a)}catch(b){}}function Ac(a){var b={};q((a||"").split("&"),function(a){var c,e,f;a&&(e=a=a.replace(/\+/g,"%20"),
c=a.indexOf("="),-1!==c&&(e=a.substring(0,c),f=a.substring(c+1)),e=zc(e),w(e)&&(f=w(f)?zc(f):!0,ua.call(b,e)?L(b[e])?b[e].push(f):b[e]=[b[e],f]:b[e]=f))});return b}function Tb(a){var b=[];q(a,function(a,c){L(a)?q(a,function(a){b.push(ea(c,!0)+(!0===a?"":"="+ea(a,!0)))}):b.push(ea(c,!0)+(!0===a?"":"="+ea(a,!0)))});return b.length?b.join("&"):""}function qb(a){return ea(a,!0).replace(/%26/gi,"&").replace(/%3D/gi,"=").replace(/%2B/gi,"+")}function ea(a,b){return encodeURIComponent(a).replace(/%40/gi,
"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%3B/gi,";").replace(/%20/g,b?"%20":"+")}function ee(a,b){var d,c,e=Na.length;for(c=0;c<e;++c)if(d=Na[c]+b,G(d=a.getAttribute(d)))return d;return null}function fe(a,b){var d,c,e={};q(Na,function(b){b+="app";!d&&a.hasAttribute&&a.hasAttribute(b)&&(d=a,c=a.getAttribute(b))});q(Na,function(b){b+="app";var e;!d&&(e=a.querySelector("["+b.replace(":","\\:")+"]"))&&(d=e,c=e.getAttribute(b))});d&&(e.strictDi=null!==ee(d,"strict-di"),
b(d,c?[c]:[],e))}function Bc(a,b,d){D(d)||(d={});d=S({strictDi:!1},d);var c=function(){a=F(a);if(a.injector()){var c=a[0]===C.document?"document":ya(a);throw xa("btstrpd",c.replace(/</,"&lt;").replace(/>/,"&gt;"));}b=b||[];b.unshift(["$provide",function(b){b.value("$rootElement",a)}]);d.debugInfoEnabled&&b.push(["$compileProvider",function(a){a.debugInfoEnabled(!0)}]);b.unshift("ng");c=cb(b,d.strictDi);c.invoke(["$rootScope","$rootElement","$compile","$injector",function(a,b,c,d){a.$apply(function(){b.data("$injector",
d);c(b)(a)})}]);return c},e=/^NG_ENABLE_DEBUG_INFO!/,f=/^NG_DEFER_BOOTSTRAP!/;C&&e.test(C.name)&&(d.debugInfoEnabled=!0,C.name=C.name.replace(e,""));if(C&&!f.test(C.name))return c();C.name=C.name.replace(f,"");ca.resumeBootstrap=function(a){q(a,function(a){b.push(a)});return c()};z(ca.resumeDeferredBootstrap)&&ca.resumeDeferredBootstrap()}function ge(){C.name="NG_ENABLE_DEBUG_INFO!"+C.name;C.location.reload()}function he(a){a=ca.element(a).injector();if(!a)throw xa("test");return a.get("$$testability")}
function Cc(a,b){b=b||"_";return a.replace(ie,function(a,c){return(c?b:"")+a.toLowerCase()})}function je(){var a;if(!Dc){var b=rb();(qa=y(b)?C.jQuery:b?C[b]:void 0)&&qa.fn.on?(F=qa,S(qa.fn,{scope:Oa.scope,isolateScope:Oa.isolateScope,controller:Oa.controller,injector:Oa.injector,inheritedData:Oa.inheritedData}),a=qa.cleanData,qa.cleanData=function(b){for(var c,e=0,f;null!=(f=b[e]);e++)(c=qa._data(f,"events"))&&c.$destroy&&qa(f).triggerHandler("$destroy");a(b)}):F=O;ca.element=F;Dc=!0}}function sb(a,
b,d){if(!a)throw xa("areq",b||"?",d||"required");return a}function Pa(a,b,d){d&&L(a)&&(a=a[a.length-1]);sb(z(a),b,"not a function, got "+(a&&"object"===typeof a?a.constructor.name||"Object":typeof a));return a}function Qa(a,b){if("hasOwnProperty"===a)throw xa("badname",b);}function Ec(a,b,d){if(!b)return a;b=b.split(".");for(var c,e=a,f=b.length,g=0;g<f;g++)c=b[g],a&&(a=(e=a)[c]);return!d&&z(a)?ab(e,a):a}function tb(a){for(var b=a[0],d=a[a.length-1],c,e=1;b!==d&&(b=b.nextSibling);e++)if(c||a[e]!==
b)c||(c=F(va.call(a,0,e))),c.push(b);return c||a}function U(){return Object.create(null)}function ke(a){function b(a,b,c){return a[b]||(a[b]=c())}var d=N("$injector"),c=N("ng");a=b(a,"angular",Object);a.$$minErr=a.$$minErr||N;return b(a,"module",function(){var a={};return function(f,g,h){if("hasOwnProperty"===f)throw c("badname","module");g&&a.hasOwnProperty(f)&&(a[f]=null);return b(a,f,function(){function a(b,d,e,f){f||(f=c);return function(){f[e||"push"]([b,d,arguments]);return R}}function b(a,
d){return function(b,e){e&&z(e)&&(e.$$moduleName=f);c.push([a,d,arguments]);return R}}if(!g)throw d("nomod",f);var c=[],e=[],p=[],u=a("$injector","invoke","push",e),R={_invokeQueue:c,_configBlocks:e,_runBlocks:p,requires:g,name:f,provider:b("$provide","provider"),factory:b("$provide","factory"),service:b("$provide","service"),value:a("$provide","value"),constant:a("$provide","constant","unshift"),decorator:b("$provide","decorator"),animation:b("$animateProvider","register"),filter:b("$filterProvider",
"register"),controller:b("$controllerProvider","register"),directive:b("$compileProvider","directive"),component:b("$compileProvider","component"),config:u,run:function(a){p.push(a);return this}};h&&u(h);return R})}})}function ia(a,b){if(L(a)){b=b||[];for(var d=0,c=a.length;d<c;d++)b[d]=a[d]}else if(D(a))for(d in b=b||{},a)if("$"!==d.charAt(0)||"$"!==d.charAt(1))b[d]=a[d];return b||a}function le(a){S(a,{bootstrap:Bc,copy:pa,extend:S,merge:Zd,equals:na,element:F,forEach:q,injector:cb,noop:A,bind:ab,
toJson:bb,fromJson:xc,identity:Xa,isUndefined:y,isDefined:w,isString:G,isFunction:z,isObject:D,isNumber:T,isElement:Qb,isArray:L,version:me,isDate:da,lowercase:Q,uppercase:ub,callbacks:{$$counter:0},getTestability:he,$$minErr:N,$$csp:Ba,reloadWithDebugInfo:ge});Ub=ke(C);Ub("ng",["ngLocale"],["$provide",function(a){a.provider({$$sanitizeUri:ne});a.provider("$compile",Fc).directive({a:oe,input:Gc,textarea:Gc,form:pe,script:qe,select:re,style:se,option:te,ngBind:ue,ngBindHtml:ve,ngBindTemplate:we,ngClass:xe,
ngClassEven:ye,ngClassOdd:ze,ngCloak:Ae,ngController:Be,ngForm:Ce,ngHide:De,ngIf:Ee,ngInclude:Fe,ngInit:Ge,ngNonBindable:He,ngPluralize:Ie,ngRepeat:Je,ngShow:Ke,ngStyle:Le,ngSwitch:Me,ngSwitchWhen:Ne,ngSwitchDefault:Oe,ngOptions:Pe,ngTransclude:Qe,ngModel:Re,ngList:Se,ngChange:Te,pattern:Hc,ngPattern:Hc,required:Ic,ngRequired:Ic,minlength:Jc,ngMinlength:Jc,maxlength:Kc,ngMaxlength:Kc,ngValue:Ue,ngModelOptions:Ve}).directive({ngInclude:We}).directive(vb).directive(Lc);a.provider({$anchorScroll:Xe,
$animate:Ye,$animateCss:Ze,$$animateJs:$e,$$animateQueue:af,$$AnimateRunner:bf,$$animateAsyncRun:cf,$browser:df,$cacheFactory:ef,$controller:ff,$document:gf,$exceptionHandler:hf,$filter:Mc,$$forceReflow:jf,$interpolate:kf,$interval:lf,$http:mf,$httpParamSerializer:nf,$httpParamSerializerJQLike:of,$httpBackend:pf,$xhrFactory:qf,$jsonpCallbacks:rf,$location:sf,$log:tf,$parse:uf,$rootScope:vf,$q:wf,$$q:xf,$sce:yf,$sceDelegate:zf,$sniffer:Af,$templateCache:Bf,$templateRequest:Cf,$$testability:Df,$timeout:Ef,
$window:Ff,$$rAF:Gf,$$jqLite:Hf,$$HashMap:If,$$cookieReader:Jf})}])}function db(a){return a.replace(Kf,function(a,d,c,e){return e?c.toUpperCase():c}).replace(Lf,"Moz$1")}function Nc(a){a=a.nodeType;return 1===a||!a||9===a}function Oc(a,b){var d,c,e=b.createDocumentFragment(),f=[];if(Vb.test(a)){d=e.appendChild(b.createElement("div"));c=(Mf.exec(a)||["",""])[1].toLowerCase();c=ja[c]||ja._default;d.innerHTML=c[1]+a.replace(Nf,"<$1></$2>")+c[2];for(c=c[0];c--;)d=d.lastChild;f=$a(f,d.childNodes);d=e.firstChild;
d.textContent=""}else f.push(b.createTextNode(a));e.textContent="";e.innerHTML="";q(f,function(a){e.appendChild(a)});return e}function Pc(a,b){var d=a.parentNode;d&&d.replaceChild(b,a);b.appendChild(a)}function O(a){if(a instanceof O)return a;var b;G(a)&&(a=W(a),b=!0);if(!(this instanceof O)){if(b&&"<"!=a.charAt(0))throw Wb("nosel");return new O(a)}if(b){b=C.document;var d;a=(d=Of.exec(a))?[b.createElement(d[1])]:(d=Oc(a,b))?d.childNodes:[]}Qc(this,a)}function Xb(a){return a.cloneNode(!0)}function wb(a,
b){b||eb(a);if(a.querySelectorAll)for(var d=a.querySelectorAll("*"),c=0,e=d.length;c<e;c++)eb(d[c])}function Rc(a,b,d,c){if(w(c))throw Wb("offargs");var e=(c=xb(a))&&c.events,f=c&&c.handle;if(f)if(b){var g=function(b){var c=e[b];w(d)&&Za(c||[],d);w(d)&&c&&0<c.length||(a.removeEventListener(b,f,!1),delete e[b])};q(b.split(" "),function(a){g(a);yb[a]&&g(yb[a])})}else for(b in e)"$destroy"!==b&&a.removeEventListener(b,f,!1),delete e[b]}function eb(a,b){var d=a.ng339,c=d&&fb[d];c&&(b?delete c.data[b]:
(c.handle&&(c.events.$destroy&&c.handle({},"$destroy"),Rc(a)),delete fb[d],a.ng339=void 0))}function xb(a,b){var d=a.ng339,d=d&&fb[d];b&&!d&&(a.ng339=d=++Pf,d=fb[d]={events:{},data:{},handle:void 0});return d}function Yb(a,b,d){if(Nc(a)){var c=w(d),e=!c&&b&&!D(b),f=!b;a=(a=xb(a,!e))&&a.data;if(c)a[b]=d;else{if(f)return a;if(e)return a&&a[b];S(a,b)}}}function zb(a,b){return a.getAttribute?-1<(" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ").indexOf(" "+b+" "):!1}function Ab(a,b){b&&a.setAttribute&&
q(b.split(" "),function(b){a.setAttribute("class",W((" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ").replace(" "+W(b)+" "," ")))})}function Bb(a,b){if(b&&a.setAttribute){var d=(" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ");q(b.split(" "),function(a){a=W(a);-1===d.indexOf(" "+a+" ")&&(d+=a+" ")});a.setAttribute("class",W(d))}}function Qc(a,b){if(b)if(b.nodeType)a[a.length++]=b;else{var d=b.length;if("number"===typeof d&&b.window!==b){if(d)for(var c=0;c<d;c++)a[a.length++]=
b[c]}else a[a.length++]=b}}function Sc(a,b){return Cb(a,"$"+(b||"ngController")+"Controller")}function Cb(a,b,d){9==a.nodeType&&(a=a.documentElement);for(b=L(b)?b:[b];a;){for(var c=0,e=b.length;c<e;c++)if(w(d=F.data(a,b[c])))return d;a=a.parentNode||11===a.nodeType&&a.host}}function Tc(a){for(wb(a,!0);a.firstChild;)a.removeChild(a.firstChild)}function Db(a,b){b||wb(a);var d=a.parentNode;d&&d.removeChild(a)}function Qf(a,b){b=b||C;if("complete"===b.document.readyState)b.setTimeout(a);else F(b).on("load",
a)}function Uc(a,b){var d=Eb[b.toLowerCase()];return d&&Vc[wa(a)]&&d}function Rf(a,b){var d=function(c,d){c.isDefaultPrevented=function(){return c.defaultPrevented};var f=b[d||c.type],g=f?f.length:0;if(g){if(y(c.immediatePropagationStopped)){var h=c.stopImmediatePropagation;c.stopImmediatePropagation=function(){c.immediatePropagationStopped=!0;c.stopPropagation&&c.stopPropagation();h&&h.call(c)}}c.isImmediatePropagationStopped=function(){return!0===c.immediatePropagationStopped};var k=f.specialHandlerWrapper||
Sf;1<g&&(f=ia(f));for(var l=0;l<g;l++)c.isImmediatePropagationStopped()||k(a,c,f[l])}};d.elem=a;return d}function Sf(a,b,d){d.call(a,b)}function Tf(a,b,d){var c=b.relatedTarget;c&&(c===a||Uf.call(a,c))||d.call(a,b)}function Hf(){this.$get=function(){return S(O,{hasClass:function(a,b){a.attr&&(a=a[0]);return zb(a,b)},addClass:function(a,b){a.attr&&(a=a[0]);return Bb(a,b)},removeClass:function(a,b){a.attr&&(a=a[0]);return Ab(a,b)}})}}function Ca(a,b){var d=a&&a.$$hashKey;if(d)return"function"===typeof d&&
(d=a.$$hashKey()),d;d=typeof a;return d="function"==d||"object"==d&&null!==a?a.$$hashKey=d+":"+(b||Yd)():d+":"+a}function Ra(a,b){if(b){var d=0;this.nextUid=function(){return++d}}q(a,this.put,this)}function Wc(a){a=(Function.prototype.toString.call(a)+" ").replace(Vf,"");return a.match(Wf)||a.match(Xf)}function Yf(a){return(a=Wc(a))?"function("+(a[1]||"").replace(/[\s\r\n]+/," ")+")":"fn"}function cb(a,b){function d(a){return function(b,c){if(D(b))q(b,uc(a));else return a(b,c)}}function c(a,b){Qa(a,
"service");if(z(b)||L(b))b=p.instantiate(b);if(!b.$get)throw Ha("pget",a);return n[a+"Provider"]=b}function e(a,b){return function(){var c=B.invoke(b,this);if(y(c))throw Ha("undef",a);return c}}function f(a,b,d){return c(a,{$get:!1!==d?e(a,b):b})}function g(a){sb(y(a)||L(a),"modulesToLoad","not an array");var b=[],c;q(a,function(a){function d(a){var b,c;b=0;for(c=a.length;b<c;b++){var e=a[b],f=p.get(e[0]);f[e[1]].apply(f,e[2])}}if(!m.get(a)){m.put(a,!0);try{G(a)?(c=Ub(a),b=b.concat(g(c.requires)).concat(c._runBlocks),
d(c._invokeQueue),d(c._configBlocks)):z(a)?b.push(p.invoke(a)):L(a)?b.push(p.invoke(a)):Pa(a,"module")}catch(e){throw L(a)&&(a=a[a.length-1]),e.message&&e.stack&&-1==e.stack.indexOf(e.message)&&(e=e.message+"\n"+e.stack),Ha("modulerr",a,e.stack||e.message||e);}}});return b}function h(a,c){function d(b,e){if(a.hasOwnProperty(b)){if(a[b]===k)throw Ha("cdep",b+" <- "+l.join(" <- "));return a[b]}try{return l.unshift(b),a[b]=k,a[b]=c(b,e)}catch(f){throw a[b]===k&&delete a[b],f;}finally{l.shift()}}function e(a,
c,f){var g=[];a=cb.$$annotate(a,b,f);for(var h=0,k=a.length;h<k;h++){var l=a[h];if("string"!==typeof l)throw Ha("itkn",l);g.push(c&&c.hasOwnProperty(l)?c[l]:d(l,f))}return g}return{invoke:function(a,b,c,d){"string"===typeof c&&(d=c,c=null);c=e(a,c,d);L(a)&&(a=a[a.length-1]);d=11>=Ea?!1:"function"===typeof a&&/^(?:class\b|constructor\()/.test(Function.prototype.toString.call(a)+" ");return d?(c.unshift(null),new (Function.prototype.bind.apply(a,c))):a.apply(b,c)},instantiate:function(a,b,c){var d=
L(a)?a[a.length-1]:a;a=e(a,b,c);a.unshift(null);return new (Function.prototype.bind.apply(d,a))},get:d,annotate:cb.$$annotate,has:function(b){return n.hasOwnProperty(b+"Provider")||a.hasOwnProperty(b)}}}b=!0===b;var k={},l=[],m=new Ra([],!0),n={$provide:{provider:d(c),factory:d(f),service:d(function(a,b){return f(a,["$injector",function(a){return a.instantiate(b)}])}),value:d(function(a,b){return f(a,ha(b),!1)}),constant:d(function(a,b){Qa(a,"constant");n[a]=b;u[a]=b}),decorator:function(a,b){var c=
p.get(a+"Provider"),d=c.$get;c.$get=function(){var a=B.invoke(d,c);return B.invoke(b,null,{$delegate:a})}}}},p=n.$injector=h(n,function(a,b){ca.isString(b)&&l.push(b);throw Ha("unpr",l.join(" <- "));}),u={},R=h(u,function(a,b){var c=p.get(a+"Provider",b);return B.invoke(c.$get,c,void 0,a)}),B=R;n.$injectorProvider={$get:ha(R)};var r=g(a),B=R.get("$injector");B.strictDi=b;q(r,function(a){a&&B.invoke(a)});return B}function Xe(){var a=!0;this.disableAutoScrolling=function(){a=!1};this.$get=["$window",
"$location","$rootScope",function(b,d,c){function e(a){var b=null;Array.prototype.some.call(a,function(a){if("a"===wa(a))return b=a,!0});return b}function f(a){if(a){a.scrollIntoView();var c;c=g.yOffset;z(c)?c=c():Qb(c)?(c=c[0],c="fixed"!==b.getComputedStyle(c).position?0:c.getBoundingClientRect().bottom):T(c)||(c=0);c&&(a=a.getBoundingClientRect().top,b.scrollBy(0,a-c))}else b.scrollTo(0,0)}function g(a){a=G(a)?a:d.hash();var b;a?(b=h.getElementById(a))?f(b):(b=e(h.getElementsByName(a)))?f(b):"top"===
a&&f(null):f(null)}var h=b.document;a&&c.$watch(function(){return d.hash()},function(a,b){a===b&&""===a||Qf(function(){c.$evalAsync(g)})});return g}]}function gb(a,b){if(!a&&!b)return"";if(!a)return b;if(!b)return a;L(a)&&(a=a.join(" "));L(b)&&(b=b.join(" "));return a+" "+b}function Zf(a){G(a)&&(a=a.split(" "));var b=U();q(a,function(a){a.length&&(b[a]=!0)});return b}function Ia(a){return D(a)?a:{}}function $f(a,b,d,c){function e(a){try{a.apply(null,va.call(arguments,1))}finally{if(R--,0===R)for(;B.length;)try{B.pop()()}catch(b){d.error(b)}}}
function f(){t=null;g();h()}function g(){r=K();r=y(r)?null:r;na(r,E)&&(r=E);E=r}function h(){if(v!==k.url()||J!==r)v=k.url(),J=r,q(M,function(a){a(k.url(),r)})}var k=this,l=a.location,m=a.history,n=a.setTimeout,p=a.clearTimeout,u={};k.isMock=!1;var R=0,B=[];k.$$completeOutstandingRequest=e;k.$$incOutstandingRequestCount=function(){R++};k.notifyWhenNoOutstandingRequests=function(a){0===R?a():B.push(a)};var r,J,v=l.href,fa=b.find("base"),t=null,K=c.history?function(){try{return m.state}catch(a){}}:
A;g();J=r;k.url=function(b,d,e){y(e)&&(e=null);l!==a.location&&(l=a.location);m!==a.history&&(m=a.history);if(b){var f=J===e;if(v===b&&(!c.history||f))return k;var h=v&&Ja(v)===Ja(b);v=b;J=e;!c.history||h&&f?(h||(t=b),d?l.replace(b):h?(d=l,e=b.indexOf("#"),e=-1===e?"":b.substr(e),d.hash=e):l.href=b,l.href!==b&&(t=b)):(m[d?"replaceState":"pushState"](e,"",b),g(),J=r);t&&(t=b);return k}return t||l.href.replace(/%27/g,"'")};k.state=function(){return r};var M=[],H=!1,E=null;k.onUrlChange=function(b){if(!H){if(c.history)F(a).on("popstate",
f);F(a).on("hashchange",f);H=!0}M.push(b);return b};k.$$applicationDestroyed=function(){F(a).off("hashchange popstate",f)};k.$$checkUrlChange=h;k.baseHref=function(){var a=fa.attr("href");return a?a.replace(/^(https?\:)?\/\/[^\/]*/,""):""};k.defer=function(a,b){var c;R++;c=n(function(){delete u[c];e(a)},b||0);u[c]=!0;return c};k.defer.cancel=function(a){return u[a]?(delete u[a],p(a),e(A),!0):!1}}function df(){this.$get=["$window","$log","$sniffer","$document",function(a,b,d,c){return new $f(a,c,b,
d)}]}function ef(){this.$get=function(){function a(a,c){function e(a){a!=n&&(p?p==a&&(p=a.n):p=a,f(a.n,a.p),f(a,n),n=a,n.n=null)}function f(a,b){a!=b&&(a&&(a.p=b),b&&(b.n=a))}if(a in b)throw N("$cacheFactory")("iid",a);var g=0,h=S({},c,{id:a}),k=U(),l=c&&c.capacity||Number.MAX_VALUE,m=U(),n=null,p=null;return b[a]={put:function(a,b){if(!y(b)){if(l<Number.MAX_VALUE){var c=m[a]||(m[a]={key:a});e(c)}a in k||g++;k[a]=b;g>l&&this.remove(p.key);return b}},get:function(a){if(l<Number.MAX_VALUE){var b=m[a];
if(!b)return;e(b)}return k[a]},remove:function(a){if(l<Number.MAX_VALUE){var b=m[a];if(!b)return;b==n&&(n=b.p);b==p&&(p=b.n);f(b.n,b.p);delete m[a]}a in k&&(delete k[a],g--)},removeAll:function(){k=U();g=0;m=U();n=p=null},destroy:function(){m=h=k=null;delete b[a]},info:function(){return S({},h,{size:g})}}}var b={};a.info=function(){var a={};q(b,function(b,e){a[e]=b.info()});return a};a.get=function(a){return b[a]};return a}}function Bf(){this.$get=["$cacheFactory",function(a){return a("templates")}]}
function Fc(a,b){function d(a,b,c){var d=/^\s*([@&<]|=(\*?))(\??)\s*(\w*)\s*$/,e=U();q(a,function(a,f){if(a in n)e[f]=n[a];else{var g=a.match(d);if(!g)throw ga("iscp",b,f,a,c?"controller bindings definition":"isolate scope definition");e[f]={mode:g[1][0],collection:"*"===g[2],optional:"?"===g[3],attrName:g[4]||f};g[4]&&(n[a]=e[f])}});return e}function c(a){var b=a.charAt(0);if(!b||b!==Q(b))throw ga("baddir",a);if(a!==a.trim())throw ga("baddir",a);}function e(a){var b=a.require||a.controller&&a.name;
!L(b)&&D(b)&&q(b,function(a,c){var d=a.match(l);a.substring(d[0].length)||(b[c]=d[0]+c)});return b}var f={},g=/^\s*directive\:\s*([\w\-]+)\s+(.*)$/,h=/(([\w\-]+)(?:\:([^;]+))?;?)/,k=be("ngSrc,ngSrcset,src,srcset"),l=/^(?:(\^\^?)?(\?)?(\^\^?)?)?/,m=/^(on[a-z]+|formaction)$/,n=U();this.directive=function B(b,d){Qa(b,"directive");G(b)?(c(b),sb(d,"directiveFactory"),f.hasOwnProperty(b)||(f[b]=[],a.factory(b+"Directive",["$injector","$exceptionHandler",function(a,c){var d=[];q(f[b],function(f,g){try{var h=
a.invoke(f);z(h)?h={compile:ha(h)}:!h.compile&&h.link&&(h.compile=ha(h.link));h.priority=h.priority||0;h.index=g;h.name=h.name||b;h.require=e(h);h.restrict=h.restrict||"EA";h.$$moduleName=f.$$moduleName;d.push(h)}catch(k){c(k)}});return d}])),f[b].push(d)):q(b,uc(B));return this};this.component=function(a,b){function c(a){function e(b){return z(b)||L(b)?function(c,d){return a.invoke(b,this,{$element:c,$attrs:d})}:b}var f=b.template||b.templateUrl?b.template:"",g={controller:d,controllerAs:Xc(b.controller)||
b.controllerAs||"$ctrl",template:e(f),templateUrl:e(b.templateUrl),transclude:b.transclude,scope:{},bindToController:b.bindings||{},restrict:"E",require:b.require};q(b,function(a,b){"$"===b.charAt(0)&&(g[b]=a)});return g}var d=b.controller||function(){};q(b,function(a,b){"$"===b.charAt(0)&&(c[b]=a,z(d)&&(d[b]=a))});c.$inject=["$injector"];return this.directive(a,c)};this.aHrefSanitizationWhitelist=function(a){return w(a)?(b.aHrefSanitizationWhitelist(a),this):b.aHrefSanitizationWhitelist()};this.imgSrcSanitizationWhitelist=
function(a){return w(a)?(b.imgSrcSanitizationWhitelist(a),this):b.imgSrcSanitizationWhitelist()};var p=!0;this.debugInfoEnabled=function(a){return w(a)?(p=a,this):p};var u=10;this.onChangesTtl=function(a){return arguments.length?(u=a,this):u};this.$get=["$injector","$interpolate","$exceptionHandler","$templateRequest","$parse","$controller","$rootScope","$sce","$animate","$$sanitizeUri",function(a,b,c,e,n,t,K,M,H,E){function I(){try{if(!--qa)throw Y=void 0,ga("infchng",u);K.$apply(function(){for(var a=
[],b=0,c=Y.length;b<c;++b)try{Y[b]()}catch(d){a.push(d)}Y=void 0;if(a.length)throw a;})}finally{qa++}}function Da(a,b){if(b){var c=Object.keys(b),d,e,f;d=0;for(e=c.length;d<e;d++)f=c[d],this[f]=b[f]}else this.$attr={};this.$$element=a}function P(a,b,c){pa.innerHTML="<span "+b+">";b=pa.firstChild.attributes;var d=b[0];b.removeNamedItem(d.name);d.value=c;a.attributes.setNamedItem(d)}function x(a,b){try{a.addClass(b)}catch(c){}}function aa(a,b,c,d,e){a instanceof F||(a=F(a));for(var f=/\S+/,g=0,h=a.length;g<
h;g++){var k=a[g];k.nodeType===Ma&&k.nodeValue.match(f)&&Pc(k,a[g]=C.document.createElement("span"))}var l=s(a,b,a,c,d,e);aa.$$addScopeClass(a);var m=null;return function(b,c,d){sb(b,"scope");e&&e.needsNewScope&&(b=b.$parent.$new());d=d||{};var f=d.parentBoundTranscludeFn,g=d.transcludeControllers;d=d.futureParentElement;f&&f.$$boundTransclude&&(f=f.$$boundTransclude);m||(m=(d=d&&d[0])?"foreignobject"!==wa(d)&&ma.call(d).match(/SVG/)?"svg":"html":"html");d="html"!==m?F(da(m,F("<div>").append(a).html())):
c?Oa.clone.call(a):a;if(g)for(var h in g)d.data("$"+h+"Controller",g[h].instance);aa.$$addScopeInfo(d,b);c&&c(d,b);l&&l(b,d,d,f);return d}}function s(a,b,c,d,e,f){function g(a,c,d,e){var f,k,l,m,p,r,v;if(n)for(v=Array(c.length),m=0;m<h.length;m+=3)f=h[m],v[f]=c[f];else v=c;m=0;for(p=h.length;m<p;)k=v[h[m++]],c=h[m++],f=h[m++],c?(c.scope?(l=a.$new(),aa.$$addScopeInfo(F(k),l)):l=a,r=c.transcludeOnThisElement?za(a,c.transclude,e):!c.templateOnThisElement&&e?e:!e&&b?za(a,b):null,c(f,l,k,d,r)):f&&f(a,
k.childNodes,void 0,e)}for(var h=[],k,l,m,p,n,r=0;r<a.length;r++){k=new Da;l=$b(a[r],[],k,0===r?d:void 0,e);(f=l.length?oa(l,a[r],k,b,c,null,[],[],f):null)&&f.scope&&aa.$$addScopeClass(k.$$element);k=f&&f.terminal||!(m=a[r].childNodes)||!m.length?null:s(m,f?(f.transcludeOnThisElement||!f.templateOnThisElement)&&f.transclude:b);if(f||k)h.push(r,f,k),p=!0,n=n||f;f=null}return p?g:null}function za(a,b,c){function d(e,f,g,h,k){e||(e=a.$new(!1,k),e.$$transcluded=!0);return b(e,f,{parentBoundTranscludeFn:c,
transcludeControllers:g,futureParentElement:h})}var e=d.$$slots=U(),f;for(f in b.$$slots)e[f]=b.$$slots[f]?za(a,b.$$slots[f],c):null;return d}function $b(a,b,c,d,e){var f=c.$attr;switch(a.nodeType){case 1:O(b,Aa(wa(a)),"E",d,e);for(var g,k,l,m,p=a.attributes,n=0,r=p&&p.length;n<r;n++){var v=!1,u=!1;g=p[n];k=g.name;l=W(g.value);g=Aa(k);if(m=Ba.test(g))k=k.replace(Yc,"").substr(8).replace(/_(.)/g,function(a,b){return b.toUpperCase()});(g=g.match(Ca))&&V(g[1])&&(v=k,u=k.substr(0,k.length-5)+"end",k=
k.substr(0,k.length-6));g=Aa(k.toLowerCase());f[g]=k;if(m||!c.hasOwnProperty(g))c[g]=l,Uc(a,g)&&(c[g]=!0);ia(a,b,l,g,m);O(b,g,"A",d,e,v,u)}f=a.className;D(f)&&(f=f.animVal);if(G(f)&&""!==f)for(;a=h.exec(f);)g=Aa(a[2]),O(b,g,"C",d,e)&&(c[g]=W(a[3])),f=f.substr(a.index+a[0].length);break;case Ma:if(11===Ea)for(;a.parentNode&&a.nextSibling&&a.nextSibling.nodeType===Ma;)a.nodeValue+=a.nextSibling.nodeValue,a.parentNode.removeChild(a.nextSibling);ca(b,a.nodeValue);break;case 8:hb(a,b,c,d,e)}b.sort(Z);
return b}function hb(a,b,c,d,e){try{var f=g.exec(a.nodeValue);if(f){var h=Aa(f[1]);O(b,h,"M",d,e)&&(c[h]=W(f[2]))}}catch(k){}}function N(a,b,c){var d=[],e=0;if(b&&a.hasAttribute&&a.hasAttribute(b)){do{if(!a)throw ga("uterdir",b,c);1==a.nodeType&&(a.hasAttribute(b)&&e++,a.hasAttribute(c)&&e--);d.push(a);a=a.nextSibling}while(0<e)}else d.push(a);return F(d)}function Zc(a,b,c){return function(d,e,f,g,h){e=N(e[0],b,c);return a(d,e,f,g,h)}}function ac(a,b,c,d,e,f){var g;return a?aa(b,c,d,e,f):function(){g||
(g=aa(b,c,d,e,f),b=c=f=null);return g.apply(this,arguments)}}function oa(a,b,d,e,f,g,h,k,l){function m(a,b,c,d){if(a){c&&(a=Zc(a,c,d));a.require=x.require;a.directiveName=I;if(u===x||x.$$isolateScope)a=ja(a,{isolateScope:!0});h.push(a)}if(b){c&&(b=Zc(b,c,d));b.require=x.require;b.directiveName=I;if(u===x||x.$$isolateScope)b=ja(b,{isolateScope:!0});k.push(b)}}function p(a,e,f,g,l){function m(a,b,c,d){var e;Ya(a)||(d=c,c=b,b=a,a=void 0);fa&&(e=t);c||(c=fa?I.parent():I);if(d){var f=l.$$slots[d];if(f)return f(a,
b,e,c,s);if(y(f))throw ga("noslot",d,ya(I));}else return l(a,b,e,c,s)}var n,E,x,M,B,t,P,I;b===f?(g=d,I=d.$$element):(I=F(f),g=new Da(I,d));B=e;u?M=e.$new(!0):r&&(B=e.$parent);l&&(P=m,P.$$boundTransclude=l,P.isSlotFilled=function(a){return!!l.$$slots[a]});v&&(t=ag(I,g,P,v,M,e,u));u&&(aa.$$addScopeInfo(I,M,!0,!(H&&(H===u||H===u.$$originalDirective))),aa.$$addScopeClass(I,!0),M.$$isolateBindings=u.$$isolateBindings,E=ka(e,g,M,M.$$isolateBindings,u),E.removeWatches&&M.$on("$destroy",E.removeWatches));
for(n in t){E=v[n];x=t[n];var Zb=E.$$bindings.bindToController;x.bindingInfo=x.identifier&&Zb?ka(B,g,x.instance,Zb,E):{};var K=x();K!==x.instance&&(x.instance=K,I.data("$"+E.name+"Controller",K),x.bindingInfo.removeWatches&&x.bindingInfo.removeWatches(),x.bindingInfo=ka(B,g,x.instance,Zb,E))}q(v,function(a,b){var c=a.require;a.bindToController&&!L(c)&&D(c)&&S(t[b].instance,ib(b,c,I,t))});q(t,function(a){var b=a.instance;if(z(b.$onChanges))try{b.$onChanges(a.bindingInfo.initialChanges)}catch(d){c(d)}if(z(b.$onInit))try{b.$onInit()}catch(e){c(e)}z(b.$doCheck)&&
(B.$watch(function(){b.$doCheck()}),b.$doCheck());z(b.$onDestroy)&&B.$on("$destroy",function(){b.$onDestroy()})});n=0;for(E=h.length;n<E;n++)x=h[n],la(x,x.isolateScope?M:e,I,g,x.require&&ib(x.directiveName,x.require,I,t),P);var s=e;u&&(u.template||null===u.templateUrl)&&(s=M);a&&a(s,f.childNodes,void 0,l);for(n=k.length-1;0<=n;n--)x=k[n],la(x,x.isolateScope?M:e,I,g,x.require&&ib(x.directiveName,x.require,I,t),P);q(t,function(a){a=a.instance;z(a.$postLink)&&a.$postLink()})}l=l||{};for(var n=-Number.MAX_VALUE,
r=l.newScopeDirective,v=l.controllerDirectives,u=l.newIsolateScopeDirective,H=l.templateDirective,E=l.nonTlbTranscludeDirective,M=!1,B=!1,fa=l.hasElementTranscludeDirective,t=d.$$element=F(b),x,I,P,K=e,s,Fa=!1,za=!1,w,A=0,C=a.length;A<C;A++){x=a[A];var G=x.$$start,hb=x.$$end;G&&(t=N(b,G,hb));P=void 0;if(n>x.priority)break;if(w=x.scope)x.templateUrl||(D(w)?(X("new/isolated scope",u||r,x,t),u=x):X("new/isolated scope",u,x,t)),r=r||x;I=x.name;if(!Fa&&(x.replace&&(x.templateUrl||x.template)||x.transclude&&
!x.$$tlb)){for(w=A+1;Fa=a[w++];)if(Fa.transclude&&!Fa.$$tlb||Fa.replace&&(Fa.templateUrl||Fa.template)){za=!0;break}Fa=!0}!x.templateUrl&&x.controller&&(w=x.controller,v=v||U(),X("'"+I+"' controller",v[I],x,t),v[I]=x);if(w=x.transclude)if(M=!0,x.$$tlb||(X("transclusion",E,x,t),E=x),"element"==w)fa=!0,n=x.priority,P=t,t=d.$$element=F(aa.$$createComment(I,d[I])),b=t[0],ea(f,va.call(P,0),b),P[0].$$parentNode=P[0].parentNode,K=ac(za,P,e,n,g&&g.name,{nonTlbTranscludeDirective:E});else{var oa=U();P=F(Xb(b)).contents();
if(D(w)){P=[];var Q=U(),O=U();q(w,function(a,b){var c="?"===a.charAt(0);a=c?a.substring(1):a;Q[a]=b;oa[b]=null;O[b]=c});q(t.contents(),function(a){var b=Q[Aa(wa(a))];b?(O[b]=!0,oa[b]=oa[b]||[],oa[b].push(a)):P.push(a)});q(O,function(a,b){if(!a)throw ga("reqslot",b);});for(var V in oa)oa[V]&&(oa[V]=ac(za,oa[V],e))}t.empty();K=ac(za,P,e,void 0,void 0,{needsNewScope:x.$$isolateScope||x.$$newScope});K.$$slots=oa}if(x.template)if(B=!0,X("template",H,x,t),H=x,w=z(x.template)?x.template(t,d):x.template,
w=xa(w),x.replace){g=x;P=Vb.test(w)?$c(da(x.templateNamespace,W(w))):[];b=P[0];if(1!=P.length||1!==b.nodeType)throw ga("tplrt",I,"");ea(f,t,b);C={$attr:{}};w=$b(b,[],C);var Z=a.splice(A+1,a.length-(A+1));(u||r)&&T(w,u,r);a=a.concat(w).concat(Z);$(d,C);C=a.length}else t.html(w);if(x.templateUrl)B=!0,X("template",H,x,t),H=x,x.replace&&(g=x),p=ba(a.splice(A,a.length-A),t,d,f,M&&K,h,k,{controllerDirectives:v,newScopeDirective:r!==x&&r,newIsolateScopeDirective:u,templateDirective:H,nonTlbTranscludeDirective:E}),
C=a.length;else if(x.compile)try{s=x.compile(t,d,K);var Y=x.$$originalDirective||x;z(s)?m(null,ab(Y,s),G,hb):s&&m(ab(Y,s.pre),ab(Y,s.post),G,hb)}catch(ca){c(ca,ya(t))}x.terminal&&(p.terminal=!0,n=Math.max(n,x.priority))}p.scope=r&&!0===r.scope;p.transcludeOnThisElement=M;p.templateOnThisElement=B;p.transclude=K;l.hasElementTranscludeDirective=fa;return p}function ib(a,b,c,d){var e;if(G(b)){var f=b.match(l);b=b.substring(f[0].length);var g=f[1]||f[3],f="?"===f[2];"^^"===g?c=c.parent():e=(e=d&&d[b])&&
e.instance;if(!e){var h="$"+b+"Controller";e=g?c.inheritedData(h):c.data(h)}if(!e&&!f)throw ga("ctreq",b,a);}else if(L(b))for(e=[],g=0,f=b.length;g<f;g++)e[g]=ib(a,b[g],c,d);else D(b)&&(e={},q(b,function(b,f){e[f]=ib(a,b,c,d)}));return e||null}function ag(a,b,c,d,e,f,g){var h=U(),k;for(k in d){var l=d[k],m={$scope:l===g||l.$$isolateScope?e:f,$element:a,$attrs:b,$transclude:c},p=l.controller;"@"==p&&(p=b[l.name]);m=t(p,m,!0,l.controllerAs);h[l.name]=m;a.data("$"+l.name+"Controller",m.instance)}return h}
function T(a,b,c){for(var d=0,e=a.length;d<e;d++)a[d]=Rb(a[d],{$$isolateScope:b,$$newScope:c})}function O(b,e,g,h,k,l,m){if(e===k)return null;k=null;if(f.hasOwnProperty(e)){var p;e=a.get(e+"Directive");for(var n=0,r=e.length;n<r;n++)try{if(p=e[n],(y(h)||h>p.priority)&&-1!=p.restrict.indexOf(g)){l&&(p=Rb(p,{$$start:l,$$end:m}));if(!p.$$bindings){var u=p,v=p,x=p.name,H={isolateScope:null,bindToController:null};D(v.scope)&&(!0===v.bindToController?(H.bindToController=d(v.scope,x,!0),H.isolateScope={}):
H.isolateScope=d(v.scope,x,!1));D(v.bindToController)&&(H.bindToController=d(v.bindToController,x,!0));if(D(H.bindToController)){var E=v.controller,M=v.controllerAs;if(!E)throw ga("noctrl",x);if(!Xc(E,M))throw ga("noident",x);}var t=u.$$bindings=H;D(t.isolateScope)&&(p.$$isolateBindings=t.isolateScope)}b.push(p);k=p}}catch(I){c(I)}}return k}function V(b){if(f.hasOwnProperty(b))for(var c=a.get(b+"Directive"),d=0,e=c.length;d<e;d++)if(b=c[d],b.multiElement)return!0;return!1}function $(a,b){var c=b.$attr,
d=a.$attr;q(a,function(d,e){"$"!=e.charAt(0)&&(b[e]&&b[e]!==d&&(d+=("style"===e?";":" ")+b[e]),a.$set(e,d,!0,c[e]))});q(b,function(b,e){a.hasOwnProperty(e)||"$"===e.charAt(0)||(a[e]=b,"class"!==e&&"style"!==e&&(d[e]=c[e]))})}function ba(a,b,c,d,f,g,h,k){var l=[],m,p,n=b[0],r=a.shift(),u=Rb(r,{templateUrl:null,transclude:null,replace:null,$$originalDirective:r}),H=z(r.templateUrl)?r.templateUrl(b,c):r.templateUrl,E=r.templateNamespace;b.empty();e(H).then(function(e){var v,M;e=xa(e);if(r.replace){e=
Vb.test(e)?$c(da(E,W(e))):[];v=e[0];if(1!=e.length||1!==v.nodeType)throw ga("tplrt",r.name,H);e={$attr:{}};ea(d,b,v);var B=$b(v,[],e);D(r.scope)&&T(B,!0);a=B.concat(a);$(c,e)}else v=n,b.html(e);a.unshift(u);m=oa(a,v,c,f,b,r,g,h,k);q(d,function(a,c){a==v&&(d[c]=b[0])});for(p=s(b[0].childNodes,f);l.length;){e=l.shift();M=l.shift();var t=l.shift(),I=l.shift(),B=b[0];if(!e.$$destroyed){if(M!==n){var P=M.className;k.hasElementTranscludeDirective&&r.replace||(B=Xb(v));ea(t,F(M),B);x(F(B),P)}M=m.transcludeOnThisElement?
za(e,m.transclude,I):I;m(p,e,B,d,M)}}l=null});return function(a,b,c,d,e){a=e;b.$$destroyed||(l?l.push(b,c,d,a):(m.transcludeOnThisElement&&(a=za(b,m.transclude,e)),m(p,b,c,d,a)))}}function Z(a,b){var c=b.priority-a.priority;return 0!==c?c:a.name!==b.name?a.name<b.name?-1:1:a.index-b.index}function X(a,b,c,d){function e(a){return a?" (module: "+a+")":""}if(b)throw ga("multidir",b.name,e(b.$$moduleName),c.name,e(c.$$moduleName),a,ya(d));}function ca(a,c){var d=b(c,!0);d&&a.push({priority:0,compile:function(a){a=
a.parent();var b=!!a.length;b&&aa.$$addBindingClass(a);return function(a,c){var e=c.parent();b||aa.$$addBindingClass(e);aa.$$addBindingInfo(e,d.expressions);a.$watch(d,function(a){c[0].nodeValue=a})}}})}function da(a,b){a=Q(a||"html");switch(a){case "svg":case "math":var c=C.document.createElement("div");c.innerHTML="<"+a+">"+b+"</"+a+">";return c.childNodes[0].childNodes;default:return b}}function ha(a,b){if("srcdoc"==b)return M.HTML;var c=wa(a);if("xlinkHref"==b||"form"==c&&"action"==b||"img"!=
c&&("src"==b||"ngSrc"==b))return M.RESOURCE_URL}function ia(a,c,d,e,f){var g=ha(a,e);f=k[e]||f;var h=b(d,!0,g,f);if(h){if("multiple"===e&&"select"===wa(a))throw ga("selmulti",ya(a));c.push({priority:100,compile:function(){return{pre:function(a,c,k){c=k.$$observers||(k.$$observers=U());if(m.test(e))throw ga("nodomevents");var l=k[e];l!==d&&(h=l&&b(l,!0,g,f),d=l);h&&(k[e]=h(a),(c[e]||(c[e]=[])).$$inter=!0,(k.$$observers&&k.$$observers[e].$$scope||a).$watch(h,function(a,b){"class"===e&&a!=b?k.$updateClass(a,
b):k.$set(e,a)}))}}}})}}function ea(a,b,c){var d=b[0],e=b.length,f=d.parentNode,g,h;if(a)for(g=0,h=a.length;g<h;g++)if(a[g]==d){a[g++]=c;h=g+e-1;for(var k=a.length;g<k;g++,h++)h<k?a[g]=a[h]:delete a[g];a.length-=e-1;a.context===d&&(a.context=c);break}f&&f.replaceChild(c,d);a=C.document.createDocumentFragment();for(g=0;g<e;g++)a.appendChild(b[g]);F.hasData(d)&&(F.data(c,F.data(d)),F(d).off("$destroy"));F.cleanData(a.querySelectorAll("*"));for(g=1;g<e;g++)delete b[g];b[0]=c;b.length=1}function ja(a,
b){return S(function(){return a.apply(null,arguments)},a,b)}function la(a,b,d,e,f,g){try{a(b,d,e,f,g)}catch(h){c(h,ya(d))}}function ka(a,c,d,e,f){function g(b,c,e){z(d.$onChanges)&&c!==e&&(Y||(a.$$postDigest(I),Y=[]),m||(m={},Y.push(h)),m[b]&&(e=m[b].previousValue),m[b]=new Fb(e,c))}function h(){d.$onChanges(m);m=void 0}var k=[],l={},m;q(e,function(e,h){var m=e.attrName,p=e.optional,v,u,x,H;switch(e.mode){case "@":p||ua.call(c,m)||(d[h]=c[m]=void 0);c.$observe(m,function(a){if(G(a)||Ga(a))g(h,a,d[h]),
d[h]=a});c.$$observers[m].$$scope=a;v=c[m];G(v)?d[h]=b(v)(a):Ga(v)&&(d[h]=v);l[h]=new Fb(bc,d[h]);break;case "=":if(!ua.call(c,m)){if(p)break;c[m]=void 0}if(p&&!c[m])break;u=n(c[m]);H=u.literal?na:function(a,b){return a===b||a!==a&&b!==b};x=u.assign||function(){v=d[h]=u(a);throw ga("nonassign",c[m],m,f.name);};v=d[h]=u(a);p=function(b){H(b,d[h])||(H(b,v)?x(a,b=d[h]):d[h]=b);return v=b};p.$stateful=!0;p=e.collection?a.$watchCollection(c[m],p):a.$watch(n(c[m],p),null,u.literal);k.push(p);break;case "<":if(!ua.call(c,
m)){if(p)break;c[m]=void 0}if(p&&!c[m])break;u=n(c[m]);var E=d[h]=u(a);l[h]=new Fb(bc,d[h]);p=a.$watch(u,function(a,b){if(b===a){if(b===E)return;b=E}g(h,a,b);d[h]=a},u.literal);k.push(p);break;case "&":u=c.hasOwnProperty(m)?n(c[m]):A;if(u===A&&p)break;d[h]=function(b){return u(a,b)}}});return{initialChanges:l,removeWatches:k.length&&function(){for(var a=0,b=k.length;a<b;++a)k[a]()}}}var ta=/^\w/,pa=C.document.createElement("div"),qa=u,Y;Da.prototype={$normalize:Aa,$addClass:function(a){a&&0<a.length&&
H.addClass(this.$$element,a)},$removeClass:function(a){a&&0<a.length&&H.removeClass(this.$$element,a)},$updateClass:function(a,b){var c=ad(a,b);c&&c.length&&H.addClass(this.$$element,c);(c=ad(b,a))&&c.length&&H.removeClass(this.$$element,c)},$set:function(a,b,d,e){var f=Uc(this.$$element[0],a),g=bd[a],h=a;f?(this.$$element.prop(a,b),e=f):g&&(this[g]=b,h=g);this[a]=b;e?this.$attr[a]=e:(e=this.$attr[a])||(this.$attr[a]=e=Cc(a,"-"));f=wa(this.$$element);if("a"===f&&("href"===a||"xlinkHref"===a)||"img"===
f&&"src"===a)this[a]=b=E(b,"src"===a);else if("img"===f&&"srcset"===a&&w(b)){for(var f="",g=W(b),k=/(\s+\d+x\s*,|\s+\d+w\s*,|\s+,|,\s+)/,k=/\s/.test(g)?k:/(,)/,g=g.split(k),k=Math.floor(g.length/2),l=0;l<k;l++)var m=2*l,f=f+E(W(g[m]),!0),f=f+(" "+W(g[m+1]));g=W(g[2*l]).split(/\s/);f+=E(W(g[0]),!0);2===g.length&&(f+=" "+W(g[1]));this[a]=b=f}!1!==d&&(null===b||y(b)?this.$$element.removeAttr(e):ta.test(e)?this.$$element.attr(e,b):P(this.$$element[0],e,b));(a=this.$$observers)&&q(a[h],function(a){try{a(b)}catch(d){c(d)}})},
$observe:function(a,b){var c=this,d=c.$$observers||(c.$$observers=U()),e=d[a]||(d[a]=[]);e.push(b);K.$evalAsync(function(){e.$$inter||!c.hasOwnProperty(a)||y(c[a])||b(c[a])});return function(){Za(e,b)}}};var ra=b.startSymbol(),sa=b.endSymbol(),xa="{{"==ra&&"}}"==sa?Xa:function(a){return a.replace(/\{\{/g,ra).replace(/}}/g,sa)},Ba=/^ngAttr[A-Z]/,Ca=/^(.+)Start$/;aa.$$addBindingInfo=p?function(a,b){var c=a.data("$binding")||[];L(b)?c=c.concat(b):c.push(b);a.data("$binding",c)}:A;aa.$$addBindingClass=
p?function(a){x(a,"ng-binding")}:A;aa.$$addScopeInfo=p?function(a,b,c,d){a.data(c?d?"$isolateScopeNoTemplate":"$isolateScope":"$scope",b)}:A;aa.$$addScopeClass=p?function(a,b){x(a,b?"ng-isolate-scope":"ng-scope")}:A;aa.$$createComment=function(a,b){var c="";p&&(c=" "+(a||"")+": ",b&&(c+=b+" "));return C.document.createComment(c)};return aa}]}function Fb(a,b){this.previousValue=a;this.currentValue=b}function Aa(a){return db(a.replace(Yc,""))}function ad(a,b){var d="",c=a.split(/\s+/),e=b.split(/\s+/),
f=0;a:for(;f<c.length;f++){for(var g=c[f],h=0;h<e.length;h++)if(g==e[h])continue a;d+=(0<d.length?" ":"")+g}return d}function $c(a){a=F(a);var b=a.length;if(1>=b)return a;for(;b--;)8===a[b].nodeType&&bg.call(a,b,1);return a}function Xc(a,b){if(b&&G(b))return b;if(G(a)){var d=cd.exec(a);if(d)return d[3]}}function ff(){var a={},b=!1;this.has=function(b){return a.hasOwnProperty(b)};this.register=function(b,c){Qa(b,"controller");D(b)?S(a,b):a[b]=c};this.allowGlobals=function(){b=!0};this.$get=["$injector",
"$window",function(d,c){function e(a,b,c,d){if(!a||!D(a.$scope))throw N("$controller")("noscp",d,b);a.$scope[b]=c}return function(f,g,h,k){var l,m,n;h=!0===h;k&&G(k)&&(n=k);if(G(f)){k=f.match(cd);if(!k)throw cg("ctrlfmt",f);m=k[1];n=n||k[3];f=a.hasOwnProperty(m)?a[m]:Ec(g.$scope,m,!0)||(b?Ec(c,m,!0):void 0);Pa(f,m,!0)}if(h)return h=(L(f)?f[f.length-1]:f).prototype,l=Object.create(h||null),n&&e(g,n,l,m||f.name),S(function(){var a=d.invoke(f,l,g,m);a!==l&&(D(a)||z(a))&&(l=a,n&&e(g,n,l,m||f.name));return l},
{instance:l,identifier:n});l=d.instantiate(f,g,m);n&&e(g,n,l,m||f.name);return l}}]}function gf(){this.$get=["$window",function(a){return F(a.document)}]}function hf(){this.$get=["$log",function(a){return function(b,d){a.error.apply(a,arguments)}}]}function cc(a){return D(a)?da(a)?a.toISOString():bb(a):a}function nf(){this.$get=function(){return function(a){if(!a)return"";var b=[];tc(a,function(a,c){null===a||y(a)||(L(a)?q(a,function(a){b.push(ea(c)+"="+ea(cc(a)))}):b.push(ea(c)+"="+ea(cc(a))))});
return b.join("&")}}}function of(){this.$get=function(){return function(a){function b(a,e,f){null===a||y(a)||(L(a)?q(a,function(a,c){b(a,e+"["+(D(a)?c:"")+"]")}):D(a)&&!da(a)?tc(a,function(a,c){b(a,e+(f?"":"[")+c+(f?"":"]"))}):d.push(ea(e)+"="+ea(cc(a))))}if(!a)return"";var d=[];b(a,"",!0);return d.join("&")}}}function dc(a,b){if(G(a)){var d=a.replace(dg,"").trim();if(d){var c=b("Content-Type");(c=c&&0===c.indexOf(dd))||(c=(c=d.match(eg))&&fg[c[0]].test(d));c&&(a=xc(d))}}return a}function ed(a){var b=
U(),d;G(a)?q(a.split("\n"),function(a){d=a.indexOf(":");var e=Q(W(a.substr(0,d)));a=W(a.substr(d+1));e&&(b[e]=b[e]?b[e]+", "+a:a)}):D(a)&&q(a,function(a,d){var f=Q(d),g=W(a);f&&(b[f]=b[f]?b[f]+", "+g:g)});return b}function fd(a){var b;return function(d){b||(b=ed(a));return d?(d=b[Q(d)],void 0===d&&(d=null),d):b}}function gd(a,b,d,c){if(z(c))return c(a,b,d);q(c,function(c){a=c(a,b,d)});return a}function mf(){var a=this.defaults={transformResponse:[dc],transformRequest:[function(a){return D(a)&&"[object File]"!==
ma.call(a)&&"[object Blob]"!==ma.call(a)&&"[object FormData]"!==ma.call(a)?bb(a):a}],headers:{common:{Accept:"application/json, text/plain, */*"},post:ia(ec),put:ia(ec),patch:ia(ec)},xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",paramSerializer:"$httpParamSerializer"},b=!1;this.useApplyAsync=function(a){return w(a)?(b=!!a,this):b};var d=!0;this.useLegacyPromiseExtensions=function(a){return w(a)?(d=!!a,this):d};var c=this.interceptors=[];this.$get=["$httpBackend","$$cookieReader","$cacheFactory",
"$rootScope","$q","$injector",function(e,f,g,h,k,l){function m(b){function c(a,b){for(var d=0,e=b.length;d<e;){var f=b[d++],g=b[d++];a=a.then(f,g)}b.length=0;return a}function e(a,b){var c,d={};q(a,function(a,e){z(a)?(c=a(b),null!=c&&(d[e]=c)):d[e]=a});return d}function f(a){var b=S({},a);b.data=gd(a.data,a.headers,a.status,g.transformResponse);a=a.status;return 200<=a&&300>a?b:k.reject(b)}if(!D(b))throw N("$http")("badreq",b);if(!G(b.url))throw N("$http")("badreq",b.url);var g=S({method:"get",transformRequest:a.transformRequest,
transformResponse:a.transformResponse,paramSerializer:a.paramSerializer},b);g.headers=function(b){var c=a.headers,d=S({},b.headers),f,g,h,c=S({},c.common,c[Q(b.method)]);a:for(f in c){g=Q(f);for(h in d)if(Q(h)===g)continue a;d[f]=c[f]}return e(d,ia(b))}(b);g.method=ub(g.method);g.paramSerializer=G(g.paramSerializer)?l.get(g.paramSerializer):g.paramSerializer;var h=[],m=[],p=k.when(g);q(R,function(a){(a.request||a.requestError)&&h.unshift(a.request,a.requestError);(a.response||a.responseError)&&m.push(a.response,
a.responseError)});p=c(p,h);p=p.then(function(b){var c=b.headers,d=gd(b.data,fd(c),void 0,b.transformRequest);y(d)&&q(c,function(a,b){"content-type"===Q(b)&&delete c[b]});y(b.withCredentials)&&!y(a.withCredentials)&&(b.withCredentials=a.withCredentials);return n(b,d).then(f,f)});p=c(p,m);d?(p.success=function(a){Pa(a,"fn");p.then(function(b){a(b.data,b.status,b.headers,g)});return p},p.error=function(a){Pa(a,"fn");p.then(null,function(b){a(b.data,b.status,b.headers,g)});return p}):(p.success=hd("success"),
p.error=hd("error"));return p}function n(c,d){function g(a){if(a){var c={};q(a,function(a,d){c[d]=function(c){function d(){a(c)}b?h.$applyAsync(d):h.$$phase?d():h.$apply(d)}});return c}}function l(a,c,d,e){function f(){n(c,a,d,e)}E&&(200<=a&&300>a?E.put(P,[a,c,ed(d),e]):E.remove(P));b?h.$applyAsync(f):(f(),h.$$phase||h.$apply())}function n(a,b,d,e){b=-1<=b?b:0;(200<=b&&300>b?M.resolve:M.reject)({data:a,status:b,headers:fd(d),config:c,statusText:e})}function t(a){n(a.data,a.status,ia(a.headers()),
a.statusText)}function R(){var a=m.pendingRequests.indexOf(c);-1!==a&&m.pendingRequests.splice(a,1)}var M=k.defer(),H=M.promise,E,I,Da=c.headers,P=p(c.url,c.paramSerializer(c.params));m.pendingRequests.push(c);H.then(R,R);!c.cache&&!a.cache||!1===c.cache||"GET"!==c.method&&"JSONP"!==c.method||(E=D(c.cache)?c.cache:D(a.cache)?a.cache:u);E&&(I=E.get(P),w(I)?I&&z(I.then)?I.then(t,t):L(I)?n(I[1],I[0],ia(I[2]),I[3]):n(I,200,{},"OK"):E.put(P,H));y(I)&&((I=id(c.url)?f()[c.xsrfCookieName||a.xsrfCookieName]:
void 0)&&(Da[c.xsrfHeaderName||a.xsrfHeaderName]=I),e(c.method,P,d,l,Da,c.timeout,c.withCredentials,c.responseType,g(c.eventHandlers),g(c.uploadEventHandlers)));return H}function p(a,b){0<b.length&&(a+=(-1==a.indexOf("?")?"?":"&")+b);return a}var u=g("$http");a.paramSerializer=G(a.paramSerializer)?l.get(a.paramSerializer):a.paramSerializer;var R=[];q(c,function(a){R.unshift(G(a)?l.get(a):l.invoke(a))});m.pendingRequests=[];(function(a){q(arguments,function(a){m[a]=function(b,c){return m(S({},c||{},
{method:a,url:b}))}})})("get","delete","head","jsonp");(function(a){q(arguments,function(a){m[a]=function(b,c,d){return m(S({},d||{},{method:a,url:b,data:c}))}})})("post","put","patch");m.defaults=a;return m}]}function qf(){this.$get=function(){return function(){return new C.XMLHttpRequest}}}function pf(){this.$get=["$browser","$jsonpCallbacks","$document","$xhrFactory",function(a,b,d,c){return gg(a,c,a.defer,b,d[0])}]}function gg(a,b,d,c,e){function f(a,b,d){a=a.replace("JSON_CALLBACK",b);var f=
e.createElement("script"),m=null;f.type="text/javascript";f.src=a;f.async=!0;m=function(a){f.removeEventListener("load",m,!1);f.removeEventListener("error",m,!1);e.body.removeChild(f);f=null;var g=-1,u="unknown";a&&("load"!==a.type||c.wasCalled(b)||(a={type:"error"}),u=a.type,g="error"===a.type?404:200);d&&d(g,u)};f.addEventListener("load",m,!1);f.addEventListener("error",m,!1);e.body.appendChild(f);return m}return function(e,h,k,l,m,n,p,u,R,B){function r(){fa&&fa();t&&t.abort()}function J(b,c,e,
f,g){w(M)&&d.cancel(M);fa=t=null;b(c,e,f,g);a.$$completeOutstandingRequest(A)}a.$$incOutstandingRequestCount();h=h||a.url();if("jsonp"===Q(e))var v=c.createCallback(h),fa=f(h,v,function(a,b){var d=200===a&&c.getResponse(v);J(l,a,d,"",b);c.removeCallback(v)});else{var t=b(e,h);t.open(e,h,!0);q(m,function(a,b){w(a)&&t.setRequestHeader(b,a)});t.onload=function(){var a=t.statusText||"",b="response"in t?t.response:t.responseText,c=1223===t.status?204:t.status;0===c&&(c=b?200:"file"==Y(h).protocol?404:
0);J(l,c,b,t.getAllResponseHeaders(),a)};e=function(){J(l,-1,null,null,"")};t.onerror=e;t.onabort=e;q(R,function(a,b){t.addEventListener(b,a)});q(B,function(a,b){t.upload.addEventListener(b,a)});p&&(t.withCredentials=!0);if(u)try{t.responseType=u}catch(K){if("json"!==u)throw K;}t.send(y(k)?null:k)}if(0<n)var M=d(r,n);else n&&z(n.then)&&n.then(r)}}function kf(){var a="{{",b="}}";this.startSymbol=function(b){return b?(a=b,this):a};this.endSymbol=function(a){return a?(b=a,this):b};this.$get=["$parse",
"$exceptionHandler","$sce",function(d,c,e){function f(a){return"\\\\\\"+a}function g(c){return c.replace(n,a).replace(p,b)}function h(a,b,c,d){var e;return e=a.$watch(function(a){e();return d(a)},b,c)}function k(f,k,p,n){function J(a){try{var b=a;a=p?e.getTrusted(p,b):e.valueOf(b);var d;if(n&&!w(a))d=a;else if(null==a)d="";else{switch(typeof a){case "string":break;case "number":a=""+a;break;default:a=bb(a)}d=a}return d}catch(g){c(Ka.interr(f,g))}}if(!f.length||-1===f.indexOf(a)){var v;k||(k=g(f),
v=ha(k),v.exp=f,v.expressions=[],v.$$watchDelegate=h);return v}n=!!n;var q,t,K=0,M=[],H=[];v=f.length;for(var E=[],I=[];K<v;)if(-1!=(q=f.indexOf(a,K))&&-1!=(t=f.indexOf(b,q+l)))K!==q&&E.push(g(f.substring(K,q))),K=f.substring(q+l,t),M.push(K),H.push(d(K,J)),K=t+m,I.push(E.length),E.push("");else{K!==v&&E.push(g(f.substring(K)));break}p&&1<E.length&&Ka.throwNoconcat(f);if(!k||M.length){var Da=function(a){for(var b=0,c=M.length;b<c;b++){if(n&&y(a[b]))return;E[I[b]]=a[b]}return E.join("")};return S(function(a){var b=
0,d=M.length,e=Array(d);try{for(;b<d;b++)e[b]=H[b](a);return Da(e)}catch(g){c(Ka.interr(f,g))}},{exp:f,expressions:M,$$watchDelegate:function(a,b){var c;return a.$watchGroup(H,function(d,e){var f=Da(d);z(b)&&b.call(this,f,d!==e?c:f,a);c=f})}})}}var l=a.length,m=b.length,n=new RegExp(a.replace(/./g,f),"g"),p=new RegExp(b.replace(/./g,f),"g");k.startSymbol=function(){return a};k.endSymbol=function(){return b};return k}]}function lf(){this.$get=["$rootScope","$window","$q","$$q","$browser",function(a,
b,d,c,e){function f(f,k,l,m){function n(){p?f.apply(null,u):f(r)}var p=4<arguments.length,u=p?va.call(arguments,4):[],R=b.setInterval,q=b.clearInterval,r=0,J=w(m)&&!m,v=(J?c:d).defer(),fa=v.promise;l=w(l)?l:0;fa.$$intervalId=R(function(){J?e.defer(n):a.$evalAsync(n);v.notify(r++);0<l&&r>=l&&(v.resolve(r),q(fa.$$intervalId),delete g[fa.$$intervalId]);J||a.$apply()},k);g[fa.$$intervalId]=v;return fa}var g={};f.cancel=function(a){return a&&a.$$intervalId in g?(g[a.$$intervalId].reject("canceled"),b.clearInterval(a.$$intervalId),
delete g[a.$$intervalId],!0):!1};return f}]}function fc(a){a=a.split("/");for(var b=a.length;b--;)a[b]=qb(a[b]);return a.join("/")}function jd(a,b){var d=Y(a);b.$$protocol=d.protocol;b.$$host=d.hostname;b.$$port=Z(d.port)||hg[d.protocol]||null}function kd(a,b){var d="/"!==a.charAt(0);d&&(a="/"+a);var c=Y(a);b.$$path=decodeURIComponent(d&&"/"===c.pathname.charAt(0)?c.pathname.substring(1):c.pathname);b.$$search=Ac(c.search);b.$$hash=decodeURIComponent(c.hash);b.$$path&&"/"!=b.$$path.charAt(0)&&(b.$$path=
"/"+b.$$path)}function ka(a,b){if(0===b.lastIndexOf(a,0))return b.substr(a.length)}function Ja(a){var b=a.indexOf("#");return-1==b?a:a.substr(0,b)}function jb(a){return a.replace(/(#.+)|#$/,"$1")}function gc(a,b,d){this.$$html5=!0;d=d||"";jd(a,this);this.$$parse=function(a){var d=ka(b,a);if(!G(d))throw Gb("ipthprfx",a,b);kd(d,this);this.$$path||(this.$$path="/");this.$$compose()};this.$$compose=function(){var a=Tb(this.$$search),d=this.$$hash?"#"+qb(this.$$hash):"";this.$$url=fc(this.$$path)+(a?"?"+
a:"")+d;this.$$absUrl=b+this.$$url.substr(1)};this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),!0;var f,g;w(f=ka(a,c))?(g=f,g=w(f=ka(d,f))?b+(ka("/",f)||f):a+g):w(f=ka(b,c))?g=b+f:b==c+"/"&&(g=b);g&&this.$$parse(g);return!!g}}function hc(a,b,d){jd(a,this);this.$$parse=function(c){var e=ka(a,c)||ka(b,c),f;y(e)||"#"!==e.charAt(0)?this.$$html5?f=e:(f="",y(e)&&(a=c,this.replace())):(f=ka(d,e),y(f)&&(f=e));kd(f,this);c=this.$$path;var e=a,g=/^\/[A-Z]:(\/.*)/;0===f.lastIndexOf(e,
0)&&(f=f.replace(e,""));g.exec(f)||(c=(f=g.exec(c))?f[1]:c);this.$$path=c;this.$$compose()};this.$$compose=function(){var b=Tb(this.$$search),e=this.$$hash?"#"+qb(this.$$hash):"";this.$$url=fc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+(this.$$url?d+this.$$url:"")};this.$$parseLinkUrl=function(b,d){return Ja(a)==Ja(b)?(this.$$parse(b),!0):!1}}function ld(a,b,d){this.$$html5=!0;hc.apply(this,arguments);this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),!0;var f,g;a==Ja(c)?
f=c:(g=ka(b,c))?f=a+d+g:b===c+"/"&&(f=b);f&&this.$$parse(f);return!!f};this.$$compose=function(){var b=Tb(this.$$search),e=this.$$hash?"#"+qb(this.$$hash):"";this.$$url=fc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+d+this.$$url}}function Hb(a){return function(){return this[a]}}function md(a,b){return function(d){if(y(d))return this[a];this[a]=b(d);this.$$compose();return this}}function sf(){var a="",b={enabled:!1,requireBase:!0,rewriteLinks:!0};this.hashPrefix=function(b){return w(b)?(a=b,this):
a};this.html5Mode=function(a){return Ga(a)?(b.enabled=a,this):D(a)?(Ga(a.enabled)&&(b.enabled=a.enabled),Ga(a.requireBase)&&(b.requireBase=a.requireBase),Ga(a.rewriteLinks)&&(b.rewriteLinks=a.rewriteLinks),this):b};this.$get=["$rootScope","$browser","$sniffer","$rootElement","$window",function(d,c,e,f,g){function h(a,b,d){var e=l.url(),f=l.$$state;try{c.url(a,b,d),l.$$state=c.state()}catch(g){throw l.url(e),l.$$state=f,g;}}function k(a,b){d.$broadcast("$locationChangeSuccess",l.absUrl(),a,l.$$state,
b)}var l,m;m=c.baseHref();var n=c.url(),p;if(b.enabled){if(!m&&b.requireBase)throw Gb("nobase");p=n.substring(0,n.indexOf("/",n.indexOf("//")+2))+(m||"/");m=e.history?gc:ld}else p=Ja(n),m=hc;var u=p.substr(0,Ja(p).lastIndexOf("/")+1);l=new m(p,u,"#"+a);l.$$parseLinkUrl(n,n);l.$$state=c.state();var R=/^\s*(javascript|mailto):/i;f.on("click",function(a){if(b.rewriteLinks&&!a.ctrlKey&&!a.metaKey&&!a.shiftKey&&2!=a.which&&2!=a.button){for(var e=F(a.target);"a"!==wa(e[0]);)if(e[0]===f[0]||!(e=e.parent())[0])return;
var h=e.prop("href"),k=e.attr("href")||e.attr("xlink:href");D(h)&&"[object SVGAnimatedString]"===h.toString()&&(h=Y(h.animVal).href);R.test(h)||!h||e.attr("target")||a.isDefaultPrevented()||!l.$$parseLinkUrl(h,k)||(a.preventDefault(),l.absUrl()!=c.url()&&(d.$apply(),g.angular["ff-684208-preventDefault"]=!0))}});jb(l.absUrl())!=jb(n)&&c.url(l.absUrl(),!0);var q=!0;c.onUrlChange(function(a,b){y(ka(u,a))?g.location.href=a:(d.$evalAsync(function(){var c=l.absUrl(),e=l.$$state,f;a=jb(a);l.$$parse(a);l.$$state=
b;f=d.$broadcast("$locationChangeStart",a,c,b,e).defaultPrevented;l.absUrl()===a&&(f?(l.$$parse(c),l.$$state=e,h(c,!1,e)):(q=!1,k(c,e)))}),d.$$phase||d.$digest())});d.$watch(function(){var a=jb(c.url()),b=jb(l.absUrl()),f=c.state(),g=l.$$replace,m=a!==b||l.$$html5&&e.history&&f!==l.$$state;if(q||m)q=!1,d.$evalAsync(function(){var b=l.absUrl(),c=d.$broadcast("$locationChangeStart",b,a,l.$$state,f).defaultPrevented;l.absUrl()===b&&(c?(l.$$parse(a),l.$$state=f):(m&&h(b,g,f===l.$$state?null:l.$$state),
k(a,f)))});l.$$replace=!1});return l}]}function tf(){var a=!0,b=this;this.debugEnabled=function(b){return w(b)?(a=b,this):a};this.$get=["$window",function(d){function c(a){a instanceof Error&&(a.stack?a=a.message&&-1===a.stack.indexOf(a.message)?"Error: "+a.message+"\n"+a.stack:a.stack:a.sourceURL&&(a=a.message+"\n"+a.sourceURL+":"+a.line));return a}function e(a){var b=d.console||{},e=b[a]||b.log||A;a=!1;try{a=!!e.apply}catch(k){}return a?function(){var a=[];q(arguments,function(b){a.push(c(b))});
return e.apply(b,a)}:function(a,b){e(a,null==b?"":b)}}return{log:e("log"),info:e("info"),warn:e("warn"),error:e("error"),debug:function(){var c=e("debug");return function(){a&&c.apply(b,arguments)}}()}}]}function Sa(a,b){if("__defineGetter__"===a||"__defineSetter__"===a||"__lookupGetter__"===a||"__lookupSetter__"===a||"__proto__"===a)throw X("isecfld",b);return a}function ig(a){return a+""}function ra(a,b){if(a){if(a.constructor===a)throw X("isecfn",b);if(a.window===a)throw X("isecwindow",b);if(a.children&&
(a.nodeName||a.prop&&a.attr&&a.find))throw X("isecdom",b);if(a===Object)throw X("isecobj",b);}return a}function nd(a,b){if(a){if(a.constructor===a)throw X("isecfn",b);if(a===jg||a===kg||a===lg)throw X("isecff",b);}}function Ib(a,b){if(a&&(a===(0).constructor||a===(!1).constructor||a==="".constructor||a==={}.constructor||a===[].constructor||a===Function.constructor))throw X("isecaf",b);}function mg(a,b){return"undefined"!==typeof a?a:b}function od(a,b){return"undefined"===typeof a?b:"undefined"===
typeof b?a:a+b}function V(a,b){var d,c;switch(a.type){case s.Program:d=!0;q(a.body,function(a){V(a.expression,b);d=d&&a.expression.constant});a.constant=d;break;case s.Literal:a.constant=!0;a.toWatch=[];break;case s.UnaryExpression:V(a.argument,b);a.constant=a.argument.constant;a.toWatch=a.argument.toWatch;break;case s.BinaryExpression:V(a.left,b);V(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=a.left.toWatch.concat(a.right.toWatch);break;case s.LogicalExpression:V(a.left,b);V(a.right,
b);a.constant=a.left.constant&&a.right.constant;a.toWatch=a.constant?[]:[a];break;case s.ConditionalExpression:V(a.test,b);V(a.alternate,b);V(a.consequent,b);a.constant=a.test.constant&&a.alternate.constant&&a.consequent.constant;a.toWatch=a.constant?[]:[a];break;case s.Identifier:a.constant=!1;a.toWatch=[a];break;case s.MemberExpression:V(a.object,b);a.computed&&V(a.property,b);a.constant=a.object.constant&&(!a.computed||a.property.constant);a.toWatch=[a];break;case s.CallExpression:d=a.filter?!b(a.callee.name).$stateful:
!1;c=[];q(a.arguments,function(a){V(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=d;a.toWatch=a.filter&&!b(a.callee.name).$stateful?c:[a];break;case s.AssignmentExpression:V(a.left,b);V(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=[a];break;case s.ArrayExpression:d=!0;c=[];q(a.elements,function(a){V(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=d;a.toWatch=c;break;case s.ObjectExpression:d=!0;c=[];q(a.properties,function(a){V(a.value,
b);d=d&&a.value.constant&&!a.computed;a.value.constant||c.push.apply(c,a.value.toWatch)});a.constant=d;a.toWatch=c;break;case s.ThisExpression:a.constant=!1;a.toWatch=[];break;case s.LocalsExpression:a.constant=!1,a.toWatch=[]}}function pd(a){if(1==a.length){a=a[0].expression;var b=a.toWatch;return 1!==b.length?b:b[0]!==a?b:void 0}}function qd(a){return a.type===s.Identifier||a.type===s.MemberExpression}function rd(a){if(1===a.body.length&&qd(a.body[0].expression))return{type:s.AssignmentExpression,
left:a.body[0].expression,right:{type:s.NGValueParameter},operator:"="}}function sd(a){return 0===a.body.length||1===a.body.length&&(a.body[0].expression.type===s.Literal||a.body[0].expression.type===s.ArrayExpression||a.body[0].expression.type===s.ObjectExpression)}function td(a,b){this.astBuilder=a;this.$filter=b}function ud(a,b){this.astBuilder=a;this.$filter=b}function Jb(a){return"constructor"==a}function ic(a){return z(a.valueOf)?a.valueOf():ng.call(a)}function uf(){var a=U(),b=U(),d={"true":!0,
"false":!1,"null":null,undefined:void 0},c,e;this.addLiteral=function(a,b){d[a]=b};this.setIdentifierFns=function(a,b){c=a;e=b;return this};this.$get=["$filter",function(f){function g(c,d,e){var g,k,H;e=e||J;switch(typeof c){case "string":H=c=c.trim();var E=e?b:a;g=E[H];if(!g){":"===c.charAt(0)&&":"===c.charAt(1)&&(k=!0,c=c.substring(2));g=e?r:B;var q=new jc(g);g=(new kc(q,f,g)).parse(c);g.constant?g.$$watchDelegate=p:k?g.$$watchDelegate=g.literal?n:m:g.inputs&&(g.$$watchDelegate=l);e&&(g=h(g));E[H]=
g}return u(g,d);case "function":return u(c,d);default:return u(A,d)}}function h(a){function b(c,d,e,f){var g=J;J=!0;try{return a(c,d,e,f)}finally{J=g}}if(!a)return a;b.$$watchDelegate=a.$$watchDelegate;b.assign=h(a.assign);b.constant=a.constant;b.literal=a.literal;for(var c=0;a.inputs&&c<a.inputs.length;++c)a.inputs[c]=h(a.inputs[c]);b.inputs=a.inputs;return b}function k(a,b){return null==a||null==b?a===b:"object"===typeof a&&(a=ic(a),"object"===typeof a)?!1:a===b||a!==a&&b!==b}function l(a,b,c,d,
e){var f=d.inputs,g;if(1===f.length){var h=k,f=f[0];return a.$watch(function(a){var b=f(a);k(b,h)||(g=d(a,void 0,void 0,[b]),h=b&&ic(b));return g},b,c,e)}for(var l=[],m=[],p=0,n=f.length;p<n;p++)l[p]=k,m[p]=null;return a.$watch(function(a){for(var b=!1,c=0,e=f.length;c<e;c++){var h=f[c](a);if(b||(b=!k(h,l[c])))m[c]=h,l[c]=h&&ic(h)}b&&(g=d(a,void 0,void 0,m));return g},b,c,e)}function m(a,b,c,d){var e,f;return e=a.$watch(function(a){return d(a)},function(a,c,d){f=a;z(b)&&b.apply(this,arguments);w(a)&&
d.$$postDigest(function(){w(f)&&e()})},c)}function n(a,b,c,d){function e(a){var b=!0;q(a,function(a){w(a)||(b=!1)});return b}var f,g;return f=a.$watch(function(a){return d(a)},function(a,c,d){g=a;z(b)&&b.call(this,a,c,d);e(a)&&d.$$postDigest(function(){e(g)&&f()})},c)}function p(a,b,c,d){var e;return e=a.$watch(function(a){e();return d(a)},b,c)}function u(a,b){if(!b)return a;var c=a.$$watchDelegate,d=!1,c=c!==n&&c!==m?function(c,e,f,g){f=d&&g?g[0]:a(c,e,f,g);return b(f,c,e)}:function(c,d,e,f){e=a(c,
d,e,f);c=b(e,c,d);return w(e)?c:e};a.$$watchDelegate&&a.$$watchDelegate!==l?c.$$watchDelegate=a.$$watchDelegate:b.$stateful||(c.$$watchDelegate=l,d=!a.inputs,c.inputs=a.inputs?a.inputs:[a]);return c}var R=Ba().noUnsafeEval,B={csp:R,expensiveChecks:!1,literals:pa(d),isIdentifierStart:z(c)&&c,isIdentifierContinue:z(e)&&e},r={csp:R,expensiveChecks:!0,literals:pa(d),isIdentifierStart:z(c)&&c,isIdentifierContinue:z(e)&&e},J=!1;g.$$runningExpensiveChecks=function(){return J};return g}]}function wf(){this.$get=
["$rootScope","$exceptionHandler",function(a,b){return vd(function(b){a.$evalAsync(b)},b)}]}function xf(){this.$get=["$browser","$exceptionHandler",function(a,b){return vd(function(b){a.defer(b)},b)}]}function vd(a,b){function d(){this.$$state={status:0}}function c(a,b){return function(c){b.call(a,c)}}function e(c){!c.processScheduled&&c.pending&&(c.processScheduled=!0,a(function(){var a,d,e;e=c.pending;c.processScheduled=!1;c.pending=void 0;for(var f=0,g=e.length;f<g;++f){d=e[f][0];a=e[f][c.status];
try{z(a)?d.resolve(a(c.value)):1===c.status?d.resolve(c.value):d.reject(c.value)}catch(h){d.reject(h),b(h)}}}))}function f(){this.promise=new d}var g=N("$q",TypeError),h=function(){var a=new f;a.resolve=c(a,a.resolve);a.reject=c(a,a.reject);a.notify=c(a,a.notify);return a};S(d.prototype,{then:function(a,b,c){if(y(a)&&y(b)&&y(c))return this;var d=new f;this.$$state.pending=this.$$state.pending||[];this.$$state.pending.push([d,a,b,c]);0<this.$$state.status&&e(this.$$state);return d.promise},"catch":function(a){return this.then(null,
a)},"finally":function(a,b){return this.then(function(b){return l(b,!0,a)},function(b){return l(b,!1,a)},b)}});S(f.prototype,{resolve:function(a){this.promise.$$state.status||(a===this.promise?this.$$reject(g("qcycle",a)):this.$$resolve(a))},$$resolve:function(a){function d(a){k||(k=!0,h.$$resolve(a))}function f(a){k||(k=!0,h.$$reject(a))}var g,h=this,k=!1;try{if(D(a)||z(a))g=a&&a.then;z(g)?(this.promise.$$state.status=-1,g.call(a,d,f,c(this,this.notify))):(this.promise.$$state.value=a,this.promise.$$state.status=
1,e(this.promise.$$state))}catch(l){f(l),b(l)}},reject:function(a){this.promise.$$state.status||this.$$reject(a)},$$reject:function(a){this.promise.$$state.value=a;this.promise.$$state.status=2;e(this.promise.$$state)},notify:function(c){var d=this.promise.$$state.pending;0>=this.promise.$$state.status&&d&&d.length&&a(function(){for(var a,e,f=0,g=d.length;f<g;f++){e=d[f][0];a=d[f][3];try{e.notify(z(a)?a(c):c)}catch(h){b(h)}}})}});var k=function(a,b){var c=new f;b?c.resolve(a):c.reject(a);return c.promise},
l=function(a,b,c){var d=null;try{z(c)&&(d=c())}catch(e){return k(e,!1)}return d&&z(d.then)?d.then(function(){return k(a,b)},function(a){return k(a,!1)}):k(a,b)},m=function(a,b,c,d){var e=new f;e.resolve(a);return e.promise.then(b,c,d)},n=function(a){if(!z(a))throw g("norslvr",a);var b=new f;a(function(a){b.resolve(a)},function(a){b.reject(a)});return b.promise};n.prototype=d.prototype;n.defer=h;n.reject=function(a){var b=new f;b.reject(a);return b.promise};n.when=m;n.resolve=m;n.all=function(a){var b=
new f,c=0,d=L(a)?[]:{};q(a,function(a,e){c++;m(a).then(function(a){d.hasOwnProperty(e)||(d[e]=a,--c||b.resolve(d))},function(a){d.hasOwnProperty(e)||b.reject(a)})});0===c&&b.resolve(d);return b.promise};n.race=function(a){var b=h();q(a,function(a){m(a).then(b.resolve,b.reject)});return b.promise};return n}function Gf(){this.$get=["$window","$timeout",function(a,b){var d=a.requestAnimationFrame||a.webkitRequestAnimationFrame,c=a.cancelAnimationFrame||a.webkitCancelAnimationFrame||a.webkitCancelRequestAnimationFrame,
e=!!d,f=e?function(a){var b=d(a);return function(){c(b)}}:function(a){var c=b(a,16.66,!1);return function(){b.cancel(c)}};f.supported=e;return f}]}function vf(){function a(a){function b(){this.$$watchers=this.$$nextSibling=this.$$childHead=this.$$childTail=null;this.$$listeners={};this.$$listenerCount={};this.$$watchersCount=0;this.$id=++pb;this.$$ChildScope=null}b.prototype=a;return b}var b=10,d=N("$rootScope"),c=null,e=null;this.digestTtl=function(a){arguments.length&&(b=a);return b};this.$get=
["$exceptionHandler","$parse","$browser",function(f,g,h){function k(a){a.currentScope.$$destroyed=!0}function l(a){9===Ea&&(a.$$childHead&&l(a.$$childHead),a.$$nextSibling&&l(a.$$nextSibling));a.$parent=a.$$nextSibling=a.$$prevSibling=a.$$childHead=a.$$childTail=a.$root=a.$$watchers=null}function m(){this.$id=++pb;this.$$phase=this.$parent=this.$$watchers=this.$$nextSibling=this.$$prevSibling=this.$$childHead=this.$$childTail=null;this.$root=this;this.$$destroyed=!1;this.$$listeners={};this.$$listenerCount=
{};this.$$watchersCount=0;this.$$isolateBindings=null}function n(a){if(J.$$phase)throw d("inprog",J.$$phase);J.$$phase=a}function p(a,b){do a.$$watchersCount+=b;while(a=a.$parent)}function u(a,b,c){do a.$$listenerCount[c]-=b,0===a.$$listenerCount[c]&&delete a.$$listenerCount[c];while(a=a.$parent)}function s(){}function B(){for(;t.length;)try{t.shift()()}catch(a){f(a)}e=null}function r(){null===e&&(e=h.defer(function(){J.$apply(B)}))}m.prototype={constructor:m,$new:function(b,c){var d;c=c||this;b?
(d=new m,d.$root=this.$root):(this.$$ChildScope||(this.$$ChildScope=a(this)),d=new this.$$ChildScope);d.$parent=c;d.$$prevSibling=c.$$childTail;c.$$childHead?(c.$$childTail.$$nextSibling=d,c.$$childTail=d):c.$$childHead=c.$$childTail=d;(b||c!=this)&&d.$on("$destroy",k);return d},$watch:function(a,b,d,e){var f=g(a);if(f.$$watchDelegate)return f.$$watchDelegate(this,b,d,f,a);var h=this,k=h.$$watchers,l={fn:b,last:s,get:f,exp:e||a,eq:!!d};c=null;z(b)||(l.fn=A);k||(k=h.$$watchers=[]);k.unshift(l);p(this,
1);return function(){0<=Za(k,l)&&p(h,-1);c=null}},$watchGroup:function(a,b){function c(){h=!1;k?(k=!1,b(e,e,g)):b(e,d,g)}var d=Array(a.length),e=Array(a.length),f=[],g=this,h=!1,k=!0;if(!a.length){var l=!0;g.$evalAsync(function(){l&&b(e,e,g)});return function(){l=!1}}if(1===a.length)return this.$watch(a[0],function(a,c,f){e[0]=a;d[0]=c;b(e,a===c?e:d,f)});q(a,function(a,b){var k=g.$watch(a,function(a,f){e[b]=a;d[b]=f;h||(h=!0,g.$evalAsync(c))});f.push(k)});return function(){for(;f.length;)f.shift()()}},
$watchCollection:function(a,b){function c(a){e=a;var b,d,g,h;if(!y(e)){if(D(e))if(ta(e))for(f!==n&&(f=n,u=f.length=0,l++),a=e.length,u!==a&&(l++,f.length=u=a),b=0;b<a;b++)h=f[b],g=e[b],d=h!==h&&g!==g,d||h===g||(l++,f[b]=g);else{f!==p&&(f=p={},u=0,l++);a=0;for(b in e)ua.call(e,b)&&(a++,g=e[b],h=f[b],b in f?(d=h!==h&&g!==g,d||h===g||(l++,f[b]=g)):(u++,f[b]=g,l++));if(u>a)for(b in l++,f)ua.call(e,b)||(u--,delete f[b])}else f!==e&&(f=e,l++);return l}}c.$stateful=!0;var d=this,e,f,h,k=1<b.length,l=0,m=
g(a,c),n=[],p={},r=!0,u=0;return this.$watch(m,function(){r?(r=!1,b(e,e,d)):b(e,h,d);if(k)if(D(e))if(ta(e)){h=Array(e.length);for(var a=0;a<e.length;a++)h[a]=e[a]}else for(a in h={},e)ua.call(e,a)&&(h[a]=e[a]);else h=e})},$digest:function(){var a,g,k,l,m,p,u,r,q=b,t,y=[],A,C;n("$digest");h.$$checkUrlChange();this===J&&null!==e&&(h.defer.cancel(e),B());c=null;do{r=!1;t=this;for(p=0;p<v.length;p++){try{C=v[p],C.scope.$eval(C.expression,C.locals)}catch(F){f(F)}c=null}v.length=0;a:do{if(p=t.$$watchers)for(u=
p.length;u--;)try{if(a=p[u])if(m=a.get,(g=m(t))!==(k=a.last)&&!(a.eq?na(g,k):"number"===typeof g&&"number"===typeof k&&isNaN(g)&&isNaN(k)))r=!0,c=a,a.last=a.eq?pa(g,null):g,l=a.fn,l(g,k===s?g:k,t),5>q&&(A=4-q,y[A]||(y[A]=[]),y[A].push({msg:z(a.exp)?"fn: "+(a.exp.name||a.exp.toString()):a.exp,newVal:g,oldVal:k}));else if(a===c){r=!1;break a}}catch(G){f(G)}if(!(p=t.$$watchersCount&&t.$$childHead||t!==this&&t.$$nextSibling))for(;t!==this&&!(p=t.$$nextSibling);)t=t.$parent}while(t=p);if((r||v.length)&&
!q--)throw J.$$phase=null,d("infdig",b,y);}while(r||v.length);for(J.$$phase=null;K<w.length;)try{w[K++]()}catch(D){f(D)}w.length=K=0},$destroy:function(){if(!this.$$destroyed){var a=this.$parent;this.$broadcast("$destroy");this.$$destroyed=!0;this===J&&h.$$applicationDestroyed();p(this,-this.$$watchersCount);for(var b in this.$$listenerCount)u(this,this.$$listenerCount[b],b);a&&a.$$childHead==this&&(a.$$childHead=this.$$nextSibling);a&&a.$$childTail==this&&(a.$$childTail=this.$$prevSibling);this.$$prevSibling&&
(this.$$prevSibling.$$nextSibling=this.$$nextSibling);this.$$nextSibling&&(this.$$nextSibling.$$prevSibling=this.$$prevSibling);this.$destroy=this.$digest=this.$apply=this.$evalAsync=this.$applyAsync=A;this.$on=this.$watch=this.$watchGroup=function(){return A};this.$$listeners={};this.$$nextSibling=null;l(this)}},$eval:function(a,b){return g(a)(this,b)},$evalAsync:function(a,b){J.$$phase||v.length||h.defer(function(){v.length&&J.$digest()});v.push({scope:this,expression:g(a),locals:b})},$$postDigest:function(a){w.push(a)},
$apply:function(a){try{n("$apply");try{return this.$eval(a)}finally{J.$$phase=null}}catch(b){f(b)}finally{try{J.$digest()}catch(c){throw f(c),c;}}},$applyAsync:function(a){function b(){c.$eval(a)}var c=this;a&&t.push(b);a=g(a);r()},$on:function(a,b){var c=this.$$listeners[a];c||(this.$$listeners[a]=c=[]);c.push(b);var d=this;do d.$$listenerCount[a]||(d.$$listenerCount[a]=0),d.$$listenerCount[a]++;while(d=d.$parent);var e=this;return function(){var d=c.indexOf(b);-1!==d&&(c[d]=null,u(e,1,a))}},$emit:function(a,
b){var c=[],d,e=this,g=!1,h={name:a,targetScope:e,stopPropagation:function(){g=!0},preventDefault:function(){h.defaultPrevented=!0},defaultPrevented:!1},k=$a([h],arguments,1),l,m;do{d=e.$$listeners[a]||c;h.currentScope=e;l=0;for(m=d.length;l<m;l++)if(d[l])try{d[l].apply(null,k)}catch(n){f(n)}else d.splice(l,1),l--,m--;if(g)return h.currentScope=null,h;e=e.$parent}while(e);h.currentScope=null;return h},$broadcast:function(a,b){var c=this,d=this,e={name:a,targetScope:this,preventDefault:function(){e.defaultPrevented=
!0},defaultPrevented:!1};if(!this.$$listenerCount[a])return e;for(var g=$a([e],arguments,1),h,k;c=d;){e.currentScope=c;d=c.$$listeners[a]||[];h=0;for(k=d.length;h<k;h++)if(d[h])try{d[h].apply(null,g)}catch(l){f(l)}else d.splice(h,1),h--,k--;if(!(d=c.$$listenerCount[a]&&c.$$childHead||c!==this&&c.$$nextSibling))for(;c!==this&&!(d=c.$$nextSibling);)c=c.$parent}e.currentScope=null;return e}};var J=new m,v=J.$$asyncQueue=[],w=J.$$postDigestQueue=[],t=J.$$applyAsyncQueue=[],K=0;return J}]}function ne(){var a=
/^\s*(https?|ftp|mailto|tel|file):/,b=/^\s*((https?|ftp|file|blob):|data:image\/)/;this.aHrefSanitizationWhitelist=function(b){return w(b)?(a=b,this):a};this.imgSrcSanitizationWhitelist=function(a){return w(a)?(b=a,this):b};this.$get=function(){return function(d,c){var e=c?b:a,f;f=Y(d).href;return""===f||f.match(e)?d:"unsafe:"+f}}}function og(a){if("self"===a)return a;if(G(a)){if(-1<a.indexOf("***"))throw sa("iwcard",a);a=wd(a).replace("\\*\\*",".*").replace("\\*","[^:/.?&;]*");return new RegExp("^"+
a+"$")}if(Wa(a))return new RegExp("^"+a.source+"$");throw sa("imatcher");}function xd(a){var b=[];w(a)&&q(a,function(a){b.push(og(a))});return b}function zf(){this.SCE_CONTEXTS=la;var a=["self"],b=[];this.resourceUrlWhitelist=function(b){arguments.length&&(a=xd(b));return a};this.resourceUrlBlacklist=function(a){arguments.length&&(b=xd(a));return b};this.$get=["$injector",function(d){function c(a,b){return"self"===a?id(b):!!a.exec(b.href)}function e(a){var b=function(a){this.$$unwrapTrustedValue=
function(){return a}};a&&(b.prototype=new a);b.prototype.valueOf=function(){return this.$$unwrapTrustedValue()};b.prototype.toString=function(){return this.$$unwrapTrustedValue().toString()};return b}var f=function(a){throw sa("unsafe");};d.has("$sanitize")&&(f=d.get("$sanitize"));var g=e(),h={};h[la.HTML]=e(g);h[la.CSS]=e(g);h[la.URL]=e(g);h[la.JS]=e(g);h[la.RESOURCE_URL]=e(h[la.URL]);return{trustAs:function(a,b){var c=h.hasOwnProperty(a)?h[a]:null;if(!c)throw sa("icontext",a,b);if(null===b||y(b)||
""===b)return b;if("string"!==typeof b)throw sa("itype",a);return new c(b)},getTrusted:function(d,e){if(null===e||y(e)||""===e)return e;var g=h.hasOwnProperty(d)?h[d]:null;if(g&&e instanceof g)return e.$$unwrapTrustedValue();if(d===la.RESOURCE_URL){var g=Y(e.toString()),n,p,u=!1;n=0;for(p=a.length;n<p;n++)if(c(a[n],g)){u=!0;break}if(u)for(n=0,p=b.length;n<p;n++)if(c(b[n],g)){u=!1;break}if(u)return e;throw sa("insecurl",e.toString());}if(d===la.HTML)return f(e);throw sa("unsafe");},valueOf:function(a){return a instanceof
g?a.$$unwrapTrustedValue():a}}}]}function yf(){var a=!0;this.enabled=function(b){arguments.length&&(a=!!b);return a};this.$get=["$parse","$sceDelegate",function(b,d){if(a&&8>Ea)throw sa("iequirks");var c=ia(la);c.isEnabled=function(){return a};c.trustAs=d.trustAs;c.getTrusted=d.getTrusted;c.valueOf=d.valueOf;a||(c.trustAs=c.getTrusted=function(a,b){return b},c.valueOf=Xa);c.parseAs=function(a,d){var e=b(d);return e.literal&&e.constant?e:b(d,function(b){return c.getTrusted(a,b)})};var e=c.parseAs,
f=c.getTrusted,g=c.trustAs;q(la,function(a,b){var d=Q(b);c[db("parse_as_"+d)]=function(b){return e(a,b)};c[db("get_trusted_"+d)]=function(b){return f(a,b)};c[db("trust_as_"+d)]=function(b){return g(a,b)}});return c}]}function Af(){this.$get=["$window","$document",function(a,b){var d={},c=!(a.chrome&&a.chrome.app&&a.chrome.app.runtime)&&a.history&&a.history.pushState,e=Z((/android (\d+)/.exec(Q((a.navigator||{}).userAgent))||[])[1]),f=/Boxee/i.test((a.navigator||{}).userAgent),g=b[0]||{},h,k=/^(Moz|webkit|ms)(?=[A-Z])/,
l=g.body&&g.body.style,m=!1,n=!1;if(l){for(var p in l)if(m=k.exec(p)){h=m[0];h=h[0].toUpperCase()+h.substr(1);break}h||(h="WebkitOpacity"in l&&"webkit");m=!!("transition"in l||h+"Transition"in l);n=!!("animation"in l||h+"Animation"in l);!e||m&&n||(m=G(l.webkitTransition),n=G(l.webkitAnimation))}return{history:!(!c||4>e||f),hasEvent:function(a){if("input"===a&&11>=Ea)return!1;if(y(d[a])){var b=g.createElement("div");d[a]="on"+a in b}return d[a]},csp:Ba(),vendorPrefix:h,transitions:m,animations:n,android:e}}]}
function Cf(){var a;this.httpOptions=function(b){return b?(a=b,this):a};this.$get=["$templateCache","$http","$q","$sce",function(b,d,c,e){function f(g,h){f.totalPendingRequests++;if(!G(g)||y(b.get(g)))g=e.getTrustedResourceUrl(g);var k=d.defaults&&d.defaults.transformResponse;L(k)?k=k.filter(function(a){return a!==dc}):k===dc&&(k=null);return d.get(g,S({cache:b,transformResponse:k},a))["finally"](function(){f.totalPendingRequests--}).then(function(a){b.put(g,a.data);return a.data},function(a){if(!h)throw pg("tpload",
g,a.status,a.statusText);return c.reject(a)})}f.totalPendingRequests=0;return f}]}function Df(){this.$get=["$rootScope","$browser","$location",function(a,b,d){return{findBindings:function(a,b,d){a=a.getElementsByClassName("ng-binding");var g=[];q(a,function(a){var c=ca.element(a).data("$binding");c&&q(c,function(c){d?(new RegExp("(^|\\s)"+wd(b)+"(\\s|\\||$)")).test(c)&&g.push(a):-1!=c.indexOf(b)&&g.push(a)})});return g},findModels:function(a,b,d){for(var g=["ng-","data-ng-","ng\\:"],h=0;h<g.length;++h){var k=
a.querySelectorAll("["+g[h]+"model"+(d?"=":"*=")+'"'+b+'"]');if(k.length)return k}},getLocation:function(){return d.url()},setLocation:function(b){b!==d.url()&&(d.url(b),a.$digest())},whenStable:function(a){b.notifyWhenNoOutstandingRequests(a)}}}]}function Ef(){this.$get=["$rootScope","$browser","$q","$$q","$exceptionHandler",function(a,b,d,c,e){function f(f,k,l){z(f)||(l=k,k=f,f=A);var m=va.call(arguments,3),n=w(l)&&!l,p=(n?c:d).defer(),u=p.promise,q;q=b.defer(function(){try{p.resolve(f.apply(null,
m))}catch(b){p.reject(b),e(b)}finally{delete g[u.$$timeoutId]}n||a.$apply()},k);u.$$timeoutId=q;g[q]=p;return u}var g={};f.cancel=function(a){return a&&a.$$timeoutId in g?(g[a.$$timeoutId].reject("canceled"),delete g[a.$$timeoutId],b.defer.cancel(a.$$timeoutId)):!1};return f}]}function Y(a){Ea&&($.setAttribute("href",a),a=$.href);$.setAttribute("href",a);return{href:$.href,protocol:$.protocol?$.protocol.replace(/:$/,""):"",host:$.host,search:$.search?$.search.replace(/^\?/,""):"",hash:$.hash?$.hash.replace(/^#/,
""):"",hostname:$.hostname,port:$.port,pathname:"/"===$.pathname.charAt(0)?$.pathname:"/"+$.pathname}}function id(a){a=G(a)?Y(a):a;return a.protocol===yd.protocol&&a.host===yd.host}function Ff(){this.$get=ha(C)}function zd(a){function b(a){try{return decodeURIComponent(a)}catch(b){return a}}var d=a[0]||{},c={},e="";return function(){var a,g,h,k,l;a=d.cookie||"";if(a!==e)for(e=a,a=e.split("; "),c={},h=0;h<a.length;h++)g=a[h],k=g.indexOf("="),0<k&&(l=b(g.substring(0,k)),y(c[l])&&(c[l]=b(g.substring(k+
1))));return c}}function Jf(){this.$get=zd}function Mc(a){function b(d,c){if(D(d)){var e={};q(d,function(a,c){e[c]=b(c,a)});return e}return a.factory(d+"Filter",c)}this.register=b;this.$get=["$injector",function(a){return function(b){return a.get(b+"Filter")}}];b("currency",Ad);b("date",Bd);b("filter",qg);b("json",rg);b("limitTo",sg);b("lowercase",tg);b("number",Cd);b("orderBy",Dd);b("uppercase",ug)}function qg(){return function(a,b,d,c){if(!ta(a)){if(null==a)return a;throw N("filter")("notarray",
a);}c=c||"$";var e;switch(lc(b)){case "function":break;case "boolean":case "null":case "number":case "string":e=!0;case "object":b=vg(b,d,c,e);break;default:return a}return Array.prototype.filter.call(a,b)}}function vg(a,b,d,c){var e=D(a)&&d in a;!0===b?b=na:z(b)||(b=function(a,b){if(y(a))return!1;if(null===a||null===b)return a===b;if(D(b)||D(a)&&!vc(a))return!1;a=Q(""+a);b=Q(""+b);return-1!==a.indexOf(b)});return function(f){return e&&!D(f)?La(f,a[d],b,d,!1):La(f,a,b,d,c)}}function La(a,b,d,c,e,
f){var g=lc(a),h=lc(b);if("string"===h&&"!"===b.charAt(0))return!La(a,b.substring(1),d,c,e);if(L(a))return a.some(function(a){return La(a,b,d,c,e)});switch(g){case "object":var k;if(e){for(k in a)if("$"!==k.charAt(0)&&La(a[k],b,d,c,!0))return!0;return f?!1:La(a,b,d,c,!1)}if("object"===h){for(k in b)if(f=b[k],!z(f)&&!y(f)&&(g=k===c,!La(g?a:a[k],f,d,c,g,g)))return!1;return!0}return d(a,b);case "function":return!1;default:return d(a,b)}}function lc(a){return null===a?"null":typeof a}function Ad(a){var b=
a.NUMBER_FORMATS;return function(a,c,e){y(c)&&(c=b.CURRENCY_SYM);y(e)&&(e=b.PATTERNS[1].maxFrac);return null==a?a:Ed(a,b.PATTERNS[1],b.GROUP_SEP,b.DECIMAL_SEP,e).replace(/\u00A4/g,c)}}function Cd(a){var b=a.NUMBER_FORMATS;return function(a,c){return null==a?a:Ed(a,b.PATTERNS[0],b.GROUP_SEP,b.DECIMAL_SEP,c)}}function wg(a){var b=0,d,c,e,f,g;-1<(c=a.indexOf(Fd))&&(a=a.replace(Fd,""));0<(e=a.search(/e/i))?(0>c&&(c=e),c+=+a.slice(e+1),a=a.substring(0,e)):0>c&&(c=a.length);for(e=0;a.charAt(e)==mc;e++);
if(e==(g=a.length))d=[0],c=1;else{for(g--;a.charAt(g)==mc;)g--;c-=e;d=[];for(f=0;e<=g;e++,f++)d[f]=+a.charAt(e)}c>Gd&&(d=d.splice(0,Gd-1),b=c-1,c=1);return{d:d,e:b,i:c}}function xg(a,b,d,c){var e=a.d,f=e.length-a.i;b=y(b)?Math.min(Math.max(d,f),c):+b;d=b+a.i;c=e[d];if(0<d){e.splice(Math.max(a.i,d));for(var g=d;g<e.length;g++)e[g]=0}else for(f=Math.max(0,f),a.i=1,e.length=Math.max(1,d=b+1),e[0]=0,g=1;g<d;g++)e[g]=0;if(5<=c)if(0>d-1){for(c=0;c>d;c--)e.unshift(0),a.i++;e.unshift(1);a.i++}else e[d-1]++;
for(;f<Math.max(0,b);f++)e.push(0);if(b=e.reduceRight(function(a,b,c,d){b+=a;d[c]=b%10;return Math.floor(b/10)},0))e.unshift(b),a.i++}function Ed(a,b,d,c,e){if(!G(a)&&!T(a)||isNaN(a))return"";var f=!isFinite(a),g=!1,h=Math.abs(a)+"",k="";if(f)k="\u221e";else{g=wg(h);xg(g,e,b.minFrac,b.maxFrac);k=g.d;h=g.i;e=g.e;f=[];for(g=k.reduce(function(a,b){return a&&!b},!0);0>h;)k.unshift(0),h++;0<h?f=k.splice(h,k.length):(f=k,k=[0]);h=[];for(k.length>=b.lgSize&&h.unshift(k.splice(-b.lgSize,k.length).join(""));k.length>
b.gSize;)h.unshift(k.splice(-b.gSize,k.length).join(""));k.length&&h.unshift(k.join(""));k=h.join(d);f.length&&(k+=c+f.join(""));e&&(k+="e+"+e)}return 0>a&&!g?b.negPre+k+b.negSuf:b.posPre+k+b.posSuf}function Kb(a,b,d,c){var e="";if(0>a||c&&0>=a)c?a=-a+1:(a=-a,e="-");for(a=""+a;a.length<b;)a=mc+a;d&&(a=a.substr(a.length-b));return e+a}function ba(a,b,d,c,e){d=d||0;return function(f){f=f["get"+a]();if(0<d||f>-d)f+=d;0===f&&-12==d&&(f=12);return Kb(f,b,c,e)}}function kb(a,b,d){return function(c,e){var f=
c["get"+a](),g=ub((d?"STANDALONE":"")+(b?"SHORT":"")+a);return e[g][f]}}function Hd(a){var b=(new Date(a,0,1)).getDay();return new Date(a,0,(4>=b?5:12)-b)}function Id(a){return function(b){var d=Hd(b.getFullYear());b=+new Date(b.getFullYear(),b.getMonth(),b.getDate()+(4-b.getDay()))-+d;b=1+Math.round(b/6048E5);return Kb(b,a)}}function nc(a,b){return 0>=a.getFullYear()?b.ERAS[0]:b.ERAS[1]}function Bd(a){function b(a){var b;if(b=a.match(d)){a=new Date(0);var f=0,g=0,h=b[8]?a.setUTCFullYear:a.setFullYear,
k=b[8]?a.setUTCHours:a.setHours;b[9]&&(f=Z(b[9]+b[10]),g=Z(b[9]+b[11]));h.call(a,Z(b[1]),Z(b[2])-1,Z(b[3]));f=Z(b[4]||0)-f;g=Z(b[5]||0)-g;h=Z(b[6]||0);b=Math.round(1E3*parseFloat("0."+(b[7]||0)));k.call(a,f,g,h,b)}return a}var d=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/;return function(c,d,f){var g="",h=[],k,l;d=d||"mediumDate";d=a.DATETIME_FORMATS[d]||d;G(c)&&(c=yg.test(c)?Z(c):b(c));T(c)&&(c=new Date(c));if(!da(c)||!isFinite(c.getTime()))return c;
for(;d;)(l=zg.exec(d))?(h=$a(h,l,1),d=h.pop()):(h.push(d),d=null);var m=c.getTimezoneOffset();f&&(m=yc(f,m),c=Sb(c,f,!0));q(h,function(b){k=Ag[b];g+=k?k(c,a.DATETIME_FORMATS,m):"''"===b?"'":b.replace(/(^'|'$)/g,"").replace(/''/g,"'")});return g}}function rg(){return function(a,b){y(b)&&(b=2);return bb(a,b)}}function sg(){return function(a,b,d){b=Infinity===Math.abs(Number(b))?Number(b):Z(b);if(isNaN(b))return a;T(a)&&(a=a.toString());if(!ta(a))return a;d=!d||isNaN(d)?0:Z(d);d=0>d?Math.max(0,a.length+
d):d;return 0<=b?oc(a,d,d+b):0===d?oc(a,b,a.length):oc(a,Math.max(0,d+b),d)}}function oc(a,b,d){return G(a)?a.slice(b,d):va.call(a,b,d)}function Dd(a){function b(b){return b.map(function(b){var c=1,d=Xa;if(z(b))d=b;else if(G(b)){if("+"==b.charAt(0)||"-"==b.charAt(0))c="-"==b.charAt(0)?-1:1,b=b.substring(1);if(""!==b&&(d=a(b),d.constant))var e=d(),d=function(a){return a[e]}}return{get:d,descending:c}})}function d(a){switch(typeof a){case "number":case "boolean":case "string":return!0;default:return!1}}
function c(a,b){var c=0,d=a.type,k=b.type;if(d===k){var k=a.value,l=b.value;"string"===d?(k=k.toLowerCase(),l=l.toLowerCase()):"object"===d&&(D(k)&&(k=a.index),D(l)&&(l=b.index));k!==l&&(c=k<l?-1:1)}else c=d<k?-1:1;return c}return function(a,f,g,h){if(null==a)return a;if(!ta(a))throw N("orderBy")("notarray",a);L(f)||(f=[f]);0===f.length&&(f=["+"]);var k=b(f),l=g?-1:1,m=z(h)?h:c;a=Array.prototype.map.call(a,function(a,b){return{value:a,tieBreaker:{value:b,type:"number",index:b},predicateValues:k.map(function(c){var e=
c.get(a);c=typeof e;if(null===e)c="string",e="null";else if("object"===c)a:{if(z(e.valueOf)&&(e=e.valueOf(),d(e)))break a;vc(e)&&(e=e.toString(),d(e))}return{value:e,type:c,index:b}})}});a.sort(function(a,b){for(var c=0,d=k.length;c<d;c++){var e=m(a.predicateValues[c],b.predicateValues[c]);if(e)return e*k[c].descending*l}return m(a.tieBreaker,b.tieBreaker)*l});return a=a.map(function(a){return a.value})}}function Ta(a){z(a)&&(a={link:a});a.restrict=a.restrict||"AC";return ha(a)}function Jd(a,b,d,
c,e){var f=this,g=[];f.$error={};f.$$success={};f.$pending=void 0;f.$name=e(b.name||b.ngForm||"")(d);f.$dirty=!1;f.$pristine=!0;f.$valid=!0;f.$invalid=!1;f.$submitted=!1;f.$$parentForm=Lb;f.$rollbackViewValue=function(){q(g,function(a){a.$rollbackViewValue()})};f.$commitViewValue=function(){q(g,function(a){a.$commitViewValue()})};f.$addControl=function(a){Qa(a.$name,"input");g.push(a);a.$name&&(f[a.$name]=a);a.$$parentForm=f};f.$$renameControl=function(a,b){var c=a.$name;f[c]===a&&delete f[c];f[b]=
a;a.$name=b};f.$removeControl=function(a){a.$name&&f[a.$name]===a&&delete f[a.$name];q(f.$pending,function(b,c){f.$setValidity(c,null,a)});q(f.$error,function(b,c){f.$setValidity(c,null,a)});q(f.$$success,function(b,c){f.$setValidity(c,null,a)});Za(g,a);a.$$parentForm=Lb};Kd({ctrl:this,$element:a,set:function(a,b,c){var d=a[b];d?-1===d.indexOf(c)&&d.push(c):a[b]=[c]},unset:function(a,b,c){var d=a[b];d&&(Za(d,c),0===d.length&&delete a[b])},$animate:c});f.$setDirty=function(){c.removeClass(a,Ua);c.addClass(a,
Mb);f.$dirty=!0;f.$pristine=!1;f.$$parentForm.$setDirty()};f.$setPristine=function(){c.setClass(a,Ua,Mb+" ng-submitted");f.$dirty=!1;f.$pristine=!0;f.$submitted=!1;q(g,function(a){a.$setPristine()})};f.$setUntouched=function(){q(g,function(a){a.$setUntouched()})};f.$setSubmitted=function(){c.addClass(a,"ng-submitted");f.$submitted=!0;f.$$parentForm.$setSubmitted()}}function pc(a){a.$formatters.push(function(b){return a.$isEmpty(b)?b:b.toString()})}function lb(a,b,d,c,e,f){var g=Q(b[0].type);if(!e.android){var h=
!1;b.on("compositionstart",function(){h=!0});b.on("compositionend",function(){h=!1;l()})}var k,l=function(a){k&&(f.defer.cancel(k),k=null);if(!h){var e=b.val();a=a&&a.type;"password"===g||d.ngTrim&&"false"===d.ngTrim||(e=W(e));(c.$viewValue!==e||""===e&&c.$$hasNativeValidators)&&c.$setViewValue(e,a)}};if(e.hasEvent("input"))b.on("input",l);else{var m=function(a,b,c){k||(k=f.defer(function(){k=null;b&&b.value===c||l(a)}))};b.on("keydown",function(a){var b=a.keyCode;91===b||15<b&&19>b||37<=b&&40>=b||
m(a,this,this.value)});if(e.hasEvent("paste"))b.on("paste cut",m)}b.on("change",l);if(Ld[g]&&c.$$hasNativeValidators&&g===d.type)b.on("keydown wheel mousedown",function(a){if(!k){var b=this.validity,c=b.badInput,d=b.typeMismatch;k=f.defer(function(){k=null;b.badInput===c&&b.typeMismatch===d||l(a)})}});c.$render=function(){var a=c.$isEmpty(c.$viewValue)?"":c.$viewValue;b.val()!==a&&b.val(a)}}function Nb(a,b){return function(d,c){var e,f;if(da(d))return d;if(G(d)){'"'==d.charAt(0)&&'"'==d.charAt(d.length-
1)&&(d=d.substring(1,d.length-1));if(Bg.test(d))return new Date(d);a.lastIndex=0;if(e=a.exec(d))return e.shift(),f=c?{yyyy:c.getFullYear(),MM:c.getMonth()+1,dd:c.getDate(),HH:c.getHours(),mm:c.getMinutes(),ss:c.getSeconds(),sss:c.getMilliseconds()/1E3}:{yyyy:1970,MM:1,dd:1,HH:0,mm:0,ss:0,sss:0},q(e,function(a,c){c<b.length&&(f[b[c]]=+a)}),new Date(f.yyyy,f.MM-1,f.dd,f.HH,f.mm,f.ss||0,1E3*f.sss||0)}return NaN}}function mb(a,b,d,c){return function(e,f,g,h,k,l,m){function n(a){return a&&!(a.getTime&&
a.getTime()!==a.getTime())}function p(a){return w(a)&&!da(a)?d(a)||void 0:a}Md(e,f,g,h);lb(e,f,g,h,k,l);var u=h&&h.$options&&h.$options.timezone,q;h.$$parserName=a;h.$parsers.push(function(a){if(h.$isEmpty(a))return null;if(b.test(a))return a=d(a,q),u&&(a=Sb(a,u)),a});h.$formatters.push(function(a){if(a&&!da(a))throw nb("datefmt",a);if(n(a))return(q=a)&&u&&(q=Sb(q,u,!0)),m("date")(a,c,u);q=null;return""});if(w(g.min)||g.ngMin){var s;h.$validators.min=function(a){return!n(a)||y(s)||d(a)>=s};g.$observe("min",
function(a){s=p(a);h.$validate()})}if(w(g.max)||g.ngMax){var r;h.$validators.max=function(a){return!n(a)||y(r)||d(a)<=r};g.$observe("max",function(a){r=p(a);h.$validate()})}}}function Md(a,b,d,c){(c.$$hasNativeValidators=D(b[0].validity))&&c.$parsers.push(function(a){var c=b.prop("validity")||{};return c.badInput||c.typeMismatch?void 0:a})}function Nd(a,b,d,c,e){if(w(c)){a=a(c);if(!a.constant)throw nb("constexpr",d,c);return a(b)}return e}function qc(a,b){a="ngClass"+a;return["$animate",function(d){function c(a,
b){var c=[],d=0;a:for(;d<a.length;d++){for(var e=a[d],m=0;m<b.length;m++)if(e==b[m])continue a;c.push(e)}return c}function e(a){var b=[];return L(a)?(q(a,function(a){b=b.concat(e(a))}),b):G(a)?a.split(" "):D(a)?(q(a,function(a,c){a&&(b=b.concat(c.split(" ")))}),b):a}return{restrict:"AC",link:function(f,g,h){function k(a){a=l(a,1);h.$addClass(a)}function l(a,b){var c=g.data("$classCounts")||U(),d=[];q(a,function(a){if(0<b||c[a])c[a]=(c[a]||0)+b,c[a]===+(0<b)&&d.push(a)});g.data("$classCounts",c);return d.join(" ")}
function m(a,b){var e=c(b,a),f=c(a,b),e=l(e,1),f=l(f,-1);e&&e.length&&d.addClass(g,e);f&&f.length&&d.removeClass(g,f)}function n(a){if(!0===b||(f.$index&1)===b){var c=e(a||[]);if(!p)k(c);else if(!na(a,p)){var d=e(p);m(d,c)}}p=L(a)?a.map(function(a){return ia(a)}):ia(a)}var p;f.$watch(h[a],n,!0);h.$observe("class",function(b){n(f.$eval(h[a]))});"ngClass"!==a&&f.$watch("$index",function(c,d){var g=c&1;if(g!==(d&1)){var m=e(f.$eval(h[a]));g===b?k(m):(g=l(m,-1),h.$removeClass(g))}})}}}]}function Kd(a){function b(a,
b){b&&!f[a]?(k.addClass(e,a),f[a]=!0):!b&&f[a]&&(k.removeClass(e,a),f[a]=!1)}function d(a,c){a=a?"-"+Cc(a,"-"):"";b(ob+a,!0===c);b(Od+a,!1===c)}var c=a.ctrl,e=a.$element,f={},g=a.set,h=a.unset,k=a.$animate;f[Od]=!(f[ob]=e.hasClass(ob));c.$setValidity=function(a,e,f){y(e)?(c.$pending||(c.$pending={}),g(c.$pending,a,f)):(c.$pending&&h(c.$pending,a,f),Pd(c.$pending)&&(c.$pending=void 0));Ga(e)?e?(h(c.$error,a,f),g(c.$$success,a,f)):(g(c.$error,a,f),h(c.$$success,a,f)):(h(c.$error,a,f),h(c.$$success,
a,f));c.$pending?(b(Qd,!0),c.$valid=c.$invalid=void 0,d("",null)):(b(Qd,!1),c.$valid=Pd(c.$error),c.$invalid=!c.$valid,d("",c.$valid));e=c.$pending&&c.$pending[a]?void 0:c.$error[a]?!1:c.$$success[a]?!0:null;d(a,e);c.$$parentForm.$setValidity(a,e,c)}}function Pd(a){if(a)for(var b in a)if(a.hasOwnProperty(b))return!1;return!0}var Cg=/^\/(.+)\/([a-z]*)$/,ua=Object.prototype.hasOwnProperty,Q=function(a){return G(a)?a.toLowerCase():a},ub=function(a){return G(a)?a.toUpperCase():a},Ea,F,qa,va=[].slice,
bg=[].splice,Dg=[].push,ma=Object.prototype.toString,wc=Object.getPrototypeOf,xa=N("ng"),ca=C.angular||(C.angular={}),Ub,pb=0;Ea=C.document.documentMode;A.$inject=[];Xa.$inject=[];var L=Array.isArray,ae=/^\[object (?:Uint8|Uint8Clamped|Uint16|Uint32|Int8|Int16|Int32|Float32|Float64)Array\]$/,W=function(a){return G(a)?a.trim():a},wd=function(a){return a.replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g,"\\$1").replace(/\x08/g,"\\x08")},Ba=function(){if(!w(Ba.rules)){var a=C.document.querySelector("[ng-csp]")||
C.document.querySelector("[data-ng-csp]");if(a){var b=a.getAttribute("ng-csp")||a.getAttribute("data-ng-csp");Ba.rules={noUnsafeEval:!b||-1!==b.indexOf("no-unsafe-eval"),noInlineStyle:!b||-1!==b.indexOf("no-inline-style")}}else{a=Ba;try{new Function(""),b=!1}catch(d){b=!0}a.rules={noUnsafeEval:b,noInlineStyle:!1}}}return Ba.rules},rb=function(){if(w(rb.name_))return rb.name_;var a,b,d=Na.length,c,e;for(b=0;b<d;++b)if(c=Na[b],a=C.document.querySelector("["+c.replace(":","\\:")+"jq]")){e=a.getAttribute(c+
"jq");break}return rb.name_=e},de=/:/g,Na=["ng-","data-ng-","ng:","x-ng-"],ie=/[A-Z]/g,Dc=!1,Ma=3,me={full:"1.5.8",major:1,minor:5,dot:8,codeName:"arbitrary-fallbacks"};O.expando="ng339";var fb=O.cache={},Pf=1;O._data=function(a){return this.cache[a[this.expando]]||{}};var Kf=/([\:\-\_]+(.))/g,Lf=/^moz([A-Z])/,yb={mouseleave:"mouseout",mouseenter:"mouseover"},Wb=N("jqLite"),Of=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,Vb=/<|&#?\w+;/,Mf=/<([\w:-]+)/,Nf=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,
ja={option:[1,'<select multiple="multiple">',"</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};ja.optgroup=ja.option;ja.tbody=ja.tfoot=ja.colgroup=ja.caption=ja.thead;ja.th=ja.td;var Uf=C.Node.prototype.contains||function(a){return!!(this.compareDocumentPosition(a)&16)},Oa=O.prototype={ready:function(a){function b(){d||(d=!0,a())}var d=!1;"complete"===
C.document.readyState?C.setTimeout(b):(this.on("DOMContentLoaded",b),O(C).on("load",b))},toString:function(){var a=[];q(this,function(b){a.push(""+b)});return"["+a.join(", ")+"]"},eq:function(a){return 0<=a?F(this[a]):F(this[this.length+a])},length:0,push:Dg,sort:[].sort,splice:[].splice},Eb={};q("multiple selected checked disabled readOnly required open".split(" "),function(a){Eb[Q(a)]=a});var Vc={};q("input select option textarea button form details".split(" "),function(a){Vc[a]=!0});var bd={ngMinlength:"minlength",
ngMaxlength:"maxlength",ngMin:"min",ngMax:"max",ngPattern:"pattern"};q({data:Yb,removeData:eb,hasData:function(a){for(var b in fb[a.ng339])return!0;return!1},cleanData:function(a){for(var b=0,d=a.length;b<d;b++)eb(a[b])}},function(a,b){O[b]=a});q({data:Yb,inheritedData:Cb,scope:function(a){return F.data(a,"$scope")||Cb(a.parentNode||a,["$isolateScope","$scope"])},isolateScope:function(a){return F.data(a,"$isolateScope")||F.data(a,"$isolateScopeNoTemplate")},controller:Sc,injector:function(a){return Cb(a,
"$injector")},removeAttr:function(a,b){a.removeAttribute(b)},hasClass:zb,css:function(a,b,d){b=db(b);if(w(d))a.style[b]=d;else return a.style[b]},attr:function(a,b,d){var c=a.nodeType;if(c!==Ma&&2!==c&&8!==c)if(c=Q(b),Eb[c])if(w(d))d?(a[b]=!0,a.setAttribute(b,c)):(a[b]=!1,a.removeAttribute(c));else return a[b]||(a.attributes.getNamedItem(b)||A).specified?c:void 0;else if(w(d))a.setAttribute(b,d);else if(a.getAttribute)return a=a.getAttribute(b,2),null===a?void 0:a},prop:function(a,b,d){if(w(d))a[b]=
d;else return a[b]},text:function(){function a(a,d){if(y(d)){var c=a.nodeType;return 1===c||c===Ma?a.textContent:""}a.textContent=d}a.$dv="";return a}(),val:function(a,b){if(y(b)){if(a.multiple&&"select"===wa(a)){var d=[];q(a.options,function(a){a.selected&&d.push(a.value||a.text)});return 0===d.length?null:d}return a.value}a.value=b},html:function(a,b){if(y(b))return a.innerHTML;wb(a,!0);a.innerHTML=b},empty:Tc},function(a,b){O.prototype[b]=function(b,c){var e,f,g=this.length;if(a!==Tc&&y(2==a.length&&
a!==zb&&a!==Sc?b:c)){if(D(b)){for(e=0;e<g;e++)if(a===Yb)a(this[e],b);else for(f in b)a(this[e],f,b[f]);return this}e=a.$dv;g=y(e)?Math.min(g,1):g;for(f=0;f<g;f++){var h=a(this[f],b,c);e=e?e+h:h}return e}for(e=0;e<g;e++)a(this[e],b,c);return this}});q({removeData:eb,on:function(a,b,d,c){if(w(c))throw Wb("onargs");if(Nc(a)){c=xb(a,!0);var e=c.events,f=c.handle;f||(f=c.handle=Rf(a,e));c=0<=b.indexOf(" ")?b.split(" "):[b];for(var g=c.length,h=function(b,c,g){var h=e[b];h||(h=e[b]=[],h.specialHandlerWrapper=
c,"$destroy"===b||g||a.addEventListener(b,f,!1));h.push(d)};g--;)b=c[g],yb[b]?(h(yb[b],Tf),h(b,void 0,!0)):h(b)}},off:Rc,one:function(a,b,d){a=F(a);a.on(b,function e(){a.off(b,d);a.off(b,e)});a.on(b,d)},replaceWith:function(a,b){var d,c=a.parentNode;wb(a);q(new O(b),function(b){d?c.insertBefore(b,d.nextSibling):c.replaceChild(b,a);d=b})},children:function(a){var b=[];q(a.childNodes,function(a){1===a.nodeType&&b.push(a)});return b},contents:function(a){return a.contentDocument||a.childNodes||[]},append:function(a,
b){var d=a.nodeType;if(1===d||11===d){b=new O(b);for(var d=0,c=b.length;d<c;d++)a.appendChild(b[d])}},prepend:function(a,b){if(1===a.nodeType){var d=a.firstChild;q(new O(b),function(b){a.insertBefore(b,d)})}},wrap:function(a,b){Pc(a,F(b).eq(0).clone()[0])},remove:Db,detach:function(a){Db(a,!0)},after:function(a,b){var d=a,c=a.parentNode;b=new O(b);for(var e=0,f=b.length;e<f;e++){var g=b[e];c.insertBefore(g,d.nextSibling);d=g}},addClass:Bb,removeClass:Ab,toggleClass:function(a,b,d){b&&q(b.split(" "),
function(b){var e=d;y(e)&&(e=!zb(a,b));(e?Bb:Ab)(a,b)})},parent:function(a){return(a=a.parentNode)&&11!==a.nodeType?a:null},next:function(a){return a.nextElementSibling},find:function(a,b){return a.getElementsByTagName?a.getElementsByTagName(b):[]},clone:Xb,triggerHandler:function(a,b,d){var c,e,f=b.type||b,g=xb(a);if(g=(g=g&&g.events)&&g[f])c={preventDefault:function(){this.defaultPrevented=!0},isDefaultPrevented:function(){return!0===this.defaultPrevented},stopImmediatePropagation:function(){this.immediatePropagationStopped=
!0},isImmediatePropagationStopped:function(){return!0===this.immediatePropagationStopped},stopPropagation:A,type:f,target:a},b.type&&(c=S(c,b)),b=ia(g),e=d?[c].concat(d):[c],q(b,function(b){c.isImmediatePropagationStopped()||b.apply(a,e)})}},function(a,b){O.prototype[b]=function(b,c,e){for(var f,g=0,h=this.length;g<h;g++)y(f)?(f=a(this[g],b,c,e),w(f)&&(f=F(f))):Qc(f,a(this[g],b,c,e));return w(f)?f:this};O.prototype.bind=O.prototype.on;O.prototype.unbind=O.prototype.off});Ra.prototype={put:function(a,
b){this[Ca(a,this.nextUid)]=b},get:function(a){return this[Ca(a,this.nextUid)]},remove:function(a){var b=this[a=Ca(a,this.nextUid)];delete this[a];return b}};var If=[function(){this.$get=[function(){return Ra}]}],Wf=/^([^\(]+?)=>/,Xf=/^[^\(]*\(\s*([^\)]*)\)/m,Eg=/,/,Fg=/^\s*(_?)(\S+?)\1\s*$/,Vf=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg,Ha=N("$injector");cb.$$annotate=function(a,b,d){var c;if("function"===typeof a){if(!(c=a.$inject)){c=[];if(a.length){if(b)throw G(d)&&d||(d=a.name||Yf(a)),Ha("strictdi",d);
b=Wc(a);q(b[1].split(Eg),function(a){a.replace(Fg,function(a,b,d){c.push(d)})})}a.$inject=c}}else L(a)?(b=a.length-1,Pa(a[b],"fn"),c=a.slice(0,b)):Pa(a,"fn",!0);return c};var Rd=N("$animate"),$e=function(){this.$get=A},af=function(){var a=new Ra,b=[];this.$get=["$$AnimateRunner","$rootScope",function(d,c){function e(a,b,c){var d=!1;b&&(b=G(b)?b.split(" "):L(b)?b:[],q(b,function(b){b&&(d=!0,a[b]=c)}));return d}function f(){q(b,function(b){var c=a.get(b);if(c){var d=Zf(b.attr("class")),e="",f="";q(c,
function(a,b){a!==!!d[b]&&(a?e+=(e.length?" ":"")+b:f+=(f.length?" ":"")+b)});q(b,function(a){e&&Bb(a,e);f&&Ab(a,f)});a.remove(b)}});b.length=0}return{enabled:A,on:A,off:A,pin:A,push:function(g,h,k,l){l&&l();k=k||{};k.from&&g.css(k.from);k.to&&g.css(k.to);if(k.addClass||k.removeClass)if(h=k.addClass,l=k.removeClass,k=a.get(g)||{},h=e(k,h,!0),l=e(k,l,!1),h||l)a.put(g,k),b.push(g),1===b.length&&c.$$postDigest(f);g=new d;g.complete();return g}}}]},Ye=["$provide",function(a){var b=this;this.$$registeredAnimations=
Object.create(null);this.register=function(d,c){if(d&&"."!==d.charAt(0))throw Rd("notcsel",d);var e=d+"-animation";b.$$registeredAnimations[d.substr(1)]=e;a.factory(e,c)};this.classNameFilter=function(a){if(1===arguments.length&&(this.$$classNameFilter=a instanceof RegExp?a:null)&&/(\s+|\/)ng-animate(\s+|\/)/.test(this.$$classNameFilter.toString()))throw Rd("nongcls","ng-animate");return this.$$classNameFilter};this.$get=["$$animateQueue",function(a){function b(a,c,d){if(d){var h;a:{for(h=0;h<d.length;h++){var k=
d[h];if(1===k.nodeType){h=k;break a}}h=void 0}!h||h.parentNode||h.previousElementSibling||(d=null)}d?d.after(a):c.prepend(a)}return{on:a.on,off:a.off,pin:a.pin,enabled:a.enabled,cancel:function(a){a.end&&a.end()},enter:function(e,f,g,h){f=f&&F(f);g=g&&F(g);f=f||g.parent();b(e,f,g);return a.push(e,"enter",Ia(h))},move:function(e,f,g,h){f=f&&F(f);g=g&&F(g);f=f||g.parent();b(e,f,g);return a.push(e,"move",Ia(h))},leave:function(b,c){return a.push(b,"leave",Ia(c),function(){b.remove()})},addClass:function(b,
c,g){g=Ia(g);g.addClass=gb(g.addclass,c);return a.push(b,"addClass",g)},removeClass:function(b,c,g){g=Ia(g);g.removeClass=gb(g.removeClass,c);return a.push(b,"removeClass",g)},setClass:function(b,c,g,h){h=Ia(h);h.addClass=gb(h.addClass,c);h.removeClass=gb(h.removeClass,g);return a.push(b,"setClass",h)},animate:function(b,c,g,h,k){k=Ia(k);k.from=k.from?S(k.from,c):c;k.to=k.to?S(k.to,g):g;k.tempClasses=gb(k.tempClasses,h||"ng-inline-animate");return a.push(b,"animate",k)}}}]}],cf=function(){this.$get=
["$$rAF",function(a){function b(b){d.push(b);1<d.length||a(function(){for(var a=0;a<d.length;a++)d[a]();d=[]})}var d=[];return function(){var a=!1;b(function(){a=!0});return function(d){a?d():b(d)}}}]},bf=function(){this.$get=["$q","$sniffer","$$animateAsyncRun","$document","$timeout",function(a,b,d,c,e){function f(a){this.setHost(a);var b=d();this._doneCallbacks=[];this._tick=function(a){var d=c[0];d&&d.hidden?e(a,0,!1):b(a)};this._state=0}f.chain=function(a,b){function c(){if(d===a.length)b(!0);
else a[d](function(a){!1===a?b(!1):(d++,c())})}var d=0;c()};f.all=function(a,b){function c(f){e=e&&f;++d===a.length&&b(e)}var d=0,e=!0;q(a,function(a){a.done(c)})};f.prototype={setHost:function(a){this.host=a||{}},done:function(a){2===this._state?a():this._doneCallbacks.push(a)},progress:A,getPromise:function(){if(!this.promise){var b=this;this.promise=a(function(a,c){b.done(function(b){!1===b?c():a()})})}return this.promise},then:function(a,b){return this.getPromise().then(a,b)},"catch":function(a){return this.getPromise()["catch"](a)},
"finally":function(a){return this.getPromise()["finally"](a)},pause:function(){this.host.pause&&this.host.pause()},resume:function(){this.host.resume&&this.host.resume()},end:function(){this.host.end&&this.host.end();this._resolve(!0)},cancel:function(){this.host.cancel&&this.host.cancel();this._resolve(!1)},complete:function(a){var b=this;0===b._state&&(b._state=1,b._tick(function(){b._resolve(a)}))},_resolve:function(a){2!==this._state&&(q(this._doneCallbacks,function(b){b(a)}),this._doneCallbacks.length=
0,this._state=2)}};return f}]},Ze=function(){this.$get=["$$rAF","$q","$$AnimateRunner",function(a,b,d){return function(b,e){function f(){a(function(){g.addClass&&(b.addClass(g.addClass),g.addClass=null);g.removeClass&&(b.removeClass(g.removeClass),g.removeClass=null);g.to&&(b.css(g.to),g.to=null);h||k.complete();h=!0});return k}var g=e||{};g.$$prepared||(g=pa(g));g.cleanupStyles&&(g.from=g.to=null);g.from&&(b.css(g.from),g.from=null);var h,k=new d;return{start:f,end:f}}}]},ga=N("$compile"),bc=new function(){};
Fc.$inject=["$provide","$$sanitizeUriProvider"];Fb.prototype.isFirstChange=function(){return this.previousValue===bc};var Yc=/^((?:x|data)[\:\-_])/i,cg=N("$controller"),cd=/^(\S+)(\s+as\s+([\w$]+))?$/,jf=function(){this.$get=["$document",function(a){return function(b){b?!b.nodeType&&b instanceof F&&(b=b[0]):b=a[0].body;return b.offsetWidth+1}}]},dd="application/json",ec={"Content-Type":dd+";charset=utf-8"},eg=/^\[|^\{(?!\{)/,fg={"[":/]$/,"{":/}$/},dg=/^\)\]\}',?\n/,Gg=N("$http"),hd=function(a){return function(){throw Gg("legacy",
a);}},Ka=ca.$interpolateMinErr=N("$interpolate");Ka.throwNoconcat=function(a){throw Ka("noconcat",a);};Ka.interr=function(a,b){return Ka("interr",a,b.toString())};var rf=function(){this.$get=["$window",function(a){function b(a){var b=function(a){b.data=a;b.called=!0};b.id=a;return b}var d=a.angular.callbacks,c={};return{createCallback:function(a){a="_"+(d.$$counter++).toString(36);var f="angular.callbacks."+a,g=b(a);c[f]=d[a]=g;return f},wasCalled:function(a){return c[a].called},getResponse:function(a){return c[a].data},
removeCallback:function(a){delete d[c[a].id];delete c[a]}}}]},Hg=/^([^\?#]*)(\?([^#]*))?(#(.*))?$/,hg={http:80,https:443,ftp:21},Gb=N("$location"),Ig={$$absUrl:"",$$html5:!1,$$replace:!1,absUrl:Hb("$$absUrl"),url:function(a){if(y(a))return this.$$url;var b=Hg.exec(a);(b[1]||""===a)&&this.path(decodeURIComponent(b[1]));(b[2]||b[1]||""===a)&&this.search(b[3]||"");this.hash(b[5]||"");return this},protocol:Hb("$$protocol"),host:Hb("$$host"),port:Hb("$$port"),path:md("$$path",function(a){a=null!==a?a.toString():
"";return"/"==a.charAt(0)?a:"/"+a}),search:function(a,b){switch(arguments.length){case 0:return this.$$search;case 1:if(G(a)||T(a))a=a.toString(),this.$$search=Ac(a);else if(D(a))a=pa(a,{}),q(a,function(b,c){null==b&&delete a[c]}),this.$$search=a;else throw Gb("isrcharg");break;default:y(b)||null===b?delete this.$$search[a]:this.$$search[a]=b}this.$$compose();return this},hash:md("$$hash",function(a){return null!==a?a.toString():""}),replace:function(){this.$$replace=!0;return this}};q([ld,hc,gc],
function(a){a.prototype=Object.create(Ig);a.prototype.state=function(b){if(!arguments.length)return this.$$state;if(a!==gc||!this.$$html5)throw Gb("nostate");this.$$state=y(b)?null:b;return this}});var X=N("$parse"),jg=Function.prototype.call,kg=Function.prototype.apply,lg=Function.prototype.bind,Ob=U();q("+ - * / % === !== == != < > <= >= && || ! = |".split(" "),function(a){Ob[a]=!0});var Jg={n:"\n",f:"\f",r:"\r",t:"\t",v:"\v","'":"'",'"':'"'},jc=function(a){this.options=a};jc.prototype={constructor:jc,
lex:function(a){this.text=a;this.index=0;for(this.tokens=[];this.index<this.text.length;)if(a=this.text.charAt(this.index),'"'===a||"'"===a)this.readString(a);else if(this.isNumber(a)||"."===a&&this.isNumber(this.peek()))this.readNumber();else if(this.isIdentifierStart(this.peekMultichar()))this.readIdent();else if(this.is(a,"(){}[].,;:?"))this.tokens.push({index:this.index,text:a}),this.index++;else if(this.isWhitespace(a))this.index++;else{var b=a+this.peek(),d=b+this.peek(2),c=Ob[b],e=Ob[d];Ob[a]||
c||e?(a=e?d:c?b:a,this.tokens.push({index:this.index,text:a,operator:!0}),this.index+=a.length):this.throwError("Unexpected next character ",this.index,this.index+1)}return this.tokens},is:function(a,b){return-1!==b.indexOf(a)},peek:function(a){a=a||1;return this.index+a<this.text.length?this.text.charAt(this.index+a):!1},isNumber:function(a){return"0"<=a&&"9">=a&&"string"===typeof a},isWhitespace:function(a){return" "===a||"\r"===a||"\t"===a||"\n"===a||"\v"===a||"\u00a0"===a},isIdentifierStart:function(a){return this.options.isIdentifierStart?
this.options.isIdentifierStart(a,this.codePointAt(a)):this.isValidIdentifierStart(a)},isValidIdentifierStart:function(a){return"a"<=a&&"z">=a||"A"<=a&&"Z">=a||"_"===a||"$"===a},isIdentifierContinue:function(a){return this.options.isIdentifierContinue?this.options.isIdentifierContinue(a,this.codePointAt(a)):this.isValidIdentifierContinue(a)},isValidIdentifierContinue:function(a,b){return this.isValidIdentifierStart(a,b)||this.isNumber(a)},codePointAt:function(a){return 1===a.length?a.charCodeAt(0):
(a.charCodeAt(0)<<10)+a.charCodeAt(1)-56613888},peekMultichar:function(){var a=this.text.charAt(this.index),b=this.peek();if(!b)return a;var d=a.charCodeAt(0),c=b.charCodeAt(0);return 55296<=d&&56319>=d&&56320<=c&&57343>=c?a+b:a},isExpOperator:function(a){return"-"===a||"+"===a||this.isNumber(a)},throwError:function(a,b,d){d=d||this.index;b=w(b)?"s "+b+"-"+this.index+" ["+this.text.substring(b,d)+"]":" "+d;throw X("lexerr",a,b,this.text);},readNumber:function(){for(var a="",b=this.index;this.index<
this.text.length;){var d=Q(this.text.charAt(this.index));if("."==d||this.isNumber(d))a+=d;else{var c=this.peek();if("e"==d&&this.isExpOperator(c))a+=d;else if(this.isExpOperator(d)&&c&&this.isNumber(c)&&"e"==a.charAt(a.length-1))a+=d;else if(!this.isExpOperator(d)||c&&this.isNumber(c)||"e"!=a.charAt(a.length-1))break;else this.throwError("Invalid exponent")}this.index++}this.tokens.push({index:b,text:a,constant:!0,value:Number(a)})},readIdent:function(){var a=this.index;for(this.index+=this.peekMultichar().length;this.index<
this.text.length;){var b=this.peekMultichar();if(!this.isIdentifierContinue(b))break;this.index+=b.length}this.tokens.push({index:a,text:this.text.slice(a,this.index),identifier:!0})},readString:function(a){var b=this.index;this.index++;for(var d="",c=a,e=!1;this.index<this.text.length;){var f=this.text.charAt(this.index),c=c+f;if(e)"u"===f?(e=this.text.substring(this.index+1,this.index+5),e.match(/[\da-f]{4}/i)||this.throwError("Invalid unicode escape [\\u"+e+"]"),this.index+=4,d+=String.fromCharCode(parseInt(e,
16))):d+=Jg[f]||f,e=!1;else if("\\"===f)e=!0;else{if(f===a){this.index++;this.tokens.push({index:b,text:c,constant:!0,value:d});return}d+=f}this.index++}this.throwError("Unterminated quote",b)}};var s=function(a,b){this.lexer=a;this.options=b};s.Program="Program";s.ExpressionStatement="ExpressionStatement";s.AssignmentExpression="AssignmentExpression";s.ConditionalExpression="ConditionalExpression";s.LogicalExpression="LogicalExpression";s.BinaryExpression="BinaryExpression";s.UnaryExpression="UnaryExpression";
s.CallExpression="CallExpression";s.MemberExpression="MemberExpression";s.Identifier="Identifier";s.Literal="Literal";s.ArrayExpression="ArrayExpression";s.Property="Property";s.ObjectExpression="ObjectExpression";s.ThisExpression="ThisExpression";s.LocalsExpression="LocalsExpression";s.NGValueParameter="NGValueParameter";s.prototype={ast:function(a){this.text=a;this.tokens=this.lexer.lex(a);a=this.program();0!==this.tokens.length&&this.throwError("is an unexpected token",this.tokens[0]);return a},
program:function(){for(var a=[];;)if(0<this.tokens.length&&!this.peek("}",")",";","]")&&a.push(this.expressionStatement()),!this.expect(";"))return{type:s.Program,body:a}},expressionStatement:function(){return{type:s.ExpressionStatement,expression:this.filterChain()}},filterChain:function(){for(var a=this.expression();this.expect("|");)a=this.filter(a);return a},expression:function(){return this.assignment()},assignment:function(){var a=this.ternary();this.expect("=")&&(a={type:s.AssignmentExpression,
left:a,right:this.assignment(),operator:"="});return a},ternary:function(){var a=this.logicalOR(),b,d;return this.expect("?")&&(b=this.expression(),this.consume(":"))?(d=this.expression(),{type:s.ConditionalExpression,test:a,alternate:b,consequent:d}):a},logicalOR:function(){for(var a=this.logicalAND();this.expect("||");)a={type:s.LogicalExpression,operator:"||",left:a,right:this.logicalAND()};return a},logicalAND:function(){for(var a=this.equality();this.expect("&&");)a={type:s.LogicalExpression,
operator:"&&",left:a,right:this.equality()};return a},equality:function(){for(var a=this.relational(),b;b=this.expect("==","!=","===","!==");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.relational()};return a},relational:function(){for(var a=this.additive(),b;b=this.expect("<",">","<=",">=");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.additive()};return a},additive:function(){for(var a=this.multiplicative(),b;b=this.expect("+","-");)a={type:s.BinaryExpression,operator:b.text,
left:a,right:this.multiplicative()};return a},multiplicative:function(){for(var a=this.unary(),b;b=this.expect("*","/","%");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.unary()};return a},unary:function(){var a;return(a=this.expect("+","-","!"))?{type:s.UnaryExpression,operator:a.text,prefix:!0,argument:this.unary()}:this.primary()},primary:function(){var a;this.expect("(")?(a=this.filterChain(),this.consume(")")):this.expect("[")?a=this.arrayDeclaration():this.expect("{")?a=this.object():
this.selfReferential.hasOwnProperty(this.peek().text)?a=pa(this.selfReferential[this.consume().text]):this.options.literals.hasOwnProperty(this.peek().text)?a={type:s.Literal,value:this.options.literals[this.consume().text]}:this.peek().identifier?a=this.identifier():this.peek().constant?a=this.constant():this.throwError("not a primary expression",this.peek());for(var b;b=this.expect("(","[",".");)"("===b.text?(a={type:s.CallExpression,callee:a,arguments:this.parseArguments()},this.consume(")")):
"["===b.text?(a={type:s.MemberExpression,object:a,property:this.expression(),computed:!0},this.consume("]")):"."===b.text?a={type:s.MemberExpression,object:a,property:this.identifier(),computed:!1}:this.throwError("IMPOSSIBLE");return a},filter:function(a){a=[a];for(var b={type:s.CallExpression,callee:this.identifier(),arguments:a,filter:!0};this.expect(":");)a.push(this.expression());return b},parseArguments:function(){var a=[];if(")"!==this.peekToken().text){do a.push(this.filterChain());while(this.expect(","))
}return a},identifier:function(){var a=this.consume();a.identifier||this.throwError("is not a valid identifier",a);return{type:s.Identifier,name:a.text}},constant:function(){return{type:s.Literal,value:this.consume().value}},arrayDeclaration:function(){var a=[];if("]"!==this.peekToken().text){do{if(this.peek("]"))break;a.push(this.expression())}while(this.expect(","))}this.consume("]");return{type:s.ArrayExpression,elements:a}},object:function(){var a=[],b;if("}"!==this.peekToken().text){do{if(this.peek("}"))break;
b={type:s.Property,kind:"init"};this.peek().constant?(b.key=this.constant(),b.computed=!1,this.consume(":"),b.value=this.expression()):this.peek().identifier?(b.key=this.identifier(),b.computed=!1,this.peek(":")?(this.consume(":"),b.value=this.expression()):b.value=b.key):this.peek("[")?(this.consume("["),b.key=this.expression(),this.consume("]"),b.computed=!0,this.consume(":"),b.value=this.expression()):this.throwError("invalid key",this.peek());a.push(b)}while(this.expect(","))}this.consume("}");
return{type:s.ObjectExpression,properties:a}},throwError:function(a,b){throw X("syntax",b.text,a,b.index+1,this.text,this.text.substring(b.index));},consume:function(a){if(0===this.tokens.length)throw X("ueoe",this.text);var b=this.expect(a);b||this.throwError("is unexpected, expecting ["+a+"]",this.peek());return b},peekToken:function(){if(0===this.tokens.length)throw X("ueoe",this.text);return this.tokens[0]},peek:function(a,b,d,c){return this.peekAhead(0,a,b,d,c)},peekAhead:function(a,b,d,c,e){if(this.tokens.length>
a){a=this.tokens[a];var f=a.text;if(f===b||f===d||f===c||f===e||!(b||d||c||e))return a}return!1},expect:function(a,b,d,c){return(a=this.peek(a,b,d,c))?(this.tokens.shift(),a):!1},selfReferential:{"this":{type:s.ThisExpression},$locals:{type:s.LocalsExpression}}};td.prototype={compile:function(a,b){var d=this,c=this.astBuilder.ast(a);this.state={nextId:0,filters:{},expensiveChecks:b,fn:{vars:[],body:[],own:{}},assign:{vars:[],body:[],own:{}},inputs:[]};V(c,d.$filter);var e="",f;this.stage="assign";
if(f=rd(c))this.state.computing="assign",e=this.nextId(),this.recurse(f,e),this.return_(e),e="fn.assign="+this.generateFunction("assign","s,v,l");f=pd(c.body);d.stage="inputs";q(f,function(a,b){var c="fn"+b;d.state[c]={vars:[],body:[],own:{}};d.state.computing=c;var e=d.nextId();d.recurse(a,e);d.return_(e);d.state.inputs.push(c);a.watchId=b});this.state.computing="fn";this.stage="main";this.recurse(c);e='"'+this.USE+" "+this.STRICT+'";\n'+this.filterPrefix()+"var fn="+this.generateFunction("fn","s,l,a,i")+
e+this.watchFns()+"return fn;";e=(new Function("$filter","ensureSafeMemberName","ensureSafeObject","ensureSafeFunction","getStringValue","ensureSafeAssignContext","ifDefined","plus","text",e))(this.$filter,Sa,ra,nd,ig,Ib,mg,od,a);this.state=this.stage=void 0;e.literal=sd(c);e.constant=c.constant;return e},USE:"use",STRICT:"strict",watchFns:function(){var a=[],b=this.state.inputs,d=this;q(b,function(b){a.push("var "+b+"="+d.generateFunction(b,"s"))});b.length&&a.push("fn.inputs=["+b.join(",")+"];");
return a.join("")},generateFunction:function(a,b){return"function("+b+"){"+this.varsPrefix(a)+this.body(a)+"};"},filterPrefix:function(){var a=[],b=this;q(this.state.filters,function(d,c){a.push(d+"=$filter("+b.escape(c)+")")});return a.length?"var "+a.join(",")+";":""},varsPrefix:function(a){return this.state[a].vars.length?"var "+this.state[a].vars.join(",")+";":""},body:function(a){return this.state[a].body.join("")},recurse:function(a,b,d,c,e,f){var g,h,k=this,l,m,n;c=c||A;if(!f&&w(a.watchId))b=
b||this.nextId(),this.if_("i",this.lazyAssign(b,this.computedMember("i",a.watchId)),this.lazyRecurse(a,b,d,c,e,!0));else switch(a.type){case s.Program:q(a.body,function(b,c){k.recurse(b.expression,void 0,void 0,function(a){h=a});c!==a.body.length-1?k.current().body.push(h,";"):k.return_(h)});break;case s.Literal:m=this.escape(a.value);this.assign(b,m);c(m);break;case s.UnaryExpression:this.recurse(a.argument,void 0,void 0,function(a){h=a});m=a.operator+"("+this.ifDefined(h,0)+")";this.assign(b,m);
c(m);break;case s.BinaryExpression:this.recurse(a.left,void 0,void 0,function(a){g=a});this.recurse(a.right,void 0,void 0,function(a){h=a});m="+"===a.operator?this.plus(g,h):"-"===a.operator?this.ifDefined(g,0)+a.operator+this.ifDefined(h,0):"("+g+")"+a.operator+"("+h+")";this.assign(b,m);c(m);break;case s.LogicalExpression:b=b||this.nextId();k.recurse(a.left,b);k.if_("&&"===a.operator?b:k.not(b),k.lazyRecurse(a.right,b));c(b);break;case s.ConditionalExpression:b=b||this.nextId();k.recurse(a.test,
b);k.if_(b,k.lazyRecurse(a.alternate,b),k.lazyRecurse(a.consequent,b));c(b);break;case s.Identifier:b=b||this.nextId();d&&(d.context="inputs"===k.stage?"s":this.assign(this.nextId(),this.getHasOwnProperty("l",a.name)+"?l:s"),d.computed=!1,d.name=a.name);Sa(a.name);k.if_("inputs"===k.stage||k.not(k.getHasOwnProperty("l",a.name)),function(){k.if_("inputs"===k.stage||"s",function(){e&&1!==e&&k.if_(k.not(k.nonComputedMember("s",a.name)),k.lazyAssign(k.nonComputedMember("s",a.name),"{}"));k.assign(b,k.nonComputedMember("s",
a.name))})},b&&k.lazyAssign(b,k.nonComputedMember("l",a.name)));(k.state.expensiveChecks||Jb(a.name))&&k.addEnsureSafeObject(b);c(b);break;case s.MemberExpression:g=d&&(d.context=this.nextId())||this.nextId();b=b||this.nextId();k.recurse(a.object,g,void 0,function(){k.if_(k.notNull(g),function(){e&&1!==e&&k.addEnsureSafeAssignContext(g);if(a.computed)h=k.nextId(),k.recurse(a.property,h),k.getStringValue(h),k.addEnsureSafeMemberName(h),e&&1!==e&&k.if_(k.not(k.computedMember(g,h)),k.lazyAssign(k.computedMember(g,
h),"{}")),m=k.ensureSafeObject(k.computedMember(g,h)),k.assign(b,m),d&&(d.computed=!0,d.name=h);else{Sa(a.property.name);e&&1!==e&&k.if_(k.not(k.nonComputedMember(g,a.property.name)),k.lazyAssign(k.nonComputedMember(g,a.property.name),"{}"));m=k.nonComputedMember(g,a.property.name);if(k.state.expensiveChecks||Jb(a.property.name))m=k.ensureSafeObject(m);k.assign(b,m);d&&(d.computed=!1,d.name=a.property.name)}},function(){k.assign(b,"undefined")});c(b)},!!e);break;case s.CallExpression:b=b||this.nextId();
a.filter?(h=k.filter(a.callee.name),l=[],q(a.arguments,function(a){var b=k.nextId();k.recurse(a,b);l.push(b)}),m=h+"("+l.join(",")+")",k.assign(b,m),c(b)):(h=k.nextId(),g={},l=[],k.recurse(a.callee,h,g,function(){k.if_(k.notNull(h),function(){k.addEnsureSafeFunction(h);q(a.arguments,function(a){k.recurse(a,k.nextId(),void 0,function(a){l.push(k.ensureSafeObject(a))})});g.name?(k.state.expensiveChecks||k.addEnsureSafeObject(g.context),m=k.member(g.context,g.name,g.computed)+"("+l.join(",")+")"):m=
h+"("+l.join(",")+")";m=k.ensureSafeObject(m);k.assign(b,m)},function(){k.assign(b,"undefined")});c(b)}));break;case s.AssignmentExpression:h=this.nextId();g={};if(!qd(a.left))throw X("lval");this.recurse(a.left,void 0,g,function(){k.if_(k.notNull(g.context),function(){k.recurse(a.right,h);k.addEnsureSafeObject(k.member(g.context,g.name,g.computed));k.addEnsureSafeAssignContext(g.context);m=k.member(g.context,g.name,g.computed)+a.operator+h;k.assign(b,m);c(b||m)})},1);break;case s.ArrayExpression:l=
[];q(a.elements,function(a){k.recurse(a,k.nextId(),void 0,function(a){l.push(a)})});m="["+l.join(",")+"]";this.assign(b,m);c(m);break;case s.ObjectExpression:l=[];n=!1;q(a.properties,function(a){a.computed&&(n=!0)});n?(b=b||this.nextId(),this.assign(b,"{}"),q(a.properties,function(a){a.computed?(g=k.nextId(),k.recurse(a.key,g)):g=a.key.type===s.Identifier?a.key.name:""+a.key.value;h=k.nextId();k.recurse(a.value,h);k.assign(k.member(b,g,a.computed),h)})):(q(a.properties,function(b){k.recurse(b.value,
a.constant?void 0:k.nextId(),void 0,function(a){l.push(k.escape(b.key.type===s.Identifier?b.key.name:""+b.key.value)+":"+a)})}),m="{"+l.join(",")+"}",this.assign(b,m));c(b||m);break;case s.ThisExpression:this.assign(b,"s");c("s");break;case s.LocalsExpression:this.assign(b,"l");c("l");break;case s.NGValueParameter:this.assign(b,"v"),c("v")}},getHasOwnProperty:function(a,b){var d=a+"."+b,c=this.current().own;c.hasOwnProperty(d)||(c[d]=this.nextId(!1,a+"&&("+this.escape(b)+" in "+a+")"));return c[d]},
assign:function(a,b){if(a)return this.current().body.push(a,"=",b,";"),a},filter:function(a){this.state.filters.hasOwnProperty(a)||(this.state.filters[a]=this.nextId(!0));return this.state.filters[a]},ifDefined:function(a,b){return"ifDefined("+a+","+this.escape(b)+")"},plus:function(a,b){return"plus("+a+","+b+")"},return_:function(a){this.current().body.push("return ",a,";")},if_:function(a,b,d){if(!0===a)b();else{var c=this.current().body;c.push("if(",a,"){");b();c.push("}");d&&(c.push("else{"),
d(),c.push("}"))}},not:function(a){return"!("+a+")"},notNull:function(a){return a+"!=null"},nonComputedMember:function(a,b){var d=/[^$_a-zA-Z0-9]/g;return/[$_a-zA-Z][$_a-zA-Z0-9]*/.test(b)?a+"."+b:a+'["'+b.replace(d,this.stringEscapeFn)+'"]'},computedMember:function(a,b){return a+"["+b+"]"},member:function(a,b,d){return d?this.computedMember(a,b):this.nonComputedMember(a,b)},addEnsureSafeObject:function(a){this.current().body.push(this.ensureSafeObject(a),";")},addEnsureSafeMemberName:function(a){this.current().body.push(this.ensureSafeMemberName(a),
";")},addEnsureSafeFunction:function(a){this.current().body.push(this.ensureSafeFunction(a),";")},addEnsureSafeAssignContext:function(a){this.current().body.push(this.ensureSafeAssignContext(a),";")},ensureSafeObject:function(a){return"ensureSafeObject("+a+",text)"},ensureSafeMemberName:function(a){return"ensureSafeMemberName("+a+",text)"},ensureSafeFunction:function(a){return"ensureSafeFunction("+a+",text)"},getStringValue:function(a){this.assign(a,"getStringValue("+a+")")},ensureSafeAssignContext:function(a){return"ensureSafeAssignContext("+
a+",text)"},lazyRecurse:function(a,b,d,c,e,f){var g=this;return function(){g.recurse(a,b,d,c,e,f)}},lazyAssign:function(a,b){var d=this;return function(){d.assign(a,b)}},stringEscapeRegex:/[^ a-zA-Z0-9]/g,stringEscapeFn:function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)},escape:function(a){if(G(a))return"'"+a.replace(this.stringEscapeRegex,this.stringEscapeFn)+"'";if(T(a))return a.toString();if(!0===a)return"true";if(!1===a)return"false";if(null===a)return"null";if("undefined"===
typeof a)return"undefined";throw X("esc");},nextId:function(a,b){var d="v"+this.state.nextId++;a||this.current().vars.push(d+(b?"="+b:""));return d},current:function(){return this.state[this.state.computing]}};ud.prototype={compile:function(a,b){var d=this,c=this.astBuilder.ast(a);this.expression=a;this.expensiveChecks=b;V(c,d.$filter);var e,f;if(e=rd(c))f=this.recurse(e);e=pd(c.body);var g;e&&(g=[],q(e,function(a,b){var c=d.recurse(a);a.input=c;g.push(c);a.watchId=b}));var h=[];q(c.body,function(a){h.push(d.recurse(a.expression))});
e=0===c.body.length?A:1===c.body.length?h[0]:function(a,b){var c;q(h,function(d){c=d(a,b)});return c};f&&(e.assign=function(a,b,c){return f(a,c,b)});g&&(e.inputs=g);e.literal=sd(c);e.constant=c.constant;return e},recurse:function(a,b,d){var c,e,f=this,g;if(a.input)return this.inputs(a.input,a.watchId);switch(a.type){case s.Literal:return this.value(a.value,b);case s.UnaryExpression:return e=this.recurse(a.argument),this["unary"+a.operator](e,b);case s.BinaryExpression:return c=this.recurse(a.left),
e=this.recurse(a.right),this["binary"+a.operator](c,e,b);case s.LogicalExpression:return c=this.recurse(a.left),e=this.recurse(a.right),this["binary"+a.operator](c,e,b);case s.ConditionalExpression:return this["ternary?:"](this.recurse(a.test),this.recurse(a.alternate),this.recurse(a.consequent),b);case s.Identifier:return Sa(a.name,f.expression),f.identifier(a.name,f.expensiveChecks||Jb(a.name),b,d,f.expression);case s.MemberExpression:return c=this.recurse(a.object,!1,!!d),a.computed||(Sa(a.property.name,
f.expression),e=a.property.name),a.computed&&(e=this.recurse(a.property)),a.computed?this.computedMember(c,e,b,d,f.expression):this.nonComputedMember(c,e,f.expensiveChecks,b,d,f.expression);case s.CallExpression:return g=[],q(a.arguments,function(a){g.push(f.recurse(a))}),a.filter&&(e=this.$filter(a.callee.name)),a.filter||(e=this.recurse(a.callee,!0)),a.filter?function(a,c,d,f){for(var n=[],p=0;p<g.length;++p)n.push(g[p](a,c,d,f));a=e.apply(void 0,n,f);return b?{context:void 0,name:void 0,value:a}:
a}:function(a,c,d,m){var n=e(a,c,d,m),p;if(null!=n.value){ra(n.context,f.expression);nd(n.value,f.expression);p=[];for(var q=0;q<g.length;++q)p.push(ra(g[q](a,c,d,m),f.expression));p=ra(n.value.apply(n.context,p),f.expression)}return b?{value:p}:p};case s.AssignmentExpression:return c=this.recurse(a.left,!0,1),e=this.recurse(a.right),function(a,d,g,m){var n=c(a,d,g,m);a=e(a,d,g,m);ra(n.value,f.expression);Ib(n.context);n.context[n.name]=a;return b?{value:a}:a};case s.ArrayExpression:return g=[],q(a.elements,
function(a){g.push(f.recurse(a))}),function(a,c,d,e){for(var f=[],p=0;p<g.length;++p)f.push(g[p](a,c,d,e));return b?{value:f}:f};case s.ObjectExpression:return g=[],q(a.properties,function(a){a.computed?g.push({key:f.recurse(a.key),computed:!0,value:f.recurse(a.value)}):g.push({key:a.key.type===s.Identifier?a.key.name:""+a.key.value,computed:!1,value:f.recurse(a.value)})}),function(a,c,d,e){for(var f={},p=0;p<g.length;++p)g[p].computed?f[g[p].key(a,c,d,e)]=g[p].value(a,c,d,e):f[g[p].key]=g[p].value(a,
c,d,e);return b?{value:f}:f};case s.ThisExpression:return function(a){return b?{value:a}:a};case s.LocalsExpression:return function(a,c){return b?{value:c}:c};case s.NGValueParameter:return function(a,c,d){return b?{value:d}:d}}},"unary+":function(a,b){return function(d,c,e,f){d=a(d,c,e,f);d=w(d)?+d:0;return b?{value:d}:d}},"unary-":function(a,b){return function(d,c,e,f){d=a(d,c,e,f);d=w(d)?-d:0;return b?{value:d}:d}},"unary!":function(a,b){return function(d,c,e,f){d=!a(d,c,e,f);return b?{value:d}:
d}},"binary+":function(a,b,d){return function(c,e,f,g){var h=a(c,e,f,g);c=b(c,e,f,g);h=od(h,c);return d?{value:h}:h}},"binary-":function(a,b,d){return function(c,e,f,g){var h=a(c,e,f,g);c=b(c,e,f,g);h=(w(h)?h:0)-(w(c)?c:0);return d?{value:h}:h}},"binary*":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)*b(c,e,f,g);return d?{value:c}:c}},"binary/":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)/b(c,e,f,g);return d?{value:c}:c}},"binary%":function(a,b,d){return function(c,e,f,g){c=a(c,e,
f,g)%b(c,e,f,g);return d?{value:c}:c}},"binary===":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)===b(c,e,f,g);return d?{value:c}:c}},"binary!==":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)!==b(c,e,f,g);return d?{value:c}:c}},"binary==":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)==b(c,e,f,g);return d?{value:c}:c}},"binary!=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)!=b(c,e,f,g);return d?{value:c}:c}},"binary<":function(a,b,d){return function(c,e,f,g){c=a(c,e,
f,g)<b(c,e,f,g);return d?{value:c}:c}},"binary>":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>b(c,e,f,g);return d?{value:c}:c}},"binary<=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)<=b(c,e,f,g);return d?{value:c}:c}},"binary>=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>=b(c,e,f,g);return d?{value:c}:c}},"binary&&":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)&&b(c,e,f,g);return d?{value:c}:c}},"binary||":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)||
b(c,e,f,g);return d?{value:c}:c}},"ternary?:":function(a,b,d,c){return function(e,f,g,h){e=a(e,f,g,h)?b(e,f,g,h):d(e,f,g,h);return c?{value:e}:e}},value:function(a,b){return function(){return b?{context:void 0,name:void 0,value:a}:a}},identifier:function(a,b,d,c,e){return function(f,g,h,k){f=g&&a in g?g:f;c&&1!==c&&f&&!f[a]&&(f[a]={});g=f?f[a]:void 0;b&&ra(g,e);return d?{context:f,name:a,value:g}:g}},computedMember:function(a,b,d,c,e){return function(f,g,h,k){var l=a(f,g,h,k),m,n;null!=l&&(m=b(f,
g,h,k),m+="",Sa(m,e),c&&1!==c&&(Ib(l),l&&!l[m]&&(l[m]={})),n=l[m],ra(n,e));return d?{context:l,name:m,value:n}:n}},nonComputedMember:function(a,b,d,c,e,f){return function(g,h,k,l){g=a(g,h,k,l);e&&1!==e&&(Ib(g),g&&!g[b]&&(g[b]={}));h=null!=g?g[b]:void 0;(d||Jb(b))&&ra(h,f);return c?{context:g,name:b,value:h}:h}},inputs:function(a,b){return function(d,c,e,f){return f?f[b]:a(d,c,e)}}};var kc=function(a,b,d){this.lexer=a;this.$filter=b;this.options=d;this.ast=new s(a,d);this.astCompiler=d.csp?new ud(this.ast,
b):new td(this.ast,b)};kc.prototype={constructor:kc,parse:function(a){return this.astCompiler.compile(a,this.options.expensiveChecks)}};var ng=Object.prototype.valueOf,sa=N("$sce"),la={HTML:"html",CSS:"css",URL:"url",RESOURCE_URL:"resourceUrl",JS:"js"},pg=N("$compile"),$=C.document.createElement("a"),yd=Y(C.location.href);zd.$inject=["$document"];Mc.$inject=["$provide"];var Gd=22,Fd=".",mc="0";Ad.$inject=["$locale"];Cd.$inject=["$locale"];var Ag={yyyy:ba("FullYear",4,0,!1,!0),yy:ba("FullYear",2,0,
!0,!0),y:ba("FullYear",1,0,!1,!0),MMMM:kb("Month"),MMM:kb("Month",!0),MM:ba("Month",2,1),M:ba("Month",1,1),LLLL:kb("Month",!1,!0),dd:ba("Date",2),d:ba("Date",1),HH:ba("Hours",2),H:ba("Hours",1),hh:ba("Hours",2,-12),h:ba("Hours",1,-12),mm:ba("Minutes",2),m:ba("Minutes",1),ss:ba("Seconds",2),s:ba("Seconds",1),sss:ba("Milliseconds",3),EEEE:kb("Day"),EEE:kb("Day",!0),a:function(a,b){return 12>a.getHours()?b.AMPMS[0]:b.AMPMS[1]},Z:function(a,b,d){a=-1*d;return a=(0<=a?"+":"")+(Kb(Math[0<a?"floor":"ceil"](a/
60),2)+Kb(Math.abs(a%60),2))},ww:Id(2),w:Id(1),G:nc,GG:nc,GGG:nc,GGGG:function(a,b){return 0>=a.getFullYear()?b.ERANAMES[0]:b.ERANAMES[1]}},zg=/((?:[^yMLdHhmsaZEwG']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|L+|d+|H+|h+|m+|s+|a|Z|G+|w+))(.*)/,yg=/^\-?\d+$/;Bd.$inject=["$locale"];var tg=ha(Q),ug=ha(ub);Dd.$inject=["$parse"];var oe=ha({restrict:"E",compile:function(a,b){if(!b.href&&!b.xlinkHref)return function(a,b){if("a"===b[0].nodeName.toLowerCase()){var e="[object SVGAnimatedString]"===ma.call(b.prop("href"))?
"xlink:href":"href";b.on("click",function(a){b.attr(e)||a.preventDefault()})}}}}),vb={};q(Eb,function(a,b){function d(a,d,e){a.$watch(e[c],function(a){e.$set(b,!!a)})}if("multiple"!=a){var c=Aa("ng-"+b),e=d;"checked"===a&&(e=function(a,b,e){e.ngModel!==e[c]&&d(a,b,e)});vb[c]=function(){return{restrict:"A",priority:100,link:e}}}});q(bd,function(a,b){vb[b]=function(){return{priority:100,link:function(a,c,e){if("ngPattern"===b&&"/"==e.ngPattern.charAt(0)&&(c=e.ngPattern.match(Cg))){e.$set("ngPattern",
new RegExp(c[1],c[2]));return}a.$watch(e[b],function(a){e.$set(b,a)})}}}});q(["src","srcset","href"],function(a){var b=Aa("ng-"+a);vb[b]=function(){return{priority:99,link:function(d,c,e){var f=a,g=a;"href"===a&&"[object SVGAnimatedString]"===ma.call(c.prop("href"))&&(g="xlinkHref",e.$attr[g]="xlink:href",f=null);e.$observe(b,function(b){b?(e.$set(g,b),Ea&&f&&c.prop(f,e[g])):"href"===a&&e.$set(g,null)})}}}});var Lb={$addControl:A,$$renameControl:function(a,b){a.$name=b},$removeControl:A,$setValidity:A,
$setDirty:A,$setPristine:A,$setSubmitted:A};Jd.$inject=["$element","$attrs","$scope","$animate","$interpolate"];var Sd=function(a){return["$timeout","$parse",function(b,d){function c(a){return""===a?d('this[""]').assign:d(a).assign||A}return{name:"form",restrict:a?"EAC":"E",require:["form","^^?form"],controller:Jd,compile:function(d,f){d.addClass(Ua).addClass(ob);var g=f.name?"name":a&&f.ngForm?"ngForm":!1;return{pre:function(a,d,e,f){var n=f[0];if(!("action"in e)){var p=function(b){a.$apply(function(){n.$commitViewValue();
n.$setSubmitted()});b.preventDefault()};d[0].addEventListener("submit",p,!1);d.on("$destroy",function(){b(function(){d[0].removeEventListener("submit",p,!1)},0,!1)})}(f[1]||n.$$parentForm).$addControl(n);var q=g?c(n.$name):A;g&&(q(a,n),e.$observe(g,function(b){n.$name!==b&&(q(a,void 0),n.$$parentForm.$$renameControl(n,b),q=c(n.$name),q(a,n))}));d.on("$destroy",function(){n.$$parentForm.$removeControl(n);q(a,void 0);S(n,Lb)})}}}}}]},pe=Sd(),Ce=Sd(!0),Bg=/^\d{4,}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+-][0-2]\d:[0-5]\d|Z)$/,
Kg=/^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+\])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i,Lg=/^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+(\.[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?(\.[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/,Mg=/^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/,Td=/^(\d{4,})-(\d{2})-(\d{2})$/,Ud=/^(\d{4,})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,rc=/^(\d{4,})-W(\d\d)$/,Vd=/^(\d{4,})-(\d\d)$/,
Wd=/^(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,Ld=U();q(["date","datetime-local","month","time","week"],function(a){Ld[a]=!0});var Xd={text:function(a,b,d,c,e,f){lb(a,b,d,c,e,f);pc(c)},date:mb("date",Td,Nb(Td,["yyyy","MM","dd"]),"yyyy-MM-dd"),"datetime-local":mb("datetimelocal",Ud,Nb(Ud,"yyyy MM dd HH mm ss sss".split(" ")),"yyyy-MM-ddTHH:mm:ss.sss"),time:mb("time",Wd,Nb(Wd,["HH","mm","ss","sss"]),"HH:mm:ss.sss"),week:mb("week",rc,function(a,b){if(da(a))return a;if(G(a)){rc.lastIndex=0;var d=rc.exec(a);
if(d){var c=+d[1],e=+d[2],f=d=0,g=0,h=0,k=Hd(c),e=7*(e-1);b&&(d=b.getHours(),f=b.getMinutes(),g=b.getSeconds(),h=b.getMilliseconds());return new Date(c,0,k.getDate()+e,d,f,g,h)}}return NaN},"yyyy-Www"),month:mb("month",Vd,Nb(Vd,["yyyy","MM"]),"yyyy-MM"),number:function(a,b,d,c,e,f){Md(a,b,d,c);lb(a,b,d,c,e,f);c.$$parserName="number";c.$parsers.push(function(a){if(c.$isEmpty(a))return null;if(Mg.test(a))return parseFloat(a)});c.$formatters.push(function(a){if(!c.$isEmpty(a)){if(!T(a))throw nb("numfmt",
a);a=a.toString()}return a});if(w(d.min)||d.ngMin){var g;c.$validators.min=function(a){return c.$isEmpty(a)||y(g)||a>=g};d.$observe("min",function(a){w(a)&&!T(a)&&(a=parseFloat(a));g=T(a)&&!isNaN(a)?a:void 0;c.$validate()})}if(w(d.max)||d.ngMax){var h;c.$validators.max=function(a){return c.$isEmpty(a)||y(h)||a<=h};d.$observe("max",function(a){w(a)&&!T(a)&&(a=parseFloat(a));h=T(a)&&!isNaN(a)?a:void 0;c.$validate()})}},url:function(a,b,d,c,e,f){lb(a,b,d,c,e,f);pc(c);c.$$parserName="url";c.$validators.url=
function(a,b){var d=a||b;return c.$isEmpty(d)||Kg.test(d)}},email:function(a,b,d,c,e,f){lb(a,b,d,c,e,f);pc(c);c.$$parserName="email";c.$validators.email=function(a,b){var d=a||b;return c.$isEmpty(d)||Lg.test(d)}},radio:function(a,b,d,c){y(d.name)&&b.attr("name",++pb);b.on("click",function(a){b[0].checked&&c.$setViewValue(d.value,a&&a.type)});c.$render=function(){b[0].checked=d.value==c.$viewValue};d.$observe("value",c.$render)},checkbox:function(a,b,d,c,e,f,g,h){var k=Nd(h,a,"ngTrueValue",d.ngTrueValue,
!0),l=Nd(h,a,"ngFalseValue",d.ngFalseValue,!1);b.on("click",function(a){c.$setViewValue(b[0].checked,a&&a.type)});c.$render=function(){b[0].checked=c.$viewValue};c.$isEmpty=function(a){return!1===a};c.$formatters.push(function(a){return na(a,k)});c.$parsers.push(function(a){return a?k:l})},hidden:A,button:A,submit:A,reset:A,file:A},Gc=["$browser","$sniffer","$filter","$parse",function(a,b,d,c){return{restrict:"E",require:["?ngModel"],link:{pre:function(e,f,g,h){h[0]&&(Xd[Q(g.type)]||Xd.text)(e,f,
g,h[0],b,a,d,c)}}}}],Ng=/^(true|false|\d+)$/,Ue=function(){return{restrict:"A",priority:100,compile:function(a,b){return Ng.test(b.ngValue)?function(a,b,e){e.$set("value",a.$eval(e.ngValue))}:function(a,b,e){a.$watch(e.ngValue,function(a){e.$set("value",a)})}}}},ue=["$compile",function(a){return{restrict:"AC",compile:function(b){a.$$addBindingClass(b);return function(b,c,e){a.$$addBindingInfo(c,e.ngBind);c=c[0];b.$watch(e.ngBind,function(a){c.textContent=y(a)?"":a})}}}}],we=["$interpolate","$compile",
function(a,b){return{compile:function(d){b.$$addBindingClass(d);return function(c,d,f){c=a(d.attr(f.$attr.ngBindTemplate));b.$$addBindingInfo(d,c.expressions);d=d[0];f.$observe("ngBindTemplate",function(a){d.textContent=y(a)?"":a})}}}}],ve=["$sce","$parse","$compile",function(a,b,d){return{restrict:"A",compile:function(c,e){var f=b(e.ngBindHtml),g=b(e.ngBindHtml,function(b){return a.valueOf(b)});d.$$addBindingClass(c);return function(b,c,e){d.$$addBindingInfo(c,e.ngBindHtml);b.$watch(g,function(){var d=
f(b);c.html(a.getTrustedHtml(d)||"")})}}}}],Te=ha({restrict:"A",require:"ngModel",link:function(a,b,d,c){c.$viewChangeListeners.push(function(){a.$eval(d.ngChange)})}}),xe=qc("",!0),ze=qc("Odd",0),ye=qc("Even",1),Ae=Ta({compile:function(a,b){b.$set("ngCloak",void 0);a.removeClass("ng-cloak")}}),Be=[function(){return{restrict:"A",scope:!0,controller:"@",priority:500}}],Lc={},Og={blur:!0,focus:!0};q("click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste".split(" "),
function(a){var b=Aa("ng-"+a);Lc[b]=["$parse","$rootScope",function(d,c){return{restrict:"A",compile:function(e,f){var g=d(f[b],null,!0);return function(b,d){d.on(a,function(d){var e=function(){g(b,{$event:d})};Og[a]&&c.$$phase?b.$evalAsync(e):b.$apply(e)})}}}}]});var Ee=["$animate","$compile",function(a,b){return{multiElement:!0,transclude:"element",priority:600,terminal:!0,restrict:"A",$$tlb:!0,link:function(d,c,e,f,g){var h,k,l;d.$watch(e.ngIf,function(d){d?k||g(function(d,f){k=f;d[d.length++]=
b.$$createComment("end ngIf",e.ngIf);h={clone:d};a.enter(d,c.parent(),c)}):(l&&(l.remove(),l=null),k&&(k.$destroy(),k=null),h&&(l=tb(h.clone),a.leave(l).then(function(){l=null}),h=null))})}}}],Fe=["$templateRequest","$anchorScroll","$animate",function(a,b,d){return{restrict:"ECA",priority:400,terminal:!0,transclude:"element",controller:ca.noop,compile:function(c,e){var f=e.ngInclude||e.src,g=e.onload||"",h=e.autoscroll;return function(c,e,m,n,p){var q=0,s,B,r,y=function(){B&&(B.remove(),B=null);s&&
(s.$destroy(),s=null);r&&(d.leave(r).then(function(){B=null}),B=r,r=null)};c.$watch(f,function(f){var m=function(){!w(h)||h&&!c.$eval(h)||b()},t=++q;f?(a(f,!0).then(function(a){if(!c.$$destroyed&&t===q){var b=c.$new();n.template=a;a=p(b,function(a){y();d.enter(a,null,e).then(m)});s=b;r=a;s.$emit("$includeContentLoaded",f);c.$eval(g)}},function(){c.$$destroyed||t!==q||(y(),c.$emit("$includeContentError",f))}),c.$emit("$includeContentRequested",f)):(y(),n.template=null)})}}}}],We=["$compile",function(a){return{restrict:"ECA",
priority:-400,require:"ngInclude",link:function(b,d,c,e){ma.call(d[0]).match(/SVG/)?(d.empty(),a(Oc(e.template,C.document).childNodes)(b,function(a){d.append(a)},{futureParentElement:d})):(d.html(e.template),a(d.contents())(b))}}}],Ge=Ta({priority:450,compile:function(){return{pre:function(a,b,d){a.$eval(d.ngInit)}}}}),Se=function(){return{restrict:"A",priority:100,require:"ngModel",link:function(a,b,d,c){var e=b.attr(d.$attr.ngList)||", ",f="false"!==d.ngTrim,g=f?W(e):e;c.$parsers.push(function(a){if(!y(a)){var b=
[];a&&q(a.split(g),function(a){a&&b.push(f?W(a):a)});return b}});c.$formatters.push(function(a){if(L(a))return a.join(e)});c.$isEmpty=function(a){return!a||!a.length}}}},ob="ng-valid",Od="ng-invalid",Ua="ng-pristine",Mb="ng-dirty",Qd="ng-pending",nb=N("ngModel"),Pg=["$scope","$exceptionHandler","$attrs","$element","$parse","$animate","$timeout","$rootScope","$q","$interpolate",function(a,b,d,c,e,f,g,h,k,l){this.$modelValue=this.$viewValue=Number.NaN;this.$$rawModelValue=void 0;this.$validators={};
this.$asyncValidators={};this.$parsers=[];this.$formatters=[];this.$viewChangeListeners=[];this.$untouched=!0;this.$touched=!1;this.$pristine=!0;this.$dirty=!1;this.$valid=!0;this.$invalid=!1;this.$error={};this.$$success={};this.$pending=void 0;this.$name=l(d.name||"",!1)(a);this.$$parentForm=Lb;var m=e(d.ngModel),n=m.assign,p=m,u=n,s=null,B,r=this;this.$$setOptions=function(a){if((r.$options=a)&&a.getterSetter){var b=e(d.ngModel+"()"),f=e(d.ngModel+"($$$p)");p=function(a){var c=m(a);z(c)&&(c=b(a));
return c};u=function(a,b){z(m(a))?f(a,{$$$p:b}):n(a,b)}}else if(!m.assign)throw nb("nonassign",d.ngModel,ya(c));};this.$render=A;this.$isEmpty=function(a){return y(a)||""===a||null===a||a!==a};this.$$updateEmptyClasses=function(a){r.$isEmpty(a)?(f.removeClass(c,"ng-not-empty"),f.addClass(c,"ng-empty")):(f.removeClass(c,"ng-empty"),f.addClass(c,"ng-not-empty"))};var J=0;Kd({ctrl:this,$element:c,set:function(a,b){a[b]=!0},unset:function(a,b){delete a[b]},$animate:f});this.$setPristine=function(){r.$dirty=
!1;r.$pristine=!0;f.removeClass(c,Mb);f.addClass(c,Ua)};this.$setDirty=function(){r.$dirty=!0;r.$pristine=!1;f.removeClass(c,Ua);f.addClass(c,Mb);r.$$parentForm.$setDirty()};this.$setUntouched=function(){r.$touched=!1;r.$untouched=!0;f.setClass(c,"ng-untouched","ng-touched")};this.$setTouched=function(){r.$touched=!0;r.$untouched=!1;f.setClass(c,"ng-touched","ng-untouched")};this.$rollbackViewValue=function(){g.cancel(s);r.$viewValue=r.$$lastCommittedViewValue;r.$render()};this.$validate=function(){if(!T(r.$modelValue)||
!isNaN(r.$modelValue)){var a=r.$$rawModelValue,b=r.$valid,c=r.$modelValue,d=r.$options&&r.$options.allowInvalid;r.$$runValidators(a,r.$$lastCommittedViewValue,function(e){d||b===e||(r.$modelValue=e?a:void 0,r.$modelValue!==c&&r.$$writeModelToScope())})}};this.$$runValidators=function(a,b,c){function d(){var c=!0;q(r.$validators,function(d,e){var g=d(a,b);c=c&&g;f(e,g)});return c?!0:(q(r.$asyncValidators,function(a,b){f(b,null)}),!1)}function e(){var c=[],d=!0;q(r.$asyncValidators,function(e,g){var h=
e(a,b);if(!h||!z(h.then))throw nb("nopromise",h);f(g,void 0);c.push(h.then(function(){f(g,!0)},function(){d=!1;f(g,!1)}))});c.length?k.all(c).then(function(){g(d)},A):g(!0)}function f(a,b){h===J&&r.$setValidity(a,b)}function g(a){h===J&&c(a)}J++;var h=J;(function(){var a=r.$$parserName||"parse";if(y(B))f(a,null);else return B||(q(r.$validators,function(a,b){f(b,null)}),q(r.$asyncValidators,function(a,b){f(b,null)})),f(a,B),B;return!0})()?d()?e():g(!1):g(!1)};this.$commitViewValue=function(){var a=
r.$viewValue;g.cancel(s);if(r.$$lastCommittedViewValue!==a||""===a&&r.$$hasNativeValidators)r.$$updateEmptyClasses(a),r.$$lastCommittedViewValue=a,r.$pristine&&this.$setDirty(),this.$$parseAndValidate()};this.$$parseAndValidate=function(){var b=r.$$lastCommittedViewValue;if(B=y(b)?void 0:!0)for(var c=0;c<r.$parsers.length;c++)if(b=r.$parsers[c](b),y(b)){B=!1;break}T(r.$modelValue)&&isNaN(r.$modelValue)&&(r.$modelValue=p(a));var d=r.$modelValue,e=r.$options&&r.$options.allowInvalid;r.$$rawModelValue=
b;e&&(r.$modelValue=b,r.$modelValue!==d&&r.$$writeModelToScope());r.$$runValidators(b,r.$$lastCommittedViewValue,function(a){e||(r.$modelValue=a?b:void 0,r.$modelValue!==d&&r.$$writeModelToScope())})};this.$$writeModelToScope=function(){u(a,r.$modelValue);q(r.$viewChangeListeners,function(a){try{a()}catch(c){b(c)}})};this.$setViewValue=function(a,b){r.$viewValue=a;r.$options&&!r.$options.updateOnDefault||r.$$debounceViewValueCommit(b)};this.$$debounceViewValueCommit=function(b){var c=0,d=r.$options;
d&&w(d.debounce)&&(d=d.debounce,T(d)?c=d:T(d[b])?c=d[b]:T(d["default"])&&(c=d["default"]));g.cancel(s);c?s=g(function(){r.$commitViewValue()},c):h.$$phase?r.$commitViewValue():a.$apply(function(){r.$commitViewValue()})};a.$watch(function(){var b=p(a);if(b!==r.$modelValue&&(r.$modelValue===r.$modelValue||b===b)){r.$modelValue=r.$$rawModelValue=b;B=void 0;for(var c=r.$formatters,d=c.length,e=b;d--;)e=c[d](e);r.$viewValue!==e&&(r.$$updateEmptyClasses(e),r.$viewValue=r.$$lastCommittedViewValue=e,r.$render(),
r.$$runValidators(b,e,A))}return b})}],Re=["$rootScope",function(a){return{restrict:"A",require:["ngModel","^?form","^?ngModelOptions"],controller:Pg,priority:1,compile:function(b){b.addClass(Ua).addClass("ng-untouched").addClass(ob);return{pre:function(a,b,e,f){var g=f[0];b=f[1]||g.$$parentForm;g.$$setOptions(f[2]&&f[2].$options);b.$addControl(g);e.$observe("name",function(a){g.$name!==a&&g.$$parentForm.$$renameControl(g,a)});a.$on("$destroy",function(){g.$$parentForm.$removeControl(g)})},post:function(b,
c,e,f){var g=f[0];if(g.$options&&g.$options.updateOn)c.on(g.$options.updateOn,function(a){g.$$debounceViewValueCommit(a&&a.type)});c.on("blur",function(){g.$touched||(a.$$phase?b.$evalAsync(g.$setTouched):b.$apply(g.$setTouched))})}}}}}],Qg=/(\s+|^)default(\s+|$)/,Ve=function(){return{restrict:"A",controller:["$scope","$attrs",function(a,b){var d=this;this.$options=pa(a.$eval(b.ngModelOptions));w(this.$options.updateOn)?(this.$options.updateOnDefault=!1,this.$options.updateOn=W(this.$options.updateOn.replace(Qg,
function(){d.$options.updateOnDefault=!0;return" "}))):this.$options.updateOnDefault=!0}]}},He=Ta({terminal:!0,priority:1E3}),Rg=N("ngOptions"),Sg=/^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+group\s+by\s+([\s\S]+?))?(?:\s+disable\s+when\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+([\s\S]+?)(?:\s+track\s+by\s+([\s\S]+?))?$/,Pe=["$compile","$document","$parse",function(a,b,d){function c(a,b,c){function e(a,b,c,d,f){this.selectValue=a;this.viewValue=
b;this.label=c;this.group=d;this.disabled=f}function f(a){var b;if(!q&&ta(a))b=a;else{b=[];for(var c in a)a.hasOwnProperty(c)&&"$"!==c.charAt(0)&&b.push(c)}return b}var n=a.match(Sg);if(!n)throw Rg("iexp",a,ya(b));var p=n[5]||n[7],q=n[6];a=/ as /.test(n[0])&&n[1];var s=n[9];b=d(n[2]?n[1]:p);var w=a&&d(a)||b,r=s&&d(s),y=s?function(a,b){return r(c,b)}:function(a){return Ca(a)},v=function(a,b){return y(a,E(a,b))},A=d(n[2]||n[1]),t=d(n[3]||""),K=d(n[4]||""),z=d(n[8]),H={},E=q?function(a,b){H[q]=b;H[p]=
a;return H}:function(a){H[p]=a;return H};return{trackBy:s,getTrackByValue:v,getWatchables:d(z,function(a){var b=[];a=a||[];for(var d=f(a),e=d.length,g=0;g<e;g++){var h=a===d?g:d[g],l=a[h],h=E(l,h),l=y(l,h);b.push(l);if(n[2]||n[1])l=A(c,h),b.push(l);n[4]&&(h=K(c,h),b.push(h))}return b}),getOptions:function(){for(var a=[],b={},d=z(c)||[],g=f(d),h=g.length,n=0;n<h;n++){var p=d===g?n:g[n],q=E(d[p],p),r=w(c,q),p=y(r,q),u=A(c,q),H=t(c,q),q=K(c,q),r=new e(p,r,u,H,q);a.push(r);b[p]=r}return{items:a,selectValueMap:b,
getOptionFromViewValue:function(a){return b[v(a)]},getViewValueFromOption:function(a){return s?ca.copy(a.viewValue):a.viewValue}}}}}var e=C.document.createElement("option"),f=C.document.createElement("optgroup");return{restrict:"A",terminal:!0,require:["select","ngModel"],link:{pre:function(a,b,c,d){d[0].registerOption=A},post:function(d,h,k,l){function m(a,b){a.element=b;b.disabled=a.disabled;a.label!==b.label&&(b.label=a.label,b.textContent=a.label);a.value!==b.value&&(b.value=a.selectValue)}function n(){var a=
t&&p.readValue();if(t)for(var b=t.items.length-1;0<=b;b--){var c=t.items[b];w(c.group)?Db(c.element.parentNode):Db(c.element)}t=K.getOptions();var d={};v&&h.prepend(B);t.items.forEach(function(a){var b;if(w(a.group)){b=d[a.group];b||(b=f.cloneNode(!1),C.appendChild(b),b.label=null===a.group?"null":a.group,d[a.group]=b);var c=e.cloneNode(!1)}else b=C,c=e.cloneNode(!1);b.appendChild(c);m(a,c)});h[0].appendChild(C);s.$render();s.$isEmpty(a)||(b=p.readValue(),(K.trackBy||y?na(a,b):a===b)||(s.$setViewValue(b),
s.$render()))}var p=l[0],s=l[1],y=k.multiple,B;l=0;for(var r=h.children(),A=r.length;l<A;l++)if(""===r[l].value){B=r.eq(l);break}var v=!!B,z=F(e.cloneNode(!1));z.val("?");var t,K=c(k.ngOptions,h,d),C=b[0].createDocumentFragment();y?(s.$isEmpty=function(a){return!a||0===a.length},p.writeValue=function(a){t.items.forEach(function(a){a.element.selected=!1});a&&a.forEach(function(a){if(a=t.getOptionFromViewValue(a))a.element.selected=!0})},p.readValue=function(){var a=h.val()||[],b=[];q(a,function(a){(a=
t.selectValueMap[a])&&!a.disabled&&b.push(t.getViewValueFromOption(a))});return b},K.trackBy&&d.$watchCollection(function(){if(L(s.$viewValue))return s.$viewValue.map(function(a){return K.getTrackByValue(a)})},function(){s.$render()})):(p.writeValue=function(a){var b=t.getOptionFromViewValue(a);b?(h[0].value!==b.selectValue&&(z.remove(),v||B.remove(),h[0].value=b.selectValue,b.element.selected=!0),b.element.setAttribute("selected","selected")):null===a||v?(z.remove(),v||h.prepend(B),h.val(""),B.prop("selected",
!0),B.attr("selected",!0)):(v||B.remove(),h.prepend(z),h.val("?"),z.prop("selected",!0),z.attr("selected",!0))},p.readValue=function(){var a=t.selectValueMap[h.val()];return a&&!a.disabled?(v||B.remove(),z.remove(),t.getViewValueFromOption(a)):null},K.trackBy&&d.$watch(function(){return K.getTrackByValue(s.$viewValue)},function(){s.$render()}));v?(B.remove(),a(B)(d),B.removeClass("ng-scope")):B=F(e.cloneNode(!1));h.empty();n();d.$watchCollection(K.getWatchables,n)}}}}],Ie=["$locale","$interpolate",
"$log",function(a,b,d){var c=/{}/g,e=/^when(Minus)?(.+)$/;return{link:function(f,g,h){function k(a){g.text(a||"")}var l=h.count,m=h.$attr.when&&g.attr(h.$attr.when),n=h.offset||0,p=f.$eval(m)||{},s={},w=b.startSymbol(),B=b.endSymbol(),r=w+l+"-"+n+B,z=ca.noop,v;q(h,function(a,b){var c=e.exec(b);c&&(c=(c[1]?"-":"")+Q(c[2]),p[c]=g.attr(h.$attr[b]))});q(p,function(a,d){s[d]=b(a.replace(c,r))});f.$watch(l,function(b){var c=parseFloat(b),e=isNaN(c);e||c in p||(c=a.pluralCat(c-n));c===v||e&&T(v)&&isNaN(v)||
(z(),e=s[c],y(e)?(null!=b&&d.debug("ngPluralize: no rule defined for '"+c+"' in "+m),z=A,k()):z=f.$watch(e,k),v=c)})}}}],Je=["$parse","$animate","$compile",function(a,b,d){var c=N("ngRepeat"),e=function(a,b,c,d,e,m,n){a[c]=d;e&&(a[e]=m);a.$index=b;a.$first=0===b;a.$last=b===n-1;a.$middle=!(a.$first||a.$last);a.$odd=!(a.$even=0===(b&1))};return{restrict:"A",multiElement:!0,transclude:"element",priority:1E3,terminal:!0,$$tlb:!0,compile:function(f,g){var h=g.ngRepeat,k=d.$$createComment("end ngRepeat",
h),l=h.match(/^\s*([\s\S]+?)\s+in\s+([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+track\s+by\s+([\s\S]+?))?\s*$/);if(!l)throw c("iexp",h);var m=l[1],n=l[2],p=l[3],s=l[4],l=m.match(/^(?:(\s*[\$\w]+)|\(\s*([\$\w]+)\s*,\s*([\$\w]+)\s*\))$/);if(!l)throw c("iidexp",m);var w=l[3]||l[1],y=l[2];if(p&&(!/^[$a-zA-Z_][$a-zA-Z0-9_]*$/.test(p)||/^(null|undefined|this|\$index|\$first|\$middle|\$last|\$even|\$odd|\$parent|\$root|\$id)$/.test(p)))throw c("badident",p);var r,z,v,A,t={$id:Ca};s?r=a(s):(v=function(a,b){return Ca(b)},
A=function(a){return a});return function(a,d,f,g,l){r&&(z=function(b,c,d){y&&(t[y]=b);t[w]=c;t.$index=d;return r(a,t)});var m=U();a.$watchCollection(n,function(f){var g,n,r=d[0],s,u=U(),t,C,F,E,G,D,H;p&&(a[p]=f);if(ta(f))G=f,n=z||v;else for(H in n=z||A,G=[],f)ua.call(f,H)&&"$"!==H.charAt(0)&&G.push(H);t=G.length;H=Array(t);for(g=0;g<t;g++)if(C=f===G?g:G[g],F=f[C],E=n(C,F,g),m[E])D=m[E],delete m[E],u[E]=D,H[g]=D;else{if(u[E])throw q(H,function(a){a&&a.scope&&(m[a.id]=a)}),c("dupes",h,E,F);H[g]={id:E,
scope:void 0,clone:void 0};u[E]=!0}for(s in m){D=m[s];E=tb(D.clone);b.leave(E);if(E[0].parentNode)for(g=0,n=E.length;g<n;g++)E[g].$$NG_REMOVED=!0;D.scope.$destroy()}for(g=0;g<t;g++)if(C=f===G?g:G[g],F=f[C],D=H[g],D.scope){s=r;do s=s.nextSibling;while(s&&s.$$NG_REMOVED);D.clone[0]!=s&&b.move(tb(D.clone),null,r);r=D.clone[D.clone.length-1];e(D.scope,g,w,F,y,C,t)}else l(function(a,c){D.scope=c;var d=k.cloneNode(!1);a[a.length++]=d;b.enter(a,null,r);r=d;D.clone=a;u[D.id]=D;e(D.scope,g,w,F,y,C,t)});m=
u})}}}}],Ke=["$animate",function(a){return{restrict:"A",multiElement:!0,link:function(b,d,c){b.$watch(c.ngShow,function(b){a[b?"removeClass":"addClass"](d,"ng-hide",{tempClasses:"ng-hide-animate"})})}}}],De=["$animate",function(a){return{restrict:"A",multiElement:!0,link:function(b,d,c){b.$watch(c.ngHide,function(b){a[b?"addClass":"removeClass"](d,"ng-hide",{tempClasses:"ng-hide-animate"})})}}}],Le=Ta(function(a,b,d){a.$watch(d.ngStyle,function(a,d){d&&a!==d&&q(d,function(a,c){b.css(c,"")});a&&b.css(a)},
!0)}),Me=["$animate","$compile",function(a,b){return{require:"ngSwitch",controller:["$scope",function(){this.cases={}}],link:function(d,c,e,f){var g=[],h=[],k=[],l=[],m=function(a,b){return function(){a.splice(b,1)}};d.$watch(e.ngSwitch||e.on,function(c){var d,e;d=0;for(e=k.length;d<e;++d)a.cancel(k[d]);d=k.length=0;for(e=l.length;d<e;++d){var s=tb(h[d].clone);l[d].$destroy();(k[d]=a.leave(s)).then(m(k,d))}h.length=0;l.length=0;(g=f.cases["!"+c]||f.cases["?"])&&q(g,function(c){c.transclude(function(d,
e){l.push(e);var f=c.element;d[d.length++]=b.$$createComment("end ngSwitchWhen");h.push({clone:d});a.enter(d,f.parent(),f)})})})}}}],Ne=Ta({transclude:"element",priority:1200,require:"^ngSwitch",multiElement:!0,link:function(a,b,d,c,e){c.cases["!"+d.ngSwitchWhen]=c.cases["!"+d.ngSwitchWhen]||[];c.cases["!"+d.ngSwitchWhen].push({transclude:e,element:b})}}),Oe=Ta({transclude:"element",priority:1200,require:"^ngSwitch",multiElement:!0,link:function(a,b,d,c,e){c.cases["?"]=c.cases["?"]||[];c.cases["?"].push({transclude:e,
element:b})}}),Tg=N("ngTransclude"),Qe=["$compile",function(a){return{restrict:"EAC",terminal:!0,compile:function(b){var d=a(b.contents());b.empty();return function(a,b,f,g,h){function k(){d(a,function(a){b.append(a)})}if(!h)throw Tg("orphan",ya(b));f.ngTransclude===f.$attr.ngTransclude&&(f.ngTransclude="");f=f.ngTransclude||f.ngTranscludeSlot;h(function(a,c){a.length?b.append(a):(k(),c.$destroy())},null,f);f&&!h.isSlotFilled(f)&&k()}}}}],qe=["$templateCache",function(a){return{restrict:"E",terminal:!0,
compile:function(b,d){"text/ng-template"==d.type&&a.put(d.id,b[0].text)}}}],Ug={$setViewValue:A,$render:A},Vg=["$element","$scope",function(a,b){var d=this,c=new Ra;d.ngModelCtrl=Ug;d.unknownOption=F(C.document.createElement("option"));d.renderUnknownOption=function(b){b="? "+Ca(b)+" ?";d.unknownOption.val(b);a.prepend(d.unknownOption);a.val(b)};b.$on("$destroy",function(){d.renderUnknownOption=A});d.removeUnknownOption=function(){d.unknownOption.parent()&&d.unknownOption.remove()};d.readValue=function(){d.removeUnknownOption();
return a.val()};d.writeValue=function(b){d.hasOption(b)?(d.removeUnknownOption(),a.val(b),""===b&&d.emptyOption.prop("selected",!0)):null==b&&d.emptyOption?(d.removeUnknownOption(),a.val("")):d.renderUnknownOption(b)};d.addOption=function(a,b){if(8!==b[0].nodeType){Qa(a,'"option value"');""===a&&(d.emptyOption=b);var g=c.get(a)||0;c.put(a,g+1);d.ngModelCtrl.$render();b[0].hasAttribute("selected")&&(b[0].selected=!0)}};d.removeOption=function(a){var b=c.get(a);b&&(1===b?(c.remove(a),""===a&&(d.emptyOption=
void 0)):c.put(a,b-1))};d.hasOption=function(a){return!!c.get(a)};d.registerOption=function(a,b,c,h,k){if(h){var l;c.$observe("value",function(a){w(l)&&d.removeOption(l);l=a;d.addOption(a,b)})}else k?a.$watch(k,function(a,e){c.$set("value",a);e!==a&&d.removeOption(e);d.addOption(a,b)}):d.addOption(c.value,b);b.on("$destroy",function(){d.removeOption(c.value);d.ngModelCtrl.$render()})}}],re=function(){return{restrict:"E",require:["select","?ngModel"],controller:Vg,priority:1,link:{pre:function(a,b,
d,c){var e=c[1];if(e){var f=c[0];f.ngModelCtrl=e;b.on("change",function(){a.$apply(function(){e.$setViewValue(f.readValue())})});if(d.multiple){f.readValue=function(){var a=[];q(b.find("option"),function(b){b.selected&&a.push(b.value)});return a};f.writeValue=function(a){var c=new Ra(a);q(b.find("option"),function(a){a.selected=w(c.get(a.value))})};var g,h=NaN;a.$watch(function(){h!==e.$viewValue||na(g,e.$viewValue)||(g=ia(e.$viewValue),e.$render());h=e.$viewValue});e.$isEmpty=function(a){return!a||
0===a.length}}}},post:function(a,b,d,c){var e=c[1];if(e){var f=c[0];e.$render=function(){f.writeValue(e.$viewValue)}}}}}},te=["$interpolate",function(a){return{restrict:"E",priority:100,compile:function(b,d){if(w(d.value))var c=a(d.value,!0);else{var e=a(b.text(),!0);e||d.$set("value",b.text())}return function(a,b,d){var k=b.parent();(k=k.data("$selectController")||k.parent().data("$selectController"))&&k.registerOption(a,b,d,c,e)}}}}],se=ha({restrict:"E",terminal:!1}),Ic=function(){return{restrict:"A",
require:"?ngModel",link:function(a,b,d,c){c&&(d.required=!0,c.$validators.required=function(a,b){return!d.required||!c.$isEmpty(b)},d.$observe("required",function(){c.$validate()}))}}},Hc=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e,f=d.ngPattern||d.pattern;d.$observe("pattern",function(a){G(a)&&0<a.length&&(a=new RegExp("^"+a+"$"));if(a&&!a.test)throw N("ngPattern")("noregexp",f,a,ya(b));e=a||void 0;c.$validate()});c.$validators.pattern=function(a,b){return c.$isEmpty(b)||
y(e)||e.test(b)}}}}},Kc=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e=-1;d.$observe("maxlength",function(a){a=Z(a);e=isNaN(a)?-1:a;c.$validate()});c.$validators.maxlength=function(a,b){return 0>e||c.$isEmpty(b)||b.length<=e}}}}},Jc=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e=0;d.$observe("minlength",function(a){e=Z(a)||0;c.$validate()});c.$validators.minlength=function(a,b){return c.$isEmpty(b)||b.length>=e}}}}};C.angular.bootstrap?
C.console&&console.log("WARNING: Tried to load angular more than once."):(je(),le(ca),ca.module("ngLocale",[],["$provide",function(a){function b(a){a+="";var b=a.indexOf(".");return-1==b?0:a.length-b-1}a.value("$locale",{DATETIME_FORMATS:{AMPMS:["AM","PM"],DAY:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),ERANAMES:["Before Christ","Anno Domini"],ERAS:["BC","AD"],FIRSTDAYOFWEEK:6,MONTH:"January February March April May June July August September October November December".split(" "),
SHORTDAY:"Sun Mon Tue Wed Thu Fri Sat".split(" "),SHORTMONTH:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),STANDALONEMONTH:"January February March April May June July August September October November December".split(" "),WEEKENDRANGE:[5,6],fullDate:"EEEE, MMMM d, y",longDate:"MMMM d, y",medium:"MMM d, y h:mm:ss a",mediumDate:"MMM d, y",mediumTime:"h:mm:ss a","short":"M/d/yy h:mm a",shortDate:"M/d/yy",shortTime:"h:mm a"},NUMBER_FORMATS:{CURRENCY_SYM:"$",DECIMAL_SEP:".",GROUP_SEP:",",
PATTERNS:[{gSize:3,lgSize:3,maxFrac:3,minFrac:0,minInt:1,negPre:"-",negSuf:"",posPre:"",posSuf:""},{gSize:3,lgSize:3,maxFrac:2,minFrac:2,minInt:1,negPre:"-\u00a4",negSuf:"",posPre:"\u00a4",posSuf:""}]},id:"en-us",localeID:"en_US",pluralCat:function(a,c){var e=a|0,f=c;void 0===f&&(f=Math.min(b(a),3));Math.pow(10,f);return 1==e&&0==f?"one":"other"}})}]),F(C.document).ready(function(){fe(C.document,Bc)}))})(window);!window.angular.$$csp().noInlineStyle&&window.angular.element(document.head).prepend('<style type="text/css">@charset "UTF-8";[ng\\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\\:form{display:block;}.ng-animate-shim{visibility:hidden;}.ng-anchor{position:absolute;}</style>');
;
!function(n,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):n.moment=t()}(this,function(){"use strict";function t(){return df.apply(null,arguments)}function it(n){return n instanceof Array||"[object Array]"===Object.prototype.toString.call(n)}function ii(n){return null!=n&&"[object Object]"===Object.prototype.toString.call(n)}function s(n,t){return Object.prototype.hasOwnProperty.call(n,t)}function au(n){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(n).length;for(var t in n)if(s(n,t))return;return 1}function k(n){return void 0===n}function lt(n){return"number"==typeof n||"[object Number]"===Object.prototype.toString.call(n)}function nr(n){return n instanceof Date||"[object Date]"===Object.prototype.toString.call(n)}function gf(n,t){for(var r=[],u=n.length,i=0;i<u;++i)r.push(t(n[i],i));return r}function dt(n,t){for(var i in t)s(t,i)&&(n[i]=t[i]);return s(t,"toString")&&(n.toString=t.toString),s(t,"valueOf")&&(n.valueOf=t.valueOf),n}function et(n,t,i,r){return no(n,t,i,r,!0).utc()}function f(n){return null==n._pf&&(n._pf={empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidEra:null,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],era:null,meridiem:null,rfc2822:!1,weekdayMismatch:!1}),n._pf}function vu(n){if(null==n._isValid){var t=f(n),i=ts.call(t.parsedDateParts,function(n){return null!=n}),i=!isNaN(n._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidEra&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&i);if(n._strict&&(i=i&&0===t.charsLeftOver&&0===t.unusedTokens.length&&void 0===t.bigHour),null!=Object.isFrozen&&Object.isFrozen(n))return i;n._isValid=i}return n._isValid}function cr(n){var t=et(NaN);return null!=n?dt(f(t),n):f(t).userInvalidated=!0,t}function pu(n,t){var i,r,u,e=ne.length;if(k(t._isAMomentObject)||(n._isAMomentObject=t._isAMomentObject),k(t._i)||(n._i=t._i),k(t._f)||(n._f=t._f),k(t._l)||(n._l=t._l),k(t._strict)||(n._strict=t._strict),k(t._tzm)||(n._tzm=t._tzm),k(t._isUTC)||(n._isUTC=t._isUTC),k(t._offset)||(n._offset=t._offset),k(t._pf)||(n._pf=f(t)),k(t._locale)||(n._locale=t._locale),0<e)for(i=0;i<e;i++)k(u=t[r=ne[i]])||(n[r]=u);return n}function tr(n){pu(this,n);this._d=new Date(null!=n._d?n._d.getTime():NaN);this.isValid()||(this._d=new Date(NaN));!1===yu&&(yu=!0,t.updateOffset(this),yu=!1)}function rt(n){return n instanceof tr||null!=n&&null!=n._isAMomentObject}function te(n){!1===t.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+n)}function g(n,i){var r=!0;return dt(function(){if(null!=t.deprecationHandler&&t.deprecationHandler(null,n),r){for(var u,e,o=[],h=arguments.length,f=0;f<h;f++){if(u="","object"==typeof arguments[f]){for(e in u+="\n["+f+"] ",arguments[0])s(arguments[0],e)&&(u+=e+": "+arguments[0][e]+", ");u=u.slice(0,-2)}else u=arguments[f];o.push(u)}te(n+"\nArguments: "+Array.prototype.slice.call(o).join("")+"\n"+(new Error).stack);r=!1}return i.apply(this,arguments)},i)}function re(n,i){null!=t.deprecationHandler&&t.deprecationHandler(n,i);ie[n]||(te(i),ie[n]=!0)}function ot(n){return"undefined"!=typeof Function&&n instanceof Function||"[object Function]"===Object.prototype.toString.call(n)}function wu(n,t){var i,r=dt({},n);for(i in t)s(t,i)&&(ii(n[i])&&ii(t[i])?(r[i]={},dt(r[i],n[i]),dt(r[i],t[i])):null!=t[i]?r[i]=t[i]:delete r[i]);for(i in n)s(n,i)&&!s(t,i)&&ii(n[i])&&(r[i]=dt({},r[i]));return r}function bu(n){null!=n&&this.set(n)}function st(n,t,i){var r=""+Math.abs(n);return(0<=n?i?"+":"":"-")+Math.pow(10,Math.max(0,t-r.length)).toString().substr(1)+r}function r(n,t,i,r){var u="string"==typeof r?function(){return this[r]()}:r;n&&(hi[n]=u);t&&(hi[t[0]]=function(){return st(u.apply(this,arguments),t[1],t[2])});i&&(hi[i]=function(){return this.localeData().ordinal(u.apply(this,arguments),n)})}function ar(n,t){return n.isValid()?(t=fe(t,n.localeData()),du[t]=du[t]||function(n){for(var r,t=n.match(ku),i=0,u=t.length;i<u;i++)t[i]=hi[t[i]]?hi[t[i]]:(r=t[i]).match(/\[[\s\S]/)?r.replace(/^\[|\]$/g,""):r.replace(/\\/g,"");return function(i){for(var f="",r=0;r<u;r++)f+=ot(t[r])?t[r].call(i,n):t[r];return f}}(t),du[t](n)):n.localeData().invalidDate()}function fe(n,t){function r(n){return t.longDateFormat(n)||n}var i=5;for(lr.lastIndex=0;0<=i&&lr.test(n);)n=n.replace(lr,r),lr.lastIndex=0,--i;return n}function p(n,t){var i=n.toLowerCase();ci[i]=ci[i+"s"]=ci[t]=n}function nt(n){if("string"==typeof n)return ci[n]||ci[n.toLowerCase()]}function gu(n){var i,t,r={};for(t in n)s(n,t)&&(i=nt(t))&&(r[i]=n[t]);return r}function w(n,t){nf[n]=t}function vr(n){return n%4==0&&n%100!=0||n%400==0}function tt(n){return n<0?Math.ceil(n)||0:Math.floor(n)}function e(n){var n=+n;return 0!=n&&isFinite(n)?tt(n):0}function li(n,i){return function(r){return null!=r?(ee(this,n,r),t.updateOffset(this,i),this):yr(this,n)}}function yr(n,t){return n.isValid()?n._d["get"+(n._isUTC?"UTC":"")+t]():NaN}function ee(n,t,i){n.isValid()&&!isNaN(i)&&("FullYear"===t&&vr(n.year())&&1===n.month()&&29===n.date()?(i=e(i),n._d["set"+(n._isUTC?"UTC":"")+t](i,n.month(),gr(i,n.month()))):n._d["set"+(n._isUTC?"UTC":"")+t](i))}function i(n,t,i){kr[n]=ot(t)?t:function(n){return n&&i?i:t}}function rs(n,t){return s(kr,n)?kr[n](t._strict,t._locale):new RegExp(d(n.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(n,t,i,r,u){return t||i||r||u})))}function d(n){return n.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function h(n,t){var i,r,u=t;for("string"==typeof n&&(n=[n]),lt(t)&&(u=function(n,i){i[t]=e(n)}),r=n.length,i=0;i<r;i++)dr[n[i]]=u}function ir(n,t){h(n,function(n,i,r,u){r._w=r._w||{};t(n,r._w,r,u)})}function gr(n,t){if(isNaN(n)||isNaN(t))return NaN;var i=(t%(i=12)+i)%i;return n+=(t-i)/12,1==i?vr(n)?29:28:31-i%7%2}function he(n,t){var i;if(n.isValid()){if("string"==typeof t)if(/^\d+$/.test(t))t=e(t);else if(!lt(t=n.localeData().monthsParse(t)))return;i=Math.min(n.date(),gr(n.year(),t));n._d["set"+(n._isUTC?"UTC":"")+"Month"](t,i)}}function ce(n){return null!=n?(he(this,n),t.updateOffset(this,!0),this):yr(this,"Month")}function le(){function f(n,t){return t.length-n.length}for(var i,r=[],u=[],t=[],n=0;n<12;n++)i=et([2e3,n]),r.push(this.monthsShort(i,"")),u.push(this.months(i,"")),t.push(this.months(i,"")),t.push(this.monthsShort(i,""));for(r.sort(f),u.sort(f),t.sort(f),n=0;n<12;n++)r[n]=d(r[n]),u[n]=d(u[n]);for(n=0;n<24;n++)t[n]=d(t[n]);this._monthsRegex=new RegExp("^("+t.join("|")+")","i");this._monthsShortRegex=this._monthsRegex;this._monthsStrictRegex=new RegExp("^("+u.join("|")+")","i");this._monthsShortStrictRegex=new RegExp("^("+r.join("|")+")","i")}function ur(n){return vr(n)?366:365}function ss(n,t,i,r,u,f,e){var o;return n<100&&0<=n?(o=new Date(n+400,t,i,r,u,f,e),isFinite(o.getFullYear())&&o.setFullYear(n)):o=new Date(n,t,i,r,u,f,e),o}function fr(n){var t;return n<100&&0<=n?((t=Array.prototype.slice.call(arguments))[0]=n+400,t=new Date(Date.UTC.apply(null,t)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(n)):t=new Date(Date.UTC.apply(null,arguments)),t}function tu(n,t,i){return i=7+t-i,i-(7+fr(n,0,i).getUTCDay()-t)%7-1}function ae(n,t,i,r,u){var f,t=1+7*(t-1)+(7+i-r)%7+tu(n,r,u),i=t<=0?ur(f=n-1)+t:t>ur(n)?(f=n+1,t-ur(n)):(f=n,t);return{year:f,dayOfYear:i}}function er(n,t,i){var u,f,r=tu(n.year(),t,i),r=Math.floor((n.dayOfYear()-r-1)/7)+1;return r<1?u=r+pt(f=n.year()-1,t,i):r>pt(n.year(),t,i)?(u=r-pt(n.year(),t,i),f=n.year()+1):(f=n.year(),u=r),{week:u,year:f}}function pt(n,t,i){var r=tu(n,t,i),t=tu(n+1,t,i);return(ur(n)-r+t)/7}function tf(n,t){return n.slice(t,7).concat(n.slice(0,t))}function rf(){function i(n,t){return t.length-n.length}for(var r,u,n,f=[],e=[],o=[],t=[],s=0;s<7;s++)n=et([2e3,1]).day(s),r=d(this.weekdaysMin(n,"")),u=d(this.weekdaysShort(n,"")),n=d(this.weekdays(n,"")),f.push(r),e.push(u),o.push(n),t.push(r),t.push(u),t.push(n);f.sort(i);e.sort(i);o.sort(i);t.sort(i);this._weekdaysRegex=new RegExp("^("+t.join("|")+")","i");this._weekdaysShortRegex=this._weekdaysRegex;this._weekdaysMinRegex=this._weekdaysRegex;this._weekdaysStrictRegex=new RegExp("^("+o.join("|")+")","i");this._weekdaysShortStrictRegex=new RegExp("^("+e.join("|")+")","i");this._weekdaysMinStrictRegex=new RegExp("^("+f.join("|")+")","i")}function uf(){return this.hours()%12||12}function ye(n,t){r(n,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function pe(n,t){return t._meridiemParse}function be(n){return n&&n.toLowerCase().replace("_","-")}function as(n){for(var t,i,f,u,r=0;r<n.length;){for(t=(u=be(n[r]).split("-")).length,i=(i=be(n[r+1]))?i.split("-"):null;0<t;){if(f=ru(u.slice(0,t).join("-")))return f;if(i&&i.length>=t&&function(n,t){for(var r=Math.min(n.length,t.length),i=0;i<r;i+=1)if(n[i]!==t[i])return i;return r}(u,i)>=t-1)break;t--}r++}return sr}function ru(n){var t;if(void 0===a[n]&&"undefined"!=typeof module&&module&&module.exports&&null!=n.match("^[^/\\\\]*$"))try{t=sr._abbr;require("./locale/"+n);ni(t)}catch(t){a[n]=null}return a[n]}function ni(n,t){return n&&((t=k(t)?wt(n):ff(n,t))?sr=t:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+n+" not found. Did you forget to load it?")),sr._abbr}function ff(n,t){if(null===t)return delete a[n],null;var r,i=we;if(t.abbr=n,null!=a[n])re("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."),i=a[n]._config;else if(null!=t.parentLocale)if(null!=a[t.parentLocale])i=a[t.parentLocale]._config;else{if(null==(r=ru(t.parentLocale)))return hr[t.parentLocale]||(hr[t.parentLocale]=[]),hr[t.parentLocale].push({name:n,config:t}),null;i=r._config}return a[n]=new bu(wu(i,t)),hr[n]&&hr[n].forEach(function(n){ff(n.name,n.config)}),ni(n),a[n]}function wt(n){var t;if(!(n=n&&n._locale&&n._locale._abbr?n._locale._abbr:n))return sr;if(!it(n)){if(t=ru(n))return t;n=[n]}return as(n)}function ef(n){var t=n._a;return t&&-2===f(n).overflow&&(t=t[vt]<0||11<t[vt]?vt:t[ht]<1||t[ht]>gr(t[b],t[vt])?ht:t[y]<0||24<t[y]||24===t[y]&&(0!==t[ut]||0!==t[yt]||0!==t[ei])?y:t[ut]<0||59<t[ut]?ut:t[yt]<0||59<t[yt]?yt:t[ei]<0||999<t[ei]?ei:-1,f(n)._overflowDayOfYear&&(t<b||ht<t)&&(t=ht),f(n)._overflowWeeks&&-1===t&&(t=us),f(n)._overflowWeekday&&-1===t&&(t=fs),f(n).overflow=t),n}function ke(n){var t,r,s,e,u,h,o=n._i,i=vs.exec(o)||ys.exec(o),o=uu.length,c=of.length;if(i){for(f(n).iso=!0,t=0,r=o;t<r;t++)if(uu[t][1].exec(i[1])){e=uu[t][0];s=!1!==uu[t][2];break}if(null==e)n._isValid=!1;else{if(i[3]){for(t=0,r=c;t<r;t++)if(of[t][1].exec(i[3])){u=(i[2]||" ")+of[t][0];break}if(null==u)return void(n._isValid=!1)}if(s||null==u){if(i[4]){if(!ps.exec(i[4]))return void(n._isValid=!1);h="Z"}n._f=e+(u||"")+(h||"");hf(n)}else n._isValid=!1}}else n._isValid=!1}function ds(n,t,i,r,u,f){return n=[function(n){return(n=parseInt(n,10),n<=49)?2e3+n:n<=999?1900+n:n}(n),oe.indexOf(t),parseInt(i,10),parseInt(r,10),parseInt(u,10)],f&&n.push(parseInt(f,10)),n}function de(n){var e,i,r,u,t=bs.exec(n._i.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").replace(/^\s\s*/,"").replace(/\s\s*$/,""));t?(e=ds(t[4],t[3],t[2],t[5],t[6],t[7]),i=t[1],r=e,u=n,i&&ve.indexOf(i)!==new Date(r[0],r[1],r[2]).getDay()?(f(u).weekdayMismatch=!0,u._isValid=!1):(n._a=e,n._tzm=(i=t[8],r=t[9],u=t[10],i?ks[i]:r?0:60*(((i=parseInt(u,10))-(r=i%100))/100)+r),n._d=fr.apply(null,n._a),n._d.setUTCMinutes(n._d.getUTCMinutes()-n._tzm),f(n).rfc2822=!0)):n._isValid=!1}function wi(n,t,i){return null!=n?n:null!=t?t:i}function sf(n){var r,p,u,i,h,a,e,o,v,s,c,w=[];if(!n._d){for(u=n,i=new Date(t.now()),p=u._useUTC?[i.getUTCFullYear(),i.getUTCMonth(),i.getUTCDate()]:[i.getFullYear(),i.getMonth(),i.getDate()],n._w&&null==n._a[ht]&&null==n._a[vt]&&(null!=(i=(u=n)._w).GG||null!=i.W||null!=i.E?(o=1,v=4,h=wi(i.GG,u._a[b],er(l(),1,4).year),a=wi(i.W,1),((e=wi(i.E,1))<1||7<e)&&(s=!0)):(o=u._locale._week.dow,v=u._locale._week.doy,c=er(l(),o,v),h=wi(i.gg,u._a[b],c.year),a=wi(i.w,c.week),null!=i.d?((e=i.d)<0||6<e)&&(s=!0):null!=i.e?(e=i.e+o,(i.e<0||6<i.e)&&(s=!0)):e=o),a<1||a>pt(h,o,v)?f(u)._overflowWeeks=!0:null!=s?f(u)._overflowWeekday=!0:(c=ae(h,a,e,o,v),u._a[b]=c.year,u._dayOfYear=c.dayOfYear)),null!=n._dayOfYear&&(i=wi(n._a[b],p[b]),(n._dayOfYear>ur(i)||0===n._dayOfYear)&&(f(n)._overflowDayOfYear=!0),s=fr(i,0,n._dayOfYear),n._a[vt]=s.getUTCMonth(),n._a[ht]=s.getUTCDate()),r=0;r<3&&null==n._a[r];++r)n._a[r]=w[r]=p[r];for(;r<7;r++)n._a[r]=w[r]=null==n._a[r]?2===r?1:0:n._a[r];24===n._a[y]&&0===n._a[ut]&&0===n._a[yt]&&0===n._a[ei]&&(n._nextDay=!0,n._a[y]=0);n._d=(n._useUTC?fr:ss).apply(null,w);h=n._useUTC?n._d.getUTCDay():n._d.getDay();null!=n._tzm&&n._d.setUTCMinutes(n._d.getUTCMinutes()-n._tzm);n._nextDay&&(n._a[y]=24);n._w&&void 0!==n._w.d&&n._w.d!==h&&(f(n).weekdayMismatch=!0)}}function hf(n){if(n._f===t.ISO_8601)ke(n);else if(n._f===t.RFC_2822)de(n);else{n._a=[];f(n).empty=!0;for(var r,u,e,l,o,i=""+n._i,h=i.length,a=0,v=fe(n._f,n._locale).match(ku)||[],p=v.length,c=0;c<p;c++)u=v[c],(r=(i.match(rs(u,n))||[])[0])&&(0<(e=i.substr(0,i.indexOf(r))).length&&f(n).unusedInput.push(e),i=i.slice(i.indexOf(r)+r.length),a+=r.length),hi[u]?(r?f(n).empty=!1:f(n).unusedTokens.push(u),e=u,o=n,null!=(l=r)&&s(dr,e)&&dr[e](l,o._a,o,e)):n._strict&&!r&&f(n).unusedTokens.push(u);f(n).charsLeftOver=h-a;0<i.length&&f(n).unusedInput.push(i);n._a[y]<=12&&!0===f(n).bigHour&&0<n._a[y]&&(f(n).bigHour=void 0);f(n).parsedDateParts=n._a.slice(0);f(n).meridiem=n._meridiem;n._a[y]=function(n,t,i){return null==i?t:null!=n.meridiemHour?n.meridiemHour(t,i):null!=n.isPM?((n=n.isPM(i))&&t<12&&(t+=12),t=n||12!==t?t:0):t}(n._locale,n._a[y],n._meridiem);null!==(h=f(n).era)&&(n._a[b]=n._locale.erasConvertYear(h,n._a[b]));sf(n);ef(n)}}function ge(n){var e,i,o,r=n._i,u=n._f;return(n._locale=n._locale||wt(n._l),null===r||void 0===u&&""===r)?cr({nullInput:!0}):("string"==typeof r&&(n._i=r=n._locale.preparse(r)),rt(r))?new tr(ef(r)):(nr(r)?n._d=r:it(u)?!function(n){var t,o,r,u,i,e,s=!1,h=n._f.length;if(0===h)return f(n).invalidFormat=!0,n._d=new Date(NaN);for(u=0;u<h;u++)i=0,e=!1,t=pu({},n),null!=n._useUTC&&(t._useUTC=n._useUTC),t._f=n._f[u],hf(t),vu(t)&&(e=!0),i=(i+=f(t).charsLeftOver)+10*f(t).unusedTokens.length,f(t).score=i,s?i<r&&(r=i,o=t):(null==r||i<r||e)&&(r=i,o=t,e&&(s=!0));dt(n,o||t)}(n):u?hf(n):k(u=(r=n)._i)?r._d=new Date(t.now()):nr(u)?r._d=new Date(u.valueOf()):"string"==typeof u?(i=r,null!==(e=ws.exec(i._i))?i._d=new Date(+e[1]):(ke(i),!1===i._isValid&&(delete i._isValid,de(i),!1===i._isValid&&(delete i._isValid,i._strict?i._isValid=!1:t.createFromInputFallback(i))))):it(u)?(r._a=gf(u.slice(0),function(n){return parseInt(n,10)}),sf(r)):ii(u)?(e=r)._d||(o=void 0===(i=gu(e._i)).day?i.date:i.day,e._a=gf([i.year,i.month,o,i.hour,i.minute,i.second,i.millisecond],function(n){return n&&parseInt(n,10)}),sf(e)):lt(u)?r._d=new Date(u):t.createFromInputFallback(r),vu(n)||(n._d=null),n)}function no(n,t,i,r,u){var f={};return!0!==t&&!1!==t||(r=t,t=void 0),!0!==i&&!1!==i||(r=i,i=void 0),(ii(n)&&au(n)||it(n)&&0===n.length)&&(n=void 0),f._isAMomentObject=!0,f._useUTC=f._isUTC=u,f._l=i,f._i=n,f._f=t,f._strict=r,(u=new tr(ef(ge(u=f))))._nextDay&&(u.add(1,"d"),u._nextDay=void 0),u}function l(n,t,i,r){return no(n,t,i,r,!1)}function to(n,t){var r,i;if(!(t=1===t.length&&it(t[0])?t[0]:t).length)return l();for(r=t[0],i=1;i<t.length;++i)t[i].isValid()&&!t[i][n](r)||(r=t[i]);return r}function fu(n){var n=gu(n),t=n.year||0,i=n.quarter||0,r=n.month||0,u=n.week||n.isoWeek||0,f=n.day||0,o=n.hour||0,h=n.minute||0,c=n.second||0,l=n.millisecond||0;this._isValid=function(n){var i,t,r=!1,u=bi.length;for(i in n)if(s(n,i)&&(-1===v.call(bi,i)||null!=n[i]&&isNaN(n[i])))return!1;for(t=0;t<u;++t)if(n[bi[t]]){if(r)return!1;parseFloat(n[bi[t]])!==e(n[bi[t]])&&(r=!0)}return!0}(n);this._milliseconds=+l+1e3*c+6e4*h+36e5*o;this._days=+f+7*u;this._months=+r+3*i+12*t;this._data={};this._locale=wt();this._bubble()}function eu(n){return n instanceof fu}function cf(n){return n<0?-1*Math.round(-1*n):Math.round(n)}function io(n,t){r(n,0,0,function(){var n=this.utcOffset(),i="+";return n<0&&(n=-n,i="-"),i+st(~~(n/60),2)+t+st(~~n%60,2)})}function lf(n,t){var t=(t||"").match(n);return null===t?null:0===(t=60*(n=((t[t.length-1]||[])+"").match(ro)||["-",0,0])[1]+e(n[2]))?0:"+"===n[0]?t:-t}function af(n,i){var r;return i._isUTC?(i=i.clone(),r=(rt(n)||nr(n)?n:l(n)).valueOf()-i.valueOf(),i._d.setTime(i._d.valueOf()+r),t.updateOffset(i,!1),i):l(n).local()}function vf(n){return-Math.round(n._d.getTimezoneOffset())}function uo(){return!!this.isValid()&&this._isUTC&&0===this._offset}function ft(n,t){var u,r=n,i=null;return eu(n)?r={ms:n._milliseconds,d:n._days,M:n._months}:lt(n)||!isNaN(+n)?(r={},t?r[t]=+n:r.milliseconds=+n):(i=fo.exec(n))?(u="-"===i[1]?-1:1,r={y:0,d:e(i[ht])*u,h:e(i[y])*u,m:e(i[ut])*u,s:e(i[yt])*u,ms:e(cf(1e3*i[ei]))*u}):(i=eo.exec(n))?(u="-"===i[1]?-1:1,r={y:oi(i[2],u),M:oi(i[3],u),w:oi(i[4],u),d:oi(i[5],u),h:oi(i[6],u),m:oi(i[7],u),s:oi(i[8],u)}):null==r?r={}:"object"==typeof r&&("from"in r||"to"in r)&&(t=function(n,t){var i;return!n.isValid()||!t.isValid()?{milliseconds:0,months:0}:(t=af(t,n),n.isBefore(t)?i=oo(n,t):((i=oo(t,n)).milliseconds=-i.milliseconds,i.months=-i.months),i)}(l(r.from),l(r.to)),(r={}).ms=t.milliseconds,r.M=t.months),i=new fu(r),eu(n)&&s(n,"_locale")&&(i._locale=n._locale),eu(n)&&s(n,"_isValid")&&(i._isValid=n._isValid),i}function oi(n,t){return n=n&&parseFloat(n.replace(",",".")),(isNaN(n)?0:n)*t}function oo(n,t){var i={};return i.months=t.month()-n.month()+12*(t.year()-n.year()),n.clone().add(i.months,"M").isAfter(t)&&--i.months,i.milliseconds=+t-+n.clone().add(i.months,"M"),i}function so(n,t){return function(i,r){var u;return null===r||isNaN(+r)||(re(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),u=i,i=r,r=u),ho(this,ft(i,r),n),this}}function ho(n,i,r,u){var e=i._milliseconds,f=cf(i._days),i=cf(i._months);n.isValid()&&(u=null==u||u,i&&he(n,yr(n,"Month")+i*r),f&&ee(n,"Date",yr(n,"Date")+f*r),e&&n._d.setTime(n._d.valueOf()+e*r),u&&t.updateOffset(n,f||i))}function co(n){return"string"==typeof n||n instanceof String}function gs(n){return rt(n)||nr(n)||co(n)||lt(n)||function(n){var t=it(n),i=!1;return t&&(i=0===n.filter(function(t){return!lt(t)&&co(n)}).length),t&&i}(n)||function(n){for(var r,f=ii(n)&&!au(n),i=!1,u=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],e=u.length,t=0;t<e;t+=1)r=u[t],i=i||s(n,r);return f&&i}(n)||null==n}function ou(n,t){if(n.date()<t.date())return-ou(t,n);var r=12*(t.year()-n.year())+(t.month()-n.month()),i=n.clone().add(r,"months"),t=t-i<0?(t-i)/(i-n.clone().add(r-1,"months")):(t-i)/(n.clone().add(1+r,"months")-i);return-(r+t)||0}function lo(n){return void 0===n?this._locale._abbr:(null!=(n=wt(n))&&(this._locale=n),this)}function ao(){return this._locale}function ki(n,t){return(n%t+t)%t}function vo(n,t,i){return n<100&&0<=n?new Date(n+400,t,i)-yf:new Date(n,t,i).valueOf()}function yo(n,t,i){return n<100&&0<=n?Date.UTC(n+400,t,i)-yf:Date.UTC(n,t,i)}function pf(n,t){return t.erasAbbrRegex(n)}function wf(){for(var r=[],u=[],f=[],i=[],t=this.eras(),n=0,e=t.length;n<e;++n)u.push(d(t[n].name)),r.push(d(t[n].abbr)),f.push(d(t[n].narrow)),i.push(d(t[n].name)),i.push(d(t[n].abbr)),i.push(d(t[n].narrow));this._erasRegex=new RegExp("^("+i.join("|")+")","i");this._erasNameRegex=new RegExp("^("+u.join("|")+")","i");this._erasAbbrRegex=new RegExp("^("+r.join("|")+")","i");this._erasNarrowRegex=new RegExp("^("+f.join("|")+")","i")}function su(n,t){r(0,[n,n.length],0,t)}function po(n,t,i,r,u){var f;return null==n?er(this,r,u).year:(f=pt(n,r,u),function(n,t,i,r,u){return n=ae(n,t,i,r,u),t=fr(n.year,0,n.dayOfYear),this.year(t.getUTCFullYear()),this.month(t.getUTCMonth()),this.date(t.getUTCDate()),this}.call(this,n,t=f<t?f:t,i,r,u))}function nh(n,t){t[ei]=e(1e3*("0."+n))}function wo(n){return n}function hu(n,t,i,r){var u=wt(),r=et().set(r,t);return u[i](r,n)}function bo(n,t,i){if(lt(n)&&(t=n,n=void 0),n=n||"",null!=t)return hu(n,t,i,"month");for(var u=[],r=0;r<12;r++)u[r]=hu(n,r,i,"month");return u}function bf(n,t,i,r){t=("boolean"==typeof n?lt(t)&&(i=t,t=void 0):(t=n,n=!1,lt(i=t)&&(i=t,t=void 0)),t||"");var u,o=wt(),f=n?o._week.dow:0,e=[];if(null!=i)return hu(t,(i+f)%7,r,"day");for(u=0;u<7;u++)e[u]=hu(t,(u+f)%7,r,"day");return e}function ko(n,t,i,r){return t=ft(t,i),n._milliseconds+=r*t._milliseconds,n._days+=r*t._days,n._months+=r*t._months,n._bubble()}function go(n){return n<0?Math.floor(n):Math.ceil(n)}function ns(n){return 4800*n/146097}function kf(n){return 146097*n/4800}function bt(n){return function(){return this.as(n)}}function si(n){return function(){return this.isValid()?this._data[n]:NaN}}function uh(n,t,i,r){var f=ft(n).abs(),u=kt(f.as("s")),e=kt(f.as("m")),o=kt(f.as("h")),s=kt(f.as("d")),h=kt(f.as("M")),c=kt(f.as("w")),f=kt(f.as("y")),u=(u<=i.ss?["s",u]:u<i.s&&["ss",u])||e<=1&&["m"]||e<i.m&&["mm",e]||o<=1&&["h"]||o<i.h&&["hh",o]||s<=1&&["d"]||s<i.d&&["dd",s];return(u=(u=null!=i.w?u||c<=1&&["w"]||c<i.w&&["ww",c]:u)||h<=1&&["M"]||h<i.M&&["MM",h]||f<=1&&["y"]||["yy",f])[2]=t,u[3]=0<+n,u[4]=r,function(n,t,i,r,u){return u.relativeTime(t||1,!!i,n,r)}.apply(null,u)}function gi(n){return(0<n)-(n<0)||+n}function lu(){if(!this.isValid())return this.localeData().invalidDate();var n,r,e,s,o,h,u,t=cu(this._milliseconds)/1e3,c=cu(this._days),f=cu(this._months),i=this.asSeconds();return i?(n=tt(t/60),r=tt(n/60),t%=60,n%=60,e=tt(f/12),f%=12,s=t?t.toFixed(3).replace(/\.?0+$/,""):"",o=gi(this._months)!==gi(i)?"-":"",h=gi(this._days)!==gi(i)?"-":"",u=gi(this._milliseconds)!==gi(i)?"-":"",(i<0?"-":"")+"P"+(e?o+e+"Y":"")+(f?o+f+"M":"")+(c?h+c+"D":"")+(r||n||t?"T":"")+(r?u+r+"H":"")+(n?u+n+"M":"")+(t?u+s+"S":"")):"P0D"}var df,ts=Array.prototype.some||function(n){for(var i=Object(this),r=i.length>>>0,t=0;t<r;t++)if(t in i&&n.call(this,i[t],t,i))return!0;return!1},ne=t.momentProperties=[],yu=!1,ie={},ue,ci,nf,kr,dr,nu,bi,ro,fo,eo,yf,ti,ri,gt,ct,cu,o;t.suppressDeprecationWarnings=!1;t.deprecationHandler=null;ue=Object.keys||function(n){var t,i=[];for(t in n)s(n,t)&&i.push(t);return i};var ku=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,lr=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,du={},hi={};ci={};nf={};var n=/\d/,u=/\d\d/,pr=/\d{3}/,ri=/\d{4}/,ui=/[+-]?\d{6}/,c=/\d\d?/,ai=/\d\d\d\d?/,vi=/\d\d\d\d\d\d?/,yi=/\d{1,3}/,fi=/\d{1,4}/,gt=/[+-]?\d{1,6}/,pi=/\d+/,wr=/[+-]?\d+/,is=/Z|[+-]\d\d:?\d\d/gi,br=/Z|[+-]\d\d(?::?\d\d)?/gi,at=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;kr={};dr={};var v,b=0,vt=1,ht=2,y=3,ut=4,yt=5,ei=6,us=7,fs=8;v=Array.prototype.indexOf||function(n){for(var t=0;t<this.length;++t)if(this[t]===n)return t;return-1};r("M",["MM",2],"Mo",function(){return this.month()+1});r("MMM",0,0,function(n){return this.localeData().monthsShort(this,n)});r("MMMM",0,0,function(n){return this.localeData().months(this,n)});p("month","M");w("month",8);i("M",c);i("MM",c,u);i("MMM",function(n,t){return t.monthsShortRegex(n)});i("MMMM",function(n,t){return t.monthsRegex(n)});h(["M","MM"],function(n,t){t[vt]=e(n)-1});h(["MMM","MMMM"],function(n,t,i,r){r=i._locale.monthsParse(n,r,i._strict);null!=r?t[vt]=r:f(i).invalidMonth=n});var rr="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),oe="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),se=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,es=at,os=at;r("Y",0,0,function(){var n=this.year();return n<=9999?st(n,4):"+"+n});r(0,["YY",2],0,function(){return this.year()%100});r(0,["YYYY",4],0,"year");r(0,["YYYYY",5],0,"year");r(0,["YYYYYY",6,!0],0,"year");p("year","y");w("year",1);i("Y",wr);i("YY",c,u);i("YYYY",fi,ri);i("YYYYY",gt,ui);i("YYYYYY",gt,ui);h(["YYYYY","YYYYYY"],b);h("YYYY",function(n,i){i[b]=2===n.length?t.parseTwoDigitYear(n):e(n)});h("YY",function(n,i){i[b]=t.parseTwoDigitYear(n)});h("Y",function(n,t){t[b]=parseInt(n,10)});t.parseTwoDigitYear=function(n){return e(n)+(68<e(n)?1900:2e3)};nu=li("FullYear",!0);r("w",["ww",2],"wo","week");r("W",["WW",2],"Wo","isoWeek");p("week","w");p("isoWeek","W");w("week",5);w("isoWeek",5);i("w",c);i("ww",c,u);i("W",c);i("WW",c,u);ir(["w","ww","W","WW"],function(n,t,i,r){t[r.substr(0,1)]=e(n)});r("d",0,"do","day");r("dd",0,0,function(n){return this.localeData().weekdaysMin(this,n)});r("ddd",0,0,function(n){return this.localeData().weekdaysShort(this,n)});r("dddd",0,0,function(n){return this.localeData().weekdays(this,n)});r("e",0,0,"weekday");r("E",0,0,"isoWeekday");p("day","d");p("weekday","e");p("isoWeekday","E");w("day",11);w("weekday",11);w("isoWeekday",11);i("d",c);i("e",c);i("E",c);i("dd",function(n,t){return t.weekdaysMinRegex(n)});i("ddd",function(n,t){return t.weekdaysShortRegex(n)});i("dddd",function(n,t){return t.weekdaysRegex(n)});ir(["dd","ddd","dddd"],function(n,t,i,r){r=i._locale.weekdaysParse(n,r,i._strict);null!=r?t.d=r:f(i).invalidWeekday=n});ir(["d","e","E"],function(n,t,i,r){t[r]=e(n)});var or="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),ve="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),iu="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),hs=at,cs=at,ls=at;r("H",["HH",2],0,"hour");r("h",["hh",2],0,uf);r("k",["kk",2],0,function(){return this.hours()||24});r("hmm",0,0,function(){return""+uf.apply(this)+st(this.minutes(),2)});r("hmmss",0,0,function(){return""+uf.apply(this)+st(this.minutes(),2)+st(this.seconds(),2)});r("Hmm",0,0,function(){return""+this.hours()+st(this.minutes(),2)});r("Hmmss",0,0,function(){return""+this.hours()+st(this.minutes(),2)+st(this.seconds(),2)});ye("a",!0);ye("A",!1);p("hour","h");w("hour",13);i("a",pe);i("A",pe);i("H",c);i("h",c);i("k",c);i("HH",c,u);i("hh",c,u);i("kk",c,u);i("hmm",ai);i("hmmss",vi);i("Hmm",ai);i("Hmmss",vi);h(["H","HH"],y);h(["k","kk"],function(n,t){n=e(n);t[y]=24===n?0:n});h(["a","A"],function(n,t,i){i._isPm=i._locale.isPM(n);i._meridiem=n});h(["h","hh"],function(n,t,i){t[y]=e(n);f(i).bigHour=!0});h("hmm",function(n,t,i){var r=n.length-2;t[y]=e(n.substr(0,r));t[ut]=e(n.substr(r));f(i).bigHour=!0});h("hmmss",function(n,t,i){var r=n.length-4,u=n.length-2;t[y]=e(n.substr(0,r));t[ut]=e(n.substr(r,2));t[yt]=e(n.substr(u));f(i).bigHour=!0});h("Hmm",function(n,t){var i=n.length-2;t[y]=e(n.substr(0,i));t[ut]=e(n.substr(i))});h("Hmmss",function(n,t){var i=n.length-4,r=n.length-2;t[y]=e(n.substr(0,i));t[ut]=e(n.substr(i,2));t[yt]=e(n.substr(r))});at=li("Hours",!0);var sr,we={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:rr,monthsShort:oe,week:{dow:0,doy:6},weekdays:or,weekdaysMin:iu,weekdaysShort:ve,meridiemParse:/[ap]\.?m?\.?/i},a={},hr={};var vs=/^\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)?)?$/,ys=/^\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)?)?$/,ps=/Z|[+-]\d\d(?::?\d\d)?/,uu=[["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}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],of=[["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/]],ws=/^\/?Date\((-?\d+)/i,bs=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,ks={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};for(t.createFromInputFallback=g("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. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(n){n._d=new Date(n._i+(n._useUTC?" UTC":""))}),t.ISO_8601=function(){},t.RFC_2822=function(){},ai=g("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var n=l.apply(null,arguments);return this.isValid()&&n.isValid()?n<this?this:n:cr()}),vi=g("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var n=l.apply(null,arguments);return this.isValid()&&n.isValid()?this<n?this:n:cr()}),bi=["year","quarter","month","week","day","hour","minute","second","millisecond"],io("Z",":"),io("ZZ",""),i("Z",br),i("ZZ",br),h(["Z","ZZ"],function(n,t,i){i._useUTC=!0;i._tzm=lf(br,n)}),ro=/([\+\-]|\d\d)/gi,t.updateOffset=function(){},fo=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,eo=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/,ft.fn=fu.prototype,ft.invalid=function(){return ft(NaN)},rr=so(1,"add"),or=so(-1,"subtract"),t.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",t.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]",iu=g("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(n){return void 0===n?this.localeData():this.locale(n)}),yf=126227808e5,r("N",0,0,"eraAbbr"),r("NN",0,0,"eraAbbr"),r("NNN",0,0,"eraAbbr"),r("NNNN",0,0,"eraName"),r("NNNNN",0,0,"eraNarrow"),r("y",["y",1],"yo","eraYear"),r("y",["yy",2],0,"eraYear"),r("y",["yyy",3],0,"eraYear"),r("y",["yyyy",4],0,"eraYear"),i("N",pf),i("NN",pf),i("NNN",pf),i("NNNN",function(n,t){return t.erasNameRegex(n)}),i("NNNNN",function(n,t){return t.erasNarrowRegex(n)}),h(["N","NN","NNN","NNNN","NNNNN"],function(n,t,i,r){r=i._locale.erasParse(n,r,i._strict);r?f(i).era=r:f(i).invalidEra=n}),i("y",pi),i("yy",pi),i("yyy",pi),i("yyyy",pi),i("yo",function(n,t){return t._eraYearOrdinalRegex||pi}),h(["y","yy","yyy","yyyy"],b),h(["yo"],function(n,t,i){var r;i._locale._eraYearOrdinalRegex&&(r=n.match(i._locale._eraYearOrdinalRegex));t[b]=i._locale.eraYearOrdinalParse?i._locale.eraYearOrdinalParse(n,r):parseInt(n,10)}),r(0,["gg",2],0,function(){return this.weekYear()%100}),r(0,["GG",2],0,function(){return this.isoWeekYear()%100}),su("gggg","weekYear"),su("ggggg","weekYear"),su("GGGG","isoWeekYear"),su("GGGGG","isoWeekYear"),p("weekYear","gg"),p("isoWeekYear","GG"),w("weekYear",1),w("isoWeekYear",1),i("G",wr),i("g",wr),i("GG",c,u),i("gg",c,u),i("GGGG",fi,ri),i("gggg",fi,ri),i("GGGGG",gt,ui),i("ggggg",gt,ui),ir(["gggg","ggggg","GGGG","GGGGG"],function(n,t,i,r){t[r.substr(0,2)]=e(n)}),ir(["gg","GG"],function(n,i,r,u){i[u]=t.parseTwoDigitYear(n)}),r("Q",0,"Qo","quarter"),p("quarter","Q"),w("quarter",7),i("Q",n),h("Q",function(n,t){t[vt]=3*(e(n)-1)}),r("D",["DD",2],"Do","date"),p("date","D"),w("date",9),i("D",c),i("DD",c,u),i("Do",function(n,t){return n?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),h(["D","DD"],ht),h("Do",function(n,t){t[ht]=e(n.match(c)[0])}),fi=li("Date",!0),r("DDD",["DDDD",3],"DDDo","dayOfYear"),p("dayOfYear","DDD"),w("dayOfYear",4),i("DDD",yi),i("DDDD",pr),h(["DDD","DDDD"],function(n,t,i){i._dayOfYear=e(n)}),r("m",["mm",2],0,"minute"),p("minute","m"),w("minute",14),i("m",c),i("mm",c,u),h(["m","mm"],ut),ri=li("Minutes",!1),gt=(r("s",["ss",2],0,"second"),p("second","s"),w("second",15),i("s",c),i("ss",c,u),h(["s","ss"],yt),li("Seconds",!1)),r("S",0,0,function(){return~~(this.millisecond()/100)}),r(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),r(0,["SSS",3],0,"millisecond"),r(0,["SSSS",4],0,function(){return 10*this.millisecond()}),r(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),r(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),r(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),r(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),r(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),p("millisecond","ms"),w("millisecond",16),i("S",yi,n),i("SS",yi,u),i("SSS",yi,pr),ti="SSSS";ti.length<=9;ti+="S")i(ti,pi);for(ti="S";ti.length<=9;ti+="S")h(ti,nh);ui=li("Milliseconds",!1);r("z",0,0,"zoneAbbr");r("zz",0,0,"zoneName");n=tr.prototype;n.add=rr;n.calendar=function(n,i){1===arguments.length&&(arguments[0]?gs(arguments[0])?(n=arguments[0],i=void 0):function(n){for(var u=ii(n)&&!au(n),t=!1,r=["sameDay","nextDay","lastDay","nextWeek","lastWeek","sameElse"],i=0;i<r.length;i+=1)t=t||s(n,r[i]);return u&&t}(arguments[0])&&(i=arguments[0],n=void 0):i=n=void 0);var n=n||l(),r=af(n,this).startOf("day"),r=t.calendarFormat(this,r)||"sameElse",i=i&&(ot(i[r])?i[r].call(this,n):i[r]);return this.format(i||this.localeData().calendar(r,this,l(n)))};n.clone=function(){return new tr(this)};n.diff=function(n,t,i){var r,f,u;if(!this.isValid())return NaN;if(!(r=af(n,this)).isValid())return NaN;switch(f=6e4*(r.utcOffset()-this.utcOffset()),t=nt(t)){case"year":u=ou(this,r)/12;break;case"month":u=ou(this,r);break;case"quarter":u=ou(this,r)/3;break;case"second":u=(this-r)/1e3;break;case"minute":u=(this-r)/6e4;break;case"hour":u=(this-r)/36e5;break;case"day":u=(this-r-f)/864e5;break;case"week":u=(this-r-f)/6048e5;break;default:u=this-r}return i?u:tt(u)};n.endOf=function(n){var i,r;if(void 0===(n=nt(n))||"millisecond"===n||!this.isValid())return this;switch(r=this._isUTC?yo:vo,n){case"year":i=r(this.year()+1,0,1)-1;break;case"quarter":i=r(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":i=r(this.year(),this.month()+1,1)-1;break;case"week":i=r(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":i=r(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":i=r(this.year(),this.month(),this.date()+1)-1;break;case"hour":i=this._d.valueOf();i+=3599999-ki(i+(this._isUTC?0:6e4*this.utcOffset()),36e5);break;case"minute":i=this._d.valueOf();i+=59999-ki(i,6e4);break;case"second":i=this._d.valueOf();i+=999-ki(i,1e3)}return this._d.setTime(i),t.updateOffset(this,!0),this};n.format=function(n){return n=n||(this.isUtc()?t.defaultFormatUtc:t.defaultFormat),n=ar(this,n),this.localeData().postformat(n)};n.from=function(n,t){return this.isValid()&&(rt(n)&&n.isValid()||l(n).isValid())?ft({to:this,from:n}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()};n.fromNow=function(n){return this.from(l(),n)};n.to=function(n,t){return this.isValid()&&(rt(n)&&n.isValid()||l(n).isValid())?ft({from:this,to:n}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()};n.toNow=function(n){return this.to(l(),n)};n.get=function(n){return ot(this[n=nt(n)])?this[n]():this};n.invalidAt=function(){return f(this).overflow};n.isAfter=function(n,t){return n=rt(n)?n:l(n),!(!this.isValid()||!n.isValid())&&("millisecond"===(t=nt(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf())};n.isBefore=function(n,t){return n=rt(n)?n:l(n),!(!this.isValid()||!n.isValid())&&("millisecond"===(t=nt(t)||"millisecond")?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf())};n.isBetween=function(n,t,i,r){return n=rt(n)?n:l(n),t=rt(t)?t:l(t),!!(this.isValid()&&n.isValid()&&t.isValid())&&("("===(r=r||"()")[0]?this.isAfter(n,i):!this.isBefore(n,i))&&(")"===r[1]?this.isBefore(t,i):!this.isAfter(t,i))};n.isSame=function(n,t){var n=rt(n)?n:l(n);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=nt(t)||"millisecond")?this.valueOf()===n.valueOf():(n=n.valueOf(),this.clone().startOf(t).valueOf()<=n&&n<=this.clone().endOf(t).valueOf()))};n.isSameOrAfter=function(n,t){return this.isSame(n,t)||this.isAfter(n,t)};n.isSameOrBefore=function(n,t){return this.isSame(n,t)||this.isBefore(n,t)};n.isValid=function(){return vu(this)};n.lang=iu;n.locale=lo;n.localeData=ao;n.max=vi;n.min=ai;n.parsingFlags=function(){return dt({},f(this))};n.set=function(n,t){if("object"==typeof n)for(var r=function(n){var t,i=[];for(t in n)s(n,t)&&i.push({unit:t,priority:nf[t]});return i.sort(function(n,t){return n.priority-t.priority}),i}(n=gu(n)),u=r.length,i=0;i<u;i++)this[r[i].unit](n[r[i].unit]);else if(ot(this[n=nt(n)]))return this[n](t);return this};n.startOf=function(n){var i,r;if(void 0===(n=nt(n))||"millisecond"===n||!this.isValid())return this;switch(r=this._isUTC?yo:vo,n){case"year":i=r(this.year(),0,1);break;case"quarter":i=r(this.year(),this.month()-this.month()%3,1);break;case"month":i=r(this.year(),this.month(),1);break;case"week":i=r(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":i=r(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":i=r(this.year(),this.month(),this.date());break;case"hour":i=this._d.valueOf();i-=ki(i+(this._isUTC?0:6e4*this.utcOffset()),36e5);break;case"minute":i=this._d.valueOf();i-=ki(i,6e4);break;case"second":i=this._d.valueOf();i-=ki(i,1e3)}return this._d.setTime(i),t.updateOffset(this,!0),this};n.subtract=or;n.toArray=function(){var n=this;return[n.year(),n.month(),n.date(),n.hour(),n.minute(),n.second(),n.millisecond()]};n.toObject=function(){var n=this;return{years:n.year(),months:n.month(),date:n.date(),hours:n.hours(),minutes:n.minutes(),seconds:n.seconds(),milliseconds:n.milliseconds()}};n.toDate=function(){return new Date(this.valueOf())};n.toISOString=function(n){if(!this.isValid())return null;var t=(n=!0!==n)?this.clone().utc():this;return t.year()<0||9999<t.year()?ar(t,n?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):ot(Date.prototype.toISOString)?n?this.toDate().toISOString():new Date(this.valueOf()+6e4*this.utcOffset()).toISOString().replace("Z",ar(t,"Z")):ar(t,n?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")};n.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t,n="moment",i="";return this.isLocal()||(n=0===this.utcOffset()?"moment.utc":"moment.parseZone",i="Z"),n="["+n+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",this.format(n+t+"-MM-DD[T]HH:mm:ss.SSS"+(i+'[")]'))};"undefined"!=typeof Symbol&&null!=Symbol.for&&(n[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"});n.toJSON=function(){return this.isValid()?this.toISOString():null};n.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")};n.unix=function(){return Math.floor(this.valueOf()/1e3)};n.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)};n.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}};n.eraName=function(){for(var i,t=this.localeData().eras(),n=0,r=t.length;n<r;++n)if((i=this.clone().startOf("day").valueOf(),t[n].since<=i&&i<=t[n].until)||t[n].until<=i&&i<=t[n].since)return t[n].name;return""};n.eraNarrow=function(){for(var i,t=this.localeData().eras(),n=0,r=t.length;n<r;++n)if((i=this.clone().startOf("day").valueOf(),t[n].since<=i&&i<=t[n].until)||t[n].until<=i&&i<=t[n].since)return t[n].narrow;return""};n.eraAbbr=function(){for(var i,t=this.localeData().eras(),n=0,r=t.length;n<r;++n)if((i=this.clone().startOf("day").valueOf(),t[n].since<=i&&i<=t[n].until)||t[n].until<=i&&i<=t[n].since)return t[n].abbr;return""};n.eraYear=function(){for(var u,r,i=this.localeData().eras(),n=0,f=i.length;n<f;++n)if(u=i[n].since<=i[n].until?1:-1,r=this.clone().startOf("day").valueOf(),i[n].since<=r&&r<=i[n].until||i[n].until<=r&&r<=i[n].since)return(this.year()-t(i[n].since).year())*u+i[n].offset;return this.year()};n.year=nu;n.isLeapYear=function(){return vr(this.year())};n.weekYear=function(n){return po.call(this,n,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)};n.isoWeekYear=function(n){return po.call(this,n,this.isoWeek(),this.isoWeekday(),1,4)};n.quarter=n.quarters=function(n){return null==n?Math.ceil((this.month()+1)/3):this.month(3*(n-1)+this.month()%3)};n.month=ce;n.daysInMonth=function(){return gr(this.year(),this.month())};n.week=n.weeks=function(n){var t=this.localeData().week(this);return null==n?t:this.add(7*(n-t),"d")};n.isoWeek=n.isoWeeks=function(n){var t=er(this,1,4).week;return null==n?t:this.add(7*(n-t),"d")};n.weeksInYear=function(){var n=this.localeData()._week;return pt(this.year(),n.dow,n.doy)};n.weeksInWeekYear=function(){var n=this.localeData()._week;return pt(this.weekYear(),n.dow,n.doy)};n.isoWeeksInYear=function(){return pt(this.year(),1,4)};n.isoWeeksInISOWeekYear=function(){return pt(this.isoWeekYear(),1,4)};n.date=fi;n.day=n.days=function(n){if(!this.isValid())return null!=n?this:NaN;var t,i,r=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=n?(t=n,i=this.localeData(),n="string"!=typeof t?t:isNaN(t)?"number"==typeof(t=i.weekdaysParse(t))?t:null:parseInt(t,10),this.add(n-r,"d")):r};n.weekday=function(n){if(!this.isValid())return null!=n?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==n?t:this.add(n-t,"d")};n.isoWeekday=function(n){return this.isValid()?null!=n?(t=n,i=this.localeData(),i="string"==typeof t?i.weekdaysParse(t)%7||7:isNaN(t)?null:t,this.day(this.day()%7?i:i-7)):this.day()||7:null!=n?this:NaN;var t,i};n.dayOfYear=function(n){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==n?t:this.add(n-t,"d")};n.hour=n.hours=at;n.minute=n.minutes=ri;n.second=n.seconds=gt;n.millisecond=n.milliseconds=ui;n.utcOffset=function(n,i,r){var u,f=this._offset||0;if(!this.isValid())return null!=n?this:NaN;if(null==n)return this._isUTC?f:vf(this);if("string"==typeof n){if(null===(n=lf(br,n)))return this}else Math.abs(n)<16&&!r&&(n*=60);return!this._isUTC&&i&&(u=vf(this)),this._offset=n,this._isUTC=!0,null!=u&&this.add(u,"m"),f!==n&&(!i||this._changeInProgress?ho(this,ft(n-f,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,t.updateOffset(this,!0),this._changeInProgress=null)),this};n.utc=function(n){return this.utcOffset(0,n)};n.local=function(n){return this._isUTC&&(this.utcOffset(0,n),this._isUTC=!1,n&&this.subtract(vf(this),"m")),this};n.parseZone=function(){var n;return null!=this._tzm?this.utcOffset(this._tzm,!1,!0):"string"==typeof this._i&&(null!=(n=lf(is,this._i))?this.utcOffset(n):this.utcOffset(0,!0)),this};n.hasAlignedHourOffset=function(n){return!!this.isValid()&&(n=n?l(n).utcOffset():0,(this.utcOffset()-n)%60==0)};n.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()};n.isLocal=function(){return!!this.isValid()&&!this._isUTC};n.isUtcOffset=function(){return!!this.isValid()&&this._isUTC};n.isUtc=uo;n.isUTC=uo;n.zoneAbbr=function(){return this._isUTC?"UTC":""};n.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""};n.dates=g("dates accessor is deprecated. Use date instead.",fi);n.months=g("months accessor is deprecated. Use month instead",ce);n.years=g("years accessor is deprecated. Use year instead",nu);n.zone=g("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(n,t){return null!=n?(this.utcOffset(n="string"!=typeof n?-n:n,t),this):-this.utcOffset()});n.isDSTShifted=g("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!k(this._isDSTShifted))return this._isDSTShifted;var t,n={};return pu(n,this),(n=ge(n))._a?(t=(n._isUTC?et:l)(n._a),this._isDSTShifted=this.isValid()&&0<function(n,t,i){for(var f=Math.min(n.length,t.length),o=Math.abs(n.length-t.length),u=0,r=0;r<f;r++)(i&&n[r]!==t[r]||!i&&e(n[r])!==e(t[r]))&&u++;return u+o}(n._a,t.toArray())):this._isDSTShifted=!1,this._isDSTShifted});u=bu.prototype;u.calendar=function(n,t,i){return ot(n=this._calendar[n]||this._calendar.sameElse)?n.call(t,i):n};u.longDateFormat=function(n){var t=this._longDateFormat[n],i=this._longDateFormat[n.toUpperCase()];return t||!i?t:(this._longDateFormat[n]=i.match(ku).map(function(n){return"MMMM"===n||"MM"===n||"DD"===n||"dddd"===n?n.slice(1):n}).join(""),this._longDateFormat[n])};u.invalidDate=function(){return this._invalidDate};u.ordinal=function(n){return this._ordinal.replace("%d",n)};u.preparse=wo;u.postformat=wo;u.relativeTime=function(n,t,i,r){var u=this._relativeTime[i];return ot(u)?u(n,t,i,r):u.replace(/%d/i,n)};u.pastFuture=function(n,t){return ot(n=this._relativeTime[0<n?"future":"past"])?n(t):n.replace(/%s/i,t)};u.set=function(n){var i;for(var t in n)s(n,t)&&(ot(i=n[t])?this[t]=i:this["_"+t]=i);this._config=n;this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)};u.eras=function(){for(var r,n=this._eras||wt("en")._eras,i=0,u=n.length;i<u;++i){switch(typeof n[i].since){case"string":r=t(n[i].since).startOf("day");n[i].since=r.valueOf()}switch(typeof n[i].until){case"undefined":n[i].until=1/0;break;case"string":r=t(n[i].until).startOf("day").valueOf();n[i].until=r.valueOf()}}return n};u.erasParse=function(n,t,i){var r,s,f,e,o,u=this.eras();for(n=n.toUpperCase(),r=0,s=u.length;r<s;++r)if(f=u[r].name.toUpperCase(),e=u[r].abbr.toUpperCase(),o=u[r].narrow.toUpperCase(),i)switch(t){case"N":case"NN":case"NNN":if(e===n)return u[r];break;case"NNNN":if(f===n)return u[r];break;case"NNNNN":if(o===n)return u[r]}else if(0<=[f,e,o].indexOf(n))return u[r]};u.erasConvertYear=function(n,i){var r=n.since<=n.until?1:-1;return void 0===i?t(n.since).year():t(n.since).year()+(i-n.offset)*r};u.erasAbbrRegex=function(n){return s(this,"_erasAbbrRegex")||wf.call(this),n?this._erasAbbrRegex:this._erasRegex};u.erasNameRegex=function(n){return s(this,"_erasNameRegex")||wf.call(this),n?this._erasNameRegex:this._erasRegex};u.erasNarrowRegex=function(n){return s(this,"_erasNarrowRegex")||wf.call(this),n?this._erasNarrowRegex:this._erasRegex};u.months=function(n,t){return n?(it(this._months)?this._months:this._months[(this._months.isFormat||se).test(t)?"format":"standalone"])[n.month()]:it(this._months)?this._months:this._months.standalone};u.monthsShort=function(n,t){return n?(it(this._monthsShort)?this._monthsShort:this._monthsShort[se.test(t)?"format":"standalone"])[n.month()]:it(this._monthsShort)?this._monthsShort:this._monthsShort.standalone};u.monthsParse=function(n,t,i){var r,u;if(this._monthsParseExact)return function(n,t,i){var u,r,f,n=n.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],u=0;u<12;++u)f=et([2e3,u]),this._shortMonthsParse[u]=this.monthsShort(f,"").toLocaleLowerCase(),this._longMonthsParse[u]=this.months(f,"").toLocaleLowerCase();return i?"MMM"===t?-1!==(r=v.call(this._shortMonthsParse,n))?r:null:-1!==(r=v.call(this._longMonthsParse,n))?r:null:"MMM"===t?-1!==(r=v.call(this._shortMonthsParse,n))||-1!==(r=v.call(this._longMonthsParse,n))?r:null:-1!==(r=v.call(this._longMonthsParse,n))||-1!==(r=v.call(this._shortMonthsParse,n))?r:null}.call(this,n,t,i);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++)if((u=et([2e3,r]),i&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp("^"+this.months(u,"").replace(".","")+"$","i"),this._shortMonthsParse[r]=new RegExp("^"+this.monthsShort(u,"").replace(".","")+"$","i")),i||this._monthsParse[r]||(u="^"+this.months(u,"")+"|^"+this.monthsShort(u,""),this._monthsParse[r]=new RegExp(u.replace(".",""),"i")),i&&"MMMM"===t&&this._longMonthsParse[r].test(n))||i&&"MMM"===t&&this._shortMonthsParse[r].test(n)||!i&&this._monthsParse[r].test(n))return r};u.monthsRegex=function(n){return this._monthsParseExact?(s(this,"_monthsRegex")||le.call(this),n?this._monthsStrictRegex:this._monthsRegex):(s(this,"_monthsRegex")||(this._monthsRegex=os),this._monthsStrictRegex&&n?this._monthsStrictRegex:this._monthsRegex)};u.monthsShortRegex=function(n){return this._monthsParseExact?(s(this,"_monthsRegex")||le.call(this),n?this._monthsShortStrictRegex:this._monthsShortRegex):(s(this,"_monthsShortRegex")||(this._monthsShortRegex=es),this._monthsShortStrictRegex&&n?this._monthsShortStrictRegex:this._monthsShortRegex)};u.week=function(n){return er(n,this._week.dow,this._week.doy).week};u.firstDayOfYear=function(){return this._week.doy};u.firstDayOfWeek=function(){return this._week.dow};u.weekdays=function(n,t){return t=it(this._weekdays)?this._weekdays:this._weekdays[n&&!0!==n&&this._weekdays.isFormat.test(t)?"format":"standalone"],!0===n?tf(t,this._week.dow):n?t[n.day()]:t};u.weekdaysMin=function(n){return!0===n?tf(this._weekdaysMin,this._week.dow):n?this._weekdaysMin[n.day()]:this._weekdaysMin};u.weekdaysShort=function(n){return!0===n?tf(this._weekdaysShort,this._week.dow):n?this._weekdaysShort[n.day()]:this._weekdaysShort};u.weekdaysParse=function(n,t,i){var r,u;if(this._weekdaysParseExact)return function(n,t,i){var u,r,f,n=n.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],u=0;u<7;++u)f=et([2e3,1]).day(u),this._minWeekdaysParse[u]=this.weekdaysMin(f,"").toLocaleLowerCase(),this._shortWeekdaysParse[u]=this.weekdaysShort(f,"").toLocaleLowerCase(),this._weekdaysParse[u]=this.weekdays(f,"").toLocaleLowerCase();return i?"dddd"===t?-1!==(r=v.call(this._weekdaysParse,n))?r:null:"ddd"===t?-1!==(r=v.call(this._shortWeekdaysParse,n))?r:null:-1!==(r=v.call(this._minWeekdaysParse,n))?r:null:"dddd"===t?-1!==(r=v.call(this._weekdaysParse,n))||-1!==(r=v.call(this._shortWeekdaysParse,n))||-1!==(r=v.call(this._minWeekdaysParse,n))?r:null:"ddd"===t?-1!==(r=v.call(this._shortWeekdaysParse,n))||-1!==(r=v.call(this._weekdaysParse,n))||-1!==(r=v.call(this._minWeekdaysParse,n))?r:null:-1!==(r=v.call(this._minWeekdaysParse,n))||-1!==(r=v.call(this._weekdaysParse,n))||-1!==(r=v.call(this._shortWeekdaysParse,n))?r:null}.call(this,n,t,i);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++)if((u=et([2e3,1]).day(r),i&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(u,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(u,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(u,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(u="^"+this.weekdays(u,"")+"|^"+this.weekdaysShort(u,"")+"|^"+this.weekdaysMin(u,""),this._weekdaysParse[r]=new RegExp(u.replace(".",""),"i")),i&&"dddd"===t&&this._fullWeekdaysParse[r].test(n))||i&&"ddd"===t&&this._shortWeekdaysParse[r].test(n)||i&&"dd"===t&&this._minWeekdaysParse[r].test(n)||!i&&this._weekdaysParse[r].test(n))return r};u.weekdaysRegex=function(n){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||rf.call(this),n?this._weekdaysStrictRegex:this._weekdaysRegex):(s(this,"_weekdaysRegex")||(this._weekdaysRegex=hs),this._weekdaysStrictRegex&&n?this._weekdaysStrictRegex:this._weekdaysRegex)};u.weekdaysShortRegex=function(n){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||rf.call(this),n?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(s(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=cs),this._weekdaysShortStrictRegex&&n?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)};u.weekdaysMinRegex=function(n){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||rf.call(this),n?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(s(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=ls),this._weekdaysMinStrictRegex&&n?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)};u.isPM=function(n){return"p"===(n+"").toLowerCase().charAt(0)};u.meridiem=function(n,t,i){return 11<n?i?"pm":"PM":i?"am":"AM"};ni("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(n){var t=n%10;return n+(1===e(n%100/10)?"th":1==t?"st":2==t?"nd":3==t?"rd":"th")}});t.lang=g("moment.lang is deprecated. Use moment.locale instead.",ni);t.langData=g("moment.langData is deprecated. Use moment.localeData instead.",wt);ct=Math.abs;yi=bt("ms");pr=bt("s");rr=bt("m");vi=bt("h");ai=bt("d");or=bt("w");at=bt("M");ri=bt("Q");gt=bt("y");var ui=si("milliseconds"),fi=si("seconds"),nu=si("minutes"),u=si("hours"),th=si("days"),ih=si("months"),rh=si("years"),kt=Math.round,di={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};return cu=Math.abs,o=fu.prototype,o.isValid=function(){return this._isValid},o.abs=function(){var n=this._data;return this._milliseconds=ct(this._milliseconds),this._days=ct(this._days),this._months=ct(this._months),n.milliseconds=ct(n.milliseconds),n.seconds=ct(n.seconds),n.minutes=ct(n.minutes),n.hours=ct(n.hours),n.months=ct(n.months),n.years=ct(n.years),this},o.add=function(n,t){return ko(this,n,t,1)},o.subtract=function(n,t){return ko(this,n,t,-1)},o.as=function(n){if(!this.isValid())return NaN;var t,r,i=this._milliseconds;if("month"===(n=nt(n))||"quarter"===n||"year"===n)switch(t=this._days+i/864e5,r=this._months+ns(t),n){case"month":return r;case"quarter":return r/3;case"year":return r/12}else switch(t=this._days+Math.round(kf(this._months)),n){case"week":return t/7+i/6048e5;case"day":return t+i/864e5;case"hour":return 24*t+i/36e5;case"minute":return 1440*t+i/6e4;case"second":return 86400*t+i/1e3;case"millisecond":return Math.floor(864e5*t)+i;default:throw new Error("Unknown unit "+n);}},o.asMilliseconds=yi,o.asSeconds=pr,o.asMinutes=rr,o.asHours=vi,o.asDays=ai,o.asWeeks=or,o.asMonths=at,o.asQuarters=ri,o.asYears=gt,o.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*e(this._months/12):NaN},o._bubble=function(){var n=this._milliseconds,t=this._days,i=this._months,r=this._data;return 0<=n&&0<=t&&0<=i||n<=0&&t<=0&&i<=0||(n+=864e5*go(kf(i)+t),i=t=0),r.milliseconds=n%1e3,n=tt(n/1e3),r.seconds=n%60,n=tt(n/60),r.minutes=n%60,n=tt(n/60),r.hours=n%24,t+=tt(n/24),i+=n=tt(ns(t)),t-=go(kf(n)),n=tt(i/12),i%=12,r.days=t,r.months=i,r.years=n,this},o.clone=function(){return ft(this)},o.get=function(n){return n=nt(n),this.isValid()?this[n+"s"]():NaN},o.milliseconds=ui,o.seconds=fi,o.minutes=nu,o.hours=u,o.days=th,o.weeks=function(){return tt(this.days()/7)},o.months=ih,o.years=rh,o.humanize=function(n,t){if(!this.isValid())return this.localeData().invalidDate();var i=!1,r=di;return"object"==typeof n&&(t=n,n=!1),"boolean"==typeof n&&(i=n),"object"==typeof t&&(r=Object.assign({},di,t),null!=t.s&&null==t.ss&&(r.ss=t.s-1)),n=this.localeData(),t=uh(this,!i,r,n),i&&(t=n.pastFuture(+this,t)),n.postformat(t)},o.toISOString=lu,o.toString=lu,o.toJSON=lu,o.locale=lo,o.localeData=ao,o.toIsoString=g("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",lu),o.lang=iu,r("X",0,0,"unix"),r("x",0,0,"valueOf"),i("x",wr),i("X",/[+-]?\d+(\.\d{1,3})?/),h("X",function(n,t,i){i._d=new Date(1e3*parseFloat(n))}),h("x",function(n,t,i){i._d=new Date(e(n))}),t.version="2.29.4",df=l,t.fn=n,t.min=function(){return to("isBefore",[].slice.call(arguments,0))},t.max=function(){return to("isAfter",[].slice.call(arguments,0))},t.now=function(){return Date.now?Date.now():+new Date},t.utc=et,t.unix=function(n){return l(1e3*n)},t.months=function(n,t){return bo(n,t,"months")},t.isDate=nr,t.locale=ni,t.invalid=cr,t.duration=ft,t.isMoment=rt,t.weekdays=function(n,t,i){return bf(n,t,i,"weekdays")},t.parseZone=function(){return l.apply(null,arguments).parseZone()},t.localeData=wt,t.isDuration=eu,t.monthsShort=function(n,t){return bo(n,t,"monthsShort")},t.weekdaysMin=function(n,t,i){return bf(n,t,i,"weekdaysMin")},t.defineLocale=ff,t.updateLocale=function(n,t){var r,i;return null!=t?(i=we,null!=a[n]&&null!=a[n].parentLocale?a[n].set(wu(a[n]._config,t)):(t=wu(i=null!=(r=ru(n))?r._config:i,t),null==r&&(t.abbr=n),(i=new bu(t)).parentLocale=a[n],a[n]=i),ni(n)):null!=a[n]&&(null!=a[n].parentLocale?(a[n]=a[n].parentLocale,n===ni()&&ni(n)):null!=a[n]&&delete a[n]),a[n]},t.locales=function(){return ue(a)},t.weekdaysShort=function(n,t,i){return bf(n,t,i,"weekdaysShort")},t.normalizeUnits=nt,t.relativeTimeRounding=function(n){return void 0===n?kt:"function"==typeof n&&(kt=n,!0)},t.relativeTimeThreshold=function(n,t){return void 0!==di[n]&&(void 0===t?di[n]:(di[n]=t,"s"===n&&(di.ss=t-1),!0))},t.calendarFormat=function(n,t){return(n=n.diff(t,"days",!0))<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},t.prototype=n,t.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},t});
//! moment-timezone.js
//! version : 0.5.33
//! Copyright (c) JS Foundation and other contributors
//! license : MIT
//! github.com/moment/moment-timezone
(function(n,t){"use strict";typeof module=="object"&&module.exports?module.exports=t(require("moment")):typeof define=="function"&&define.amd?define(["moment"],t):t(n.moment)})(this,function(n){"use strict";function nt(n){return n>96?n-87:n>64?n-29:n-48}function tt(n){var t=0,f=n.split("."),e=f[0],o=f[1]||"",u=1,i,r=0,s=1;for(n.charCodeAt(0)===45&&(t=1,s=-1),t;t<e.length;t++)i=nt(e.charCodeAt(t)),r=60*r+i;for(t=0;t<o.length;t++)u=u/60,i=nt(o.charCodeAt(t)),r+=i*u;return r*s}function p(n){for(var t=0;t<n.length;t++)n[t]=tt(n[t])}function ct(n,t){for(var i=0;i<t;i++)n[i]=Math.round((n[i-1]||0)+n[i]*6e4);n[t-1]=Infinity}function it(n,t){for(var r=[],i=0;i<t.length;i++)r[i]=n[t[i]];return r}function rt(n){var t=n.split("|"),u=t[2].split(" "),i=t[3].split(""),r=t[4].split(" ");return p(u),p(i),p(r),ct(r,i.length),{name:t[0],abbrs:it(t[1].split(" "),i),offsets:it(u,i),untils:r,population:t[5]|0}}function l(n){n&&this._set(rt(n))}function lt(n,t){this.name=n;this.zones=t}function h(n){var i=n.toTimeString(),t=i.match(/\([a-z ]+\)/i);t&&t[0]?(t=t[0].match(/[A-Z]/g),t=t?t.join(""):undefined):(t=i.match(/[A-Z]{3,5}/g),t=t?t[0]:undefined);t==="GMT"&&(t=undefined);this.at=+n;this.abbr=t;this.offset=n.getTimezoneOffset()}function ut(n){this.zone=n;this.offsetScore=0;this.abbrScore=0}function at(n,t){for(var i,r;r=((t.at-n.at)/12e4|0)*6e4;)i=new h(new Date(n.at+r)),i.offset===n.offset?n=i:t=i;return n}function vt(){for(var i=(new Date).getFullYear()-2,r=new h(new Date(i,0,1)),t=[r],f,u,n=1;n<48;n++)u=new h(new Date(i,n,1)),u.offset!==r.offset&&(f=at(r,u),t.push(f),t.push(new h(new Date(f.at+6e4)))),r=u;for(n=0;n<4;n++)t.push(new h(new Date(i+n,0,1))),t.push(new h(new Date(i+n,6,1)));return t}function yt(n,t){return n.offsetScore!==t.offsetScore?n.offsetScore-t.offsetScore:n.abbrScore!==t.abbrScore?n.abbrScore-t.abbrScore:n.zone.population!==t.zone.population?t.zone.population-n.zone.population:t.zone.name.localeCompare(n.zone.name)}function pt(n,t){var i,r;for(p(t),i=0;i<t.length;i++)r=t[i],v[r]=v[r]||{},v[r][n]=!0}function wt(n){for(var o=n.length,i={},e=[],u,f,t=0;t<o;t++){f=v[n[t].offset]||{};for(u in f)f.hasOwnProperty(u)&&(i[u]=!0)}for(t in i)i.hasOwnProperty(t)&&e.push(r[t]);return e}function bt(){var n,o;try{if(n=Intl.DateTimeFormat().resolvedOptions().timeZone,n&&n.length>3){if(o=r[a(n)],o)return o;e("Moment Timezone found "+n+" from the Intl api, but did not have that data loaded.")}}catch(v){}for(var s=vt(),c=s.length,l=wt(s),t=[],h,f,i=0;i<l.length;i++){for(h=new ut(u(l[i]),c),f=0;f<c;f++)h.scoreOffsetAt(s[f]);t.push(h)}return t.sort(yt),t.length>0?t[0].zone.name:undefined}function kt(n){return(!w||n)&&(w=bt()),w}function a(n){return(n||"").toLowerCase().replace(/\//g,"_")}function ft(n){var t,u,e,i;for(typeof n=="string"&&(n=[n]),t=0;t<n.length;t++)e=n[t].split("|"),u=e[0],i=a(u),f[i]=n[t],r[i]=u,pt(i,e[2].split(" "))}function u(n,t){n=a(n);var i=f[n],e;return i instanceof l?i:typeof i=="string"?(i=new l(i),f[n]=i,i):o[n]&&t!==u&&(e=u(o[n],u))?(i=f[n]=new l,i._set(e),i.name=r[n],i):null}function dt(){var n,t=[];for(n in r)r.hasOwnProperty(n)&&(f[n]||f[o[n]])&&r[n]&&t.push(r[n]);return t.sort()}function gt(){return Object.keys(s)}function et(n){var i,t,u,f;for(typeof n=="string"&&(n=[n]),i=0;i<n.length;i++)t=n[i].split("|"),u=a(t[0]),f=a(t[1]),o[u]=f,r[u]=t[0],o[f]=u,r[f]=t[1]}function ni(n){var t,i,u,r;if(n&&n.length)for(t=0;t<n.length;t++)r=n[t].split("|"),i=r[0].toUpperCase(),u=r[1].split(" "),s[i]=new lt(i,u)}function ti(n){return n=n.toUpperCase(),s[n]||null}function ii(n,t){if(n=ti(n),!n)return null;var i=n.zones.sort();return t?i.map(function(n){var t=u(n);return{name:n,offset:t.utcOffset(new Date)}}):i}function ot(n){ft(n.zones);et(n.links);ni(n.countries);t.dataVersion=n.version}function b(n){return b.didShowError||(b.didShowError=!0,e("moment.tz.zoneExists('"+n+"') has been deprecated in favor of !moment.tz.zone('"+n+"')")),!!u(n)}function k(n){var t=n._f==="X"||n._f==="x";return!!(n._a&&n._tzm===undefined&&!t)}function e(n){typeof console!="undefined"&&typeof console.error=="function"&&console.error(n)}function t(t){var e=Array.prototype.slice.call(arguments,0,-1),r=arguments[arguments.length-1],f=u(r),i=n.utc.apply(null,e);return f&&!n.isMoment(t)&&k(i)&&i.add(f.parse(i),"minutes"),i.tz(r),i}function st(n){return function(){return this._z?this._z.abbr(this):n.call(this)}}function ht(n){return function(){return this._z=null,n.apply(this,arguments)}}function ri(n){return function(){return arguments.length>0&&(this._z=null),n.apply(this,arguments)}}var i,c;n.version===undefined&&n.default&&(n=n.default);var f={},o={},s={},r={},v={},w;n&&typeof n.version=="string"||e("Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/");var d=n.version.split("."),y=+d[0],g=+d[1];return(y<2||y===2&&g<6)&&e("Moment Timezone requires Moment.js >= 2.6.0. You are using Moment.js "+n.version+". See momentjs.com"),l.prototype={_set:function(n){this.name=n.name;this.abbrs=n.abbrs;this.untils=n.untils;this.offsets=n.offsets;this.population=n.population},_index:function(n){for(var r=+n,i=this.untils,t=0;t<i.length;t++)if(r<i[t])return t},countries:function(){var n=this.name;return Object.keys(s).filter(function(t){return s[t].zones.indexOf(n)!==-1})},parse:function(n){for(var h=+n,u=this.offsets,o=this.untils,s=o.length-1,r,f,e,i=0;i<s;i++)if(r=u[i],f=u[i+1],e=u[i?i-1:i],r<f&&t.moveAmbiguousForward?r=f:r>e&&t.moveInvalidForward&&(r=e),h<o[i]-r*6e4)return u[i];return u[s]},abbr:function(n){return this.abbrs[this._index(n)]},offset:function(n){return e("zone.offset has been deprecated in favor of zone.utcOffset"),this.offsets[this._index(n)]},utcOffset:function(n){return this.offsets[this._index(n)]}},ut.prototype.scoreOffsetAt=function(n){this.offsetScore+=Math.abs(this.zone.utcOffset(n.at)-n.offset);this.zone.abbr(n.at).replace(/[^A-Z]/g,"")!==n.abbr&&this.abbrScore++},t.version="0.5.33",t.dataVersion="",t._zones=f,t._links=o,t._names=r,t._countries=s,t.add=ft,t.link=et,t.load=ot,t.zone=u,t.zoneExists=b,t.guess=kt,t.names=dt,t.Zone=l,t.unpack=rt,t.unpackBase60=tt,t.needsOffset=k,t.moveInvalidForward=!0,t.moveAmbiguousForward=!1,t.countries=gt,t.zonesForCountry=ii,i=n.fn,n.tz=t,n.defaultZone=null,n.updateOffset=function(t,i){var u=n.defaultZone,r,f;t._z===undefined&&(u&&k(t)&&!t._isUTC&&(t._d=n.utc(t._a)._d,t.utc().add(u.parse(t),"minutes")),t._z=u);t._z&&(r=t._z.utcOffset(t),Math.abs(r)<16&&(r=r/60),t.utcOffset!==undefined?(f=t._z,t.utcOffset(-r,i),t._z=f):t.zone(r,i))},i.tz=function(t,i){if(t){if(typeof t!="string")throw new Error("Time zone name must be a string, got "+t+" ["+typeof t+"]");return this._z=u(t),this._z?n.updateOffset(this,i):e("Moment Timezone has no data for "+t+". See http://momentjs.com/timezone/docs/#/data-loading/."),this}if(this._z)return this._z.name},i.zoneName=st(i.zoneName),i.zoneAbbr=st(i.zoneAbbr),i.utc=ht(i.utc),i.local=ht(i.local),i.utcOffset=ri(i.utcOffset),n.tz.setDefault=function(t){return(y<2||y===2&&g<9)&&e("Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js "+n.version+"."),n.defaultZone=t?u(t):null,n},c=n.momentProperties,Object.prototype.toString.call(c)==="[object Array]"?(c.push("_z"),c.push("_a")):c&&(c._z=null),ot({version:"2021a",zones:["Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5","Africa/Accra|LMT GMT +0020 +0030|.Q 0 -k -u|01212121212121212121212121212121212121212121212131313131313131|-2bRzX.8 9RbX.8 fdE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE Mok 1BXE M0k 1BXE fak 9vbu bjCu MLu 1Bcu MLu 1BAu MLu 1Bcu MLu 1Bcu MLu 1Bcu MLu|41e5","Africa/Nairobi|LMT +0230 EAT +0245|-2r.g -2u -30 -2J|012132|-2ua2r.g N6nV.g 3Fbu h1cu dzbJ|47e5","Africa/Algiers|PMT WET WEST CET CEST|-9.l 0 -10 -10 -20|0121212121212121343431312123431213|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5","Africa/Lagos|LMT GMT +0030 WAT|-d.z 0 -u -10|01023|-2B40d.z 7iod.z dnXK.p dLzH.z|17e6","Africa/Bissau|LMT -01 GMT|12.k 10 0|012|-2ldX0 2xoo0|39e4","Africa/Maputo|LMT CAT|-2a.k -20|01|-2GJea.k|26e5","Africa/Cairo|EET EEST|-20 -30|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1bIO0 vb0 1ip0 11z0 1iN0 1nz0 12p0 1pz0 10N0 1pz0 16p0 1jz0 s3d0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1WL0 rd0 1Rz0 wp0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1qL0 Xd0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1ny0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 WL0 1qN0 Rb0 1wp0 On0 1zd0 Lz0 1EN0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0|15e6","Africa/Casablanca|LMT +00 +01|u.k 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2gMnt.E 130Lt.E rb0 Dd0 dVb0 b6p0 TX0 EoB0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4mn0 SyN0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0|32e5","Africa/Ceuta|WET WEST CET CEST|0 -10 -10 -20|010101010101010101010232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-25KN0 11z0 drd0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1y7o0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4VB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|85e3","Africa/El_Aaiun|LMT -01 +00 +01|Q.M 10 0 -10|012323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1rDz7.c 1GVA7.c 6L0 AL0 1Nd0 XX0 1Cp0 pz0 1cBB0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0|20e4","Africa/Johannesburg|SAST SAST SAST|-1u -20 -30|012121|-2GJdu 1Ajdu 1cL0 1cN0 1cL0|84e5","Africa/Juba|LMT CAT CAST EAT|-26.s -20 -30 -30|012121212121212121212121212121212131|-1yW26.s 1zK06.s 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 PeX0|","Africa/Khartoum|LMT CAT CAST EAT|-2a.8 -20 -30 -30|012121212121212121212121212121212131|-1yW2a.8 1zK0a.8 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 HjL0|51e5","Africa/Monrovia|MMT MMT GMT|H.8 I.u 0|012|-23Lzg.Q 28G01.m|11e5","Africa/Ndjamena|LMT WAT WAST|-10.c -10 -20|0121|-2le10.c 2J3c0.c Wn0|13e5","Africa/Sao_Tome|LMT GMT WAT|A.J 0 -10|0121|-2le00 4i6N0 2q00|","Africa/Tripoli|LMT CET CEST EET|-Q.I -10 -20 -20|012121213121212121212121213123123|-21JcQ.I 1hnBQ.I vx0 4iP0 xx0 4eN0 Bb0 7ip0 U0n0 A10 1db0 1cN0 1db0 1dd0 1db0 1eN0 1bb0 1e10 1cL0 1c10 1db0 1dd0 1db0 1cN0 1db0 1q10 fAn0 1ep0 1db0 AKq0 TA0 1o00|11e5","Africa/Tunis|PMT CET CEST|-9.l -10 -20|0121212121212121212121212121212121|-2nco9.l 18pa9.l 1qM0 DA0 3Tc0 11B0 1ze0 WM0 7z0 3d0 14L0 1cN0 1f90 1ar0 16J0 1gXB0 WM0 1rA0 11c0 nwo0 Ko0 1cM0 1cM0 1rA0 10M0 zuM0 10N0 1aN0 1qM0 WM0 1qM0 11A0 1o00|20e5","Africa/Windhoek|+0130 SAST SAST CAT WAT|-1u -20 -30 -20 -10|01213434343434343434343434343434343434343434343434343|-2GJdu 1Ajdu 1cL0 1SqL0 9Io0 16P0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|32e4","America/Adak|NST NWT NPT BST BDT AHST HST HDT|b0 a0 a0 b0 a0 a0 a0 90|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17SX0 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326","America/Anchorage|AST AWT APT AHST AHDT YST AKST AKDT|a0 90 90 a0 90 90 90 80|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17T00 8wX0 iA0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4","America/Port_of_Spain|LMT AST|46.4 40|01|-2kNvR.U|43e3","America/Araguaina|LMT -03 -02|3c.M 30 20|0121212121212121212121212121212121212121212121212121|-2glwL.c HdKL.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 ny10 Lz0|14e4","America/Argentina/Buenos_Aires|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 A4p0 uL0 1qN0 WL0|","America/Argentina/Catamarca|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323132321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Cordoba|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323132323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0 1qN0 WL0|","America/Argentina/Jujuy|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323121323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1ze0 TX0 1ld0 WK0 1wp0 TX0 A4p0 uL0|","America/Argentina/La_Rioja|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Mendoza|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232312121321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1u20 SL0 1vd0 Tb0 1wp0 TW0 ri10 Op0 7TX0 uL0|","America/Argentina/Rio_Gallegos|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Salta|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0|","America/Argentina/San_Juan|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rld0 m10 8lb0 uL0|","America/Argentina/San_Luis|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323121212321212|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 XX0 1q20 SL0 AN0 vDb0 m10 8lb0 8L0 jd0 1qN0 WL0 1qN0|","America/Argentina/Tucuman|CMT -04 -03 -02|4g.M 40 30 20|0121212121212121212121212121212121212121212323232313232123232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 4N0 8BX0 uL0 1qN0 WL0|","America/Argentina/Ushuaia|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rkN0 8p0 8zb0 uL0|","America/Curacao|LMT -0430 AST|4z.L 4u 40|012|-2kV7o.d 28KLS.d|15e4","America/Asuncion|AMT -04 -03|3O.E 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-1x589.k 1DKM9.k 3CL0 3Dd0 10L0 1pB0 10n0 1pB0 10n0 1pB0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1lB0 14n0 1dd0 1cL0 1fd0 WL0 1rd0 1aL0 1dB0 Xz0 1qp0 Xb0 1qN0 10L0 1rB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 WN0 1qL0 11B0 1nX0 1ip0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 TX0 1tB0 19X0 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0|28e5","America/Atikokan|CST CDT CWT CPT EST|60 50 50 50 50|0101234|-25TQ0 1in0 Rnb0 3je0 8x30 iw0|28e2","America/Bahia_Banderas|LMT MST CST PST MDT CDT|71 70 60 80 60 50|0121212131414141414141414141414141414152525252525252525252525252525252525252525252525252525252|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|84e3","America/Bahia|LMT -03 -02|2y.4 30 20|01212121212121212121212121212121212121212121212121212121212121|-2glxp.U HdLp.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 l5B0 Rb0|27e5","America/Barbados|LMT BMT AST ADT|3W.t 3W.t 40 30|01232323232|-1Q0I1.v jsM0 1ODC1.v IL0 1ip0 17b0 1ip0 17b0 1ld0 13b0|28e4","America/Belem|LMT -03 -02|3d.U 30 20|012121212121212121212121212121|-2glwK.4 HdKK.4 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|20e5","America/Belize|LMT CST -0530 CWT CPT CDT|5Q.M 60 5u 50 50 50|012121212121212121212121212121212121212121212121213412121212121212121212121212121212121212121215151|-2kBu7.c fPA7.c Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu Rcu 7Bt0 Ni0 4nd0 Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu e9Au qn0 lxB0 mn0|57e3","America/Blanc-Sablon|AST ADT AWT APT|40 30 30 30|010230|-25TS0 1in0 UGp0 8x50 iu0|11e2","America/Boa_Vista|LMT -04 -03|42.E 40 30|0121212121212121212121212121212121|-2glvV.k HdKV.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 smp0 WL0 1tB0 2L0|62e2","America/Bogota|BMT -05 -04|4U.g 50 40|0121|-2eb73.I 38yo3.I 2en0|90e5","America/Boise|PST PDT MST MWT MPT MDT|80 70 70 60 60 60|0101023425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-261q0 1nX0 11B0 1nX0 8C10 JCL0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 Dd0 1Kn0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e4","America/Cambridge_Bay|-00 MST MWT MPT MDDT MDT CST CDT EST|0 70 60 60 50 60 60 50 50|0123141515151515151515151515151515151515151515678651515151515151515151515151515151515151515151515151515151515151515151515151|-21Jc0 RO90 8x20 ix0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11A0 1nX0 2K0 WQ0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e2","America/Campo_Grande|LMT -04 -03|3C.s 40 30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwl.w HdLl.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|77e4","America/Cancun|LMT CST EST EDT CDT|5L.4 60 50 40 50|0123232341414141414141414141414141414141412|-1UQG0 2q2o0 yLB0 1lb0 14p0 1lb0 14p0 Lz0 xB0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4","America/Caracas|CMT -0430 -04|4r.E 4u 40|01212|-2kV7w.k 28KM2.k 1IwOu kqo0|29e5","America/Cayenne|LMT -04 -03|3t.k 40 30|012|-2mrwu.E 2gWou.E|58e3","America/Panama|CMT EST|5j.A 50|01|-2uduE.o|15e5","America/Chicago|CST CDT EST CWT CPT|60 50 50 50 50|01010101010101010101010101010101010102010101010103401010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 1wp0 TX0 WN0 1qL0 1cN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 11B0 1Hz0 14p0 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5","America/Chihuahua|LMT MST CST CDT MDT|74.k 70 60 50 60|0121212323241414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|81e4","America/Costa_Rica|SJMT CST CDT|5A.d 60 50|0121212121|-1Xd6n.L 2lu0n.L Db0 1Kp0 Db0 pRB0 15b0 1kp0 mL0|12e5","America/Creston|MST PST|70 80|010|-29DR0 43B0|53e2","America/Cuiaba|LMT -04 -03|3I.k 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwf.E HdLf.E 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 4a10 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|54e4","America/Danmarkshavn|LMT -03 -02 GMT|1e.E 30 20 0|01212121212121212121212121212121213|-2a5WJ.k 2z5fJ.k 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 DC0|8","America/Dawson_Creek|PST PDT PWT PPT MST|80 70 70 70 70|0102301010101010101010101010101010101010101010101010101014|-25TO0 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 ML0|12e3","America/Dawson|YST YDT YWT YPT YDDT PST PDT MST|90 80 80 80 70 80 70 70|010102304056565656565656565656565656565656565656565656565656565656565656565656565656565656567|-25TN0 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 jrA0 fNd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|13e2","America/Denver|MST MDT MWT MPT|70 60 60 60|01010101023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 11B0 1qL0 WN0 mn0 Ord0 8x20 ix0 LCN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5","America/Detroit|LMT CST EST EWT EPT EDT|5w.b 60 50 40 40 40|0123425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2Cgir.N peqr.N 156L0 8x40 iv0 6fd0 11z0 JxX1 SMX 1cN0 1cL0 aW10 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e5","America/Edmonton|LMT MST MDT MWT MPT|7x.Q 70 60 60 60|0121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2yd4q.8 shdq.8 1in0 17d0 hz0 2dB0 1fz0 1a10 11z0 1qN0 WL0 1qN0 11z0 IGN0 8x20 ix0 3NB0 11z0 XQp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|10e5","America/Eirunepe|LMT -05 -04|4D.s 50 40|0121212121212121212121212121212121|-2glvk.w HdLk.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0 yTd0 d5X0|31e3","America/El_Salvador|LMT CST CDT|5U.M 60 50|012121|-1XiG3.c 2Fvc3.c WL0 1qN0 WL0|11e5","America/Tijuana|LMT MST PST PDT PWT PPT|7M.4 70 80 70 70 70|012123245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQE0 4PX0 8mM0 8lc0 SN0 1cL0 pHB0 83r0 zI0 5O10 1Rz0 cOO0 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 BUp0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|20e5","America/Fort_Nelson|PST PDT PWT PPT MST|80 70 70 70 70|01023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010104|-25TO0 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2","America/Fort_Wayne|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|010101023010101010101010101040454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 QI10 Db0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 5Tz0 1o10 qLb0 1cL0 1cN0 1cL0 1qhd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Fortaleza|LMT -03 -02|2y 30 20|0121212121212121212121212121212121212121|-2glxq HdLq 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 5z0 2mN0 On0|34e5","America/Glace_Bay|LMT AST ADT AWT APT|3X.M 40 30 30 30|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsI0.c CwO0.c 1in0 UGp0 8x50 iu0 iq10 11z0 Jg10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3","America/Godthab|LMT -03 -02|3q.U 30 20|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5Ux.4 2z5dx.4 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e3","America/Goose_Bay|NST NDT NST NDT NWT NPT AST ADT ADDT|3u.Q 2u.Q 3u 2u 2u 2u 40 30 20|010232323232323245232323232323232323232323232323232323232326767676767676767676767676767676767676767676768676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-25TSt.8 1in0 DXb0 2HbX.8 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 S10 g0u 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2","America/Grand_Turk|KMT EST EDT AST|57.a 50 40 40|0121212121212121212121212121212121212121212121212121212121212121212121212132121212121212121212121212121212121212121|-2l1uQ.O 2HHBQ.O 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 7jA0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2","America/Guatemala|LMT CST CDT|62.4 60 50|0121212121|-24KhV.U 2efXV.U An0 mtd0 Nz0 ifB0 17b0 zDB0 11z0|13e5","America/Guayaquil|QMT -05 -04|5e 50 40|0121|-1yVSK 2uILK rz0|27e5","America/Guyana|LMT -0345 -03 -04|3Q.E 3J 30 40|0123|-2dvU7.k 2r6LQ.k Bxbf|80e4","America/Halifax|LMT AST ADT AWT APT|4e.o 40 30 30 30|0121212121212121212121212121212121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsHJ.A xzzJ.A 1db0 3I30 1in0 3HX0 IL0 1E10 ML0 1yN0 Pb0 1Bd0 Mn0 1Bd0 Rz0 1w10 Xb0 1w10 LX0 1w10 Xb0 1w10 Lz0 1C10 Jz0 1E10 OL0 1yN0 Un0 1qp0 Xb0 1qp0 11X0 1w10 Lz0 1HB0 LX0 1C10 FX0 1w10 Xb0 1qp0 Xb0 1BB0 LX0 1td0 Xb0 1qp0 Xb0 Rf0 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 6i10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4","America/Havana|HMT CST CDT|5t.A 50 40|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Meuu.o 72zu.o ML0 sld0 An0 1Nd0 Db0 1Nd0 An0 6Ep0 An0 1Nd0 An0 JDd0 Mn0 1Ap0 On0 1fd0 11X0 1qN0 WL0 1wp0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 14n0 1ld0 14L0 1kN0 15b0 1kp0 1cL0 1cN0 1fz0 1a10 1fz0 1fB0 11z0 14p0 1nX0 11B0 1nX0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 1a10 1in0 1a10 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 17c0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 11A0 6i00 Rc0 1wo0 U00 1tA0 Rc0 1wo0 U00 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5","America/Hermosillo|LMT MST CST PST MDT|7n.Q 70 60 80 60|0121212131414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0|64e4","America/Indiana/Knox|CST CDT CWT CPT EST|60 50 50 50 50|0101023010101010101010101010101010101040101010101010101010101010101010101010101010101010141010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 3Cn0 8wp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 z8o0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Marengo|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101023010101010101010104545454545414545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 dyN0 11z0 6fd0 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1e6p0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Petersburg|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010104010101010101010101010141014545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 3Fb0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 19co0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Tell_City|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010401054541010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 8wn0 1cN0 1cL0 1cN0 1cK0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Vevay|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|010102304545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 kPB0 Awn0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1lnd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Vincennes|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010454541014545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Winamac|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010101010454541054545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1za0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Inuvik|-00 PST PDDT MST MDT|0 80 60 70 60|0121343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-FnA0 tWU0 1fA0 wPe0 2pz0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|35e2","America/Iqaluit|-00 EWT EPT EST EDDT EDT CST CDT|0 40 40 50 30 40 60 50|01234353535353535353535353535353535353535353567353535353535353535353535353535353535353535353535353535353535353535353535353|-16K00 7nX0 iv0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|67e2","America/Jamaica|KMT EST EDT|57.a 50 40|0121212121212121212121|-2l1uQ.O 2uM1Q.O 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0|94e4","America/Juneau|PST PWT PPT PDT YDT YST AKST AKDT|80 70 70 70 80 90 90 80|01203030303030303030303030403030356767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cM0 1cM0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|33e3","America/Kentucky/Louisville|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101010102301010101010101010101010101454545454545414545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 3Fd0 Nb0 LPd0 11z0 RB0 8x30 iw0 1nX1 e0X 9vd0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 xz0 gso0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Kentucky/Monticello|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101023010101010101010101010101010101010101010101010101010101010101010101454545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 SWp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/La_Paz|CMT BST -04|4w.A 3w.A 40|012|-1x37r.o 13b0|19e5","America/Lima|LMT -05 -04|58.A 50 40|0121212121212121|-2tyGP.o 1bDzP.o zX0 1aN0 1cL0 1cN0 1cL0 1PrB0 zX0 1O10 zX0 6Gp0 zX0 98p0 zX0|11e6","America/Los_Angeles|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 5Wp1 1VaX 3dA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6","America/Maceio|LMT -03 -02|2m.Q 30 20|012121212121212121212121212121212121212121|-2glxB.8 HdLB.8 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 8Q10 WL0 1tB0 5z0 2mN0 On0|93e4","America/Managua|MMT CST EST CDT|5J.c 60 50 50|0121313121213131|-1quie.M 1yAMe.M 4mn0 9Up0 Dz0 1K10 Dz0 s3F0 1KH0 DB0 9In0 k8p0 19X0 1o30 11y0|22e5","America/Manaus|LMT -04 -03|40.4 40 30|01212121212121212121212121212121|-2glvX.U HdKX.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0|19e5","America/Martinique|FFMT AST ADT|44.k 40 30|0121|-2mPTT.E 2LPbT.E 19X0|39e4","America/Matamoros|LMT CST CDT|6E 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|45e4","America/Mazatlan|LMT MST CST PST MDT|75.E 70 60 80 60|0121212131414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|44e4","America/Menominee|CST CDT CWT CPT EST|60 50 50 50 50|01010230101041010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 LCN0 1fz0 6410 9Jb0 1cM0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|85e2","America/Merida|LMT CST EST CDT|5W.s 60 50 50|0121313131313131313131313131313131313131313131313131313131313131313131313131313131313131|-1UQG0 2q2o0 2hz0 wu30 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|11e5","America/Metlakatla|PST PWT PPT PDT AKST AKDT|80 70 70 70 90 80|01203030303030303030303030303030304545450454545454545454545454545454545454545454|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1hU10 Rd0 1zb0 Op0 1zb0 Op0 1zb0 uM0 jB0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2","America/Mexico_City|LMT MST CST CDT CWT|6A.A 70 60 50 50|012121232324232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 gEn0 TX0 3xd0 Jb0 6zB0 SL0 e5d0 17b0 1Pff0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|20e6","America/Miquelon|LMT AST -03 -02|3I.E 40 30 20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2mKkf.k 2LTAf.k gQ10 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2","America/Moncton|EST AST ADT AWT APT|50 40 30 30 30|012121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsH0 CwN0 1in0 zAo0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1K10 Lz0 1zB0 NX0 1u10 Wn0 S20 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14n1 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 ReX 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|64e3","America/Monterrey|LMT CST CDT|6F.g 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|41e5","America/Montevideo|LMT MMT -04 -03 -0330 -0230 -02 -0130|3I.P 3I.P 40 30 3u 2u 20 1u|012343434343434343434343435353636353636375363636363636363636363636363636363636363636363|-2tRUf.9 sVc0 8jcf.9 1db0 1dcu 1cLu 1dcu 1cLu ircu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu WLu 1fAu 1cLu 1o0u 11zu NAu 3jXu zXu Dq0u 19Xu pcu jz0 cm10 19X0 6tB0 1fbu 3o0u jX0 4vB0 xz0 3Cp0 mmu 1a10 IMu Db0 4c10 uL0 1Nd0 An0 1SN0 uL0 mp0 28L0 iPB0 un0 1SN0 xz0 1zd0 Lz0 1zd0 Rb0 1zd0 On0 1wp0 Rb0 s8p0 1fB0 1ip0 11z0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5","America/Toronto|EST EDT EWT EPT|50 40 40 40|01010101010101010101010101010101010101010101012301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TR0 1in0 11Wu 1nzu 1fD0 WJ0 1wr0 Nb0 1Ap0 On0 1zd0 On0 1wp0 TX0 1tB0 TX0 1tB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 4kM0 8x40 iv0 1o10 11z0 1nX0 11z0 1o10 11z0 1o10 1qL0 11D0 1nX0 11B0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e5","America/Nassau|LMT EST EWT EPT EDT|59.u 50 40 40 40|01212314141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-2kNuO.u 1drbO.u 6tX0 cp0 1hS0 pF0 J630 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|24e4","America/New_York|EST EDT EWT EPT|50 40 40 40|01010101010101010101010101010101010101010101010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 11B0 1qL0 1a10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6","America/Nipigon|EST EDT EWT EPT|50 40 40 40|010123010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TR0 1in0 Rnb0 3je0 8x40 iv0 19yN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|16e2","America/Nome|NST NWT NPT BST BDT YST AKST AKDT|b0 a0 a0 b0 a0 90 90 80|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17SX0 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cl0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|38e2","America/Noronha|LMT -02 -01|29.E 20 10|0121212121212121212121212121212121212121|-2glxO.k HdKO.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|30e2","America/North_Dakota/Beulah|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101014545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/North_Dakota/Center|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101014545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/North_Dakota/New_Salem|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101454545454545454545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Ojinaga|LMT MST CST CDT MDT|6V.E 70 60 50 60|0121212323241414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3","America/Pangnirtung|-00 AST AWT APT ADDT ADT EDT EST CST CDT|0 40 30 30 20 30 40 50 60 50|012314151515151515151515151515151515167676767689767676767676767676767676767676767676767676767676767676767676767676767676767|-1XiM0 PnG0 8x50 iu0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1o00 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2","America/Paramaribo|LMT PMT PMT -0330 -03|3E.E 3E.Q 3E.A 3u 30|01234|-2nDUj.k Wqo0.c qanX.I 1yVXN.o|24e4","America/Phoenix|MST MDT MWT|70 60 60|01010202010|-261r0 1nX0 11B0 1nX0 SgN0 4Al1 Ap0 1db0 SWqX 1cL0|42e5","America/Port-au-Prince|PPMT EST EDT|4N 50 40|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-28RHb 2FnMb 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14q0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 i6n0 1nX0 11B0 1nX0 d430 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 3iN0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Rio_Branco|LMT -05 -04|4v.c 50 40|01212121212121212121212121212121|-2glvs.M HdLs.M 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0 d5X0|31e4","America/Porto_Velho|LMT -04 -03|4f.A 40 30|012121212121212121212121212121|-2glvI.o HdKI.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|37e4","America/Puerto_Rico|AST AWT APT|40 30 30|0120|-17lU0 7XT0 iu0|24e5","America/Punta_Arenas|SMT -05 -04 -03|4G.K 50 40 30|0102021212121212121232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-2q2jh.e fJAh.e 5knG.K 1Vzh.e jRAG.K 1pbh.e 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 blz0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|","America/Rainy_River|CST CDT CWT CPT|60 50 50 50|010123010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TQ0 1in0 Rnb0 3je0 8x30 iw0 19yN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|842","America/Rankin_Inlet|-00 CST CDDT CDT EST|0 60 40 50 50|012131313131313131313131313131313131313131313431313131313131313131313131313131313131313131313131313131313131313131313131|-vDc0 keu0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e2","America/Recife|LMT -03 -02|2j.A 30 20|0121212121212121212121212121212121212121|-2glxE.o HdLE.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|33e5","America/Regina|LMT MST MDT MWT MPT CST|6W.A 70 60 60 60 60|012121212121212121212121341212121212121212121212121215|-2AD51.o uHe1.o 1in0 s2L0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 66N0 1cL0 1cN0 19X0 1fB0 1cL0 1fB0 1cL0 1cN0 1cL0 M30 8x20 ix0 1ip0 1cL0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 3NB0 1cL0 1cN0|19e4","America/Resolute|-00 CST CDDT CDT EST|0 60 40 50 50|012131313131313131313131313131313131313131313431313131313431313131313131313131313131313131313131313131313131313131313131|-SnA0 GWS0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|229","America/Santarem|LMT -04 -03|3C.M 40 30|0121212121212121212121212121212|-2glwl.c HdLl.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0|21e4","America/Santiago|SMT -05 -04 -03|4G.K 50 40 30|010202121212121212321232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-2q2jh.e fJAh.e 5knG.K 1Vzh.e jRAG.K 1pbh.e 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 9Bz0 jb0 1oN0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0|62e5","America/Santo_Domingo|SDMT EST EDT -0430 AST|4E 50 40 4u 40|01213131313131414|-1ttjk 1lJMk Mn0 6sp0 Lbu 1Cou yLu 1RAu wLu 1QMu xzu 1Q0u xXu 1PAu 13jB0 e00|29e5","America/Sao_Paulo|LMT -03 -02|36.s 30 20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwR.w HdKR.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 pTd0 PX0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|20e6","America/Scoresbysund|LMT -02 -01 +00|1r.Q 20 10 0|0121323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2a5Ww.8 2z5ew.8 1a00 1cK0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|452","America/Sitka|PST PWT PPT PDT YST AKST AKDT|80 70 70 70 90 90 80|01203030303030303030303030303030345656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|90e2","America/St_Johns|NST NDT NST NDT NWT NPT NDDT|3u.Q 2u.Q 3u 2u 2u 2u 1u|01010101010101010101010101010101010102323232323232324523232323232323232323232323232323232323232323232323232323232323232323232323232323232326232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-28oit.8 14L0 1nB0 1in0 1gm0 Dz0 1JB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1fB0 19X0 1fB0 19X0 10O0 eKX.8 19X0 1iq0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4","America/Swift_Current|LMT MST MDT MWT MPT CST|7b.k 70 60 60 60 60|012134121212121212121215|-2AD4M.E uHdM.E 1in0 UGp0 8x20 ix0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 isN0 1cL0 3Cp0 1cL0 1cN0 11z0 1qN0 WL0 pMp0|16e3","America/Tegucigalpa|LMT CST CDT|5M.Q 60 50|01212121|-1WGGb.8 2ETcb.8 WL0 1qN0 WL0 GRd0 AL0|11e5","America/Thule|LMT AST ADT|4z.8 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5To.Q 31NBo.Q 1cL0 1cN0 1cL0 1fB0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|656","America/Thunder_Bay|CST EST EWT EPT EDT|60 50 40 40 40|0123141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-2q5S0 1iaN0 8x40 iv0 XNB0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4","America/Vancouver|PST PDT PWT PPT|80 70 70 70|0102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TO0 1in0 UGp0 8x10 iy0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Whitehorse|YST YDT YWT YPT YDDT PST PDT MST|90 80 80 80 70 80 70 70|010102304056565656565656565656565656565656565656565656565656565656565656565656565656565656567|-25TN0 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 3NA0 vrd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|23e3","America/Winnipeg|CST CDT CWT CPT|60 50 50 50|010101023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aIi0 WL0 3ND0 1in0 Jap0 Rb0 aCN0 8x30 iw0 1tB0 11z0 1ip0 11z0 1o10 11z0 1o10 11z0 1rd0 10L0 1op0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 1cL0 1cN0 11z0 6i10 WL0 6i10 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|66e4","America/Yakutat|YST YWT YPT YDT AKST AKDT|90 80 80 80 90 80|01203030303030303030303030303030304545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-17T10 8x00 iz0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cn0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|642","America/Yellowknife|-00 MST MWT MPT MDDT MDT|0 70 60 60 50 60|012314151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151|-1pdA0 hix0 8x20 ix0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3","Antarctica/Casey|-00 +08 +11|0 -80 -b0|0121212121212|-2q00 1DjS0 T90 40P0 KL0 blz0 3m10 1o30 14k0 1kr0 12l0 1o01|10","Antarctica/Davis|-00 +07 +05|0 -70 -50|01012121|-vyo0 iXt0 alj0 1D7v0 VB0 3Wn0 KN0|70","Antarctica/DumontDUrville|-00 +10|0 -a0|0101|-U0o0 cfq0 bFm0|80","Antarctica/Macquarie|AEST AEDT -00|-a0 -b0 0|010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-29E80 1a00 4SK0 1ayy0 Lvs0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 3Co0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|1","Antarctica/Mawson|-00 +06 +05|0 -60 -50|012|-CEo0 2fyk0|60","Pacific/Auckland|NZMT NZST NZST NZDT|-bu -cu -c0 -d0|01020202020202020202020202023232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1GCVu Lz0 1tB0 11zu 1o0u 11zu 1o0u 11zu 1o0u 14nu 1lcu 14nu 1lcu 1lbu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1qLu WMu 1qLu 11Au 1n1bu IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|14e5","Antarctica/Palmer|-00 -03 -04 -02|0 30 40 20|0121212121213121212121212121212121212121212121212121212121212121212121212121212121|-cao0 nD0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 jsN0 14N0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|40","Antarctica/Rothera|-00 -03|0 30|01|gOo0|130","Antarctica/Syowa|-00 +03|0 -30|01|-vs00|20","Antarctica/Troll|-00 +00 +02|0 0 -20|01212121212121212121212121212121212121212121212121212121212121212121|1puo0 hd0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|40","Antarctica/Vostok|-00 +06|0 -60|01|-tjA0|25","Europe/Oslo|CET CEST|-10 -20|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2awM0 Qm0 W6o0 5pf0 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 wJc0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1qM0 WM0 zpc0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|62e4","Asia/Riyadh|LMT +03|-36.Q -30|01|-TvD6.Q|57e5","Asia/Almaty|LMT +05 +06 +07|-57.M -50 -60 -70|012323232323232323232321232323232323232323232323232|-1Pc57.M eUo7.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|15e5","Asia/Amman|LMT EET EEST|-2n.I -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1yW2n.I 1HiMn.I KL0 1oN0 11b0 1oN0 11b0 1pd0 1dz0 1cp0 11b0 1op0 11b0 fO10 1db0 1e10 1cL0 1cN0 1cL0 1cN0 1fz0 1pd0 10n0 1ld0 14n0 1hB0 15b0 1ip0 19X0 1cN0 1cL0 1cN0 17b0 1ld0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1So0 y00 1fc0 1dc0 1co0 1dc0 1cM0 1cM0 1cM0 1o00 11A0 1lc0 17c0 1cM0 1cM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|25e5","Asia/Anadyr|LMT +12 +13 +14 +11|-bN.U -c0 -d0 -e0 -b0|01232121212121212121214121212121212121212121212121212121212141|-1PcbN.U eUnN.U 23CL0 1db0 2q10 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|13e3","Asia/Aqtau|LMT +04 +05 +06|-3l.4 -40 -50 -60|012323232323232323232123232312121212121212121212|-1Pc3l.4 eUnl.4 24PX0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|15e4","Asia/Aqtobe|LMT +04 +05 +06|-3M.E -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc3M.E eUnM.E 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|27e4","Asia/Ashgabat|LMT +04 +05 +06|-3R.w -40 -50 -60|0123232323232323232323212|-1Pc3R.w eUnR.w 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0|41e4","Asia/Atyrau|LMT +03 +05 +06 +04|-3r.I -30 -50 -60 -40|01232323232323232323242323232323232324242424242|-1Pc3r.I eUor.I 24PW0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 2sp0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|","Asia/Baghdad|BMT +03 +04|-2V.A -30 -40|012121212121212121212121212121212121212121212121212121|-26BeV.A 2ACnV.A 11b0 1cp0 1dz0 1dd0 1db0 1cN0 1cp0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1de0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0|66e5","Asia/Qatar|LMT +04 +03|-3q.8 -40 -30|012|-21Jfq.8 27BXq.8|96e4","Asia/Baku|LMT +03 +04 +05|-3j.o -30 -40 -50|01232323232323232323232123232323232323232323232323232323232323232|-1Pc3j.o 1jUoj.o WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 9Je0 1o00 11z0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Asia/Bangkok|BMT +07|-6G.4 -70|01|-218SG.4|15e6","Asia/Barnaul|LMT +06 +07 +08|-5z -60 -70 -80|0123232323232323232323212323232321212121212121212121212121212121212|-21S5z pCnz 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 p90 LE0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|","Asia/Beirut|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-21aq0 1on0 1410 1db0 19B0 1in0 1ip0 WL0 1lQp0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 q6N0 En0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1op0 11b0 dA10 17b0 1iN0 17b0 1iN0 17b0 1iN0 17b0 1vB0 SL0 1mp0 13z0 1iN0 17b0 1iN0 17b0 1jd0 12n0 1a10 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0|22e5","Asia/Bishkek|LMT +05 +06 +07|-4W.o -50 -60 -70|012323232323232323232321212121212121212121212121212|-1Pc4W.o eUnW.o 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2e00 1tX0 17b0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1cPu 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0|87e4","Asia/Brunei|LMT +0730 +08|-7D.E -7u -80|012|-1KITD.E gDc9.E|42e4","Asia/Kolkata|MMT IST +0630|-5l.a -5u -6u|012121|-2zOtl.a 1r2LP.a 1un0 HB0 7zX0|15e6","Asia/Chita|LMT +08 +09 +10|-7x.Q -80 -90 -a0|012323232323232323232321232323232323232323232323232323232323232312|-21Q7x.Q pAnx.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3re0|33e4","Asia/Choibalsan|LMT +07 +08 +10 +09|-7C -70 -80 -a0 -90|0123434343434343434343434343434343434343434343424242|-2APHC 2UkoC cKn0 1da0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 3Db0 h1f0 1cJ0 1cP0 1cJ0|38e3","Asia/Shanghai|CST CDT|-80 -90|01010101010101010101010101010|-23uw0 18n0 OjB0 Rz0 11d0 1wL0 A10 8HX0 1G10 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 aL0 1tU30 Rb0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0|23e6","Asia/Colombo|MMT +0530 +06 +0630|-5j.w -5u -60 -6u|01231321|-2zOtj.w 1rFbN.w 1zzu 7Apu 23dz0 11zu n3cu|22e5","Asia/Dhaka|HMT +0630 +0530 +06 +07|-5R.k -6u -5u -60 -70|0121343|-18LFR.k 1unn.k HB0 m6n0 2kxbu 1i00|16e6","Asia/Damascus|LMT EET EEST|-2p.c -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-21Jep.c Hep.c 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1xRB0 11X0 1oN0 10L0 1pB0 11b0 1oN0 10L0 1mp0 13X0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 Nb0 1AN0 Nb0 bcp0 19X0 1gp0 19X0 3ld0 1xX0 Vd0 1Bz0 Sp0 1vX0 10p0 1dz0 1cN0 1cL0 1db0 1db0 1g10 1an0 1ap0 1db0 1fd0 1db0 1cN0 1db0 1dd0 1db0 1cp0 1dz0 1c10 1dX0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 19z0 1fB0 1qL0 11B0 1on0 Wp0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0|26e5","Asia/Dili|LMT +08 +09|-8m.k -80 -90|01212|-2le8m.k 1dnXm.k 1nfA0 Xld0|19e4","Asia/Dubai|LMT +04|-3F.c -40|01|-21JfF.c|39e5","Asia/Dushanbe|LMT +05 +06 +07|-4z.c -50 -60 -70|012323232323232323232321|-1Pc4z.c eUnz.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2hB0|76e4","Asia/Famagusta|LMT EET EEST +03|-2f.M -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212312121212121212121212121212121212121212121|-1Vc2f.M 2a3cf.M 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0 2Ks0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|","Asia/Gaza|EET EEST IST IDT|-20 -30 -20 -30|010101010101010101010101010101010123232323232323232323232323232320101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1c2o0 MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 11z0 1o10 14o0 1lA1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|18e5","Asia/Hebron|EET EEST IST IDT|-20 -30 -20 -30|01010101010101010101010101010101012323232323232323232323232323232010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1c2o0 MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 12L0 1mN0 14o0 1lc0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|25e4","Asia/Ho_Chi_Minh|LMT PLMT +07 +08 +09|-76.E -76.u -70 -80 -90|0123423232|-2yC76.E bK00.a 1h7b6.u 5lz0 18o0 3Oq0 k5b0 aW00 BAM0|90e5","Asia/Hong_Kong|LMT HKT HKST HKWT JST|-7A.G -80 -90 -8u -90|0123412121212121212121212121212121212121212121212121212121212121212121|-2CFH0 1taO0 Hc0 xUu 9tBu 11z0 1tDu Rc0 1wo0 11A0 1cM0 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1nX0 U10 1tz0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|73e5","Asia/Hovd|LMT +06 +07 +08|-66.A -60 -70 -80|012323232323232323232323232323232323232323232323232|-2APG6.A 2Uko6.A cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|81e3","Asia/Irkutsk|IMT +07 +08 +09|-6V.5 -70 -80 -90|01232323232323232323232123232323232323232323232323232323232323232|-21zGV.5 pjXV.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Europe/Istanbul|IMT EET EEST +03 +04|-1U.U -20 -30 -30 -40|0121212121212121212121212121212121212121212121234312121212121212121212121212121212121212121212121212121212121212123|-2ogNU.U dzzU.U 11b0 8tB0 1on0 1410 1db0 19B0 1in0 3Rd0 Un0 1oN0 11b0 zSN0 CL0 mp0 1Vz0 1gN0 8yn0 1yp0 ML0 1kp0 17b0 1ip0 17b0 1fB0 19X0 1ip0 19X0 1ip0 17b0 qdB0 38L0 1jd0 Tz0 l6O0 11A0 WN0 1qL0 TB0 1tX0 U10 1tz0 11B0 1in0 17d0 z90 cne0 pb0 2Cp0 1800 14o0 1dc0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1a00 1fA0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WO0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6","Asia/Jakarta|BMT +0720 +0730 +09 +08 WIB|-77.c -7k -7u -90 -80 -70|01232425|-1Q0Tk luM0 mPzO 8vWu 6kpu 4PXu xhcu|31e6","Asia/Jayapura|LMT +09 +0930 WIT|-9m.M -90 -9u -90|0123|-1uu9m.M sMMm.M L4nu|26e4","Asia/Jerusalem|JMT IST IDT IDDT|-2k.E -20 -30 -40|01212121212121321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-26Bek.E SyOk.E MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 3LA0 Eo0 oo0 1co0 1dA0 16o0 10M0 1jc0 1tA0 14o0 1cM0 1a00 11A0 1Nc0 Ao0 1Nc0 Ao0 1Ko0 LA0 1o00 WM0 EQK0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 1hB0 1dX0 1ep0 1aL0 1eN0 17X0 1nf0 11z0 1tB0 19W0 1e10 17b0 1ep0 1gL0 18N0 1fz0 1eN0 17b0 1gq0 1gn0 19d0 1dz0 1c10 17X0 1hB0 1gn0 19d0 1dz0 1c10 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0|81e4","Asia/Kabul|+04 +0430|-40 -4u|01|-10Qs0|46e5","Asia/Kamchatka|LMT +11 +12 +13|-ay.A -b0 -c0 -d0|012323232323232323232321232323232323232323232323232323232323212|-1SLKy.A ivXy.A 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|18e4","Asia/Karachi|LMT +0530 +0630 +05 PKT PKST|-4s.c -5u -6u -50 -50 -60|012134545454|-2xoss.c 1qOKW.c 7zX0 eup0 LqMu 1fy00 1cL0 dK10 11b0 1610 1jX0|24e6","Asia/Urumqi|LMT +06|-5O.k -60|01|-1GgtO.k|32e5","Asia/Kathmandu|LMT +0530 +0545|-5F.g -5u -5J|012|-21JhF.g 2EGMb.g|12e5","Asia/Khandyga|LMT +08 +09 +10 +11|-92.d -80 -90 -a0 -b0|0123232323232323232323212323232323232323232323232343434343434343432|-21Q92.d pAp2.d 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 qK0 yN0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|66e2","Asia/Krasnoyarsk|LMT +06 +07 +08|-6b.q -60 -70 -80|01232323232323232323232123232323232323232323232323232323232323232|-21Hib.q prAb.q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5","Asia/Kuala_Lumpur|SMT +07 +0720 +0730 +09 +08|-6T.p -70 -7k -7u -90 -80|0123435|-2Bg6T.p 17anT.p l5XE 17bO 8Fyu 1so1u|71e5","Asia/Kuching|LMT +0730 +08 +0820 +09|-7l.k -7u -80 -8k -90|0123232323232323242|-1KITl.k gDbP.k 6ynu AnE 1O0k AnE 1NAk AnE 1NAk AnE 1NAk AnE 1O0k AnE 1NAk AnE pAk 8Fz0|13e4","Asia/Macau|LMT CST +09 +10 CDT|-7y.a -80 -90 -a0 -90|012323214141414141414141414141414141414141414141414141414141414141414141|-2CFHy.a 1uqKy.a PX0 1kn0 15B0 11b0 4Qq0 1oM0 11c0 1ko0 1u00 11A0 1cM0 11c0 1o00 11A0 1o00 11A0 1oo0 1400 1o00 11A0 1o00 U00 1tA0 U00 1wo0 Rc0 1wru U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cK0 1cO0 1cK0 1cO0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|57e4","Asia/Magadan|LMT +10 +11 +12|-a3.c -a0 -b0 -c0|012323232323232323232321232323232323232323232323232323232323232312|-1Pca3.c eUo3.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Cq0|95e3","Asia/Makassar|LMT MMT +08 +09 WITA|-7V.A -7V.A -80 -90 -80|01234|-21JjV.A vfc0 myLV.A 8ML0|15e5","Asia/Manila|PST PDT JST|-80 -90 -90|010201010|-1kJI0 AL0 cK10 65X0 mXB0 vX0 VK10 1db0|24e6","Asia/Nicosia|LMT EET EEST|-2d.s -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2d.s 2a3cd.s 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|32e4","Asia/Novokuznetsk|LMT +06 +07 +08|-5M.M -60 -70 -80|012323232323232323232321232323232323232323232323232323232323212|-1PctM.M eULM.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|55e4","Asia/Novosibirsk|LMT +06 +07 +08|-5v.E -60 -70 -80|0123232323232323232323212323212121212121212121212121212121212121212|-21Qnv.E pAFv.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 ml0 Os0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 4eN0|15e5","Asia/Omsk|LMT +05 +06 +07|-4R.u -50 -60 -70|01232323232323232323232123232323232323232323232323232323232323232|-224sR.u pMLR.u 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|12e5","Asia/Oral|LMT +03 +05 +06 +04|-3p.o -30 -50 -60 -40|01232323232323232424242424242424242424242424242|-1Pc3p.o eUop.o 23CK0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 1cM0 IM0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|27e4","Asia/Pontianak|LMT PMT +0730 +09 +08 WITA WIB|-7h.k -7h.k -7u -90 -80 -80 -70|012324256|-2ua7h.k XE00 munL.k 8Rau 6kpu 4PXu xhcu Wqnu|23e4","Asia/Pyongyang|LMT KST JST KST|-8n -8u -90 -90|012313|-2um8n 97XR 1lTzu 2Onc0 6BA0|29e5","Asia/Qostanay|LMT +04 +05 +06|-4e.s -40 -50 -60|012323232323232323232123232323232323232323232323|-1Pc4e.s eUoe.s 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|","Asia/Qyzylorda|LMT +04 +05 +06|-4l.Q -40 -50 -60|01232323232323232323232323232323232323232323232|-1Pc4l.Q eUol.Q 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 3ao0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 zQl0|73e4","Asia/Rangoon|RMT +0630 +09|-6o.L -6u -90|0121|-21Jio.L SmnS.L 7j9u|48e5","Asia/Sakhalin|LMT +09 +11 +12 +10|-9u.M -90 -b0 -c0 -a0|01232323232323232323232423232323232424242424242424242424242424242|-2AGVu.M 1BoMu.M 1qFa0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 2pB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|58e4","Asia/Samarkand|LMT +04 +05 +06|-4r.R -40 -50 -60|01232323232323232323232|-1Pc4r.R eUor.R 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0|36e4","Asia/Seoul|LMT KST JST KST KDT KDT|-8r.Q -8u -90 -90 -a0 -9u|012343434343151515151515134343|-2um8r.Q 97XV.Q 1m1zu 6CM0 Fz0 1kN0 14n0 1kN0 14L0 1zd0 On0 69B0 2I0u OL0 1FB0 Rb0 1qN0 TX0 1tB0 TX0 1tB0 TX0 1tB0 TX0 2ap0 12FBu 11A0 1o00 11A0|23e6","Asia/Srednekolymsk|LMT +10 +11 +12|-ae.Q -a0 -b0 -c0|01232323232323232323232123232323232323232323232323232323232323232|-1Pcae.Q eUoe.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|35e2","Asia/Taipei|CST JST CDT|-80 -90 -90|01020202020202020202020202020202020202020|-1iw80 joM0 1yo0 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 10N0 1BX0 10p0 1pz0 10p0 1pz0 10p0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1BB0 ML0 1Bd0 ML0 uq10 1db0 1cN0 1db0 97B0 AL0|74e5","Asia/Tashkent|LMT +05 +06 +07|-4B.b -50 -60 -70|012323232323232323232321|-1Pc4B.b eUnB.b 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0|23e5","Asia/Tbilisi|TBMT +03 +04 +05|-2X.b -30 -40 -50|0123232323232323232323212121232323232323232323212|-1Pc2X.b 1jUnX.b WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cK0 1cL0 1cN0 1cL0 1cN0 2pz0 1cL0 1fB0 3Nz0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 An0 Os0 WM0|11e5","Asia/Tehran|LMT TMT +0330 +04 +05 +0430|-3p.I -3p.I -3u -40 -50 -4u|01234325252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2btDp.I 1d3c0 1huLT.I TXu 1pz0 sN0 vAu 1cL0 1dB0 1en0 pNB0 UL0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 64p0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0|14e6","Asia/Thimphu|LMT +0530 +06|-5W.A -5u -60|012|-Su5W.A 1BGMs.A|79e3","Asia/Tokyo|JST JDT|-90 -a0|010101010|-QJJ0 Rc0 1lc0 14o0 1zc0 Oo0 1zc0 Oo0|38e6","Asia/Tomsk|LMT +06 +07 +08|-5D.P -60 -70 -80|0123232323232323232323212323232323232323232323212121212121212121212|-21NhD.P pxzD.P 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 co0 1bB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Qp0|10e5","Asia/Ulaanbaatar|LMT +07 +08 +09|-77.w -70 -80 -90|012323232323232323232323232323232323232323232323232|-2APH7.w 2Uko7.w cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|12e5","Asia/Ust-Nera|LMT +08 +09 +12 +11 +10|-9w.S -80 -90 -c0 -b0 -a0|012343434343434343434345434343434343434343434343434343434343434345|-21Q9w.S pApw.S 23CL0 1d90 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|65e2","Asia/Vladivostok|LMT +09 +10 +11|-8L.v -90 -a0 -b0|01232323232323232323232123232323232323232323232323232323232323232|-1SJIL.v itXL.v 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Asia/Yakutsk|LMT +08 +09 +10|-8C.W -80 -90 -a0|01232323232323232323232123232323232323232323232323232323232323232|-21Q8C.W pAoC.W 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|28e4","Asia/Yekaterinburg|LMT PMT +04 +05 +06|-42.x -3J.5 -40 -50 -60|012343434343434343434343234343434343434343434343434343434343434343|-2ag42.x 7mQh.s qBvJ.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|14e5","Asia/Yerevan|LMT +03 +04 +05|-2W -30 -40 -50|0123232323232323232323212121212323232323232323232323232323232|-1Pc2W 1jUnW WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 4RX0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|13e5","Atlantic/Azores|HMT -02 -01 +00 WET|1S.w 20 10 0 0|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121232323232323232323232323232323234323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2ldW0 aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|25e4","Atlantic/Bermuda|BMT BST AST ADT|4j.i 3j.i 40 30|010102323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-28p7E.G 1bb0 1i10 11X0 ru30 thbE.G 1PX0 11B0 1tz0 Rd0 1zb0 Op0 1zb0 3I10 Lz0 1EN0 FX0 1HB0 FX0 1Kp0 Db0 1Kp0 Db0 1Kp0 FX0 93d0 11z0 GAp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e3","Atlantic/Canary|LMT -01 WET WEST|11.A 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UtaW.o XPAW.o 1lAK0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4","Atlantic/Cape_Verde|LMT -02 -01|1y.4 20 10|01212|-2ldW0 1eEo0 7zX0 1djf0|50e4","Atlantic/Faroe|LMT WET WEST|r.4 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2uSnw.U 2Wgow.U 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|49e3","Atlantic/Madeira|FMT -01 +00 +01 WET WEST|17.A 10 0 -10 0 -10|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2ldX0 aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e4","Atlantic/Reykjavik|LMT -01 +00 GMT|1s 10 0 0|012121212121212121212121212121212121212121212121212121212121212121213|-2uWmw mfaw 1Bd0 ML0 1LB0 Cn0 1LB0 3fX0 C10 HrX0 1cO0 LB0 1EL0 LA0 1C00 Oo0 1wo0 Rc0 1wo0 Rc0 1wo0 Rc0 1zc0 Oo0 1zc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0|12e4","Atlantic/South_Georgia|-02|20|0||30","Atlantic/Stanley|SMT -04 -03 -02|3P.o 40 30 20|012121212121212323212121212121212121212121212121212121212121212121212|-2kJw8.A 12bA8.A 19X0 1fB0 19X0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 Cn0 1Cc10 WL0 1qL0 U10 1tz0 2mN0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 U10 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qN0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 U10 1tz0 U10 1tz0 U10|21e2","Australia/Sydney|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293k0 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|40e5","Australia/Adelaide|ACST ACDT|-9u -au|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293ju xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 WM0 1qM0 Rc0 1zc0 U00 1tA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|11e5","Australia/Brisbane|AEST AEDT|-a0 -b0|01010101010101010|-293k0 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0|20e5","Australia/Broken_Hill|ACST ACDT|-9u -au|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293ju xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|18e3","Australia/Hobart|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-29E80 1a00 1qM0 Oo0 1zc0 Oo0 TAo0 yM0 1cM0 1cM0 1fA0 1a00 VfA0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|21e4","Australia/Darwin|ACST ACDT|-9u -au|010101010|-293ju xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00|12e4","Australia/Eucla|+0845 +0945|-8J -9J|0101010101010101010|-293iJ xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|368","Australia/Lord_Howe|AEST +1030 +1130 +11|-a0 -au -bu -b0|0121212121313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313|raC0 1zdu Rb0 1zd0 On0 1zd0 On0 1zd0 On0 1zd0 TXu 1qMu WLu 1tAu WLu 1tAu TXu 1tAu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 11Au 1nXu 1qMu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu 11zu 1o0u WLu 1qMu 14nu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu|347","Australia/Lindeman|AEST AEDT|-a0 -b0|010101010101010101010|-293k0 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0|10","Australia/Melbourne|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293k0 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1qM0 11A0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|39e5","Australia/Perth|AWST AWDT|-80 -90|0101010101010101010|-293i0 xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|18e5","CET|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|","Pacific/Easter|EMT -07 -06 -05|7h.s 70 60 50|012121212121212121212121212123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1uSgG.w 1s4IG.w WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 2pA0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0|30e2","CST6CDT|CST CDT CWT CPT|60 50 50 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","EET|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|","Europe/Dublin|DMT IST GMT BST IST|p.l -y.D 0 -10 -10|01232323232324242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242|-2ax9y.D Rc0 1fzy.D 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 g600 14o0 1wo0 17c0 1io0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","EST|EST|50|0||","EST5EDT|EST EDT EWT EPT|50 40 40 40|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 SgN0 8x40 iv0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","Etc/GMT-0|GMT|0|0||","Etc/GMT-1|+01|-10|0||","Pacific/Port_Moresby|+10|-a0|0||25e4","Etc/GMT-11|+11|-b0|0||","Pacific/Tarawa|+12|-c0|0||29e3","Etc/GMT-13|+13|-d0|0||","Etc/GMT-14|+14|-e0|0||","Etc/GMT-2|+02|-20|0||","Etc/GMT-3|+03|-30|0||","Etc/GMT-4|+04|-40|0||","Etc/GMT-5|+05|-50|0||","Etc/GMT-6|+06|-60|0||","Indian/Christmas|+07|-70|0||21e2","Etc/GMT-8|+08|-80|0||","Pacific/Palau|+09|-90|0||21e3","Etc/GMT+1|-01|10|0||","Etc/GMT+10|-10|a0|0||","Etc/GMT+11|-11|b0|0||","Etc/GMT+12|-12|c0|0||","Etc/GMT+3|-03|30|0||","Etc/GMT+4|-04|40|0||","Etc/GMT+5|-05|50|0||","Etc/GMT+6|-06|60|0||","Etc/GMT+7|-07|70|0||","Etc/GMT+8|-08|80|0||","Etc/GMT+9|-09|90|0||","Etc/UTC|UTC|0|0||","Europe/Amsterdam|AMT NST +0120 +0020 CEST CET|-j.w -1j.w -1k -k -20 -10|010101010101010101010101010101010101010101012323234545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-2aFcj.w 11b0 1iP0 11A0 1io0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1co0 1io0 1yo0 Pc0 1a00 1fA0 1Bc0 Mo0 1tc0 Uo0 1tA0 U00 1uo0 W00 1s00 VA0 1so0 Vc0 1sM0 UM0 1wo0 Rc0 1u00 Wo0 1rA0 W00 1s00 VA0 1sM0 UM0 1w00 fV0 BCX.w 1tA0 U00 1u00 Wo0 1sm0 601k WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|16e5","Europe/Andorra|WET CET CEST|0 -10 -20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-UBA0 1xIN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|79e3","Europe/Astrakhan|LMT +03 +04 +05|-3c.c -30 -40 -50|012323232323232323212121212121212121212121212121212121212121212|-1Pcrc.c eUMc.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|10e5","Europe/Athens|AMT EET EEST CEST CET|-1y.Q -20 -30 -20 -10|012123434121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a61x.Q CNbx.Q mn0 kU10 9b0 3Es0 Xa0 1fb0 1dd0 k3X0 Nz0 SCp0 1vc0 SO0 1cM0 1a00 1ao0 1fc0 1a10 1fG0 1cg0 1dX0 1bX0 1cQ0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|35e5","Europe/London|GMT BST BDST|0 -10 -20|0101010101010101010101010101010101010101010101010121212121210101210101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2axa0 Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|10e6","Europe/Belgrade|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-19RC0 3IP0 WM0 1fA0 1cM0 1cM0 1rc0 Qo0 1vmo0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Europe/Berlin|CET CEST CEMT|-10 -20 -30|01010101010101210101210101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 kL0 Nc0 m10 WM0 1ao0 1cp0 dX0 jz0 Dd0 1io0 17c0 1fA0 1a00 1ehA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|41e5","Europe/Prague|CET CEST GMT|-10 -20 0|01010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 1qM0 11c0 mp0 xA0 mn0 17c0 1io0 17c0 1fc0 1ao0 1bNc0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|13e5","Europe/Brussels|WET CET CEST WEST|0 -10 -20 -10|0121212103030303030303030303030303030303030303030303212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ehc0 3zX0 11c0 1iO0 11A0 1o00 11A0 my0 Ic0 1qM0 Rc0 1EM0 UM0 1u00 10o0 1io0 1io0 17c0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a30 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 y00 5Wn0 WM0 1fA0 1cM0 16M0 1iM0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|21e5","Europe/Bucharest|BMT EET EEST|-1I.o -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1xApI.o 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Axc0 On0 1fA0 1a10 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|19e5","Europe/Budapest|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 1oo0 11c0 1lc0 17c0 O1V0 3Nf0 WM0 1fA0 1cM0 1cM0 1oJ0 1dd0 1020 1fX0 1cp0 1cM0 1cM0 1cM0 1fA0 1a00 bhy0 Rb0 1wr0 Rc0 1C00 LA0 1C00 LA0 SNW0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cO0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e5","Europe/Zurich|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-19Lc0 11A0 1o00 11A0 1xG10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|38e4","Europe/Chisinau|CMT BMT EET EEST CEST CET MSK MSD|-1T -1I.o -20 -30 -20 -10 -30 -40|012323232323232323234545467676767676767676767323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-26jdT wGMa.A 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 27A0 2en0 39g0 WM0 1fA0 1cM0 V90 1t7z0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 gL0 WO0 1cM0 1cM0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11D0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|67e4","Europe/Copenhagen|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2azC0 Tz0 VuO0 60q0 WM0 1fA0 1cM0 1cM0 1cM0 S00 1HA0 Nc0 1C00 Dc0 1Nc0 Ao0 1h5A0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Europe/Gibraltar|GMT BST BDST CET CEST|0 -10 -20 -10 -20|010101010101010101010101010101010101010101010101012121212121010121010101010101010101034343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-2axa0 Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 10Jz0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|30e3","Europe/Helsinki|HMT EET EEST|-1D.N -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1WuND.N OULD.N 1dA0 1xGq0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Europe/Kaliningrad|CET CEST EET EEST MSK MSD +03|-10 -20 -20 -30 -30 -40 -30|01010101010101232454545454545454543232323232323232323232323232323232323232323262|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 390 7A0 1en0 12N0 1pbb0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|44e4","Europe/Kiev|KMT EET MSK CEST CET MSD EEST|-22.4 -20 -30 -20 -10 -40 -30|0123434252525252525252525256161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161|-1Pc22.4 eUo2.4 rnz0 2Hg0 WM0 1fA0 da0 1v4m0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 Db0 3220 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|34e5","Europe/Kirov|LMT +03 +04 +05|-3i.M -30 -40 -50|01232323232323232321212121212121212121212121212121212121212121|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|48e4","Europe/Lisbon|LMT WET WEST WEMT CET CEST|A.J 0 -10 -20 -10 -20|012121212121212121212121212121212121212121212321232123212321212121212121212121212121212121212121214121212121212121212121212121212124545454212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2le00 aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 pvy0 1cM0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e5","Europe/Luxembourg|LMT CET CEST WET WEST WEST WET|-o.A -10 -20 0 -10 -20 -10|0121212134343434343434343434343434343434343434343434565651212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2DG0o.A t6mo.A TB0 1nX0 Up0 1o20 11A0 rW0 CM0 1qP0 R90 1EO0 UK0 1u20 10m0 1ip0 1in0 17e0 19W0 1fB0 1db0 1cp0 1in0 17d0 1fz0 1a10 1in0 1a10 1in0 17f0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 vA0 60L0 WM0 1fA0 1cM0 17c0 1io0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4","Europe/Madrid|WET WEST WEMT CET CEST|0 -10 -20 -10 -20|010101010101010101210343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-25Td0 19B0 1cL0 1dd0 b1z0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1in0 17d0 iIn0 Hd0 1cL0 bb0 1200 2s20 14n0 5aL0 Mp0 1vz0 17d0 1in0 17d0 1in0 17d0 1in0 17d0 6hX0 11B0 XHX0 1a10 1fz0 1a10 19X0 1cN0 1fz0 1a10 1fC0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|62e5","Europe/Malta|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2arB0 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1co0 17c0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1co0 1cM0 1lA0 Xc0 1qq0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1iN0 19z0 1fB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|42e4","Europe/Minsk|MMT EET MSK CEST CET MSD EEST +03|-1O -20 -30 -20 -10 -40 -30 -30|01234343252525252525252525261616161616161616161616161616161616161617|-1Pc1O eUnO qNX0 3gQ0 WM0 1fA0 1cM0 Al0 1tsn0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 3Fc0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0|19e5","Europe/Monaco|PMT WET WEST WEMT CET CEST|-9.l 0 -10 -20 -10 -20|01212121212121212121212121212121212121212121212121232323232345454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2n5c9.l cFX9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 2RV0 11z0 11B0 1ze0 WM0 1fA0 1cM0 1fa0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|38e3","Europe/Moscow|MMT MMT MST MDST MSD MSK +05 EET EEST MSK|-2u.h -2v.j -3v.j -4v.j -40 -30 -50 -20 -30 -40|012132345464575454545454545454545458754545454545454545454545454545454545454595|-2ag2u.h 2pyW.W 1bA0 11X0 GN0 1Hb0 c4v.j ik0 3DA0 dz0 15A0 c10 2q10 iM10 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|16e6","Europe/Paris|PMT WET WEST CEST CET WEMT|-9.l 0 -10 -20 -10 -20|0121212121212121212121212121212121212121212121212123434352543434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 Ik0 5M30 WM0 1fA0 1cM0 Vx0 hB0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e6","Europe/Riga|RMT LST EET MSK CEST CET MSD EEST|-1A.y -2A.y -20 -30 -20 -10 -40 -30|010102345454536363636363636363727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272|-25TzA.y 11A0 1iM0 ko0 gWm0 yDXA.y 2bX0 3fE0 WM0 1fA0 1cM0 1cM0 4m0 1sLy0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 1o00 11A0 1o00 11A0 1qM0 3oo0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|64e4","Europe/Rome|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2arB0 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1cM0 16M0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1C00 LA0 1zc0 Oo0 1C00 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1zc0 Oo0 1fC0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|39e5","Europe/Samara|LMT +03 +04 +05|-3k.k -30 -40 -50|0123232323232323232121232323232323232323232323232323232323212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2y10 14m0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|12e5","Europe/Saratov|LMT +03 +04 +05|-34.i -30 -40 -50|012323232323232321212121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 5810|","Europe/Simferopol|SMT EET MSK CEST CET MSD EEST MSK|-2g -20 -30 -20 -10 -40 -30 -40|012343432525252525252525252161616525252616161616161616161616161616161616172|-1Pc2g eUog rEn0 2qs0 WM0 1fA0 1cM0 3V0 1u0L0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 4eL0 1cL0 1cN0 1cL0 1cN0 dX0 WL0 1cN0 1cL0 1fB0 1o30 11B0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4","Europe/Sofia|EET CET CEST EEST|-20 -10 -20 -30|01212103030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030|-168L0 WM0 1fA0 1cM0 1cM0 1cN0 1mKH0 1dd0 1fb0 1ap0 1fb0 1a20 1fy0 1a30 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Europe/Stockholm|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2azC0 TB0 2yDe0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|15e5","Europe/Tallinn|TMT CET CEST EET MSK MSD EEST|-1D -10 -20 -20 -30 -40 -30|012103421212454545454545454546363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363|-26oND teD 11A0 1Ta0 4rXl KSLD 2FX0 2Jg0 WM0 1fA0 1cM0 18J0 1sTX0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o10 11A0 1qM0 5QM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|41e4","Europe/Tirane|LMT CET CEST|-1j.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glBj.k 14pcj.k 5LC0 WM0 4M0 1fCK0 10n0 1op0 11z0 1pd0 11z0 1qN0 WL0 1qp0 Xb0 1qp0 Xb0 1qp0 11z0 1lB0 11z0 1qN0 11z0 1iN0 16n0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|42e4","Europe/Ulyanovsk|LMT +03 +04 +05 +02|-3d.A -30 -40 -50 -20|01232323232323232321214121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|13e5","Europe/Uzhgorod|CET CEST MSK MSD EET EEST|-10 -20 -30 -40 -20 -30|010101023232323232323232320454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-1cqL0 6i00 WM0 1fA0 1cM0 1ml0 1Cp0 1r3W0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 1Nf0 2pw0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e4","Europe/Vienna|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 3KM0 14o0 LA00 6i00 WM0 1fA0 1cM0 1cM0 1cM0 400 2qM0 1ao0 1co0 1cM0 1io0 17c0 1gHa0 19X0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|18e5","Europe/Vilnius|WMT KMT CET EET MSK CEST MSD EEST|-1o -1z.A -10 -20 -30 -20 -40 -30|012324525254646464646464646473737373737373737352537373737373737373737373737373737373737373737373737373737373737373737373|-293do 6ILM.o 1Ooz.A zz0 Mfd0 29W0 3is0 WM0 1fA0 1cM0 LV0 1tgL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11B0 1o00 11A0 1qM0 8io0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4","Europe/Volgograd|LMT +03 +04 +05|-2V.E -30 -40 -50|0123232323232323212121212121212121212121212121212121212121212121|-21IqV.E psLV.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 9Jd0 5gn0|10e5","Europe/Warsaw|WMT CET CEST EET EEST|-1o -10 -20 -20 -30|012121234312121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ctdo 1LXo 11d0 1iO0 11A0 1o00 11A0 1on0 11A0 6zy0 HWP0 5IM0 WM0 1fA0 1cM0 1dz0 1mL0 1en0 15B0 1aq0 1nA0 11A0 1io0 17c0 1fA0 1a00 iDX0 LA0 1cM0 1cM0 1C00 Oo0 1cM0 1cM0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1C00 LA0 uso0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e5","Europe/Zaporozhye|+0220 EET MSK CEST CET MSD EEST|-2k -20 -30 -20 -10 -40 -30|01234342525252525252525252526161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161|-1Pc2k eUok rdb0 2RE0 WM0 1fA0 8m0 1v9a0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cK0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|77e4","HST|HST|a0|0||","Indian/Chagos|LMT +05 +06|-4N.E -50 -60|012|-2xosN.E 3AGLN.E|30e2","Indian/Cocos|+0630|-6u|0||596","Indian/Kerguelen|-00 +05|0 -50|01|-MG00|130","Indian/Mahe|LMT +04|-3F.M -40|01|-2xorF.M|79e3","Indian/Maldives|MMT +05|-4S -50|01|-olgS|35e4","Indian/Mauritius|LMT +04 +05|-3O -40 -50|012121|-2xorO 34unO 14L0 12kr0 11z0|15e4","Indian/Reunion|LMT +04|-3F.Q -40|01|-2mDDF.Q|84e4","Pacific/Kwajalein|+11 +10 +09 -12 +12|-b0 -a0 -90 c0 -c0|012034|-1kln0 akp0 6Up0 12ry0 Wan0|14e3","MET|MET MEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|","MST|MST|70|0||","MST7MDT|MST MDT MWT MPT|70 60 60 60|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","Pacific/Chatham|+1215 +1245 +1345|-cf -cJ -dJ|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-WqAf 1adef IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|600","Pacific/Apia|LMT -1130 -11 -10 +14 +13|bq.U bu b0 a0 -e0 -d0|01232345454545454545454545454545454545454545454545454545454|-2nDMx.4 1yW03.4 2rRbu 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|37e3","Pacific/Bougainville|+10 +09 +11|-a0 -90 -b0|0102|-16Wy0 7CN0 2MQp0|18e4","Pacific/Chuuk|+10 +09|-a0 -90|01010|-2ewy0 axB0 RVX0 axd0|49e3","Pacific/Efate|LMT +11 +12|-bd.g -b0 -c0|012121212121212121212121|-2l9nd.g 2uNXd.g Dc0 n610 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 Lz0 1Nd0 An0|66e3","Pacific/Enderbury|-12 -11 +13|c0 b0 -d0|012|nIc0 B7X0|1","Pacific/Fakaofo|-11 +13|b0 -d0|01|1Gfn0|483","Pacific/Fiji|LMT +12 +13|-bT.I -c0 -d0|0121212121212121212121212121212121212121212121212121212121212121|-2bUzT.I 3m8NT.I LA0 1EM0 IM0 nJc0 LA0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 s00 20o0 pc0 2hc0 bc0 20o0 pc0 20o0 pc0 20o0 pc0 20o0 pc0 20o0 s00 1VA0 s00 20o0 pc0 20o0 pc0 20o0 pc0 20o0 pc0 20o0 s00 20o0 pc0 20o0 pc0 20o0 pc0 20o0 pc0 20o0 s00 1VA0 s00|88e4","Pacific/Galapagos|LMT -05 -06|5W.o 50 60|01212|-1yVS1.A 2dTz1.A gNd0 rz0|25e3","Pacific/Gambier|LMT -09|8X.M 90|01|-2jof0.c|125","Pacific/Guadalcanal|LMT +11|-aD.M -b0|01|-2joyD.M|11e4","Pacific/Guam|GST +09 GDT ChST|-a0 -90 -b0 -a0|01020202020202020203|-18jK0 6pB0 AhB0 3QL0 g2p0 3p91 WOX rX0 1zd0 Rb0 1wp0 Rb0 5xd0 rX0 5sN0 zb1 1C0X On0 ULb0|17e4","Pacific/Honolulu|HST HDT HWT HPT HST|au 9u 9u 9u a0|0102304|-1thLu 8x0 lef0 8wWu iAu 46p0|37e4","Pacific/Kiritimati|-1040 -10 +14|aE a0 -e0|012|nIaE B7Xk|51e2","Pacific/Kosrae|+11 +09 +10 +12|-b0 -90 -a0 -c0|01021030|-2ewz0 axC0 HBy0 akp0 axd0 WOK0 1bdz0|66e2","Pacific/Majuro|+11 +09 +10 +12|-b0 -90 -a0 -c0|0102103|-2ewz0 axC0 HBy0 akp0 6RB0 12um0|28e3","Pacific/Marquesas|LMT -0930|9i 9u|01|-2joeG|86e2","Pacific/Pago_Pago|LMT SST|bm.M b0|01|-2nDMB.c|37e2","Pacific/Nauru|LMT +1130 +09 +12|-b7.E -bu -90 -c0|01213|-1Xdn7.E QCnB.E 7mqu 1lnbu|10e3","Pacific/Niue|-1120 -1130 -11|bk bu b0|012|-KfME 17y0a|12e2","Pacific/Norfolk|+1112 +1130 +1230 +11 +12|-bc -bu -cu -b0 -c0|012134343434343434343434343434343434343434|-Kgbc W01G Oo0 1COo0 9Jcu 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|25e4","Pacific/Noumea|LMT +11 +12|-b5.M -b0 -c0|01212121|-2l9n5.M 2EqM5.M xX0 1PB0 yn0 HeP0 Ao0|98e3","Pacific/Pitcairn|-0830 -08|8u 80|01|18Vku|56","Pacific/Pohnpei|+11 +09 +10|-b0 -90 -a0|010210|-2ewz0 axC0 HBy0 akp0 axd0|34e3","Pacific/Rarotonga|-1030 -0930 -10|au 9u a0|012121212121212121212121212|lyWu IL0 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu|13e3","Pacific/Tahiti|LMT -10|9W.g a0|01|-2joe1.I|18e4","Pacific/Tongatapu|+1220 +13 +14|-ck -d0 -e0|0121212121|-1aB0k 2n5dk 15A0 1wo0 xz0 1Q10 xz0 zWN0 s00|75e3","PST8PDT|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","WET|WET WEST|0 -10|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|"],links:["Africa/Abidjan|Africa/Bamako","Africa/Abidjan|Africa/Banjul","Africa/Abidjan|Africa/Conakry","Africa/Abidjan|Africa/Dakar","Africa/Abidjan|Africa/Freetown","Africa/Abidjan|Africa/Lome","Africa/Abidjan|Africa/Nouakchott","Africa/Abidjan|Africa/Ouagadougou","Africa/Abidjan|Africa/Timbuktu","Africa/Abidjan|Atlantic/St_Helena","Africa/Cairo|Egypt","Africa/Johannesburg|Africa/Maseru","Africa/Johannesburg|Africa/Mbabane","Africa/Lagos|Africa/Bangui","Africa/Lagos|Africa/Brazzaville","Africa/Lagos|Africa/Douala","Africa/Lagos|Africa/Kinshasa","Africa/Lagos|Africa/Libreville","Africa/Lagos|Africa/Luanda","Africa/Lagos|Africa/Malabo","Africa/Lagos|Africa/Niamey","Africa/Lagos|Africa/Porto-Novo","Africa/Maputo|Africa/Blantyre","Africa/Maputo|Africa/Bujumbura","Africa/Maputo|Africa/Gaborone","Africa/Maputo|Africa/Harare","Africa/Maputo|Africa/Kigali","Africa/Maputo|Africa/Lubumbashi","Africa/Maputo|Africa/Lusaka","Africa/Nairobi|Africa/Addis_Ababa","Africa/Nairobi|Africa/Asmara","Africa/Nairobi|Africa/Asmera","Africa/Nairobi|Africa/Dar_es_Salaam","Africa/Nairobi|Africa/Djibouti","Africa/Nairobi|Africa/Kampala","Africa/Nairobi|Africa/Mogadishu","Africa/Nairobi|Indian/Antananarivo","Africa/Nairobi|Indian/Comoro","Africa/Nairobi|Indian/Mayotte","Africa/Tripoli|Libya","America/Adak|America/Atka","America/Adak|US/Aleutian","America/Anchorage|US/Alaska","America/Argentina/Buenos_Aires|America/Buenos_Aires","America/Argentina/Catamarca|America/Argentina/ComodRivadavia","America/Argentina/Catamarca|America/Catamarca","America/Argentina/Cordoba|America/Cordoba","America/Argentina/Cordoba|America/Rosario","America/Argentina/Jujuy|America/Jujuy","America/Argentina/Mendoza|America/Mendoza","America/Atikokan|America/Coral_Harbour","America/Chicago|US/Central","America/Curacao|America/Aruba","America/Curacao|America/Kralendijk","America/Curacao|America/Lower_Princes","America/Denver|America/Shiprock","America/Denver|Navajo","America/Denver|US/Mountain","America/Detroit|US/Michigan","America/Edmonton|Canada/Mountain","America/Fort_Wayne|America/Indiana/Indianapolis","America/Fort_Wayne|America/Indianapolis","America/Fort_Wayne|US/East-Indiana","America/Godthab|America/Nuuk","America/Halifax|Canada/Atlantic","America/Havana|Cuba","America/Indiana/Knox|America/Knox_IN","America/Indiana/Knox|US/Indiana-Starke","America/Jamaica|Jamaica","America/Kentucky/Louisville|America/Louisville","America/Los_Angeles|US/Pacific","America/Manaus|Brazil/West","America/Mazatlan|Mexico/BajaSur","America/Mexico_City|Mexico/General","America/New_York|US/Eastern","America/Noronha|Brazil/DeNoronha","America/Panama|America/Cayman","America/Phoenix|US/Arizona","America/Port_of_Spain|America/Anguilla","America/Port_of_Spain|America/Antigua","America/Port_of_Spain|America/Dominica","America/Port_of_Spain|America/Grenada","America/Port_of_Spain|America/Guadeloupe","America/Port_of_Spain|America/Marigot","America/Port_of_Spain|America/Montserrat","America/Port_of_Spain|America/St_Barthelemy","America/Port_of_Spain|America/St_Kitts","America/Port_of_Spain|America/St_Lucia","America/Port_of_Spain|America/St_Thomas","America/Port_of_Spain|America/St_Vincent","America/Port_of_Spain|America/Tortola","America/Port_of_Spain|America/Virgin","America/Regina|Canada/Saskatchewan","America/Rio_Branco|America/Porto_Acre","America/Rio_Branco|Brazil/Acre","America/Santiago|Chile/Continental","America/Sao_Paulo|Brazil/East","America/St_Johns|Canada/Newfoundland","America/Tijuana|America/Ensenada","America/Tijuana|America/Santa_Isabel","America/Tijuana|Mexico/BajaNorte","America/Toronto|America/Montreal","America/Toronto|Canada/Eastern","America/Vancouver|Canada/Pacific","America/Whitehorse|Canada/Yukon","America/Winnipeg|Canada/Central","Asia/Ashgabat|Asia/Ashkhabad","Asia/Bangkok|Asia/Phnom_Penh","Asia/Bangkok|Asia/Vientiane","Asia/Dhaka|Asia/Dacca","Asia/Dubai|Asia/Muscat","Asia/Ho_Chi_Minh|Asia/Saigon","Asia/Hong_Kong|Hongkong","Asia/Jerusalem|Asia/Tel_Aviv","Asia/Jerusalem|Israel","Asia/Kathmandu|Asia/Katmandu","Asia/Kolkata|Asia/Calcutta","Asia/Kuala_Lumpur|Asia/Singapore","Asia/Kuala_Lumpur|Singapore","Asia/Macau|Asia/Macao","Asia/Makassar|Asia/Ujung_Pandang","Asia/Nicosia|Europe/Nicosia","Asia/Qatar|Asia/Bahrain","Asia/Rangoon|Asia/Yangon","Asia/Riyadh|Asia/Aden","Asia/Riyadh|Asia/Kuwait","Asia/Seoul|ROK","Asia/Shanghai|Asia/Chongqing","Asia/Shanghai|Asia/Chungking","Asia/Shanghai|Asia/Harbin","Asia/Shanghai|PRC","Asia/Taipei|ROC","Asia/Tehran|Iran","Asia/Thimphu|Asia/Thimbu","Asia/Tokyo|Japan","Asia/Ulaanbaatar|Asia/Ulan_Bator","Asia/Urumqi|Asia/Kashgar","Atlantic/Faroe|Atlantic/Faeroe","Atlantic/Reykjavik|Iceland","Atlantic/South_Georgia|Etc/GMT+2","Australia/Adelaide|Australia/South","Australia/Brisbane|Australia/Queensland","Australia/Broken_Hill|Australia/Yancowinna","Australia/Darwin|Australia/North","Australia/Hobart|Australia/Currie","Australia/Hobart|Australia/Tasmania","Australia/Lord_Howe|Australia/LHI","Australia/Melbourne|Australia/Victoria","Australia/Perth|Australia/West","Australia/Sydney|Australia/ACT","Australia/Sydney|Australia/Canberra","Australia/Sydney|Australia/NSW","Etc/GMT-0|Etc/GMT","Etc/GMT-0|Etc/GMT+0","Etc/GMT-0|Etc/GMT0","Etc/GMT-0|Etc/Greenwich","Etc/GMT-0|GMT","Etc/GMT-0|GMT+0","Etc/GMT-0|GMT-0","Etc/GMT-0|GMT0","Etc/GMT-0|Greenwich","Etc/UTC|Etc/UCT","Etc/UTC|Etc/Universal","Etc/UTC|Etc/Zulu","Etc/UTC|UCT","Etc/UTC|UTC","Etc/UTC|Universal","Etc/UTC|Zulu","Europe/Belgrade|Europe/Ljubljana","Europe/Belgrade|Europe/Podgorica","Europe/Belgrade|Europe/Sarajevo","Europe/Belgrade|Europe/Skopje","Europe/Belgrade|Europe/Zagreb","Europe/Chisinau|Europe/Tiraspol","Europe/Dublin|Eire","Europe/Helsinki|Europe/Mariehamn","Europe/Istanbul|Asia/Istanbul","Europe/Istanbul|Turkey","Europe/Lisbon|Portugal","Europe/London|Europe/Belfast","Europe/London|Europe/Guernsey","Europe/London|Europe/Isle_of_Man","Europe/London|Europe/Jersey","Europe/London|GB","Europe/London|GB-Eire","Europe/Moscow|W-SU","Europe/Oslo|Arctic/Longyearbyen","Europe/Oslo|Atlantic/Jan_Mayen","Europe/Prague|Europe/Bratislava","Europe/Rome|Europe/San_Marino","Europe/Rome|Europe/Vatican","Europe/Warsaw|Poland","Europe/Zurich|Europe/Busingen","Europe/Zurich|Europe/Vaduz","Indian/Christmas|Etc/GMT-7","Pacific/Auckland|Antarctica/McMurdo","Pacific/Auckland|Antarctica/South_Pole","Pacific/Auckland|NZ","Pacific/Chatham|NZ-CHAT","Pacific/Chuuk|Pacific/Truk","Pacific/Chuuk|Pacific/Yap","Pacific/Easter|Chile/EasterIsland","Pacific/Guam|Pacific/Saipan","Pacific/Honolulu|Pacific/Johnston","Pacific/Honolulu|US/Hawaii","Pacific/Kwajalein|Kwajalein","Pacific/Pago_Pago|Pacific/Midway","Pacific/Pago_Pago|Pacific/Samoa","Pacific/Pago_Pago|US/Samoa","Pacific/Palau|Etc/GMT-9","Pacific/Pohnpei|Pacific/Ponape","Pacific/Port_Moresby|Etc/GMT-10","Pacific/Tarawa|Etc/GMT-12","Pacific/Tarawa|Pacific/Funafuti","Pacific/Tarawa|Pacific/Wake","Pacific/Tarawa|Pacific/Wallis"],countries:["AD|Europe/Andorra","AE|Asia/Dubai","AF|Asia/Kabul","AG|America/Port_of_Spain America/Antigua","AI|America/Port_of_Spain America/Anguilla","AL|Europe/Tirane","AM|Asia/Yerevan","AO|Africa/Lagos Africa/Luanda","AQ|Antarctica/Casey Antarctica/Davis Antarctica/DumontDUrville Antarctica/Mawson Antarctica/Palmer Antarctica/Rothera Antarctica/Syowa Antarctica/Troll Antarctica/Vostok Pacific/Auckland Antarctica/McMurdo","AR|America/Argentina/Buenos_Aires America/Argentina/Cordoba America/Argentina/Salta America/Argentina/Jujuy America/Argentina/Tucuman America/Argentina/Catamarca America/Argentina/La_Rioja America/Argentina/San_Juan America/Argentina/Mendoza America/Argentina/San_Luis America/Argentina/Rio_Gallegos America/Argentina/Ushuaia","AS|Pacific/Pago_Pago","AT|Europe/Vienna","AU|Australia/Lord_Howe Antarctica/Macquarie Australia/Hobart Australia/Currie Australia/Melbourne Australia/Sydney Australia/Broken_Hill Australia/Brisbane Australia/Lindeman Australia/Adelaide Australia/Darwin Australia/Perth Australia/Eucla","AW|America/Curacao America/Aruba","AX|Europe/Helsinki Europe/Mariehamn","AZ|Asia/Baku","BA|Europe/Belgrade Europe/Sarajevo","BB|America/Barbados","BD|Asia/Dhaka","BE|Europe/Brussels","BF|Africa/Abidjan Africa/Ouagadougou","BG|Europe/Sofia","BH|Asia/Qatar Asia/Bahrain","BI|Africa/Maputo Africa/Bujumbura","BJ|Africa/Lagos Africa/Porto-Novo","BL|America/Port_of_Spain America/St_Barthelemy","BM|Atlantic/Bermuda","BN|Asia/Brunei","BO|America/La_Paz","BQ|America/Curacao America/Kralendijk","BR|America/Noronha America/Belem America/Fortaleza America/Recife America/Araguaina America/Maceio America/Bahia America/Sao_Paulo America/Campo_Grande America/Cuiaba America/Santarem America/Porto_Velho America/Boa_Vista America/Manaus America/Eirunepe America/Rio_Branco","BS|America/Nassau","BT|Asia/Thimphu","BW|Africa/Maputo Africa/Gaborone","BY|Europe/Minsk","BZ|America/Belize","CA|America/St_Johns America/Halifax America/Glace_Bay America/Moncton America/Goose_Bay America/Blanc-Sablon America/Toronto America/Nipigon America/Thunder_Bay America/Iqaluit America/Pangnirtung America/Atikokan America/Winnipeg America/Rainy_River America/Resolute America/Rankin_Inlet America/Regina America/Swift_Current America/Edmonton America/Cambridge_Bay America/Yellowknife America/Inuvik America/Creston America/Dawson_Creek America/Fort_Nelson America/Vancouver America/Whitehorse America/Dawson","CC|Indian/Cocos","CD|Africa/Maputo Africa/Lagos Africa/Kinshasa Africa/Lubumbashi","CF|Africa/Lagos Africa/Bangui","CG|Africa/Lagos Africa/Brazzaville","CH|Europe/Zurich","CI|Africa/Abidjan","CK|Pacific/Rarotonga","CL|America/Santiago America/Punta_Arenas Pacific/Easter","CM|Africa/Lagos Africa/Douala","CN|Asia/Shanghai Asia/Urumqi","CO|America/Bogota","CR|America/Costa_Rica","CU|America/Havana","CV|Atlantic/Cape_Verde","CW|America/Curacao","CX|Indian/Christmas","CY|Asia/Nicosia Asia/Famagusta","CZ|Europe/Prague","DE|Europe/Zurich Europe/Berlin Europe/Busingen","DJ|Africa/Nairobi Africa/Djibouti","DK|Europe/Copenhagen","DM|America/Port_of_Spain America/Dominica","DO|America/Santo_Domingo","DZ|Africa/Algiers","EC|America/Guayaquil Pacific/Galapagos","EE|Europe/Tallinn","EG|Africa/Cairo","EH|Africa/El_Aaiun","ER|Africa/Nairobi Africa/Asmara","ES|Europe/Madrid Africa/Ceuta Atlantic/Canary","ET|Africa/Nairobi Africa/Addis_Ababa","FI|Europe/Helsinki","FJ|Pacific/Fiji","FK|Atlantic/Stanley","FM|Pacific/Chuuk Pacific/Pohnpei Pacific/Kosrae","FO|Atlantic/Faroe","FR|Europe/Paris","GA|Africa/Lagos Africa/Libreville","GB|Europe/London","GD|America/Port_of_Spain America/Grenada","GE|Asia/Tbilisi","GF|America/Cayenne","GG|Europe/London Europe/Guernsey","GH|Africa/Accra","GI|Europe/Gibraltar","GL|America/Nuuk America/Danmarkshavn America/Scoresbysund America/Thule","GM|Africa/Abidjan Africa/Banjul","GN|Africa/Abidjan Africa/Conakry","GP|America/Port_of_Spain America/Guadeloupe","GQ|Africa/Lagos Africa/Malabo","GR|Europe/Athens","GS|Atlantic/South_Georgia","GT|America/Guatemala","GU|Pacific/Guam","GW|Africa/Bissau","GY|America/Guyana","HK|Asia/Hong_Kong","HN|America/Tegucigalpa","HR|Europe/Belgrade Europe/Zagreb","HT|America/Port-au-Prince","HU|Europe/Budapest","ID|Asia/Jakarta Asia/Pontianak Asia/Makassar Asia/Jayapura","IE|Europe/Dublin","IL|Asia/Jerusalem","IM|Europe/London Europe/Isle_of_Man","IN|Asia/Kolkata","IO|Indian/Chagos","IQ|Asia/Baghdad","IR|Asia/Tehran","IS|Atlantic/Reykjavik","IT|Europe/Rome","JE|Europe/London Europe/Jersey","JM|America/Jamaica","JO|Asia/Amman","JP|Asia/Tokyo","KE|Africa/Nairobi","KG|Asia/Bishkek","KH|Asia/Bangkok Asia/Phnom_Penh","KI|Pacific/Tarawa Pacific/Enderbury Pacific/Kiritimati","KM|Africa/Nairobi Indian/Comoro","KN|America/Port_of_Spain America/St_Kitts","KP|Asia/Pyongyang","KR|Asia/Seoul","KW|Asia/Riyadh Asia/Kuwait","KY|America/Panama America/Cayman","KZ|Asia/Almaty Asia/Qyzylorda Asia/Qostanay Asia/Aqtobe Asia/Aqtau Asia/Atyrau Asia/Oral","LA|Asia/Bangkok Asia/Vientiane","LB|Asia/Beirut","LC|America/Port_of_Spain America/St_Lucia","LI|Europe/Zurich Europe/Vaduz","LK|Asia/Colombo","LR|Africa/Monrovia","LS|Africa/Johannesburg Africa/Maseru","LT|Europe/Vilnius","LU|Europe/Luxembourg","LV|Europe/Riga","LY|Africa/Tripoli","MA|Africa/Casablanca","MC|Europe/Monaco","MD|Europe/Chisinau","ME|Europe/Belgrade Europe/Podgorica","MF|America/Port_of_Spain America/Marigot","MG|Africa/Nairobi Indian/Antananarivo","MH|Pacific/Majuro Pacific/Kwajalein","MK|Europe/Belgrade Europe/Skopje","ML|Africa/Abidjan Africa/Bamako","MM|Asia/Yangon","MN|Asia/Ulaanbaatar Asia/Hovd Asia/Choibalsan","MO|Asia/Macau","MP|Pacific/Guam Pacific/Saipan","MQ|America/Martinique","MR|Africa/Abidjan Africa/Nouakchott","MS|America/Port_of_Spain America/Montserrat","MT|Europe/Malta","MU|Indian/Mauritius","MV|Indian/Maldives","MW|Africa/Maputo Africa/Blantyre","MX|America/Mexico_City America/Cancun America/Merida America/Monterrey America/Matamoros America/Mazatlan America/Chihuahua America/Ojinaga America/Hermosillo America/Tijuana America/Bahia_Banderas","MY|Asia/Kuala_Lumpur Asia/Kuching","MZ|Africa/Maputo","NA|Africa/Windhoek","NC|Pacific/Noumea","NE|Africa/Lagos Africa/Niamey","NF|Pacific/Norfolk","NG|Africa/Lagos","NI|America/Managua","NL|Europe/Amsterdam","NO|Europe/Oslo","NP|Asia/Kathmandu","NR|Pacific/Nauru","NU|Pacific/Niue","NZ|Pacific/Auckland Pacific/Chatham","OM|Asia/Dubai Asia/Muscat","PA|America/Panama","PE|America/Lima","PF|Pacific/Tahiti Pacific/Marquesas Pacific/Gambier","PG|Pacific/Port_Moresby Pacific/Bougainville","PH|Asia/Manila","PK|Asia/Karachi","PL|Europe/Warsaw","PM|America/Miquelon","PN|Pacific/Pitcairn","PR|America/Puerto_Rico","PS|Asia/Gaza Asia/Hebron","PT|Europe/Lisbon Atlantic/Madeira Atlantic/Azores","PW|Pacific/Palau","PY|America/Asuncion","QA|Asia/Qatar","RE|Indian/Reunion","RO|Europe/Bucharest","RS|Europe/Belgrade","RU|Europe/Kaliningrad Europe/Moscow Europe/Simferopol Europe/Kirov Europe/Astrakhan Europe/Volgograd Europe/Saratov Europe/Ulyanovsk Europe/Samara Asia/Yekaterinburg Asia/Omsk Asia/Novosibirsk Asia/Barnaul Asia/Tomsk Asia/Novokuznetsk Asia/Krasnoyarsk Asia/Irkutsk Asia/Chita Asia/Yakutsk Asia/Khandyga Asia/Vladivostok Asia/Ust-Nera Asia/Magadan Asia/Sakhalin Asia/Srednekolymsk Asia/Kamchatka Asia/Anadyr","RW|Africa/Maputo Africa/Kigali","SA|Asia/Riyadh","SB|Pacific/Guadalcanal","SC|Indian/Mahe","SD|Africa/Khartoum","SE|Europe/Stockholm","SG|Asia/Singapore","SH|Africa/Abidjan Atlantic/St_Helena","SI|Europe/Belgrade Europe/Ljubljana","SJ|Europe/Oslo Arctic/Longyearbyen","SK|Europe/Prague Europe/Bratislava","SL|Africa/Abidjan Africa/Freetown","SM|Europe/Rome Europe/San_Marino","SN|Africa/Abidjan Africa/Dakar","SO|Africa/Nairobi Africa/Mogadishu","SR|America/Paramaribo","SS|Africa/Juba","ST|Africa/Sao_Tome","SV|America/El_Salvador","SX|America/Curacao America/Lower_Princes","SY|Asia/Damascus","SZ|Africa/Johannesburg Africa/Mbabane","TC|America/Grand_Turk","TD|Africa/Ndjamena","TF|Indian/Reunion Indian/Kerguelen","TG|Africa/Abidjan Africa/Lome","TH|Asia/Bangkok","TJ|Asia/Dushanbe","TK|Pacific/Fakaofo","TL|Asia/Dili","TM|Asia/Ashgabat","TN|Africa/Tunis","TO|Pacific/Tongatapu","TR|Europe/Istanbul","TT|America/Port_of_Spain","TV|Pacific/Funafuti","TW|Asia/Taipei","TZ|Africa/Nairobi Africa/Dar_es_Salaam","UA|Europe/Simferopol Europe/Kiev Europe/Uzhgorod Europe/Zaporozhye","UG|Africa/Nairobi Africa/Kampala","UM|Pacific/Pago_Pago Pacific/Wake Pacific/Honolulu Pacific/Midway","US|America/New_York America/Detroit America/Kentucky/Louisville America/Kentucky/Monticello America/Indiana/Indianapolis America/Indiana/Vincennes America/Indiana/Winamac America/Indiana/Marengo America/Indiana/Petersburg America/Indiana/Vevay America/Chicago America/Indiana/Tell_City America/Indiana/Knox America/Menominee America/North_Dakota/Center America/North_Dakota/New_Salem America/North_Dakota/Beulah America/Denver America/Boise America/Phoenix America/Los_Angeles America/Anchorage America/Juneau America/Sitka America/Metlakatla America/Yakutat America/Nome America/Adak Pacific/Honolulu","UY|America/Montevideo","UZ|Asia/Samarkand Asia/Tashkent","VA|Europe/Rome Europe/Vatican","VC|America/Port_of_Spain America/St_Vincent","VE|America/Caracas","VG|America/Port_of_Spain America/Tortola","VI|America/Port_of_Spain America/St_Thomas","VN|Asia/Bangkok Asia/Ho_Chi_Minh","VU|Pacific/Efate","WF|Pacific/Wallis","WS|Pacific/Apia","YE|Asia/Riyadh Asia/Aden","YT|Africa/Nairobi Indian/Mayotte","ZA|Africa/Johannesburg","ZM|Africa/Maputo Africa/Lusaka","ZW|Africa/Maputo Africa/Harare"]}),n});
var _self=typeof window!="undefined"?window:typeof WorkerGlobalScope!="undefined"&&self instanceof WorkerGlobalScope?self:{},Prism=function(){var i=/\blang(?:uage)?-(\w+)\b/i,u=0,n=_self.Prism={util:{encode:function(i){return i instanceof t?new t(i.type,n.util.encode(i.content),i.alias):n.util.type(i)==="Array"?i.map(n.util.encode):i.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/\u00a0/g," ")},type:function(n){return Object.prototype.toString.call(n).match(/\[object (\w+)\]/)[1]},objId:function(n){return n.__id||Object.defineProperty(n,"__id",{value:++u}),n.__id},clone:function(t){var u=n.util.type(t),r,i;switch(u){case"Object":r={};for(i in t)t.hasOwnProperty(i)&&(r[i]=n.util.clone(t[i]));return r;case"Array":return t.map&&t.map(function(t){return n.util.clone(t)})}return t}},languages:{extend:function(t,i){var r=n.util.clone(n.languages[t]);for(var u in i)r[u]=i[u];return r},insertBefore:function(t,i,r,u){var e,o,s,f;if(u=u||n.languages,e=u[t],arguments.length==2){r=arguments[1];for(f in r)r.hasOwnProperty(f)&&(e[f]=r[f]);return e}o={};for(s in e)if(e.hasOwnProperty(s)){if(s==i)for(f in r)r.hasOwnProperty(f)&&(o[f]=r[f]);o[s]=e[s]}return n.languages.DFS(n.languages,function(n,i){i===u[t]&&n!=t&&(this[n]=o)}),u[t]=o},DFS:function(t,i,r,u){u=u||{};for(var f in t)t.hasOwnProperty(f)&&(i.call(t,f,t[f],r||f),n.util.type(t[f])!=="Object"||u[n.util.objId(t[f])]?n.util.type(t[f])!=="Array"||u[n.util.objId(t[f])]||(u[n.util.objId(t[f])]=!0,n.languages.DFS(t[f],i,f,u)):(u[n.util.objId(t[f])]=!0,n.languages.DFS(t[f],i,null,u)))}},plugins:{},highlightAll:function(t,i){var r={callback:i,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'},u,f,e;for(n.hooks.run("before-highlightall",r),u=r.elements||document.querySelectorAll(r.selector),f=0;e=u[f++];)n.highlightElement(e,t===!0,r.callback)},highlightElement:function(t,r,u){for(var o,h,e=t,c,f,s;e&&!i.test(e.className);)e=e.parentNode;if(e&&(o=(e.className.match(i)||[,""])[1].toLowerCase(),h=n.languages[o]),t.className=t.className.replace(i,"").replace(/\s+/g," ")+" language-"+o,e=t.parentNode,/pre/i.test(e.nodeName)&&(e.className=e.className.replace(i,"").replace(/\s+/g," ")+" language-"+o),c=t.textContent,f={element:t,language:o,grammar:h,code:c},n.hooks.run("before-sanity-check",f),!f.code||!f.grammar){n.hooks.run("complete",f);return}n.hooks.run("before-highlight",f);r&&_self.Worker?(s=new Worker(n.filename),s.onmessage=function(t){f.highlightedCode=t.data;n.hooks.run("before-insert",f);f.element.innerHTML=f.highlightedCode;u&&u.call(f.element);n.hooks.run("after-highlight",f);n.hooks.run("complete",f)},s.postMessage(JSON.stringify({language:f.language,code:f.code,immediateClose:!0}))):(f.highlightedCode=n.highlight(f.code,f.grammar,f.language),n.hooks.run("before-insert",f),f.element.innerHTML=f.highlightedCode,u&&u.call(t),n.hooks.run("after-highlight",f),n.hooks.run("complete",f))},highlight:function(i,r,u){var f=n.tokenize(i,r);return t.stringify(n.util.encode(f),u)},tokenize:function(t,i){var p=n.Token,f=[t],w=i.rest,o,s,v,it,e,h,c,r,d,ut,ot;if(w){for(o in w)i[o]=w[o];delete i.rest}n:for(o in i)if(i.hasOwnProperty(o)&&i[o])for(s=i[o],s=n.util.type(s)==="Array"?s:[s],v=0;v<s.length;++v){var u=s[v],nt=u.inside,tt=!!u.lookbehind,b=!!u.greedy,k=0,st=u.alias;for(b&&!u.pattern.global&&(it=u.pattern.toString().match(/[imuy]*$/)[0],u.pattern=RegExp(u.pattern.source,it+"g")),u=u.pattern||u,e=0,h=0;e<f.length;h+=(f[e].matchedStr||f[e]).length,++e){if(c=f[e],f.length>t.length)break n;if(!(c instanceof p)){if(u.lastIndex=0,r=u.exec(c),d=1,!r&&b&&e!=f.length-1){if(u.lastIndex=h,r=u.exec(t),!r)break;var g=r.index+(tt?r[1].length:0),rt=r.index+r[0].length,l=e,a=h;for(ut=f.length;l<ut&&a<rt;++l)a+=(f[l].matchedStr||f[l]).length,g>=a&&(++e,h=a);if(f[e]instanceof p||f[l-1].greedy)continue;d=l-e;c=t.slice(h,a);r.index-=h}if(r){tt&&(k=r[1].length);var g=r.index+k,r=r[0].slice(k),rt=g+r.length,ft=c.slice(0,g),et=c.slice(rt),y=[e,d];ft&&y.push(ft);ot=new p(o,nt?n.tokenize(r,nt):r,st,r,b);y.push(ot);et&&y.push(et);Array.prototype.splice.apply(f,y)}}}}return f},hooks:{all:{},add:function(t,i){var r=n.hooks.all;r[t]=r[t]||[];r[t].push(i)},run:function(t,i){var r=n.hooks.all[t],u,f;if(r&&r.length)for(u=0;f=r[u++];)f(i)}}},t=n.Token=function(n,t,i,r,u){this.type=n;this.content=t;this.alias=i;this.matchedStr=r||null;this.greedy=!!u},r;return(t.stringify=function(i,r,u){var f,s,e,o;if(typeof i=="string")return i;if(n.util.type(i)==="Array")return i.map(function(n){return t.stringify(n,r,i)}).join("");f={type:i.type,content:t.stringify(i.content,r,u),tag:"span",classes:["token",i.type],attributes:{},language:r,parent:u};f.type=="comment"&&(f.attributes.spellcheck="true");i.alias&&(s=n.util.type(i.alias)==="Array"?i.alias:[i.alias],Array.prototype.push.apply(f.classes,s));n.hooks.run("wrap",f);e="";for(o in f.attributes)e+=(e?" ":"")+o+'="'+(f.attributes[o]||"")+'"';return"<"+f.tag+' class="'+f.classes.join(" ")+'"'+(e?" "+e:"")+">"+f.content+"<\/"+f.tag+">"},!_self.document)?_self.addEventListener?(_self.addEventListener("message",function(t){var i=JSON.parse(t.data),r=i.language,u=i.code,f=i.immediateClose;_self.postMessage(n.highlight(u,n.languages[r],r));f&&_self.close()},!1),_self.Prism):_self.Prism:(r=document.currentScript||[].slice.call(document.getElementsByTagName("script")).pop(),r&&(n.filename=r.src,document.addEventListener&&!r.hasAttribute("data-manual")&&(document.readyState!=="loading"?window.requestAnimationFrame?window.requestAnimationFrame(n.highlightAll):window.setTimeout(n.highlightAll,16):document.addEventListener("DOMContentLoaded",n.highlightAll))),_self.Prism)}();typeof module!="undefined"&&module.exports&&(module.exports=Prism);typeof global!="undefined"&&(global.Prism=Prism);Prism.languages.markup={comment:/<!--[\w\W]*?-->/,prolog:/<\?[\w\W]+?\?>/,doctype:/<!DOCTYPE[\w\W]+?>/,cdata:/<!\[CDATA\[[\w\W]*?]]>/i,tag:{pattern:/<\/?(?!\d)[^\s>\/=$<]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/[=>"']/}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i};Prism.hooks.add("wrap",function(n){n.type==="entity"&&(n.attributes.title=n.content.replace(/&amp;/,"&"))});Prism.languages.xml=Prism.languages.markup;Prism.languages.html=Prism.languages.markup;Prism.languages.mathml=Prism.languages.markup;Prism.languages.svg=Prism.languages.markup;Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/};Prism.languages.css.atrule.inside.rest=Prism.util.clone(Prism.languages.css);Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/(<style[\w\W]*?>)[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css"}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag));Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:{pattern:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,boolean:/\b(true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/};Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,"function":/[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*\*?|\/|~|\^|%|\.{3}/});Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0,greedy:!0}});Prism.languages.insertBefore("javascript","string",{"template-string":{pattern:/`(?:\\\\|\\?[^\\])*?`/,greedy:!0,inside:{interpolation:{pattern:/\$\{[^}]+\}/,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}});Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/(<script[\w\W]*?>)[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript"}});Prism.languages.js=Prism.languages.javascript,function(n){var i=n.util.clone(n.languages.javascript),t;n.languages.jsx=n.languages.extend("markup",i);n.languages.jsx.tag.pattern=/<\/?[\w\.:-]+\s*(?:\s+[\w\.:-]+(?:=(?:("|')(\\?[\w\W])*?\1|[^\s'">=]+|(\{[\w\W]*?\})))?\s*)*\/?>/i;n.languages.jsx.tag.inside["attr-value"].pattern=/=[^\{](?:('|")[\w\W]*?(\1)|[^\s>]+)/i;t=n.util.clone(n.languages.jsx);delete t.punctuation;t=n.languages.insertBefore("jsx","operator",{punctuation:/=(?={)|[{}[\];(),.:]/},{jsx:t});n.languages.insertBefore("inside","attr-value",{script:{pattern:/=(\{(?:\{[^}]*\}|[^}])+\})/i,inside:t,alias:"language-javascript"}},n.languages.jsx.tag)}(Prism),function(){typeof self!="undefined"&&self.Prism&&self.document&&document.createRange&&(Prism.plugins.KeepMarkup=!0,Prism.hooks.add("before-highlight",function(n){if(n.element.children.length){var i=0,t=[],r=function(n,u){var e={},o,s,f;for(u||(e.clone=n.cloneNode(!1),e.posOpen=i,t.push(e)),o=0,s=n.childNodes.length;o<s;o++)f=n.childNodes[o],f.nodeType===1?r(f):f.nodeType===3&&(i+=f.data.length);u||(e.posClose=i)};r(n.element,!0);t&&t.length&&(n.keepMarkup=t)}}),Prism.hooks.add("after-highlight",function(n){if(n.keepMarkup&&n.keepMarkup.length){var t=function(n,i){for(var r,u,f=0,e=n.childNodes.length;f<e;f++){if(r=n.childNodes[f],r.nodeType===1){if(!t(r,i))return!1}else r.nodeType===3&&(!i.nodeStart&&i.pos+r.data.length>i.node.posOpen&&(i.nodeStart=r,i.nodeStartPos=i.node.posOpen-i.pos),i.nodeStart&&i.pos+r.data.length>=i.node.posClose&&(i.nodeEnd=r,i.nodeEndPos=i.node.posClose-i.pos),i.pos+=r.data.length);if(i.nodeStart&&i.nodeEnd)return u=document.createRange(),u.setStart(i.nodeStart,i.nodeStartPos),u.setEnd(i.nodeEnd,i.nodeEndPos),i.node.clone.appendChild(u.extractContents()),u.insertNode(i.node.clone),u.detach(),!1}return!0};n.keepMarkup.forEach(function(i){t(n.element,{node:i,pos:0})})}}))}();
/*!
* jQuery Cookie Plugin v1.3.1
* https://github.com/carhartl/jquery-cookie
*
* Copyright 2013 Klaus Hartl
* Released under the MIT license
*/
(function(n){typeof define=="function"&&define.amd?define(["jquery"],n):n(jQuery)})(function(n){function u(n){return n}function f(n){return decodeURIComponent(n.replace(r," "))}function i(n){n.indexOf('"')===0&&(n=n.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return t.json?JSON.parse(n):n}catch(i){}}var r=/\+/g,t=n.cookie=function(r,e,o){var l,h,s,y;if(e!==undefined)return o=n.extend({},t.defaults,o),typeof o.expires=="number"&&(l=o.expires,h=o.expires=new Date,h.setDate(h.getDate()+l)),e=t.json?JSON.stringify(e):String(e),document.cookie=[t.raw?r:encodeURIComponent(r),"=",t.raw?e:encodeURIComponent(e),o.expires?"; expires="+o.expires.toUTCString():"",o.path?"; path="+o.path:"",o.domain?"; domain="+o.domain:"",o.secure?"; secure":""].join("");var a=t.raw?u:f,v=document.cookie.split("; "),c=r?undefined:{};for(s=0,y=v.length;s<y;s++){var p=v[s].split("="),w=a(p.shift()),b=a(p.join("="));if(r&&r===w){c=i(b);break}r||(c[w]=i(b))}return c};t.defaults={};n.removeCookie=function(t,i){return n.cookie(t)!==undefined?(n.cookie(t,"",n.extend({},i,{expires:-1})),!0):!1}});
/*!
*
* Copyright (c) 2014, Acid Media, Inc.
* All rights reserved.
*
* Redistribution and use in any form, with or without modification,
* are not permitted.
*
*/;
if("undefined"==typeof jQuery)throw new Error("Bootstrap requires jQuery");!function(n){"use strict";n.fn.emulateTransitionEnd=function(t){var i=!1,r=this;n(this).one(n.support.transition.end,function(){i=!0});return setTimeout(function(){i||n(r).trigger(n.support.transition.end)},t),this};n(function(){n.support.transition=function(){var i=document.createElement("bootstrap"),n={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var t in n)if(void 0!==i.style[t])return{end:n[t]}}()})}(jQuery),function(n){"use strict";var t=function(i,r){this.$element=n(i);this.options=n.extend({},t.DEFAULTS,r);this.transitioning=null;this.options.parent&&(this.$parent=n(this.options.parent));this.options.toggle&&this.toggle()},i;t.DEFAULTS={toggle:!0};t.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"};t.prototype.show=function(){var u,t,r,i,f,e;if(!this.transitioning&&!this.$element.hasClass("in")&&(u=n.Event("show.bs.collapse"),this.$element.trigger(u),!u.isDefaultPrevented())){if(t=this.$parent&&this.$parent.find("> .panel > .in"),t&&t.length){if(r=t.data("bs.collapse"),r&&r.transitioning)return;t.collapse("hide");r||t.data("bs.collapse",null)}if(i=this.dimension(),this.$element.removeClass("collapse").addClass("collapsing")[i](0),this.transitioning=1,f=function(){this.$element.removeClass("collapsing").addClass("in")[i]("auto");this.transitioning=0;this.$element.trigger("shown.bs.collapse")},!n.support.transition)return f.call(this);e=n.camelCase(["scroll",i].join("-"));this.$element.one(n.support.transition.end,n.proxy(f,this)).emulateTransitionEnd(350)[i](this.$element[0][e])}};t.prototype.hide=function(){var i,t,r;if(!this.transitioning&&this.$element.hasClass("in")&&(i=n.Event("hide.bs.collapse"),this.$element.trigger(i),!i.isDefaultPrevented())){if(t=this.dimension(),this.$element[t](this.$element[t]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1,r=function(){this.transitioning=0;this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")},!n.support.transition)return r.call(this);this.$element[t](0).one(n.support.transition.end,n.proxy(r,this)).emulateTransitionEnd(350)}};t.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};i=n.fn.collapse;n.fn.collapse=function(i){return this.each(function(){var r=n(this),u=r.data("bs.collapse"),f=n.extend({},t.DEFAULTS,r.data(),"object"==typeof i&&i);u||r.data("bs.collapse",u=new t(this,f));"string"==typeof i&&u[i]()})};n.fn.collapse.Constructor=t;n.fn.collapse.noConflict=function(){return n.fn.collapse=i,this};n(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(t){var e,i=n(this),s=i.attr("data-target")||t.preventDefault()||(e=i.attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,""),r=n(s),u=r.data("bs.collapse"),h=u?"toggle":i.data(),f=i.attr("data-parent"),o=f&&n(f);u&&u.transitioning||(o&&o.find('[data-toggle=collapse][data-parent="'+f+'"]').not(i).addClass("collapsed"),i[r.hasClass("in")?"addClass":"removeClass"]("collapsed"));r.collapse(h)})}(jQuery),function(n){"use strict";function t(t){n(t).on("click.bs.dropdown",this.toggle)}function r(){n(".dropdown-backdrop").remove();n(i).each(function(t){var i=u(n(this));i.hasClass("open")&&(i.trigger(t=n.Event("hide.bs.dropdown")),t.isDefaultPrevented()||i.removeClass("open").trigger("hidden.bs.dropdown"))})}function u(t){var i=t.attr("data-target"),r=(i=i||(i=t.attr("href"))&&/#/.test(i)&&i.replace(/.*(?=#[^\s]*$)/,""))&&n(i);return r&&r.length?r:t.parent()}var i="[data-toggle=dropdown]",f;t.prototype.toggle=function(t){var f=n(this),i,e;if(!f.is(".disabled, :disabled")){if(i=u(f),e=i.hasClass("open"),r(),!e){if("ontouchstart"in document.documentElement&&!i.closest(".navbar-nav").length&&n('<div class="dropdown-backdrop"/>').insertAfter(n(this)).on("click",r),i.trigger(t=n.Event("show.bs.dropdown")),t.isDefaultPrevented())return;i.toggleClass("open").trigger("shown.bs.dropdown");f.focus()}return!1}};t.prototype.keydown=function(t){var e,o,s,f,r;if(/(38|40|27)/.test(t.keyCode)&&(e=n(this),t.preventDefault(),t.stopPropagation(),!e.is(".disabled, :disabled"))){if(o=u(e),s=o.hasClass("open"),!s||s&&27==t.keyCode)return 27==t.which&&o.find(i).focus(),e.click();f=n("[role=menu] li:not(.divider):visible a",o);f.length&&(r=f.index(f.filter(":focus")),38==t.keyCode&&0<r&&r--,40==t.keyCode&&r<f.length-1&&r++,~r||(r=0),f.eq(r).focus())}};f=n.fn.dropdown;n.fn.dropdown=function(i){return this.each(function(){var r=n(this),u=r.data("bs.dropdown");u||r.data("bs.dropdown",u=new t(this));"string"==typeof i&&u[i].call(r)})};n.fn.dropdown.Constructor=t;n.fn.dropdown.noConflict=function(){return n.fn.dropdown=f,this};n(document).on("click.bs.dropdown.data-api",r).on("click.bs.dropdown.data-api",".dropdown form",function(n){n.stopPropagation()}).on("click.bs.dropdown.data-api",i,t.prototype.toggle).on("keydown.bs.dropdown.data-api",i+", [role=menu]",t.prototype.keydown)}(jQuery),function(n){"use strict";var t=function(i,r){this.options=n.extend({},t.DEFAULTS,r);this.$window=n(window).on("scroll.bs.affix.data-api",n.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",n.proxy(this.checkPositionWithEventLoop,this));this.$element=n(i);this.affixed=this.unpin=null;this.checkPosition()},i;t.RESET="affix affix-top affix-bottom";t.DEFAULTS={offset:0};t.prototype.checkPositionWithEventLoop=function(){setTimeout(n.proxy(this.checkPosition,this),1)};t.prototype.checkPosition=function(){var i;if(this.$element.is(":visible")){var s=n(document).height(),e=this.$window.scrollTop(),o=this.$element.offset(),r=this.options.offset,f=r.top,u=r.bottom;"object"!=typeof r&&(u=f=r);"function"==typeof f&&(f=r.top());"function"==typeof u&&(u=r.bottom());i=!(null!=this.unpin&&e+this.unpin<=o.top)&&(null!=u&&o.top+this.$element.height()>=s-u?"bottom":null!=f&&e<=f&&"top");this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?o.top-e:null,this.$element.removeClass(t.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-u-this.$element.height()}))}};i=n.fn.affix;n.fn.affix=function(i){return this.each(function(){var u=n(this),r=u.data("bs.affix"),f="object"==typeof i&&i;r||u.data("bs.affix",r=new t(this,f));"string"==typeof i&&r[i]()})};n.fn.affix.Constructor=t;n.fn.affix.noConflict=function(){return n.fn.affix=i,this};n(window).on("load",function(){n('[data-spy="affix"]').each(function(){var i=n(this),t=i.data();t.offset=t.offset||{};t.offsetBottom&&(t.offset.bottom=t.offsetBottom);t.offsetTop&&(t.offset.top=t.offsetTop);i.affix(t)})})}(jQuery),function(n){"use strict";function t(t){this.element=n(t)}t.prototype.show=function(){var t=this.element,e=t.closest("ul:not(.dropdown-menu)"),i=t.data("target"),r,u,f;(i=i||(i=t.attr("href"))&&i.replace(/.*(?=#[^\s]*$)/,""),t.parent("li").hasClass("active"))||(r=e.find(".active:last a")[0],u=n.Event("show.bs.tab",{relatedTarget:r}),(t.trigger(u),u.isDefaultPrevented())||(f=n(i),this.activate(t.parent("li"),e),this.activate(f,f.parent(),function(){t.trigger({type:"shown.bs.tab",relatedTarget:r})})))};t.prototype.activate=function(t,i,r){function e(){u.removeClass("active").find("> .dropdown-menu > .active").removeClass("active");t.addClass("active");f?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade");t.parent(".dropdown-menu")&&t.closest("li.dropdown").addClass("active");r&&r()}var u=i.find("> .active"),f=r&&n.support.transition&&u.hasClass("fade");f?u.one(n.support.transition.end,e).emulateTransitionEnd(150):e();u.removeClass("in")};var i=n.fn.tab;n.fn.tab=function(i){return this.each(function(){var u=n(this),r=u.data("bs.tab");r||u.data("bs.tab",r=new t(this));"string"==typeof i&&r[i]()})};n.fn.tab.Constructor=t;n.fn.tab.noConflict=function(){return n.fn.tab=i,this};n(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(t){t.preventDefault();n(this).tab("show")})}(jQuery);
window.location.hash&&window.location.hash[1]=="?"&&(window.location.hash=window.location.hash.replace("#?","#"));angular.module("demoApp",[]).config(["$interpolateProvider",function(n){n.startSymbol("[[");n.endSymbol("]]")}]).controller("DemoCtrl",["$scope","$timeout",function(n,t){var f,e={theme:!0,themeVariant:!0,lang:!0,touchUi:!0},i={},r,s=$("#demo"),h=$("body"),c=$("#mobilemenu"),l=$("#mobilemenuph"),a=$("#mobilemenugr"),u=$("#mobilemenuctrl"),v=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,o={lang:MS.demopage.defaultLanguag||"en",display:MS.demopage.component=="listview"||MS.demopage.component=="forms"?"inline":MS.demopage.component=="menustrip"?"top":v>=768?"bubble":undefined};Tracker.track("Demo Page",{Component:MS.demopage.component,Demo:MS.demopage.name,Framework:MS.demopage.framework,Version:MS.demopage.version,Fullscreen:!0});MS.mobile||MS.demopage.common(n,t,!0);n.selectedLang=MS.demopage.langs[MS.defLanguage]||MS.demopage.langs.en;n.demo=MS.demopage.name;n.doInit=!0;n.isControlViewVisible=!0;n.version=MS.demopage.version;n.framework=MS.demopage.framework;n.theme=i.theme==undefined?mobiscroll.autoTheme==undefined||!MS.mobile?"ios":mobiscroll.autoTheme:i.theme;n.themeVariant=i.themeVariant==undefined?"light":i.themeVariant;n.touchUi=i.touchUi==undefined?MS.demopage.component=="select"?!1:!0:i.touchUi=="auto"?"auto":i.touchUi!="false";n.display=o.display;n.lang=i.lang==undefined?o.lang:i.lang;n.init=function(){MS.demopage.init(n)};n.toggleSettings=function(){n.isSettingsVisited=!0;n.showActionMenuPopup=!1;n.isSettingsVisible?i.modal=="Settings"&&(r=!0,window.history.back()):(r=!0,$.bbq.pushState({modal:"Settings"}));t(function(){n.isSettingsVisible=!n.isSettingsVisible},50)};n.showDemo=function(){!n.isSettingVisible&&n.settingChanged&&(s.mobiscroll("show"),n.settingChanged=!1)};n.toggleControlView=function(){u.removeClass("mobile-demo-menu-control-view-v");n.isControlViewVisible=!n.isControlViewVisible;n.isControlViewVisible&&u.show().scrollTop(0)};n.navigateToControl=function(i){var r=$("#"+$(i.currentTarget).data("hash"))[0];n.toggleControlView();n.menuPHeight=Math.max(0,c[0].offsetHeight-50+r.offsetTop-a[0].offsetHeight);l.height(n.menuPHeight);t(function(){h.scrollTop(r.offsetTop)})};n.loadDemoWithHash=function(n,u,f){f.preventDefault();i.modal&&(r=!0,window.history.back());t(function(){window.location.href="//demo."+MS.baseUrl+(MS.demopage.urlVersion?"/"+MS.demopage.urlVersion:"")+"/fullscreen/"+u+"/"+n+window.location.hash},300)};n.goBackDemoWithHash=function(n,t,r){var u=$(r.currentTarget),f=u.attr("href");i.modal=undefined;t==MS.demopage.democategory&&(r.preventDefault(),$rootScope.setOption("demo",n));u.attr("href",$.param.fragment(f,$.extend({},i),2))};n.showOption=function(u){i.modal&&(r=!0,window.history.back());$("body").addClass("demo-modal-content");t(function(){r=!0;$.bbq.pushState({modal:u});t(function(){var i=$(".mobile-demo-menu")[0];t(function(){i.style.display="none";i.offsetHeight;i.style.display=""},200);n["is"+u+"Visible"]=!0;n.isSettingsVisible=!1},50);$("body").scrollTop(0)},50)};n.setOption=function(u,f){n["is"+u+"Visible"]=!1;$("body").removeClass("demo-modal-content");t(function(){i.modal==u&&(r=!0,window.history.back());t(function(){var i={};i[u]=f;$.bbq.pushState(i);t(function(){n.locationChanged||n.showDemo()})},50)},300)};n.selectOptions={display:"inline",context:"body",theme:"mobiscroll",cssClass:"mobile-demo-setting",layout:"liquid",rows:100,dataText:"Text",dataValue:"Value",showInput:!1,onValueTap:function(t){var i=this;t.hasClass("dw-sel")&&n.$apply(function(){n.setOption($(i).attr("data-target"),t.attr("data-val"))})},onItemTap:function(t){var r=this,i=$(t.target);i.hasClass("mbsc-sc-itm-sel")&&n.$apply(function(){n.setOption($(r).attr("data-target"),i.attr("data-val"))})}};$(window).on("hashchange",function(){n.$apply(function(){var o=$.bbq.getState(),s,u,h,c,f;if(r){i=$.bbq.getState();r=!1;return}!r&&o.modal&&(r=!0,$.bbq.removeState("modal"));i.modal&&i.modal!=o.modal&&(n["is"+i.modal+"Visible"]=!1,$("body").removeClass("demo-modal-content"));i=$.bbq.getState();n.hideMenu=o.hidemenu!=undefined;$.each(i,function(t,i){n[t]=i});$.each(["theme","themeVariant","touchUi","display","lang"],function(t,i){n["temp"+i]=n[i];i=="lang"&&(n.selectedLang=MS.demopage.langs[n[i]])});n.setTheme=function(t){n.theme=t;n.setOption("theme",n.theme)};n.setThemeVariant=function(t){n.themeVariant=t;n.setOption("themeVariant",n.themeVariant)};$.each(e,function(t){t=="framework"&&(n.framework=="react"||n.framework=="ember")?$(".demo-download-submit").attr("disabled","disabled").addClass("disabled"):(t=="framework"&&$(".demo-download-submit").removeAttr("disabled").removeClass("disabled"),$(".demo-download-"+t).val(n[t]))});MS.mobile||MS.demopage.version=="v5"||(s=window.location.hash,$('input[name="SourceUrl"]').each(function(){var n=$(this).val(),t=n.indexOf("#");t>=0&&(n=n.substring(0,t));$(this).val(n+s)}),u=$(".js-download-sign-in").attr("href"),$(".demo-download-demo").val(n.demo),u&&(h=u.indexOf("#"),h>=0&&(u=u.substring(0,h)),$(".js-download-sign-in").attr("href",u+s)),MS.autoDownload&&(MS.demopage.frLicenses.indexOf(n.framework)!==-1&&MS.demopage.activeMaintenance||MS.demopage.hasActiveTrial!=!1?(MS.demopage.isIonic==!0?n.showIonicInstall(MS.demopage.demoID):MS.demopage.isIonicReact==!0?n.showIonicReactInstall(MS.demopage.demoID):(c=$(".getdemos-form").eq(0),f=document.createElement("iframe"),f.setAttribute("style","display: none;"),f.src=c.attr("action")+"?"+c.serialize(),document.body.appendChild(f),Tracker.track("Fullscreen Demo Download",{Component:MS.demopage.component,Demo:MS.demopage.demo,Framework:MS.demopage.framework,Version:MS.demopage.version}),t(function(){n.framework=="angular"?window.downloadAngularSuccessWindow.show():n.framework=="react"?window.downloadReactSuccessWindow.show():($("#follow-guide").attr("href","//docs."+MS.baseUrl+"/"+n.framework),window.downloadSuccessWindow.show())},300)),MS.autoDownload=!1):$("#trialInfoFormRolling").submit()))});t.cancel(f);f=t(function(){n.country=MS.demopage.countries[n.lang];$.mobiscroll&&!$.mobiscroll.themes.frame[n.theme]?n.theme="mobiscroll":n.doInit&&(n.init(),n.doInit=!1)},300)});$.each(e,function(t,i){n.$watch(t,function(r,u){if(r!==u&&u!==undefined&&(n.doInit=i,t=="display")){var f={};f[t]=r;$.bbq.pushState(f)}})});n.$watch("theme",function(i){if(i){var r=i=="bootstrap"||i=="jqm"?i:"";r!==MS.demopage.theme&&(n.doInit=!1,t(function(){window.location.href="//demo."+MS.baseUrl+(MS.demopage.urlVersion?"/"+MS.demopage.urlVersion:"")+"/fullscreen/"+MS.demopage.component+"/"+MS.demopage.name+window.location.hash}))}});t(function(){$(window).trigger("hashchange")});$(function(){$(".demo-menu-select").mobiscroll().select(n.selectOptions);$(".mobile-demo-menu-item-js").click(function(t){n.loadDemoWithHash(this.getAttribute("data-demo"),this.getAttribute("data-component"),t)});u.on("animationend webkitAnimationEnd",function(){n.isControlViewVisible||u.hide()});$(".mbsc-float-menu").on("touchmove",function(n){n.preventDefault()})})}]);
MS.demopage.common=function(n,t,i){function f(n){n?(r.find(".submit-txt").hide(),r.find(".loader").addClass("loading")):(r.find(".submit-txt").show(),r.find(".loader").removeClass("loading"))}function u(n){n?(r.find(".trial-starter-submit").removeAttr("disabled"),f(!1)):(f(!0),r.find(".trial-starter-submit").attr("disabled","disabled"))}function o(n){var t,i=n.textContent,r="Copied",u=new Clipboard(n);u.on("success",function(){$(n).hasClass("copy-code-btn")?($(n).addClass("hide-icon"),n.textContent=$(n).parent().siblings(".active").text()+"copied"):n.textContent=r;clearTimeout(t);t=setTimeout(function(){$(n).hasClass("copy-code-btn")&&$(n).removeClass("hide-icon");n.textContent=i},2e3)})}var r,e;$(".trial-info-form").each(function(){function u(n){n?(i.find(".submit-txt").hide(),i.find(".loader").addClass("loading")):(i.find(".submit-txt").show(),i.find(".loader").removeClass("loading"))}function r(n){n?(i.find(".trial-starter-submit").removeAttr("disabled"),u(!1)):(u(!0),i.find(".trial-starter-submit").attr("disabled","disabled"))}var i=$(this);i!==undefined&&i.length&&t(function(){i.mobiscroll().form({theme:"material-blue"})});i.removeData("validator");i.removeData("unobtrusiveValidation");i.keydown(function(n){(n.keyCode==13||n.keyCode==27)&&n.stopPropagation()}).submit(function(t){return t.stopPropagation(),t.preventDefault(),i.valid()&&n.frPicked&&(r(!1),$.ajax({url:i.attr("action"),type:"POST",data:i.serialize(),success:function(n){if(n.success==!0)window.location.href=n.redirectUrl;else if(n.errorMessage){i.find(".trial-starter-input").addClass("input-validation-message");var t=$('<div class="input-validation-message">'+n.errorMessage+"<\/div>");i.find(".input-validation-cont").append(t);r(!0)}else window.location.href=n.redirectUrl},error:function(){r(!0)}})),!1}).validate({onkeyup:!1,rules:{email:{required:!0,email:!0}},messages:{email:{required:"Email address required",email:"Email address is not in the correct format, try something like 'you@yours.com'"}},errorElement:"div",errorClass:"mbsc-err-msg",errorPlacement:function(n,t){t.parent().append(n)},highlight:function(n){$(n).closest(".mbsc-input").addClass("mbsc-err")},unhighlight:function(n){$(n).closest(".mbsc-input").removeClass("mbsc-err")}})});r=$("#trialInfoFormRolling");r!==undefined&&r.length&&t(function(){r.mobiscroll().form({theme:"material-blue"})});r.removeData("validator");r.removeData("unobtrusiveValidation");r.keydown(function(n){(n.keyCode==13||n.keyCode==27)&&n.stopPropagation()}).submit(function(t){return t.stopPropagation(),t.preventDefault(),r.valid()&&n.frPicked&&(u(!1),$.ajax({url:r.attr("action"),type:"POST",data:r.serialize(),success:function(n){if(n.success==!0)window.location.href=n.redirectUrl;else if(n.errorMessage){r.find(".trial-starter-input").addClass("input-validation-message");var t=$('<div class="input-validation-message">'+n.errorMessage+"<\/div>");r.find(".input-validation-cont").append(t);u(!0)}else window.location.href=n.redirectUrl},error:function(){u(!0)}})),!1}).validate({onkeyup:!1,rules:{email:{required:!0,email:!0}},messages:{email:{required:"Email address required",email:"Email address is not in the correct format, try something like 'you@yours.com'"}},errorElement:"div",errorClass:"mbsc-err-msg",errorPlacement:function(n,t){t.parent().append(n)},highlight:function(n){$(n).closest(".mbsc-input").addClass("mbsc-err")},unhighlight:function(n){$(n).closest(".mbsc-input").removeClass("mbsc-err")}});MS.demopage.version!="v2"&&MS.demopage.version!="v3"&&(e=$("#ionic-video").mobiscroll().popup({theme:"ios",display:"bubble",anchor:"#show-ionic-video",showOverlay:!1,buttons:[],cssClass:"mbsc-no-padding"}).mobiscroll("getInst"),n.video="component",n.stepNr=1,n.nextStep=function(t){n.stepNr=t},n.showVideo=function(){var i=$(".ionic-js-video-"+n.video),t;if(!i.length){switch(n.video){case"component":t="https://player.vimeo.com/video/335123487";break;case"template":t="https://player.vimeo.com/video/335367993";break;case"css":t="https://player.vimeo.com/video/335370451";break;case"module":t="https://player.vimeo.com/video/335373359"}$("#ionic-video").append('<iframe class="ionic-help-video ionic-js-video-'+n.video+'" src='+t+' width="900" height="506" frameborder="0" fullscreen allowfullscreen><\/iframe>')}i.removeClass("hide");$(".ionic-help-video:not(.ionic-js-video-"+n.video+")").addClass("hide");e.show()});n.showIonicInstall=function(t){$.ajax({url:"/getdemocode/"+(MS.demopage.version||"v4")+"/ionic/"+t,success:function(t){t.Js.indexOf("import { mobiscroll")>-1&&(t.Js="/* Import Mobiscroll from the package */<br>"+t.Js);t.Js=t.Js.replace("AppComponent {","AppComponent {<br>    // Place the code below into your own component or use the full template<br>").replace("AppComponent implements OnInit {","AppComponent implements OnInit {<br>    // Place the code below into your own component or use the full template<br>");t.Module=t.Module.replace("../lib/mobiscroll/js/mobiscroll.angular.min.js","@mobiscroll/angular");$("#ionic-source-js").toggle(!!t.Js).find("code").html(t.Js);$("#ionic-source-html").toggle(!!t.Markup).find("code").html(t.Markup);$("#ionic-source-css").toggle(!!t.Css).find("code").html(t.Css);$("#ionic-source-module").toggle(!!t.Module).find("code").html(t.Module);$("#ionic-tabs").find(".js-ionic-code-css").toggle(!!t.Css);$("#ionic-codes").find("code").removeClass("prism-highlighted");n.updateDemoCodeDynamicValues($("#ionic-codes")[0]);$("#ionic-codes .code-snippet-link").length!==0&&$("#ionic-codes .code-snippet-link").each(function(){var n=$(this).attr("href");n=n.replace("ionic","angular");$(this).attr("href",n)});t.Css?n.$apply(function(){n.hasCss=!0}):(n.$apply(function(){n.hasCss=!1}),$("#ionic-code-css").hasClass("active")&&$("#ionic-tabs").find('a[href="#ionic-code-js"]').tab("show"));Prism.highlightElement($("#ionic-codes").find(".tab-pane.active").find("code")[0])}});n.showInstructions=!1;setTimeout(function(){window.installIonicAngularWindow.show()},300)};n.showIonicReactInstall=function(t){$.ajax({url:"/getdemocode/"+(MS.demopage.version||"v4")+"/ionicreact/"+t,success:function(t){$("#ionic-react-source-js").toggle(!!t.Js).find("code").html(t.Js);$("#ionic-react-source-css").toggle(!!t.Css).find("code").html(t.Css);$("#ionic-react-tabs").find(".js-ionic-react-code-css").toggle(!!t.Css);$("#ionic-react-codes").find("code").removeClass("prism-highlighted");n.updateDemoCodeDynamicValues($("#ionic-react-codes")[0]);t.Css||$("#ionic-react-code-css").hasClass("active")&&$("#ionic-react-tabs").find('a[href="#ionic-react-code-js"]').tab("show");$("#ionic-react-codes .code-snippet-link").length!==0&&$("#ionic-react-codes .code-snippet-link").each(function(){var n=$(this).attr("href");n=n.replace("ionic-react","react");$(this).attr("href",n)});t.Css?n.$apply(function(){n.hasCss=!0}):(n.$apply(function(){n.hasCss=!1}),$("#ionic-code-css").hasClass("active")&&$("#ionic-tabs").find('a[href="#ionic-code-js"]').tab("show"));Prism.highlightElement($("#ionic-react-codes").find(".tab-pane.active").find("code")[0])}});n.showInstructions=!1;setTimeout(function(){window.installIonicReactWindow.show()},300)};n.showAngularInstall=function(){var t,r=n.demo||MS.demopage.firstDemo;t=i?MS.demopage.demoID:n.demos[r].id;n.closeAngularChoose();$.ajax({url:"/getdemocode/"+(MS.demopage.version||"v4")+"/angular/"+t,success:function(t){t.Module=t.Module.replace("../lib/mobiscroll/js/mobiscroll.angular.min.js","@mobiscroll/angular");$("#angular-source-js").toggle(!!t.Js).find("code").html(t.Js);$("#angular-source-html").toggle(!!t.Markup).find("code").html(t.Markup);$("#angular-source-css").toggle(!!t.Css).find("code").html(t.Css);$("#angular-source-module").toggle(!!t.Module).find("code").html(t.Module);$("#angular-tabs").find('a[href="#angular-code-css"]').toggle(!!t.Css);$("#angular-codes").find("code").removeClass("prism-highlighted");n.updateDemoCodeDynamicValues($("#angular-codes")[0]);t.Css?n.$apply(function(){n.hasCss=!0}):(n.$apply(function(){n.hasCss=!1}),$("#angular-code-css").hasClass("active")&&$("#angular-tabs").find('a[href="#angular-code-js"]').tab("show"));Prism.highlightElement($("#angular-codes").find(".tab-pane.active").find("code")[0])}});setTimeout(function(){window.installAngularWindow.show()},300)};n.downloadDemos=function(){!MS.demopage.noAvailableTrial||MS.demopage.frLicenses&&MS.demopage.frLicenses.indexOf(n.framework)!==-1&&MS.demopage.activeMaintenance?window.downloadDemosWindow.show():window.noTrialAvailable.show()};n.downloadFrameworkDemos=function(t){MS.needsTrial?!MS.demopage.noAvailableTrial||MS.demopage.frLicenses&&MS.demopage.frLicenses.indexOf(n.framework)!==-1&&MS.demopage.activeMaintenance?(n.pickFramework(t),window.downloadFrameworkDemosWindow.show()):window.noTrialAvailable.show():(n.pickFramework(t),n.downloadDemosSignedIn())};n.needHelp=function(){Intercom("show")};n.pickFramework=function(t){var u="//demo."+MS.baseUrl+"/download/"+t+"/"+MS.demopage.component+"/"+n.demo,r=t.charAt(0).toUpperCase()+t.slice(1),f="//demo."+MS.baseUrl+"/"+(i?"fullscreen":t)+"/"+MS.demopage.component+"/"+n.demo+window.location.hash;$(".js-download-sign-in").attr("href",u);$(".trial-info-form-js input[name='Framework']").val(r);$('.trial-info-form-js input[name="SourceUrl"]').val(f);$(".getdemos-form input[name='Framework']").val(r);n.frPicked=t;n.hasLicenseOrTrial=MS.demopage.frLicenses&&MS.demopage.frLicenses.indexOf(n.frPicked=="ionic"?"angular":n.frPicked)!==-1&&MS.demopage.activeMaintenance||MS.demopage.hasActiveTrial};n.downloadDemosSignedIn=function(){if(n.frPicked){if(n.frPicked=="ionic")if(MS.demopage.frLicenses.indexOf("angular")!==-1&&MS.demopage.activeMaintenance||MS.demopage.hasActiveTrial!=!1){var t,r=n.demo||MS.demopage.firstDemo;t=i?MS.demopage.demoID:n.demos[r].id;n.showIonicInstall(t)}else $("#trialInfoFormRolling").submit();else n.frPicked=="angular"?MS.demopage.frLicenses.indexOf("angular")!==-1&&MS.demopage.activeMaintenance||MS.demopage.hasActiveTrial!=!1?window.chooseAngularWindow.show():$("#trialInfoFormRolling").submit():MS.demopage.frLicenses.indexOf(n.frPicked)!==-1&&MS.demopage.activeMaintenance||MS.demopage.hasActiveTrial!=!1?($.get("//demo."+MS.baseUrl+"/isuserloggedin",function(t){t.success?n.frPicked=="react"?window.downloadReactSuccessWindow.show():($("#follow-guide").attr("href","//docs."+MS.baseUrl+"/"+n.frPicked),window.downloadSuccessWindow.show()):setTimeout(function(){location.reload()},500)}),$(".getdemos-form.getdemos-all").submit()):$("#trialInfoFormRolling").submit();window.downloadDemosWindow.isOpen&&window.downloadDemosWindow.hide()}};n.changePass=function(n){n.preventDefault();changePassWindow.show()};n.downloadFormDemos=function(){if(n.frPicked){if(n.frPicked=="ionic"){var t=n.currentState.demo||MS.demopage.firstDemo;n.showIonicInstall(n.demos[t].id)}else n.frPicked=="angular"?window.chooseAngularWindow.show():($(".getdemos-form.getdemos-all").submit(),n.frPicked=="react"?window.downloadReactSuccessWindow.show():window.downloadSuccessWindow.show());window.downloadFreeWindow.hide()}};n.closeIonicInstall=function(){window.installIonicAngularWindow.hide();setTimeout(function(){n.nextStep(1)})};n.closeIonicReactInstall=function(){window.installIonicReactWindow.hide();setTimeout(function(){n.nextStep(1)})};n.closeAngularInstall=function(){window.installAngularWindow.hide();setTimeout(function(){n.nextStep(1)})};n.closeAngularChoose=function(){window.chooseAngularWindow.hide();setTimeout(function(){n.nextStep(1)})};n.downloadAngular=function(){n.closeAngularChoose();$.get("//demo."+MS.baseUrl+"/isuserloggedin",function(n){n.success?window.downloadAngularSuccessWindow.show():setTimeout(function(){location.reload()},500)});$(".getdemos-form.getdemos-all").submit()};n.angularInstructions=function(){};n.downloadKS=function(){window.location.href="//download."+MS.baseUrl+"/starter/angular/ionic-kitchen-sink";window.installIonicAngularWindow.hide();setTimeout(function(){window.downloadSuccessWindowIonic.show()},300);Tracker.track("Ionic kitchen sink download",{})};n.updateDemoCodeDynamicValues=function(t){for(var i,e,s=(t||document).querySelectorAll(".demo-dynamic-data"),r,f,o,u=0;u<s.length;++u){i=s[u];e=i.getAttribute("data-prop");switch(e){case"display":MS.demopage.component!=="listview"&&MS.demopage.component!=="forms"?i.textContent=n.display:i.parentNode.parentNode.style.display="none";break;case"theme":i.textContent=n.themeVariant?n.theme.replace(/-dark/,""):n.theme;break;case"themeVariant":n.themeVariant?(i.style.display="inline",i.querySelector(".demo-dynamic-themeVariant").textContent=n.themeVariant):i.style.display="none";break;case"lang-react":case"lang":r=i.innerHTML;f=r[0]!=","&&r.indexOf(",")==-1;n.framework=="react"&&(f=f&&e=="lang-react");f&&i.nextSibling&&(o=i.nextSibling.textContent.indexOf(",")!=-1?i.nextSibling:i.nextSibling.nextSibling,o.textContent=o.textContent.replace(",",""),r+=",");n.showLang?(i.innerHTML=r,i.querySelector(".demo-dynamic-lang").textContent=n.lang,i.style.display="inline"):i.style.display="none";break;case"extra":i.style.display="none";break;case"inline":n.display!="inline"&&(i.style.display="none");break;case"modal":i.style.display=n.display=="inline"?"none":"block"}}};i&&MS.demopage.version&&MS.demopage.version!="v4"&&!MS.demopage.version!="v5"||$(".copy-btn").each(function(n,t){o(t)});$(".demo-code-btn-cont a").click(function(){var i=$(this),t=i.closest(".demo-code-cont"),u=i.attr("href"),f=t.find(".copy-code-btn"),e="#"+$(u+" pre").attr("id"),r=t.find(".show-more"),n=t.find(".tab-content");f.attr("data-clipboard-target",e);setTimeout(function(){n.height()<500?(r.hide(),n.removeClass("demo-scroll-hide")):n.hasClass("hide-show-more")||(r.show(),n.removeClass("show-full-content").addClass("demo-scroll-hide"))})})};
$(function(){function i(n){r=n;$(".pass-change").toggle()}function t(){$(".user-info").toggle()}function u(){window.changePassWindow?window.changePassWindow.onHide=function(){r&&setTimeout(function(){i(!1);$("#password-input").val("")},300)}:setTimeout(u,300)}var r,n=$("#userInfoFormPass");MS.demopage&&MS.demopage.version=="v5"?n.submit(function(r){return r.stopPropagation(),r.preventDefault(),n.valid()&&(t(!0),$.ajax({url:"/changepassword",type:"POST",data:n.serialize(),success:function(n){n.success==!0?(t(!1),i(!0)):t(!1)},error:function(){t(!1)}})),!1}).validate({onkeyup:!1,errorClass:"install-dialog-pass-error",rules:{password:{required:!0,minlength:6}},messages:{password:{minlength:"Enter at least 6 characters"}},highlight:function(n){$(n).closest(".dialog-form-group").addClass("install-dialog-error")},unhighlight:function(n){$(n).closest(".dialog-form-group").removeClass("install-dialog-error")}}):n.on("submit",function(r){$(this).valid()&&(r.preventDefault(),t(!0),$.ajax({url:"/changepassword",type:"POST",data:n.serialize(),success:function(n){n.success==!0?(t(!1),i(!0)):t(!1)},error:function(){t(!1)}}))}).validate({errorClass:"mbsc-err-msg",errorPlacement:function(n,t){t.parent().append(n)},highlight:function(n){$(n).closest(".mbsc-input").addClass("mbsc-err")},unhighlight:function(n){$(n).closest(".mbsc-input").removeClass("mbsc-err")},messages:{password:{required:"Password is required",minlength:"Enter at least 6 characters"}}});u();n!==undefined&&n.length&&MS.demopage&&MS.demopage.version!="v5"&&setTimeout(function(){n.mobiscroll().form({theme:"material-blue"}).mobiscroll("getInst")});$("#userInfoFormPass").keydown(function(t){t.keyCode==13&&(t.stopPropagation(),n.submit())})});
/*!
 * clipboard.js v1.7.1
 * https://zenorocha.github.io/clipboard.js
 *
 * Licensed MIT © Zeno Rocha
 */
!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.Clipboard=t()}}(function(){var t,e,n;return function t(e,n,o){function i(a,c){if(!n[a]){if(!e[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:{}};e[a][0].call(u.exports,function(t){var n=e[a][1][t];return i(n||t)},u,u.exports,t,e,n,o)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a<o.length;a++)i(o[a]);return i}({1:[function(t,e,n){function o(t,e){for(;t&&t.nodeType!==i;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}}var i=9;if("undefined"!=typeof Element&&!Element.prototype.matches){var r=Element.prototype;r.matches=r.matchesSelector||r.mozMatchesSelector||r.msMatchesSelector||r.oMatchesSelector||r.webkitMatchesSelector}e.exports=o},{}],2:[function(t,e,n){function o(t,e,n,o,r){var a=i.apply(this,arguments);return t.addEventListener(n,a,r),{destroy:function(){t.removeEventListener(n,a,r)}}}function i(t,e,n,o){return function(n){n.delegateTarget=r(n.target,e),n.delegateTarget&&o.call(t,n)}}var r=t("./closest");e.exports=o},{"./closest":1}],3:[function(t,e,n){n.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},n.nodeList=function(t){var e=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===e||"[object HTMLCollection]"===e)&&"length"in t&&(0===t.length||n.node(t[0]))},n.string=function(t){return"string"==typeof t||t instanceof String},n.fn=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},{}],4:[function(t,e,n){function o(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!c.string(e))throw new TypeError("Second argument must be a String");if(!c.fn(n))throw new TypeError("Third argument must be a Function");if(c.node(t))return i(t,e,n);if(c.nodeList(t))return r(t,e,n);if(c.string(t))return a(t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function i(t,e,n){return t.addEventListener(e,n),{destroy:function(){t.removeEventListener(e,n)}}}function r(t,e,n){return Array.prototype.forEach.call(t,function(t){t.addEventListener(e,n)}),{destroy:function(){Array.prototype.forEach.call(t,function(t){t.removeEventListener(e,n)})}}}function a(t,e,n){return l(document.body,t,e,n)}var c=t("./is"),l=t("delegate");e.exports=o},{"./is":3,delegate:2}],5:[function(t,e,n){function o(t){var e;if("SELECT"===t.nodeName)t.focus(),e=t.value;else if("INPUT"===t.nodeName||"TEXTAREA"===t.nodeName){var n=t.hasAttribute("readonly");n||t.setAttribute("readonly",""),t.select(),t.setSelectionRange(0,t.value.length),n||t.removeAttribute("readonly"),e=t.value}else{t.hasAttribute("contenteditable")&&t.focus();var o=window.getSelection(),i=document.createRange();i.selectNodeContents(t),o.removeAllRanges(),o.addRange(i),e=o.toString()}return e}e.exports=o},{}],6:[function(t,e,n){function o(){}o.prototype={on:function(t,e,n){var o=this.e||(this.e={});return(o[t]||(o[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){function o(){i.off(t,o),e.apply(n,arguments)}var i=this;return o._=e,this.on(t,o,n)},emit:function(t){var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),o=0,i=n.length;for(o;o<i;o++)n[o].fn.apply(n[o].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),o=n[t],i=[];if(o&&e)for(var r=0,a=o.length;r<a;r++)o[r].fn!==e&&o[r].fn._!==e&&i.push(o[r]);return i.length?n[t]=i:delete n[t],this}},e.exports=o},{}],7:[function(e,n,o){!function(i,r){if("function"==typeof t&&t.amd)t(["module","select"],r);else if(void 0!==o)r(n,e("select"));else{var a={exports:{}};r(a,i.select),i.clipboardAction=a.exports}}(this,function(t,e){"use strict";function n(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var i=n(e),r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a=function(){function t(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,n,o){return n&&t(e.prototype,n),o&&t(e,o),e}}(),c=function(){function t(e){o(this,t),this.resolveOptions(e),this.initSelection()}return a(t,[{key:"resolveOptions",value:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action=e.action,this.container=e.container,this.emitter=e.emitter,this.target=e.target,this.text=e.text,this.trigger=e.trigger,this.selectedText=""}},{key:"initSelection",value:function t(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function t(){var e=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return e.removeFake()},this.fakeHandler=this.container.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,this.container.appendChild(this.fakeElem),this.selectedText=(0,i.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function t(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function t(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function t(){var e=void 0;try{e=document.execCommand(this.action)}catch(t){e=!1}this.handleResult(e)}},{key:"handleResult",value:function t(e){this.emitter.emit(e?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function t(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function t(){this.removeFake()}},{key:"action",set:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=e,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function t(){return this._action}},{key:"target",set:function t(e){if(void 0!==e){if(!e||"object"!==(void 0===e?"undefined":r(e))||1!==e.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&e.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(e.hasAttribute("readonly")||e.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=e}},get:function t(){return this._target}}]),t}();t.exports=c})},{select:5}],8:[function(e,n,o){!function(i,r){if("function"==typeof t&&t.amd)t(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if(void 0!==o)r(n,e("./clipboard-action"),e("tiny-emitter"),e("good-listener"));else{var a={exports:{}};r(a,i.clipboardAction,i.tinyEmitter,i.goodListener),i.clipboard=a.exports}}(this,function(t,e,n,o){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function c(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function l(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}var s=i(e),u=i(n),f=i(o),d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},h=function(){function t(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,n,o){return n&&t(e.prototype,n),o&&t(e,o),e}}(),p=function(t){function e(t,n){r(this,e);var o=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return o.resolveOptions(n),o.listenClick(t),o}return c(e,t),h(e,[{key:"resolveOptions",value:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof e.action?e.action:this.defaultAction,this.target="function"==typeof e.target?e.target:this.defaultTarget,this.text="function"==typeof e.text?e.text:this.defaultText,this.container="object"===d(e.container)?e.container:document.body}},{key:"listenClick",value:function t(e){var n=this;this.listener=(0,f.default)(e,"click",function(t){return n.onClick(t)})}},{key:"onClick",value:function t(e){var n=e.delegateTarget||e.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s.default({action:this.action(n),target:this.target(n),text:this.text(n),container:this.container,trigger:n,emitter:this})}},{key:"defaultAction",value:function t(e){return l("action",e)}},{key:"defaultTarget",value:function t(e){var n=l("target",e);if(n)return document.querySelector(n)}},{key:"defaultText",value:function t(e){return l("text",e)}},{key:"destroy",value:function t(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],n="string"==typeof e?[e]:e,o=!!document.queryCommandSupported;return n.forEach(function(t){o=o&&!!document.queryCommandSupported(t)}),o}}]),e}(u.default);t.exports=p})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)});;
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("jquery")):"function"==typeof define&&define.amd?define(["exports","jquery"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).mobiscroll={},e.jQuery)}(this,function(e,s){"use strict";function i(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var s=i(s),o=function(e,t){return(o=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])})(e,t)};function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}o(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var ne=function(){return(ne=Object.assign||function(e){for(var t,n=1,a=arguments.length;n<a;n++)for(var s in t=arguments[n])Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s]);return e}).apply(this,arguments)};function K(e,t){var n={};for(s in e)Object.prototype.hasOwnProperty.call(e,s)&&t.indexOf(s)<0&&(n[s]=e[s]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var a=0,s=Object.getOwnPropertySymbols(e);a<s.length;a++)t.indexOf(s[a])<0&&Object.prototype.propertyIsEnumerable.call(e,s[a])&&(n[s[a]]=e[s[a]]);return n}var c,Ee=void 0,v=Be(3),f=Be(4),b=Be(7);function Ne(e,t,n){return Math.max(t,Math.min(e,n))}function ue(e){return Array.isArray(e)}function te(e){return 0<=e-parseFloat(e)}function d(e){return"number"==typeof e}function me(e){return"string"==typeof e}function Q(e){return e===Ee||null===e||""===e}function h(e){return void 0===e}function u(e){return"object"==typeof e}function _(e){return null!==e&&e!==Ee&&""+e!="false"}function Be(e){return Array.apply(0,Array(Math.max(0,e)))}function ie(e){return e!==Ee?e+(te(e)?"px":""):""}function g(){}function T(e,t){void 0===t&&(t=2);for(var n=e+"";n.length<t;)n="0"+n;return n}function Ie(e){return Math.round(e)}function S(e,t){return Le(e/t)*t}function Le(e){return Math.floor(e)}function y(e,t){e._cdr?setTimeout(t):t()}function J(e,t){return C(e,t)}function D(e,t){return C(e,t,!0)}function C(e,t,n){for(var a=e.length,s=0;s<a;s++){var i=e[s];if(t(i,s))return n?s:i}return n?-1:Ee}function k(e){var t=[];if(e)for(var n=0,a=Object.keys(e);n<a.length;n++){var s=a[n];t.push(e[s])}return t}Be(24);var w=[],M=!1,He="undefined"!=typeof window,t=He&&window.matchMedia&&window.matchMedia("(prefers-color-scheme:dark)"),E=He?navigator.userAgent:"",N=He?navigator.platform:"",I=He?navigator.maxTouchPoints:0,L=E&&E.match(/Android|iPhone|iPad|iPod|Windows Phone|Windows|MSIE/i),H=E&&/Safari/.test(E),N=(/Android/i.test(L)?(c="android",R=E.match(/Android\s+([\d.]+)/i),M=!0,R&&(w=R[0].replace("Android ","").split("."))):/iPhone|iPad|iPod/i.test(L)||/iPhone|iPad|iPod/i.test(N)||"MacIntel"===N&&1<I?(c="ios",R=E.match(/OS\s+([\d_]+)/i),M=!0,R&&(w=R[0].replace(/_/g,".").replace("OS ","").split("."))):/Windows Phone/i.test(L)?(c="wp",M=!0):/Windows|MSIE/i.test(L)&&(c="windows"),+w[0]),I=+w[1],P=He?document:Ee,p=He?window:Ee,O=["Webkit","Moz"],Y=P&&P.createElement("div").style,R=P&&P.createElement("canvas"),A=R&&R.getContext&&R.getContext("2d",{willReadFrequently:!0}),L=p&&p.CSS,w=L&&L.supports,W={},U=p&&p.requestAnimationFrame||function(e){return setTimeout(e,20)},B=p&&p.cancelAnimationFrame||function(e){clearTimeout(e)},X=Y&&Y.animationName!==Ee,R="ios"===c&&!H,L=R&&p&&p.webkit&&p.webkit.messageHandlers,q=Y&&Y.touchAction===Ee||R&&!L,G=function(){if(Y&&Y.transform===Ee)for(var e=0,t=O;e<t.length;e++){var n=t[e];if(Y[n+"Transform"]!==Ee)return n}return""}(),Z=G?"-"+G.toLowerCase()+"-":"",$=w&&w("(transform-style: preserve-3d)"),je=w&&(w("position","sticky")||w("position","-webkit-sticky"));function F(e,t,n,a){e&&e.addEventListener(t,n,a)}function z(e,t,n,a){e&&e.removeEventListener(t,n,a)}function oe(e){return He?e&&e.ownerDocument?e.ownerDocument:P:Ee}function re(e){return e.scrollLeft!==Ee?e.scrollLeft:e.pageXOffset}function le(e){return e.scrollTop!==Ee?e.scrollTop:e.pageYOffset}function ce(e){return He?e&&e.ownerDocument&&e.ownerDocument.defaultView?e.ownerDocument.defaultView:p:Ee}function de(e,t){e=getComputedStyle(e),e=(G?e[G+"Transform"]:e.transform).split(")")[0].split(", ");return+(t?e[13]||e[5]:e[12]||e[4])||0}function he(e){if(!A||!e)return"#000";if(W[e])return W[e];A.fillStyle=e,A.fillRect(0,0,1,1);var t=A.getImageData(0,0,1,1),t=t?t.data:[0,0,0],t=.299*+t[0]+.587*+t[1]+.114*+t[2]<130?"#fff":"#000";return W[e]=t}function _e(e,t,n,a,s,i){t!==Ee&&(t=Math.max(0,Ie(t))),n!==Ee&&(n=Math.max(0,Ie(n))),s&&t!==Ee&&(t=-t),a?function e(t,n,a,s,i,o,r){var l,c,d=Math.min(1,(+new Date-n)/468),d=.5*(1-Math.cos(Math.PI*d));i!==Ee&&(l=Ie(a+(i-a)*d),t.scrollLeft=l),o!==Ee&&(c=Ie(s+(o-s)*d),t.scrollTop=c),l!==i||c!==o?U(function(){e(t,n,a,s,i,o,r)}):r&&r()}(e,+new Date,e.scrollLeft,e.scrollTop,t,n,i):(t!==Ee&&(e.scrollLeft=t),n!==Ee&&(e.scrollTop=n),i&&i())}function pe(e){var t=e.getBoundingClientRect(),t={left:t.left,top:t.top},e=ce(e);return e!==Ee&&(t.top+=le(e),t.left+=re(e)),t}function ve(e,t){var n=e&&(e.matches||e.msMatchesSelector);return n&&n.call(e,t)}function fe(e,t,n){for(;e&&!ve(e,t);){if(e===n||e.nodeType===e.DOCUMENT_NODE)return null;e=e.parentNode}return e}function ge(e,t,n){var a;try{a=new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:n})}catch(e){(a=document.createEvent("Event")).initEvent(t,!0,!0),a.detail=n}e.dispatchEvent(a)}function ye(e,t){for(var n=0;n<e.length;n++)t(e[n],n)}var be={},xe=[],De=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i;function Te(e,t){for(var n in t)e[n]=t[n];return e}function Se(e){var t=e.parentNode;t&&t.removeChild(e)}var x={_catchError:function(t,e){for(var n,a,s;e=e._parent;)if((n=e._component)&&!n._processingException)try{if((a=n.constructor)&&null!=a.getDerivedStateFromError&&(n.setState(a.getDerivedStateFromError(t)),s=n._dirty),null!=n.componentDidCatch&&(n.componentDidCatch(t),s=n._dirty),s)return n._pendingError=n}catch(e){t=e}throw t},_vnodeId:0};function ae(e,t,n){var a,s,i,o={};for(i in t)"key"==i?a=t[i]:"ref"==i?s=t[i]:o[i]=t[i];if(3<arguments.length)for(n=[n],i=3;i<arguments.length;i++)n.push(arguments[i]);if(null!=n&&(o.children=n),"function"==typeof e&&null!=e.defaultProps)for(i in e.defaultProps)void 0===o[i]&&(o[i]=e.defaultProps[i]);return Ce(e,o,a,s,null)}function Ce(e,t,n,a,s){e={type:e,props:t,key:n,ref:a,_children:null,_parent:null,_depth:0,_dom:null,_nextDom:void 0,_component:null,_hydrating:null,constructor:void 0,_original:null==s?++x._vnodeId:s};return null!=x.vnode&&x.vnode(e),e}function se(e){return e.children}function we(e,t){this.props=e,this.context=t}function ke(e,t){if(null==t)return e._parent?ke(e._parent,e._parent._children.indexOf(e)+1):null;for(var n;t<e._children.length;t++)if(null!=(n=e._children[t])&&null!=n._dom)return n._dom;return"function"==typeof e.type?ke(e):null}function Me(e){var t,n,a=e._vnode,s=a._dom,i=e._parentDom;i&&(t=[],(n=Te({},a))._original=a._original+1,at(i,a,n,e._globalContext,void 0!==i.ownerSVGElement,null!=a._hydrating?[s]:null,t,null==s?ke(a):s,a._hydrating),st(t,a),a._dom!=s&&function e(t){if(null!=(t=t._parent)&&null!=t._component){t._dom=t._component.base=null;for(var n=0;n<t._children.length;n++){var a=t._children[n];if(null!=a&&null!=a._dom){t._dom=t._component.base=a._dom;break}}return e(t)}}(a))}we.prototype.setState=function(e,t){var n=null!=this._nextState&&this._nextState!==this.state?this._nextState:this._nextState=Te({},this.state);(e="function"==typeof e?e(Te({},n),this.props):e)&&Te(n,e),null!=e&&this._vnode&&(t&&this._renderCallbacks.push(t),qe(this))},we.prototype.forceUpdate=function(e){this._vnode&&(this._force=!0,e&&this._renderCallbacks.push(e),qe(this))},we.prototype.render=se;var Ke,Xe=[],Je="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout;function qe(e){(!e._dirty&&(e._dirty=!0)&&Xe.push(e)&&!Ge._rerenderCount++||Ke!==x.debounceRendering)&&((Ke=x.debounceRendering)||Je)(Ge)}function Ge(){for(var e;Ge._rerenderCount=Xe.length;)e=Xe.sort(function(e,t){return e._vnode._depth-t._vnode._depth}),Xe=[],e.some(function(e){e._dirty&&Me(e)})}function Ze(e,t,n,a,s,i,o,r,l,c){var d,h,u,m,_,p,v,f=a&&a._children||xe,g=f.length;for(n._children=[],d=0;d<t.length;d++)if(null!=(m=null==(m=t[d])||"boolean"==typeof m?n._children[d]=null:"string"==typeof m||"number"==typeof m||"bigint"==typeof m?n._children[d]=Ce(null,m,null,null,m):Array.isArray(m)?n._children[d]=Ce(se,{children:m},null,null,null):0<m._depth?n._children[d]=Ce(m.type,m.props,m.key,null,m._original):n._children[d]=m)){if(m._parent=n,m._depth=n._depth+1,null===(u=f[d])||u&&m.key==u.key&&m.type===u.type)f[d]=void 0;else for(h=0;h<g;h++){if((u=f[h])&&m.key==u.key&&m.type===u.type){f[h]=void 0;break}u=null}at(e,m,u=u||be,s,i,o,r,l,c),_=m._dom,(h=m.ref)&&u.ref!=h&&(v=v||[],u.ref&&v.push(u.ref,null,m),v.push(h,m._component||_,m)),null!=_?(null==p&&(p=_),"function"==typeof m.type&&null!=m._children&&m._children===u._children?m._nextDom=l=function e(t,n,a){for(var s=0;s<t._children.length;s++){var i=t._children[s];i&&(i._parent=t,n="function"==typeof i.type?e(i,n,a):$e(a,i,i,t._children,i._dom,n))}return n}(m,l,e):l=$e(e,m,u,f,_,l),c||"option"!==n.type?"function"==typeof n.type&&(n._nextDom=l):e.value=""):l&&u._dom==l&&l.parentNode!=e&&(l=ke(u))}for(n._dom=p,d=g;d--;)null!=f[d]&&("function"==typeof n.type&&null!=f[d]._dom&&f[d]._dom==n._nextDom&&(n._nextDom=ke(a,d+1)),function e(t,n,a){var s;x.unmount&&x.unmount(t);!(s=t.ref)||s.current&&s.current!==t._dom||it(s,null,n);var i;a||"function"==typeof t.type||(a=null!=(i=t._dom));t._dom=t._nextDom=void 0;if(null!=(s=t._component)){if(s.componentWillUnmount)try{s.componentWillUnmount()}catch(e){x._catchError(e,n)}s.base=s._parentDom=null}if(s=t._children)for(var o=0;o<s.length;o++)s[o]&&e(s[o],n,a);null!=i&&Se(i)}(f[d],f[d]));if(v)for(d=0;d<v.length;d++)it(v[d],v[++d],v[++d])}function $e(e,t,n,a,s,i){var o;if(void 0!==t._nextDom)o=t._nextDom,t._nextDom=void 0;else if(null==n||s!=i||null==s.parentNode)e:if(null==i||i.parentNode!==e)e.appendChild(s),o=null;else{for(var r=i,l=0;(r=r.nextSibling)&&l<a.length;l+=2)if(r==s)break e;e.insertBefore(s,i),o=i}return i=void 0!==o?o:s.nextSibling}function Qe(e,t,n){"-"===t[0]?e.setProperty(t,n):null==n?e[t]="":"number"!=typeof n||De.test(t)?e[t]=n:e[t]=n+"px"}function et(e,t,n,a,s){e:if("style"===t)if("string"==typeof n)e.style.cssText=n;else{if("string"==typeof a&&(e.style.cssText=a=""),a)for(t in a)n&&t in n||Qe(e.style,t,"");if(n)for(t in n)a&&n[t]===a[t]||Qe(e.style,t,n[t])}else if("o"===t[0]&&"n"===t[1]){var i=t!==(t=t.replace(/Capture$/,""));t=(t.toLowerCase()in e?t.toLowerCase():t).slice(2),e._listeners||(e._listeners={}),(e._listeners[t+i]=n)?a||e.addEventListener(t,i?nt:tt,i):e.removeEventListener(t,i?nt:tt,i)}else if("dangerouslySetInnerHTML"!==t){if(s)t=t.replace(/xlink[H:h]/,"h").replace(/sName$/,"s");else if("href"!==t&&"list"!==t&&"form"!==t&&"tabIndex"!==t&&"download"!==t&&t in e)try{e[t]=null==n?"":n;break e}catch(e){}"function"!=typeof n&&(null!=n&&(!1!==n||"a"===t[0]&&"r"===t[1])?e.setAttribute(t,n):e.removeAttribute(t))}}function tt(e){this._listeners[e.type+!1](x.event?x.event(e):e)}function nt(e){this._listeners[e.type+!0](x.event?x.event(e):e)}function at(e,t,n,a,s,i,o,r,l){var c=t.type;if(void 0===t.constructor){null!=n._hydrating&&(l=n._hydrating,r=t._dom=n._dom,t._hydrating=null,i=[r]),(v=x._diff)&&v(t);try{e:if("function"==typeof c){var d,h,u,m,_,p,v,f=t.props,g=(v=c.contextType)&&a[v._id],y=v?g?g.props.value:v._defaultValue:a;if(n._component?p=(d=t._component=n._component)._processingException=d._pendingError:("prototype"in c&&c.prototype.render?t._component=d=new c(f,y):(t._component=d=new we(f,y),d.constructor=c,d.render=ot),g&&g.sub(d),d.props=f,d.state||(d.state={}),d.context=y,d._globalContext=a,h=d._dirty=!0,d._renderCallbacks=[]),null==d._nextState&&(d._nextState=d.state),null!=c.getDerivedStateFromProps&&(d._nextState==d.state&&(d._nextState=Te({},d._nextState)),Te(d._nextState,c.getDerivedStateFromProps(f,d._nextState))),u=d.props,m=d.state,h)null==c.getDerivedStateFromProps&&null!=d.componentWillMount&&d.componentWillMount(),null!=d.componentDidMount&&d._renderCallbacks.push(d.componentDidMount);else{if(null==c.getDerivedStateFromProps&&f!==u&&null!=d.componentWillReceiveProps&&d.componentWillReceiveProps(f,y),!d._force&&null!=d.shouldComponentUpdate&&!1===d.shouldComponentUpdate(f,d._nextState,y)||t._original===n._original){d.props=f,d.state=d._nextState,t._original!==n._original&&(d._dirty=!1),(d._vnode=t)._dom=n._dom,t._children=n._children,t._children.forEach(function(e){e&&(e._parent=t)}),d._renderCallbacks.length&&o.push(d);break e}null!=d.componentWillUpdate&&d.componentWillUpdate(f,d._nextState,y),null!=d.componentDidUpdate&&d._renderCallbacks.push(function(){d.componentDidUpdate(u,m,_)})}d.context=y,d.props=f,d.state=d._nextState,(v=x._render)&&v(t),d._dirty=!1,d._vnode=t,d._parentDom=e,v=d.render(d.props,d.state,d.context),d.state=d._nextState,null!=d.getChildContext&&(a=Te(Te({},a),d.getChildContext())),h||null==d.getSnapshotBeforeUpdate||(_=d.getSnapshotBeforeUpdate(u,m));var b=null!=v&&v.type===se&&null==v.key?v.props.children:v;Ze(e,Array.isArray(b)?b:[b],t,n,a,s,i,o,r,l),d.base=t._dom,t._hydrating=null,d._renderCallbacks.length&&o.push(d),p&&(d._pendingError=d._processingException=null),d._force=!1}else null==i&&t._original===n._original?(t._children=n._children,t._dom=n._dom):t._dom=function(e,t,n,a,s,i,o,r){var l=n.props,c=t.props,d=t.type,h=0;"svg"===d&&(s=!0);if(null!=i)for(;h<i.length;h++){var u=i[h];if(u&&(u===e||(d?u.localName==d:3==u.nodeType))){e=u,i[h]=null;break}}if(null==e){if(null===d)return document.createTextNode(c);e=s?document.createElementNS("http://www.w3.org/2000/svg",d):document.createElement(d,c.is&&c),i=null,r=!1}if(null===d)l===c||r&&e.data===c||(e.data=c);else{i=i&&xe.slice.call(e.childNodes);var m=(l=n.props||be).dangerouslySetInnerHTML,_=c.dangerouslySetInnerHTML;if(r||(null!=i&&(l={}),!_&&!m||_&&(m&&_.__html==m.__html||_.__html===e.innerHTML)||(e.innerHTML=_&&_.__html||"")),!function(e,t,n,a,s){for(var i in n)"children"===i||"key"===i||i in t||et(e,i,null,n[i],a);for(i in t)s&&"function"!=typeof t[i]||"children"===i||"key"===i||"value"===i||"checked"===i||n[i]===t[i]||et(e,i,t[i],n[i],a)}(e,c,l,s,r),_)t._children=[];else if(h=t.props.children,Ze(e,Array.isArray(h)?h:[h],t,n,a,s&&"foreignObject"!==d,i,o,e.firstChild,r),null!=i)for(h=i.length;h--;)null!=i[h]&&Se(i[h]);r||("value"in c&&void 0!==(h=c.value)&&(h!==e.value||"progress"===d&&!h)&&et(e,"value",h,l.value,!1),"checked"in c&&void 0!==(h=c.checked)&&h!==e.checked&&et(e,"checked",h,l.checked,!1))}return e}(n._dom,t,n,a,s,i,o,l);(v=x.diffed)&&v(t)}catch(e){t._original=null,!l&&null==i||(t._dom=r,t._hydrating=!!l,i[i.indexOf(r)]=null),x._catchError(e,t,n)}}}function st(e,t){x._commit&&x._commit(t,e),e.some(function(t){try{e=t._renderCallbacks,t._renderCallbacks=[],e.some(function(e){e.call(t)})}catch(e){x._catchError(e,t._vnode)}})}function it(e,t,n){try{"function"==typeof e?e(t):e.current=t}catch(e){x._catchError(e,n)}}function ot(e,t,n){return this.constructor(e,n)}function rt(e,t,n){x._root&&x._root(e,t);var a="function"==typeof n,s=a?null:n&&n._children||t._children,i=(e=(!a&&n||t)._children=ae(se,null,[e]),[]);at(t,e,s||be,be,void 0!==t.ownerSVGElement,!a&&n?[n]:!s&&t.firstChild?xe.slice.call(t.childNodes):null,i,!a&&n?n:s?s._dom:t.firstChild,a),st(i,e)}var lt=Ge._rerenderCount=0;function ct(e,a){e={_id:a="__cC"+lt++,_defaultValue:e,Consumer:function(e,t){return e.children(t)},Provider:function(e){var n,t;return this.getChildContext||(n=[],((t={})[a]=this).getChildContext=function(){return t},this.shouldComponentUpdate=function(e){this.props.value!==e.value&&n.some(qe)},this.sub=function(e){n.push(e);var t=e.componentWillUnmount;e.componentWillUnmount=function(){n.splice(n.indexOf(e),1),t&&t.call(e)}}),e.children}};return e.Provider._contextRef=e.Consumer.contextType=e}H=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype.render=function(){},t.prototype.shouldComponentUpdate=function(e,t){return dt(e,this.props)||dt(t,this.state)},t}(we);function dt(e,t){for(var n in e)if(e[n]!==t[n])return!0;for(var n in t)if(!(n in e))return!0;return!1}var ht="onAnimationEnd",ut="onContextMenu",mt="onKeyDown",_t="onMouseLeave",pt="onMouseMove";x.vnode=function(e){var t=e.props,n={};if(me(e.type)){for(var a in t){var s=t[a];/^onAni/.test(a)?a=a.toLowerCase():/ondoubleclick/i.test(a)&&(a="ondblclick"),n[a]=s}e.props=n}};var vt={},ft=0;function gt(e,n,t,a,s){var i,o,r=[],l=[],c={},d=a||{},h=d.renderToParent?n.parentNode:n,a=h.parentNode,u=d.useOwnChildren?n:h,m=n.getAttribute("class"),_=n.value,p=ne({className:h.getAttribute("class")},n.dataset,t,{ref:function(e){i=e}}),v=(d.readProps&&d.readProps.forEach(function(e){var t=n[e];t!==Ee&&(p[e]=t)}),d.readAttrs&&d.readAttrs.forEach(function(e){var t=n.getAttribute(e);null!==t&&(p[e]=t)}),d.slots);if(v)for(var f=0,g=Object.keys(v);f<g.length;f++){var y=g[f],b=v[y],x=h.querySelector("[mbsc-"+b+"]");x&&((c[y]=x).parentNode.removeChild(x),p[y]=ae("span",{className:"mbsc-slot-"+b}))}if(d.hasChildren&&(ye(u.childNodes,function(e){e!==n&&8!==e.nodeType&&(3!==e.nodeType||3===e.nodeType&&/\S/.test(e.nodeValue))&&r.push(e),l.push(e)}),ye(r,function(e){u.removeChild(e)}),r.length&&(p.hasChildren=!0)),n.id||(n.id="mbsc-control-"+ft++),d.before&&d.before(n,p,r),rt(ae(e,p),a,h),m&&d.renderToParent&&(t=n.classList).add.apply(t,m.replace(/^\s+|\s+$/g,"").replace(/\s+|^\s|\s$/g," ").split(" ")),d.hasChildren&&(e="."+d.parentClass,(o=ve(h,e)?h:h.querySelector(e))&&ye(r,function(e){o.appendChild(e)})),d.hasValue&&(n.value=_),v)for(var D=0,T=Object.keys(c);D<T.length;D++)!function(e){var t=v[e],n=c[e];ye(h.querySelectorAll(".mbsc-slot-"+t),function(e,t){t=0<t?n.cloneNode(!0):n;e.appendChild(t)})}(y=T[D]);i.destroy=function(){var e=h.parentNode,t=P.createComment("");e.insertBefore(t,h),rt(null,h),delete n.__mbscInst,delete n.__mbscFormInst,delete h._listeners,h.innerHTML="",h.setAttribute("class",p.className),e.replaceChild(h,t),d.hasChildren&&ye(l,function(e){u.appendChild(e)}),d.renderToParent&&n.setAttribute("class",m||"")},s?(n.__mbscInst||(n.__mbscInst=i),n.__mbscFormInst=i):n.__mbscInst=i}function yt(e,t){if(e)for(var n=0,a=Object.keys(vt);n<a.length;n++){var s=a[n],s=vt[s];!function(e,t,n,a,s){ve(e,t)?e.__mbscFormInst||gt(n,e,s,a,!0):ye(e.querySelectorAll(t),function(e){e.__mbscFormInst||gt(n,e,s,a,!0)})}(e,s._selector,s,s._renderOpt,t)}}var bt=s.default.extend,xt={};function n(t){t._selector&&(vt[t._name]=t),xt[t._fname]=function(e){return t&&this.each(function(){gt(t,this,e,t._renderOpt)}),this}}s.default.fn.mobiscroll=function(t){for(var n,a=[],e=1;e<arguments.length;e++)a[e-1]=arguments[e];return bt(this,xt),me(t)?((n=this).each(function(){var e=this.__mbscInst;if(e&&e[t]&&(e=e[t].apply(e,a))!==Ee)return n=e,!1}),n):this},He&&(s.default(function(){yt(P)}),s.default(P).on("mbsc-enhance",function(e){yt(e.target)}));var Dt=function(){function e(){this.nr=0,this.keys=1,this.subscribers={}}return e.prototype.subscribe=function(e){var t=this.keys++;return this.subscribers[t]=e,this.nr++,t},e.prototype.unsubscribe=function(e){this.nr--,delete this.subscribers[e]},e.prototype.next=function(e){for(var t=this.subscribers,n=0,a=Object.keys(t);n<a.length;n++){var s=a[n];t[s]&&t[s](e)}},e}(),Tt={},R={},St={},Ct={},wt=new Dt;function kt(){var e,t="",n="",a="",n="android"===c?"material":"wp"===c||"windows"===c?"windows":"ios";for(e in St){if(St[e].baseTheme===n&&!1!==St[e].auto&&e!==n+"-dark"){t=e;break}e===n?t=e:a=a||e}return t||a}function Mt(e,t,n){var a=St[t];St[e]=ne({},a,{auto:n,baseTheme:t}),Ct.theme=kt()}var L={majorVersion:N,minorVersion:I,name:c},w='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M217.9 256L345 129c9.4-9.4 9.4-24.6 0-33.9-9.4-9.4-24.6-9.3-34 0L167 239c-9.1 9.1-9.3 23.7-.7 33.1L310.9 417c4.7 4.7 10.9 7 17 7s12.3-2.3 17-7c9.4-9.4 9.4-24.6 0-33.9L217.9 256z"/></svg>',Et='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z"/></svg>',s='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M294.1 256L167 129c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.3 34 0L345 239c9.1 9.1 9.3 23.7.7 33.1L201.1 417c-4.7 4.7-10.9 7-17 7s-12.3-2.3-17-7c-9.4-9.4-9.4-24.6 0-33.9l127-127.1z"/></svg>',I='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 217.9L383 345c9.4 9.4 24.6 9.4 33.9 0 9.4-9.4 9.3-24.6 0-34L273 167c-9.1-9.1-23.7-9.3-33.1-.7L95 310.9c-4.7 4.7-7 10.9-7 17s2.3 12.3 7 17c9.4 9.4 24.6 9.4 33.9 0l127.1-127z"/></svg>',Nt='<svg xmlns="http://www.w3.org/2000/svg" height="17" viewBox="0 0 17 17" width="17"><path d="M8.5 0a8.5 8.5 0 110 17 8.5 8.5 0 010-17zm3.364 5.005a.7.7 0 00-.99 0l-2.44 2.44-2.439-2.44-.087-.074a.7.7 0 00-.903 1.064l2.44 2.439-2.44 2.44-.074.087a.7.7 0 001.064.903l2.439-2.441 2.44 2.441.087.074a.7.7 0 00.903-1.064l-2.441-2.44 2.441-2.439.074-.087a.7.7 0 00-.074-.903z" fill="currentColor" fill-rule="evenodd"/></svg>',It={clearIcon:Nt,labelStyle:"inline"},s=(St.ios={Calendar:{nextIconH:s,nextIconV:Et,prevIconH:w,prevIconV:I},Checkbox:{position:"end"},Datepicker:{clearIcon:Nt,display:"bottom"},Dropdown:It,Eventcalendar:{chevronIconDown:Et,nextIconH:s,nextIconV:Et,prevIconH:w,prevIconV:I},Input:It,Radio:{position:"end"},Scroller:{display:"bottom",itemHeight:34,minWheelWidth:55,rows:5,scroll3d:!0},SegmentedGroup:{drag:!0},Select:{clearIcon:Nt},Textarea:It},Mt("ios-dark","ios"),'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'),w='<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7 14l5-5 5 5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>',I='<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M23.12 11.12L21 9l-9 9 9 9 2.12-2.12L16.24 18z"/></svg>',Nt='<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M15 9l-2.12 2.12L19.76 18l-6.88 6.88L15 27l9-9z"/></svg>',It='<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"/></svg>',Lt='<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/><path fill="none" d="M0 0h24v24H0V0z"/></svg>',Ht='<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"/><path d="M0 0h24v24H0z" fill="none"/></svg>',Ot={clearIcon:It,dropdownIcon:s,inputStyle:"box",labelStyle:"floating",notch:!0,ripple:!0},Yt="material",s=(St[Yt]={Button:{ripple:!0},Calendar:{downIcon:s,nextIconH:Nt,nextIconV:Lt,prevIconH:I,prevIconV:Ht,upIcon:w},Datepicker:{clearIcon:It,display:"center"},Dropdown:Ot,Eventcalendar:{chevronIconDown:Lt,colorEventList:!0,downIcon:s,nextIconH:Nt,nextIconV:Lt,prevIconH:I,prevIconV:Ht,upIcon:w},Input:Ot,ListItem:{ripple:!0},Scroller:{display:"center",rows:3},Select:{clearIcon:It,rows:3},Textarea:Ot},Mt("material-dark",Yt),'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M4.22 10.78l-1.44 1.44 12.5 12.5.72.686.72-.687 12.5-12.5-1.44-1.44L16 22.564 4.22 10.78z"/></svg>'),Nt='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M19.03 4.28l-11 11-.686.72.687.72 11 11 1.44-1.44L10.187 16l10.28-10.28-1.437-1.44z"/></svg>',Lt='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M12.97 4.28l-1.44 1.44L21.814 16 11.53 26.28l1.44 1.44 11-11 .686-.72-.687-.72-11-11z"/></svg>',I='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16 6.594l-.72.687-12.5 12.5 1.44 1.44L16 9.437l11.78 11.78 1.44-1.437-12.5-12.5-.72-.686z"/></svg>',Ht="mobiscroll",w=(St[Ht]={Calendar:{nextIconH:Lt,nextIconV:s,prevIconH:Nt,prevIconV:I},Eventcalendar:{nextIconH:Lt,nextIconV:s,prevIconH:Nt,prevIconV:I},Input:{notch:!0,ripple:!0}},Mt("mobiscroll-dark",Ht),'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M15 4v20.063L8.22 17.28l-1.44 1.44 8.5 8.5.72.686.72-.687 8.5-8.5-1.44-1.44L17 24.063V4h-2z"/></svg>'),It='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16 4.094l-.72.687-8.5 8.5 1.44 1.44L15 7.936V28h2V7.937l6.78 6.782 1.44-1.44-8.5-8.5-.72-.686z"/></svg>',Ot='<svg fill="#000000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32px" height="32px"><path d="M 7.21875 5.78125 L 5.78125 7.21875 L 14.5625 16 L 5.78125 24.78125 L 7.21875 26.21875 L 16 17.4375 L 24.78125 26.21875 L 26.21875 24.78125 L 17.4375 16 L 26.21875 7.21875 L 24.78125 5.78125 L 16 14.5625 Z"/></svg>',Yt={clearIcon:Ot,inputStyle:"box",labelStyle:"stacked"},I="windows",Ht=(St[I]={Calendar:{nextIconH:Lt,nextIconV:w,prevIconH:Nt,prevIconV:It},Checkbox:{position:"start"},Datepicker:{clearIcon:Ot,display:"center"},Dropdown:Yt,Eventcalendar:{chevronIconDown:s,nextIconH:Lt,nextIconV:w,prevIconH:Nt,prevIconV:It},Input:Yt,Scroller:{display:"center",itemHeight:44,minWheelWidth:88,rows:6},Select:{clearIcon:Ot,rows:6},Textarea:Yt},Mt("windows-dark",I),Ct.theme=kt(),{rtl:!0,setText:"تعيين",cancelText:"إلغاء",clearText:"مسح",closeText:"إغلاق",selectedText:"{count} المحدد",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD. D MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],fromText:"يبدا",monthNames:["يناير","فبراير","مارس","ابريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["يناير","فبراير","مارس","ابريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],amText:"ص",pmText:"م",timeFormat:"hh:mm A",timeWheels:"Ammhh",toText:"ينتهي",nowText:"الآن",firstDay:0,dateText:"تاريخ",timeText:"وقت",todayText:"اليوم",allDayText:"اليوم كله",noEventsText:"لا توجد احداث",eventText:"الحدث",eventsText:"أحداث",moreEventsText:"واحد آخر",moreEventsPluralText:"اثنان آخران {count}",weekText:"أسبوع {count}",rangeEndHelp:"أختر",rangeEndLabel:"ينتهي",rangeStartHelp:"أختر",rangeStartLabel:"يبدا",filterEmptyText:"لا نتيجة",filterPlaceholderText:"بحث"}),s={setText:"Задаване",cancelText:"Отмяна",clearText:"Изчистване",closeText:"затвори",selectedText:"{count} подбран",dateFormat:"DD.MM.YYYY",dateFormatLong:"DDD, D MMMM YYYY",dateWheelFormat:"|DDD MM.DD|",dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],fromText:"ОТ",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],timeFormat:"H:mm",toText:"ДО",nowText:"Сега",pmText:"pm",amText:"am",firstDay:1,dateText:"Дата",timeText:"път",todayText:"днес",eventText:"Събитие",eventsText:"Събития",allDayText:"Цял ден",noEventsText:"Няма събития",moreEventsText:"Още {count}",weekText:"Седмица {count}",rangeStartLabel:"ОТ",rangeEndLabel:"ДО",rangeStartHelp:"Избирам",rangeEndHelp:"Избирам",filterEmptyText:"Без резултат",filterPlaceholderText:"Търсене"},Lt={setText:"Acceptar",cancelText:"Cancel·lar",clearText:"Esborrar",closeText:"Tancar",selectedText:"{count} seleccionat",selectedPluralText:"{count} seleccionats",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD, D MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],dayNamesShort:["Dg","Dl","Dt","Dc","Dj","Dv","Ds"],dayNamesMin:["Dg","Dl","Dt","Dc","Dj","Dv","Ds"],fromText:"Iniciar",monthNames:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],monthNamesShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],timeFormat:"H:mm",toText:"Final",nowText:"Ara",pmText:"pm",amText:"am",todayText:"Avui",firstDay:1,dateText:"Data",timeText:"Temps",allDayText:"Tot el dia",noEventsText:"Cap esdeveniment",eventText:"Esdeveniments",eventsText:"Esdeveniments",moreEventsText:"{count} més",weekText:"Setmana {count}",rangeStartLabel:"Iniciar",rangeEndLabel:"Final",rangeStartHelp:"Seleccionar",rangeEndHelp:"Seleccionar",filterEmptyText:"Cap resultat",filterPlaceholderText:"Buscar"},w={setText:"Zadej",cancelText:"Storno",clearText:"Vymazat",closeText:"Zavřít",selectedText:"Označený: {count}",dateFormat:"DD.MM.YYYY",dateFormatLong:"DDD, D.M.YYYY",dateWheelFormat:"|DDD D. M.|",dayNames:["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"],dayNamesShort:["Ne","Po","Út","St","Čt","Pá","So"],dayNamesMin:["N","P","Ú","S","Č","P","S"],fromText:"Začátek",monthNames:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],monthNamesShort:["Led","Úno","Bře","Dub","Kvě","Čer","Čvc","Spr","Zář","Říj","Lis","Pro"],timeFormat:"H:mm",toText:"Konec",nowText:"Teď",amText:"am",pmText:"pm",todayText:"Dnes",firstDay:1,dateText:"Datum",timeText:"Čas",allDayText:"Celý den",noEventsText:"Žádné události",eventText:"Událostí",eventsText:"Události",moreEventsText:"{count} další",weekText:"{count}. týden",rangeStartLabel:"Začátek",rangeEndLabel:"Konec",rangeStartHelp:"Vybrat",rangeEndHelp:"Vybrat",filterEmptyText:"Žádné výsledky",filterPlaceholderText:"Hledat"},Nt={setText:"Sæt",cancelText:"Annuller",clearText:"Ryd",closeText:"Luk",selectedText:"{count} valgt",selectedPluralText:"{count} valgt",dateFormat:"DD/MM/YYY",dateFormatLong:"DDD. D. MMM. YYYY.",dateWheelFormat:"|DDD. D. MMM.|",dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["S","M","T","O","T","F","L"],fromText:"Start",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],amText:"am",pmText:"pm",timeFormat:"HH.mm",toText:"Slut",nowText:"Nu",todayText:"I dag",firstDay:1,dateText:"Dato",timeText:"Tid",allDayText:"Hele dagen",noEventsText:"Ingen begivenheder",eventText:"Begivenheder",eventsText:"Begivenheder",moreEventsText:"{count} mere",weekText:"Uge {count}",rangeStartLabel:"Start",rangeEndLabel:"Slut",rangeStartHelp:"Vælg",rangeEndHelp:"Vælg",filterEmptyText:"Ingen resultater",filterPlaceholderText:"Søg"},It={setText:"OK",cancelText:"Abbrechen",clearText:"Löschen",closeText:"Schließen",selectedText:"{count} ausgewählt",dateFormat:"DD.MM.YYYY",dateFormatLong:"DDD. D. MMM. YYYY.",dateWheelFormat:"|DDD. D. MMM.|",dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["S","M","D","M","D","F","S"],fromText:"Von",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],timeFormat:"HH:mm",nowText:"Jetzt",pmText:"pm",amText:"am",todayText:"Heute",toText:"Bis",firstDay:1,dateText:"Datum",timeText:"Zeit",allDayText:"Ganztägig",noEventsText:"Keine Ereignisse",eventText:"Ereignis",eventsText:"Ereignisse",moreEventsText:"{count} weiteres Element",moreEventsPluralText:"{count} weitere Elemente",weekText:"Woche {count}",rangeStartLabel:"Von",rangeEndLabel:"Bis",rangeStartHelp:"Auswählen",rangeEndHelp:"Auswählen",filterEmptyText:"Keine Treffer",filterPlaceholderText:"Suchen"},Ot={setText:"Ορισμος",cancelText:"Ακυρωση",clearText:"Διαγραφη",closeText:"Κλείσιμο",selectedText:"{count} επιλεγμένα",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD, D MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],dayNamesShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayNamesMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],fromText:"Αρχή",monthNames:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthNamesShort:["Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],timeFormat:"H:mm",toText:"Τέλος",nowText:"τώρα",pmText:"μμ",amText:"πμ",firstDay:1,dateText:"Ημερομηνία",timeText:"φορά",todayText:"Σήμερα",eventText:"Γεγονότα",eventsText:"Γεγονότα",allDayText:"Ολοήμερο",noEventsText:"Δεν υπάρχουν γεγονότα",moreEventsText:"{count} ακόμη",weekText:"Εβδομάδα {count}",rangeStartLabel:"Αρχή",rangeEndLabel:"Τέλος",rangeStartHelp:"Επιλογή",rangeEndHelp:"Επιλογή",filterEmptyText:"Κανένα αποτέλεσμα",filterPlaceholderText:"Αναζήτηση"},Yt={dateFormat:"DD/MM/YYYY",dateWheelFormat:"|DDD D MMM|",timeFormat:"H:mm"},I={setText:"Aceptar",cancelText:"Cancelar",clearText:"Borrar",closeText:"Cerrar",selectedText:"{count} seleccionado",selectedPluralText:"{count} seleccionados",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD, MMM. D. YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],dayNamesShort:["Do","Lu","Ma","Mi","Ju","Vi","Sá"],dayNamesMin:["D","L","M","M","J","V","S"],fromText:"Iniciar",monthNames:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthNamesShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],timeFormat:"H:mm",toText:"Final",nowText:"Ahora",pmText:"pm",amText:"am",todayText:"Hoy",firstDay:1,dateText:"Fecha",timeText:"Tiempo",allDayText:"Todo el día",noEventsText:"No hay eventos",eventText:"Evento",eventsText:"Eventos",moreEventsText:"{count} más",weekText:"Semana {count}",rangeStartLabel:"Iniciar",rangeEndLabel:"Final",rangeStartHelp:"Seleccionar",rangeEndHelp:"Seleccionar",filterEmptyText:"Sin resultados",filterPlaceholderText:"Buscar"},Pt=[31,28,31,30,31,30,31,31,30,31,30,31],Ft=[31,31,31,31,31,31,30,30,30,30,30,29];function zt(e,t,n){for(var e=e-1600,a=t-1,t=n-1,s=365*e+Le((3+e)/4)-Le((99+e)/100)+Le((399+e)/400),i=0;i<a;++i)s+=Pt[i];1<a&&(e%4==0&&e%100!=0||e%400==0)&&++s;var o=(s+=t)-79,n=979+33*Le(o/12053)+4*Le((o%=12053)/1461);for(366<=(o%=1461)&&(n+=Le((o-1)/365),o=(o-1)%365),i=0;i<11&&Ft[i]<=o;++i)o-=Ft[i];return[n,i+1,o+1]}var Vt={getYear:function(e){return zt(e.getFullYear(),e.getMonth()+1,e.getDate())[0]},getMonth:function(e){return--zt(e.getFullYear(),e.getMonth()+1,e.getDate())[1]},getDay:function(e){return zt(e.getFullYear(),e.getMonth()+1,e.getDate())[2]},getDate:function(e,t,n,a,s,i,o){t<0&&(e+=Le(t/12),t=t%12?12+t%12:0),11<t&&(e+=Le(t/12),t%=12);e=function(e,t,n){for(var a=t-1,t=n-1,s=365*(e=e-979)+8*Le(e/33)+Le((e%33+3)/4),i=0;i<a;++i)s+=Ft[i];var o=(s+=t)+79,n=1600+400*Le(o/146097),r=!0;for(36525<=(o%=146097)&&(n+=100*Le(--o/36524),365<=(o%=36524)?o++:r=!1),n+=4*Le(o/1461),366<=(o%=1461)&&(r=!1,n+=Le(--o/365),o%=365),i=0;Pt[i]+(1===i&&r?1:0)<=o;i++)o-=Pt[i]+(1===i&&r?1:0);return[n,i+1,o+1]}(e,+t+1,n);return new Date(e[0],e[1]-1,e[2],a||0,s||0,i||0,o||0)},getMaxDayOfMonth:function(e,t){var n,a,s,i=31;for(t<0&&(e+=Le(t/12),t=t%12?12+t%12:0),11<t&&(e+=Le(t/12),t%=12);a=t+1,s=i,((n=e)<0||32767<n||a<1||12<a||s<1||Ft[a-1]+(12===a&&(n-979)%33%4==0?1:0)<s)&&29<i;)i--;return i}},Rt={setText:"تاييد",cancelText:"انصراف",clearText:"واضح ",closeText:"نزدیک",selectedText:"{count} منتخب",rtl:!0,calendarSystem:Vt,dateFormat:"YYYY/MM/DD",dateFormatLong:"DDD D MMM YYYY",dateWheelFormat:"|DDDD MMM D|",dayNames:["يکشنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],fromText:"شروع ",monthNames:["فروردين","ارديبهشت","خرداد","تير","مرداد","شهريور","مهر","آبان","آذر","دی","بهمن","اسفند"],monthNamesShort:["فروردين","ارديبهشت","خرداد","تير","مرداد","شهريور","مهر","آبان","آذر","دی","بهمن","اسفند"],timeFormat:"HH:mm",timeWheels:"mmHH",toText:"پایان",nowText:"اکنون",amText:"ب",pmText:"ص",todayText:"امروز",firstDay:6,dateText:"تاریخ ",timeText:"زمان ",allDayText:"تمام روز",noEventsText:"هیچ رویداد",eventText:"رویداد",eventsText:"رویدادها",moreEventsText:"{count} مورد دیگر",weekText:"{count} هفته",rangeStartLabel:"شروع ",rangeEndLabel:"پایان",rangeStartHelp:"انتخاب کنید",rangeEndHelp:"انتخاب کنید",filterEmptyText:"نتیجه ای ندارد",filterPlaceholderText:"جستجو کردن"},At={setText:"Aseta",cancelText:"Peruuta",clearText:"Tyhjennä",closeText:"Sulje",selectedText:"{count} valita",dateFormat:"D. MMMM YYYY",dateFormatLong:"DDD, D. MMMM, YYYY",dateWheelFormat:"|DDD D. M.|",dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviiko","Torstai","Perjantai","Lauantai"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNamesMin:["S","M","T","K","T","P","L"],fromText:"Alkaa",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tam","Hel","Maa","Huh","Tou","Kes","Hei","Elo","Syy","Lok","Mar","Jou"],timeFormat:"H:mm",toText:"Päättyy",nowText:"Nyt",pmText:"pm",amText:"am",firstDay:1,dateText:"Päiväys",timeText:"Aika",todayText:"Tänään",eventText:"Tapahtumia",eventsText:"Tapahtumia",allDayText:"Koko päivä",noEventsText:"Ei tapahtumia",moreEventsText:"{count} muu",moreEventsPluralText:"{count} muuta",weekText:"Viikko {count}",rangeStartLabel:"Alkaa",rangeEndLabel:"Päättyy",rangeStartHelp:"Valitse",rangeEndHelp:"Valitse",filterEmptyText:"Ei tuloksia",filterPlaceholderText:"Haku"},Wt={setText:"Terminer",cancelText:"Annuler",clearText:"Effacer",closeText:"Fermer",selectedText:"{count} sélectionné",selectedPluralText:"{count} sélectionnés",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD D MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],dayNamesShort:["Dim.","Lun.","Mar.","Mer.","Jeu.","Ven.","Sam."],dayNamesMin:["D","L","M","M","J","V","S"],fromText:"Démarrer",monthNames:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],monthNamesShort:["Janv.","Févr.","Mars","Avril","Mai","Juin","Juil.","Août","Sept.","Oct.","Nov.","Déc."],timeFormat:"HH:mm",toText:"Fin",nowText:"Maintenant",pmText:"pm",amText:"am",todayText:"Aujourd'hui",firstDay:1,dateText:"Date",timeText:"Heure",allDayText:"Toute la journée",noEventsText:"Aucun événement",eventText:"Événement",eventsText:"Événements",moreEventsText:"{count} autre",moreEventsPluralText:"{count} autres",weekText:"Semaine {count}",rangeStartLabel:"Démarrer",rangeEndLabel:"Fin",rangeStartHelp:"Choisir",rangeEndHelp:"Choisir",filterEmptyText:"Aucun résultat",filterPlaceholderText:"Rechercher"},Ut={rtl:!0,setText:"שמירה",cancelText:"ביטול",clearText:"נקה",closeText:"סגירה",selectedText:"{count} נבחר",selectedPluralText:"{count} נבחרו",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD, D בMMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","ש'"],dayNamesMin:["א","ב","ג","ד","ה","ו","ש"],fromText:"התחלה",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ"],amText:"am",pmText:"pm",timeFormat:"H:mm",timeWheels:"mmH",toText:"סיום",nowText:"עכשיו",firstDay:0,dateText:"תאריך",timeText:"זמן",todayText:"היום",allDayText:"כל היום",noEventsText:"אין אירועים",eventText:"מִקרֶה",eventsText:"מִקרֶה",moreEventsText:"אירוע אחד נוסף",moreEventsPluralText:"{count} אירועים נוספים",weekText:"{count} שבוע",rangeStartLabel:"התחלה",rangeEndLabel:"סיום",rangeStartHelp:"בחר",rangeEndHelp:"בחר",filterEmptyText:"אין תוצאוה",filterPlaceholderText:"לחפש"},Bt={setText:"सैट करें",cancelText:"रद्द करें",clearText:"साफ़ को",closeText:"बंद",selectedText:"{count} चयनित",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD, D MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],fromText:"से",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],timeFormat:"H:mm",toText:"तक",nowText:"अब",pmText:"अपराह्न",amText:"पूर्वाह्न",firstDay:1,dateText:"तिथि",timeText:"समय",todayText:"आज",eventText:"इवेट३",eventsText:"इवेट३",allDayText:"पूरे दिन",noEventsText:"Ei tapahtumia",moreEventsText:"{count} और",weekText:"सप्ताह {count}",rangeStartLabel:"से",rangeEndLabel:"तक",rangeStartHelp:"चुनें",rangeEndHelp:"चुनें",filterEmptyText:"कोई परिणाम नही",filterPlaceholderText:"खोज"},jt={setText:"Postavi",cancelText:"Izlaz",clearText:"Izbriši",closeText:"Zatvori",selectedText:"{count} odabran",dateFormat:"DD.MM.YYYY",dateFormatLong:"DDD, D. MMM. YYYY.",dateWheelFormat:"|DDD D MMM|",dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],fromText:"Počinje",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],timeFormat:"H:mm",toText:"Završava",nowText:"Sada",pmText:"pm",amText:"am",firstDay:1,dateText:"Datum",timeText:"Vrijeme",todayText:"Danas",eventText:"Događaj",eventsText:"događaja",allDayText:"Cijeli dan",noEventsText:"Bez događaja",moreEventsText:"Još {count}",weekText:"{count}. tjedan",rangeStartLabel:"Počinje",rangeEndLabel:"Završava",rangeStartHelp:"Odaberite",rangeEndHelp:"Odaberite",filterEmptyText:"Bez rezultata",filterPlaceholderText:"Traži"},Kt={setText:"OK",cancelText:"Mégse",clearText:"Törlés",closeText:"Bezár",selectedText:"{count} kiválasztva",dateFormat:"YYYY.MM.DD.",dateFormatLong:"YYYY. MMM. D., DDD",dateWheelFormat:"|MMM. D. DDD|",dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Va","Hé","Ke","Sze","Csü","Pé","Szo"],dayNamesMin:["V","H","K","Sz","Cs","P","Sz"],fromText:"Eleje",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],timeFormat:"H:mm",toText:"Vége",nowText:"Most",pmText:"pm",amText:"am",firstDay:1,dateText:"Dátum",timeText:"Idő",todayText:"Ma",eventText:"esemény",eventsText:"esemény",allDayText:"Egész nap",noEventsText:"Nincs esemény",moreEventsText:"{count} további",weekText:"{count}. hét",rangeStartLabel:"Eleje",rangeEndLabel:"Vége",rangeStartHelp:"Válasszon",rangeEndHelp:"Válasszon",filterEmptyText:"Nincs találat",filterPlaceholderText:"Keresés"},Xt={setText:"OK",cancelText:"Annulla",clearText:"Chiarire",closeText:"Chiudere",selectedText:"{count} selezionato",selectedPluralText:"{count} selezionati",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD D MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Do","Lu","Ma","Me","Gi","Ve","Sa"],dayNamesMin:["D","L","M","M","G","V","S"],fromText:"Inizio",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],timeFormat:"HH:mm",toText:"Fine",nowText:"Ora",pmText:"pm",amText:"am",todayText:"Oggi",firstDay:1,dateText:"Data",timeText:"Volta",allDayText:"Tutto il giorno",noEventsText:"Nessun evento",eventText:"Evento",eventsText:"Eventi",moreEventsText:"{count} altro",moreEventsPluralText:"altri {count}",weekText:"Settimana {count}",rangeStartLabel:"Inizio",rangeEndLabel:"Fine",rangeStartHelp:"Scegli",rangeEndHelp:"Scegli",filterEmptyText:"Nessun risultato",filterPlaceholderText:"Cerca"},Jt={setText:"セット",cancelText:"キャンセル",clearText:"クリア",closeText:"クローズ",selectedText:"{count} 選択",dateFormat:"YYYY年MM月DD日",dateFormatLong:"YYYY年MM月DD日",dateWheelFormat:"|M月D日 DDD|",dayNames:["日","月","火","水","木","金","土"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],fromText:"開始",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],timeFormat:"H:mm",toText:"終わり",nowText:"今",pmText:"午後",amText:"午前",yearSuffix:"年",monthSuffix:"月",daySuffix:"日",todayText:"今日",dateText:"日付",timeText:"時間",allDayText:"終日",noEventsText:"イベントはありません",eventText:"イベント",eventsText:"イベント",moreEventsText:"他 {count} 件",weekText:"{count}週目",rangeStartLabel:"開始",rangeEndLabel:"終わり",rangeStartHelp:"選択",rangeEndHelp:"選択",filterEmptyText:"検索結果はありません",filterPlaceholderText:"探す"},qt={setText:"설정",cancelText:"취소",clearText:"삭제",closeText:"닫기",selectedText:"{count} 선택된",dateFormat:"YYYY년MM월DD일",dateFormatLong:"YYYY년MM월DD일",dateWheelFormat:"|M월 D일 DDD|",dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],fromText:"시작",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],timeFormat:"H:mm",toText:"종료",nowText:"지금",pmText:"오후",amText:"오전",yearSuffix:"년",monthSuffix:"월",daySuffix:"일",firstDay:0,dateText:"날짜",timeText:"시간",todayText:"오늘",eventText:"이벤트",eventsText:"이벤트",allDayText:"종일",noEventsText:"이벤트 없음",moreEventsText:"{count}개 더보기",weekText:"{count}주차",rangeStartLabel:"시작",rangeEndLabel:"종료",rangeStartHelp:"선택",rangeEndHelp:"선택",filterEmptyText:"결과가 없다",filterPlaceholderText:"찾다"},Gt={setText:"OK",cancelText:"Atšaukti",clearText:"Išvalyti",closeText:"Uždaryti",selectedText:"Pasirinktas {count}",selectedPluralText:"Pasirinkti {count}",dateFormat:"YYYY-MM-DD",dateFormatLong:"YYYY-MM-DD",dateWheelFormat:"|MM-DD DDD|",dayNames:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis"],dayNamesShort:["S","Pr","A","T","K","Pn","Š"],dayNamesMin:["S","Pr","A","T","K","Pn","Š"],fromText:"Nuo",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gruo"],amText:"am",pmText:"pm",timeFormat:"HH:mm",toText:"Iki",nowText:"Dabar",todayText:"Šiandien",firstDay:1,dateText:"Data",timeText:"Laikas",allDayText:"Visą dieną",noEventsText:"Nėra įvykių",eventText:"Įvykių",eventsText:"Įvykiai",moreEventsText:"Dar {count}",weekText:"{count} savaitė",rangeStartLabel:"Nuo",rangeEndLabel:"Iki",rangeStartHelp:"Pasirinkti",rangeEndHelp:"Pasirinkti",filterEmptyText:"Nėra rezultatų",filterPlaceholderText:"Paieška"},Zt={setText:"Instellen",cancelText:"Annuleren",clearText:"Leegmaken",closeText:"Sluiten",selectedText:"{count} gekozen",dateFormat:"DD-MM-YYYY",dateFormatLong:"DD-MM-YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["Zondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrijdag","Zaterdag"],dayNamesShort:["Zo","Ma","Di","Wo","Do","Vr","Za"],dayNamesMin:["Z","M","D","W","D","V","Z"],fromText:"Start",monthNames:["Januari","Februari","Maart","April","Mei","Juni","Juli","Augustus","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mrt","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],timeFormat:"HH:mm",toText:"Einde",nowText:"Nu",pmText:"pm",amText:"am",todayText:"Vandaag",firstDay:1,dateText:"Datum",timeText:"Tijd",allDayText:"Hele dag",noEventsText:"Geen activiteiten",eventText:"Activiteit",eventsText:"Activiteiten",moreEventsText:"nog {count}",weekText:"Week {count}",rangeStartLabel:"Start",rangeEndLabel:"Einde",rangeStartHelp:"Kies",rangeEndHelp:"Kies",filterEmptyText:"Niets gevonden",filterPlaceholderText:"Zoek"},$t={setText:"OK",cancelText:"Avbryt",clearText:"Tømme",closeText:"Lukk",selectedText:"{count} valgt",dateFormat:"DD.MM.YYY",dateFormatLong:"DDD. D. MMM. YYYY",dateWheelFormat:"|DDD. D. MMM.|",dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Sø","Ma","Ti","On","To","Fr","Lø"],dayNamesMin:["S","M","T","O","T","F","L"],fromText:"Start",monthNames:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],timeFormat:"HH:mm",toText:"End",nowText:"Nå",pmText:"pm",amText:"am",todayText:"I dag",firstDay:1,dateText:"Dato",timeText:"Tid",allDayText:"Hele dagen",noEventsText:"Ingen hendelser",eventText:"Hendelse",eventsText:"Hendelser",moreEventsText:"{count} mere",weekText:"Uke {count}",rangeStartLabel:"Start",rangeEndLabel:"End",rangeStartHelp:"Velg",rangeEndHelp:"Velg",filterEmptyText:"Ingen treff",filterPlaceholderText:"Søk"},Qt={setText:"Zestaw",cancelText:"Anuluj",clearText:"Oczyścić",closeText:"Zakończenie",selectedText:"Wybór: {count}",dateFormat:"YYYY-MM-DD",dateFormatLong:"DDD, D MMM YYYY",dateWheelFormat:"|DDD D.MM|",dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie.","Pon.","Wt.","Śr.","Czw.","Pt.","Sob."],dayNamesMin:["N","P","W","Ś","C","P","S"],fromText:"Rozpoczęcie",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lut","Mar","Kwi","Maj","Cze","Lip","Sie","Wrz","Paź","Lis","Gru"],timeFormat:"HH:mm",toText:"Koniec",nowText:"Teraz",amText:"am",pmText:"pm",todayText:"Dzisiaj",firstDay:1,dateText:"Data",timeText:"Czas",allDayText:"Cały dzień",noEventsText:"Brak wydarzeń",eventText:"Wydarzeń",eventsText:"Wydarzenia",moreEventsText:"Jeszcze {count}",weekText:"Tydzień {count}",rangeStartLabel:"Rozpoczęcie",rangeEndLabel:"Koniec",rangeStartHelp:"Wybierz",rangeEndHelp:"Wybierz",filterEmptyText:"Brak wyników",filterPlaceholderText:"Szukaj"},en={setText:"Seleccionar",cancelText:"Cancelar",clearText:"Claro",closeText:"Fechar",selectedText:"{count} selecionado",selectedPluralText:"{count} selecionados",dateFormat:"DD-MM-YYYY",dateFormatLong:"DDD, D MMM, YYYY",dateWheelFormat:"|DDD D de MMM|",dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["D","S","T","Q","Q","S","S"],fromText:"Início",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],timeFormat:"HH:mm",toText:"Fim",nowText:"Actualizar",pmText:"pm",amText:"am",todayText:"Hoje",firstDay:1,dateText:"Data",timeText:"Tempo",allDayText:"Todo o dia",noEventsText:"Nenhum evento",eventText:"Evento",eventsText:"Eventos",moreEventsText:"Mais {count}",weekText:"Semana {count}",rangeStartLabel:"Início",rangeEndLabel:"Fim",rangeStartHelp:"Escolha",rangeEndHelp:"Escolha",filterEmptyText:"Nenhum resultado",filterPlaceholderText:"Pesquisa"},tn=ne({},en,{setText:"Selecionar",dateFormat:"DD/MM/YYYY",nowText:"Agora",allDayText:"Dia inteiro",filterPlaceholderText:"Buscar"}),nn={setText:"Setare",cancelText:"Anulare",clearText:"Ştergere",closeText:"Închidere",selectedText:"{count} selectat",selectedPluralText:"{count} selectate",dateFormat:"DD.MM.YYYY",dateFormatLong:"DDD., D MMM YYYY",dateWheelFormat:"|DDD. D MMM|",dayNames:["Duminică","Luni","Marți","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],dayNamesMin:["D","L","M","M","J","V","S"],fromText:"Start",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian.","Feb.","Mar.","Apr.","Mai","Iun.","Iul.","Aug.","Sept.","Oct.","Nov.","Dec."],timeFormat:"HH:mm",toText:"Final",nowText:"Acum",amText:"am",pmText:"pm",todayText:"Astăzi",eventText:"Eveniment",eventsText:"Evenimente",allDayText:"Toată ziua",noEventsText:"Niciun eveniment",moreEventsText:"Încă unul",moreEventsPluralText:"Încă {count}",firstDay:1,dateText:"Data",timeText:"Ora",weekText:"Săptămâna {count}",rangeStartLabel:"Start",rangeEndLabel:"Final",rangeStartHelp:"Selectare",rangeEndHelp:"Selectare",filterEmptyText:"Niciun rezultat",filterPlaceholderText:"Căutare"},an={setText:"Установить",cancelText:"Отмена",clearText:"Очистить",closeText:"Закрыть",selectedText:"{count} Выбрать",dateFormat:"DD.MM.YYYY",dateFormatLong:"DDD, D MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вс","пн","вт","ср","чт","пт","сб"],dayNamesMin:["в","п","в","с","ч","п","с"],fromText:"Начало",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],timeFormat:"HH:mm",toText:"Конец",nowText:"Сейчас",amText:"am",pmText:"pm",todayText:"Cегодня",firstDay:1,dateText:"Дата",timeText:"Время",allDayText:"Весь день",noEventsText:"Нет событий",eventText:"Мероприятия",eventsText:"Мероприятия",moreEventsText:"Ещё {count}",weekText:"Неделя {count}",rangeStartLabel:"Начало",rangeEndLabel:"Конец",rangeStartHelp:"выбирать",rangeEndHelp:"выбирать",filterEmptyText:"Нет результатов",filterPlaceholderText:"Поиск"},sn=ne({},an,{cancelText:"Отменить",clearText:"Очиститьr",selectedText:"{count} Вібрать",monthNamesShort:["Янв.","Февр.","Март","Апр.","Май","Июнь","Июль","Авг.","Сент.","Окт.","Нояб.","Дек."],filterEmptyText:"Ніякага выніку",filterPlaceholderText:"Пошук"}),on={setText:"Zadaj",cancelText:"Zrušiť",clearText:"Vymazať",closeText:"Zavrieť",selectedText:"Označený: {count}",dateFormat:"D.M.YYYY",dateFormatLong:"DDD D. MMM YYYY",dateWheelFormat:"|DDD D. MMM|",dayNames:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],dayNamesShort:["Ne","Po","Ut","St","Št","Pi","So"],dayNamesMin:["N","P","U","S","Š","P","S"],fromText:"Začiatok",monthNames:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],timeFormat:"H:mm",toText:"Koniec",nowText:"Teraz",amText:"am",pmText:"pm",todayText:"Dnes",firstDay:1,dateText:"Datum",timeText:"Čas",allDayText:"Celý deň",noEventsText:"Žiadne udalosti",eventText:"Udalostí",eventsText:"Udalosti",moreEventsText:"{count} ďalšia",moreEventsPluralText:"{count} ďalšie",weekText:"{count}. týždeň",rangeStartLabel:"Začiatok",rangeEndLabel:"Koniec",rangeStartHelp:"Vybrať",rangeEndHelp:"Vybrať",filterEmptyText:"Žiadne výsledky",filterPlaceholderText:"Vyhľadávanie"},rn={setText:"Постави",cancelText:"Откажи",clearText:"Обриши",selectedText:"{count} изабрана",dateFormat:"DD.MM.YYYY",dateFormatLong:"DDD, D. MMM YYYY.",dateWheelFormat:"|DDD D. MMM|",dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],fromText:"Од",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],timeFormat:"HH:mm",toText:"До",nowText:"сада",pmText:"pm",amText:"am",firstDay:1,dateText:"Датум",timeText:"време",todayText:"Данас",closeText:"Затвори",eventText:"Догађај",eventsText:"Догађаји",allDayText:"Цео дан",noEventsText:"Нема догађаја",moreEventsText:"Још {count}",weekText:"{count}. недеља",rangeStartLabel:"Од",rangeEndLabel:"До",rangeStartHelp:"Изаберите",rangeEndHelp:"Изаберите",filterEmptyText:"Без резултата",filterPlaceholderText:"Претрага"},ln={setText:"OK",cancelText:"Avbryt",clearText:"Klara",closeText:"Stäng",selectedText:"{count} vald",dateFormat:"YYYY-MM-DD",dateFormatLong:"DDD D MMM. YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesShort:["Sö","Må","Ti","On","To","Fr","Lö"],dayNamesMin:["S","M","T","O","T","F","L"],fromText:"Start",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],timeFormat:"HH:mm",toText:"Slut",nowText:"Nu",pmText:"pm",amText:"am",todayText:"I dag",firstDay:1,dateText:"Datum",timeText:"Tid",allDayText:"Heldag",noEventsText:"Inga aktiviteter",eventText:"Händelse",eventsText:"Händelser",moreEventsText:"{count} till",weekText:"Vecka {count}",rangeStartLabel:"Start",rangeEndLabel:"Slut",rangeStartHelp:"Välj",rangeEndHelp:"Välj",filterEmptyText:"Inga träffar",filterPlaceholderText:"Sök"},cn={setText:"ตั้งค่า",cancelText:"ยกเลิก",clearText:"ล้าง",closeText:"ปิด",selectedText:"{count} เลือก",dateFormat:"DD/MM/YYYY",dateFormatLong:"วันDDDที่ D MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"],dayNamesShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],fromText:"จาก",monthNames:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthNamesShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],timeFormat:"HH:mm",toText:"ถึง",nowText:"ตอนนี้",pmText:"pm",amText:"am",firstDay:0,dateText:"วัน",timeText:"เวลา",todayText:"วันนี้",eventText:"เหตุการณ์",eventsText:"เหตุการณ์",allDayText:"ตลอดวัน",noEventsText:"ไม่มีกิจกรรม",moreEventsText:"อีก {count} กิจกรรม",weekText:"สัปดาห์ที่ {count}",rangeStartLabel:"จาก",rangeEndLabel:"ถึง",rangeStartHelp:"เลือก",rangeEndHelp:"เลือก",filterEmptyText:"ไม่มีผลลัพธ์",filterPlaceholderText:"ค้นหา"},dn={setText:"Seç",cancelText:"İptal",clearText:"Temizleyin",closeText:"Kapatmak",selectedText:"{count} seçilmiş",dateFormat:"DD.MM.YYYY",dateFormatLong:"D MMMM DDD, YYYY",dateWheelFormat:"|D MMM DDD|",dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Paz","Pzt","Sal","Çar","Per","Cum","Cmt"],dayNamesMin:["P","P","S","Ç","P","C","C"],fromText:"Başla",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],timeFormat:"HH:mm",toText:"Son",nowText:"Şimdi",pmText:"pm",amText:"am",todayText:"Bugün",firstDay:1,dateText:"Tarih",timeText:"Zaman",allDayText:"Tüm gün",noEventsText:"Etkinlik Yok",eventText:"Etkinlik",eventsText:"Etkinlikler",moreEventsText:"{count} tane daha",weekText:"{count}. Hafta",rangeStartLabel:"Başla",rangeEndLabel:"Son",rangeStartHelp:"Seç",rangeEndHelp:"Seç",filterEmptyText:"Sonuç Yok",filterPlaceholderText:"Arayın"},hn={setText:"встановити",cancelText:"відміна",clearText:"очистити",closeText:"Закрити",selectedText:"{count} вибрані",dateFormat:"DD.MM.YYYY",dateFormatLong:"DDD, D MMM. YYYY",dateWheelFormat:"|DDD D MMM.|",dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],fromText:"від",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],timeFormat:"H:mm",toText:"кінець",nowText:"Зараз",pmText:"pm",amText:"am",firstDay:1,dateText:"дата",timeText:"Час",todayText:"Сьогодні",eventText:"подія",eventsText:"події",allDayText:"Увесь день",noEventsText:"Жодної події",moreEventsText:"та ще {count}",weekText:"{count} тиждень",rangeStartLabel:"від",rangeEndLabel:"кінець",rangeEndHelp:"Обрати",rangeStartHelp:"Обрати",filterEmptyText:"Ніякого результату",filterPlaceholderText:"Пошук"},un={setText:"Đặt",cancelText:"Hủy bò",clearText:"Xóa",closeText:"Đóng",selectedText:"{count} chọn",dateFormat:"DD/MM/YYYY",dateFormatLong:"DDD D, MMM YYYY",dateWheelFormat:"|DDD D MMM|",dayNames:["Chủ Nhật","Thứ Hai","Thứ Ba","Thứ Tư","Thứ Năm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],fromText:"Từ",monthNames:["Tháng Một","Tháng Hai","Tháng Ba","Tháng Tư","Tháng Năm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng Chín","Tháng Mười","Tháng Mười Một","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],timeFormat:"H:mm",toText:"Tới",nowText:"Bây giờ",pmText:"pm",amText:"am",firstDay:0,dateText:"Ngày",timeText:"Hồi",todayText:"Hôm nay",eventText:"Sự kiện",eventsText:"Sự kiện",allDayText:"Cả ngày",noEventsText:"Không có sự kiện",moreEventsText:"{count} thẻ khác",weekText:"Tuần {count}",rangeStartLabel:"Từ",rangeEndLabel:"Tới",rangeStartHelp:"Chọn",rangeEndHelp:"Chọn",filterEmptyText:"Không kết quả",filterPlaceholderText:"Tìm kiếm"},mn={setText:"确定",cancelText:"取消",clearText:"明确",closeText:"关闭",selectedText:"{count} 选",dateFormat:"YYYY年M月D日",dateFormatLong:"YYYY年M月D日",dateWheelFormat:"|M月D日 DDD|",dayNames:["周日","周一","周二","周三","周四","周五","周六"],dayNamesShort:["日","一","二","三","四","五","六"],dayNamesMin:["日","一","二","三","四","五","六"],fromText:"开始时间",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["一","二","三","四","五","六","七","八","九","十","十一","十二"],timeFormat:"H:mm",toText:"结束时间",nowText:"当前",pmText:"下午",amText:"上午",yearSuffix:"年",monthSuffix:"月",daySuffix:"日",todayText:"今天",dateText:"日",timeText:"时间",allDayText:"全天",noEventsText:"无事件",eventText:"活动",eventsText:"活动",moreEventsText:"他 {count} 件",weekText:"第 {count} 週",rangeStartLabel:"开始时间",rangeEndLabel:"结束时间",rangeStartHelp:"选取",rangeEndHelp:"选取",filterEmptyText:"没有结果",filterPlaceholderText:"搜索"};function m(e){return e<-1e-7?Math.ceil(e-1e-7):Math.floor(e+1e-7)}function _n(e,t,n){var a=[0,0,0],s=1582<e||1582===e&&10<t||1582===e&&10===t&&14<n?m(1461*(e+4800+m((t-14)/12))/4)+m(367*(t-2-12*m((t-14)/12))/12)-m(3*m((e+4900+m((t-14)/12))/100)/4)+n-32075:367*e-m(7*(e+5001+m((t-9)/7))/4)+m(275*t/9)+n+1729777,s=s-1948440+10632,i=m((s-1)/10631),o=m((10985-(s=s-10631*i+354))/5316)*m(50*s/17719)+m(s/5670)*m(43*s/15238);return s=s-m((30-o)/15)*m(17719*o/50)-m(o/16)*m(15238*o/43)+29,t=m(24*s/709),n=s-m(709*t/24),e=30*i+o-30,a[2]=n,a[1]=t,a[0]=e,a}var pn,vn={getYear:function(e){return _n(e.getFullYear(),e.getMonth()+1,e.getDate())[0]},getMonth:function(e){return--_n(e.getFullYear(),e.getMonth()+1,e.getDate())[1]},getDay:function(e){return _n(e.getFullYear(),e.getMonth()+1,e.getDate())[2]},getDate:function(e,t,n,a,s,i,o){t<0&&(e+=Math.floor(t/12),t=t%12?12+t%12:0),11<t&&(e+=Math.floor(t/12),t%=12);e=e,t=+t+1,n=n,d=new Array(3),h=m((11*e+3)/30)+354*e+30*t-m((t-1)/2)+n+1948440-385,e=2299160<h?(l=m(4*(u=68569+h)/146097),u-=m((146097*l+3)/4),c=m(4e3*(u+1)/1461001),u=u-m(1461*c/4)+31,r=m(80*u/2447),n=u-m(2447*r/80),t=r+2-12*(u=m(r/11)),100*(l-49)+c+u):(h=m(((r=1402+h)-1)/1461),l=m(((u=r-1461*h)-1)/365)-m(u/1461),r=m(80*(c=u-365*l+30)/2447),n=c-m(2447*r/80),t=r+2-12*(c=m(r/11)),4*h+l+c-4716),d[2]=n,d[1]=t,d[0]=e;var r,l,c,d,h,u=d;return new Date(u[0],u[1]-1,u[2],a||0,s||0,i||0,o||0)},getMaxDayOfMonth:function(e,t){t<0&&(e+=Math.floor(t/12),t=t%12?12+t%12:0),11<t&&(e+=Math.floor(t/12),t%=12);return[30,29,30,29,30,29,30,29,30,29,30,29][t]+(11===t&&(11*e+14)%30<11?1:0)}},fn={},gn={ar:Ht,bg:s,ca:Lt,cs:w,da:Nt,de:It,el:Ot,en:fn,"en-GB":Yt,es:I,fa:Rt,fi:At,fr:Wt,he:Ut,hi:Bt,hr:jt,hu:Kt,it:Xt,ja:Jt,ko:qt,lt:Gt,nl:Zt,no:$t,pl:Qt,"pt-BR":tn,"pt-PT":en,ro:nn,ru:an,"ru-UA":sn,sk:on,sr:rn,sv:ln,th:cn,tr:dn,ua:hn,vi:un,zh:mn},yn=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._newProps={},t._setEl=function(e){t._el=e?e._el||e:null},t}return a(t,e),Object.defineProperty(t.prototype,"value",{get:function(){return this.__value},set:function(e){this.__value=e},enumerable:!0,configurable:!0}),t.prototype.componentDidMount=function(){this.__init(),this._init(),this._mounted(),this._updated(),this._enhance()},t.prototype.componentDidUpdate=function(){this._updated(),this._enhance()},t.prototype.componentWillUnmount=function(){this._destroy(),this.__destroy()},t.prototype.render=function(){return this._willUpdate(),this._template(this.s,this.state)},t.prototype.getInst=function(){return this},t.prototype.setOptions=function(e){for(var t in e)this.props[t]=e[t];this.forceUpdate()},t.prototype._safeHtml=function(e){return{__html:e}},t.prototype._init=function(){},t.prototype.__init=function(){},t.prototype._emit=function(e,t){},t.prototype._template=function(e,t){},t.prototype._mounted=function(){},t.prototype._updated=function(){},t.prototype._destroy=function(){},t.prototype.__destroy=function(){},t.prototype._willUpdate=function(){},t.prototype._enhance=function(){var e=this._shouldEnhance;e&&(yt(!0===e?this._el:e),this._shouldEnhance=!1)},t}(H),bn=0,xn={large:992,medium:768,small:576,xlarge:1200,xsmall:0},t=(t&&(pn=t.matches,t.addListener(function(e){pn=e.matches,wt.next()})),function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.s={},e.state={},e._mbsc=!0,e._v={version:"5.26.1"},e._uid=++bn,e}return a(e,t),Object.defineProperty(e.prototype,"nativeElement",{get:function(){return this._el},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){},e.prototype._hook=function(e,t){var n=this.s;if(t.inst=this,n[t.type=e])return n[e](t,this);this._emit(e,t)},e.prototype.__init=function(){var e=this;if(this.constructor.defaults){this._optChange=wt.subscribe(function(){e.forceUpdate()});var t=this.props.modules;if(t)for(var n=0,a=t;n<a.length;n++){var s=a[n];s.init&&s.init(this)}}this._hook("onInit",{})},e.prototype.__destroy=function(){this._optChange!==Ee&&wt.unsubscribe(this._optChange),this._hook("onDestroy",{})},e.prototype._render=function(e,t){},e.prototype._willUpdate=function(){this._merge(),this._render(this.s,this.state)},e.prototype._resp=function(e){var t,n=e.responsive,a=-1,s=this.state.width;if(s===Ee&&(s=375),n&&s)for(var i=0,o=Object.keys(n);i<o.length;i++){var r=o[i],l=n[r],r=l.breakpoint||xn[r];r<=s&&a<r&&(t=l,a=r)}return t},e.prototype._merge=function(){var e=this.constructor,t=e.defaults,n=this._opt||{},a={};if(this._prevS=this.s||{},t){for(var s in this.props)this.props[s]!==Ee&&(a[s]=this.props[s]);var i=a.locale||n.locale||Tt.locale||{},o=a.calendarSystem||i.calendarSystem||n.calendarSystem||Tt.calendarSystem,r=a.theme||n.theme||Tt.theme,l=a.themeVariant||n.themeVariant||Tt.themeVariant,r=("auto"!==r&&r||(r=Ct.theme||""),"dark"!==l&&(!pn||"auto"!==l&&l)||!St[r+"-dark"]||(r+="-dark"),a.theme=r,(l=St[r])&&l[e._name]),r=ne({},t,r,i,Tt,n,o,a),e=this._resp(r);(this._respProps=e)&&(r=ne({},r,e))}else r=ne({},this.props),l=St[r.theme];t=l&&l.baseTheme;r.baseTheme=t,this.s=r,this._className=r.cssClass||r.class||r.className||"",this._rtl=" mbsc-"+(r.rtl?"rtl":"ltr"),this._theme=" mbsc-"+r.theme+(t?" mbsc-"+t:""),this._touchUi="auto"===r.touchUi||r.touchUi===Ee?M:r.touchUi,this._hb="ios"!==c||"ios"!==r.theme&&"ios"!==t?"":" mbsc-hb"},e.defaults=Ee,e._name="",e}(yn)),Dn={apiKey:"mbscdemo",apiUrl:"https://trialdev.mobiscroll.com/"},Tn=new Date(1970,0,1),Oe=6e4,Sn=60*Oe,Cn=24*Sn;function wn(e){return e._mbsc}function kn(e,t,n){var n=n||t.dataTimezone||t.displayTimezone,t=t.timezonePlugin;return n&&t&&wn(e)?((t=e.clone()).setTimezone(n),t.toISOString()):e}var Mn={amText:"am",dateFormat:"MM/DD/YYYY",dateFormatLong:"D DDD MMM YYYY",dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesMin:["S","M","T","W","T","F","S"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daySuffix:"",firstDay:0,fromText:"Start",getDate:An,monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],monthSuffix:"",pmText:"pm",separator:" ",shortYearCutoff:"+10",timeFormat:"h:mm A",toText:"End",todayText:"Today",weekText:"Week {count}",yearSuffix:"",getMonth:function(e){return e.getMonth()},getDay:function(e){return e.getDate()},getYear:function(e){return e.getFullYear()},getMaxDayOfMonth:function(e,t){return 32-new Date(e,t,32,12).getDate()},getWeekNumber:function(e){var e=new Date(+e),t=(e.setHours(0,0,0),e.setDate(e.getDate()+4-(e.getDay()||7)),new Date(e.getFullYear(),0,1));return Math.ceil(((e-t)/864e5+1)/7)}},En=/^(\d{4}|[+-]\d{6})(?:-?(\d{2})(?:-?(\d{2}))?)?(?:[T\s](\d{2}):?(\d{2})(?::?(\d{2})(?:\.(\d{3}))?)?((Z)|([+-])(\d{2})(?::?(\d{2}))?)?)?$/,Nn=/^((\d{2}):(\d{2})(?::(\d{2})(?:\.(\d{3}))?)?(?:(Z)|([+-])(\d{2})(?::?(\d{2}))?)?)?$/;function In(e,t,n){var a,s,i={y:1,m:2,d:3,h:4,i:5,s:6,u:7,tz:8};if(n)for(var o=0,r=Object.keys(i);o<r.length;o++)(s=e[i[a=r[o]]-t])&&(n[a]="tz"===a?s:1)}function Ye(e){return+new Date(1970,0,1,e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds())-+Tn}function Ln(e,t,n,a,s){e=+e,n=+n;return e<(s&&n==+a?+a+1:+a)&&n<(s&&e==+t?+t+1:+t)}function Hn(e,t){e=Ve(e,t);return e.setHours(0,0,0,0),e}function On(e,t){e=Ve(e,t);return e.setHours(23,59,59,999),e}function Yn(e,t,n,a,s){return(!t&&!s||e.exclusiveEndDates)&&n&&a&&n<a?Ve(t?Ee:e,+a-1):a}function Pe(e){return e.getFullYear()+"-"+T(e.getMonth()+1)+"-"+T(e.getDate())}function Fe(e,t){return wn(e)&&!t?e.createDate(e.getFullYear(),e.getMonth(),e.getDate()):An(e.getFullYear(),e.getMonth(),e.getDate())}function Pn(e){return Date.UTC(e.getFullYear(),e.getMonth(),e.getDate())}function Fn(e,t){return Ie((Pn(t)-Pn(e))/Cn)}function zn(e,t,n,a){for(var s=-1,i=Fe(e);i<=Fe(t);i.setDate(i.getDate()+1))$n(i.getDay(),n,a)&&s++;return s}function Vn(e,t,n){var a=e.getFullYear(),s=e.getMonth(),i=e.getDay(),t=n===Ee?t.firstDay:n;return new Date(a,s,t-(0<t-i?7:0)-i+e.getDate())}function ze(e,t){return e.getFullYear()===t.getFullYear()&&e.getMonth()===t.getMonth()&&e.getDate()===t.getDate()}function Rn(e,t,n){return n.getYear(e)===n.getYear(t)&&n.getMonth(e)===n.getMonth(t)}function An(e,t,n,a,s,i,o){e=new Date(e,t,n,a||0,s||0,i||0,o||0);return 23===e.getHours()&&0===(a||0)&&e.setHours(e.getHours()+2),e}function Wn(e){return e.getTime}function Un(e){return me(e)&&Nn.test(e)}function Bn(e,t){return Ve(e,t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds())}function jn(e){return e&&new Date(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds())}function Ve(e,t,n,a,s,i,o,r){return null===t?null:t&&(d(t)||me(t))&&h(n)?Re(t,e):e&&e.timezonePlugin?e.timezonePlugin.createDate(e,t,n,a,s,i,o,r):u(t)?new Date(t):h(t)?new Date:new Date(t,n||0,a||1,s||0,i||0,o||0,r||0)}function Re(e,t,n,a,s){var i,o,r;return(e=me(e)?e.trim():e)?(i=t&&t.timezonePlugin)&&!s?((s=wn(e)?e:i.parse(e,t)).setTimezone(t.displayTimezone),s):Wn(e)?e:e._isAMomentObject?e.toDate():d(e)?new Date(e):(i=Nn.exec(e),o=(s=Re(t&&t.defaultValue||new Date)).getFullYear(),r=s.getMonth(),s=s.getDate(),i?(In(i,2,a),new Date(o,r,s,i[2]?+i[2]:0,i[3]?+i[3]:0,i[4]?+i[4]:0,i[5]?+i[5]:0)):(i=En.exec(e))?(In(i,0,a),new Date(i[1]?+i[1]:o,i[2]?i[2]-1:r,i[3]?+i[3]:s,i[4]?+i[4]:0,i[5]?+i[5]:0,i[6]?+i[6]:0,i[7]?+i[7]:0)):Jn(n,e,t)):null}function Kn(e,t,n,a,s){var i=He&&window.moment||t.moment,o=t.timezonePlugin&&(t.dataTimezone||t.displayTimezone),r=o?"iso8601":t.returnFormat;if(o&&s)return kn(e,t);if(e){if("moment"===r&&i)return i(e);if("locale"===r)return Ae(n,e,t);if("iso8601"===r)return o=a,i=s="",(n=e)&&(o.h&&(i+=T(n.getHours())+":"+T(n.getMinutes()),o.s&&(i+=":"+T(n.getSeconds())),o.u&&(i+="."+T(n.getMilliseconds(),3)),o.tz&&(i+=o.tz)),o.y?(s+=n.getFullYear(),o.m&&(s+="-"+T(n.getMonth()+1),o.d&&(s+="-"+T(n.getDate())),o.h&&(s+="T"+i))):o.h&&(s=i)),s}return e}function Xn(e,t,n){return Ae(e,t,ne({},Mn,Tt.locale,n))}function Ae(a,e,t){for(var n="",s=!1,i=function(e){for(var t=0,n=c;n+1<a.length&&a.charAt(n+1)===e;)t++,n++;return t},o=function(e){e=i(e);return c+=e,e},r=function(e,t,n){var a=""+t;if(o(e))for(;a.length<n;)a="0"+a;return a},l=function(e,t,n,a){return(3===o(e)?a:n)[t]},c=0;c<a.length;c++)if(s)"'"!==a.charAt(c)||o("'")?n+=a.charAt(c):s=!1;else switch(a.charAt(c)){case"D":n+=1<i("D")?l("D",e.getDay(),t.dayNamesShort,t.dayNames):r("D",t.getDay(e),2);break;case"M":n+=1<i("M")?l("M",t.getMonth(e),t.monthNamesShort,t.monthNames):r("M",t.getMonth(e)+1,2);break;case"Y":d=t.getYear(e),n+=3===o("Y")?d:(d%100<10?"0":"")+d%100;break;case"h":var d=e.getHours();n+=r("h",12<d?d-12:0===d?12:d,2);break;case"H":n+=r("H",e.getHours(),2);break;case"m":n+=r("m",e.getMinutes(),2);break;case"s":n+=r("s",e.getSeconds(),2);break;case"a":n+=11<e.getHours()?t.pmText:t.amText;break;case"A":n+=(11<e.getHours()?t.pmText:t.amText).toUpperCase();break;case"'":o("'")?n+="'":s=!0;break;default:n+=a.charAt(c)}return n}function Jn(a,i,e){var t=ne({},Mn,e),e=Re(t.defaultValue||new Date);if(!i)return e;a=a||t.dateFormat+t.separator+t.timeFormat;for(var n,s=t.shortYearCutoff,o=t.getYear(e),r=t.getMonth(e)+1,l=t.getDay(e),c=e.getHours(),d=e.getMinutes(),h=0,u=-1,m=!1,_=0,p=function(e){for(var t=0,n=b;n+1<a.length&&a.charAt(n+1)===e;)t++,n++;return t},v=function(e){e=p(e);return b+=e,e},f=function(e){e=v(e),e=new RegExp("^\\d{1,"+(2<=e?4:2)+"}"),e=i.substr(_).match(e);return e?(_+=e[0].length,parseInt(e[0],10)):0},g=function(e,t,n){for(var a=3===v(e)?n:t,s=0;s<a.length;s++)if(i.substr(_,a[s].length).toLowerCase()===a[s].toLowerCase())return _+=a[s].length,s+1;return 0},y=function(){_++},b=0;b<a.length;b++)if(m)"'"!==a.charAt(b)||v("'")?y():m=!1;else switch(a.charAt(b)){case"Y":o=f("Y");break;case"M":r=p("M")<2?f("M"):g("M",t.monthNamesShort,t.monthNames);break;case"D":p("D")<2?l=f("D"):g("D",t.dayNamesShort,t.dayNames);break;case"H":c=f("H");break;case"h":c=f("h");break;case"m":d=f("m");break;case"s":h=f("s");break;case"a":u=g("a",[t.amText,t.pmText],[t.amText,t.pmText])-1;break;case"A":u=g("A",[t.amText,t.pmText],[t.amText,t.pmText])-1;break;case"'":v("'")?y():m=!0;break;default:y()}o<100&&(n=void 0,n=o<=(me(s)?(new Date).getFullYear()%100+parseInt(s,10):+s)?0:-100,o+=(new Date).getFullYear()-(new Date).getFullYear()%100+n);c=-1===u?c:u&&c<12?c+12:u||12!==c?c:0,s=t.getDate(o,r-1,l,c,d,h);return t.getYear(s)!==o||t.getMonth(s)+1!==r||t.getDay(s)!==l?e:s}function qn(e,t,n){if(e===t)return!0;if(ue(e)&&!e.length&&null===t||ue(t)&&!t.length&&null===e)return!0;if(null===e||null===t||e===Ee||t===Ee)return!1;if(me(e)&&me(t))return e===t;var a=n&&n.dateFormat;if(ue(e)||ue(t)){if(e.length!==t.length)return!1;for(var s=0;s<e.length;s++){var i=e[s],o=t[s];if(!(me(i)&&me(o)?i===o:+Re(i,n,a)==+Re(o,n,a)))return!1}return!0}return+Re(e,n,a)==+Re(t,n,a)}function Gn(e){return wn(e)?e.clone():new Date(e)}function We(e,t){e=Gn(e);return e.setDate(e.getDate()+t),e}function Zn(e,t,n){var a=n.getYear(e),t=n.getMonth(e)+t,s=n.getMaxDayOfMonth(a,t);return Bn(n,n.getDate(a,t,Math.min(n.getDay(e),s),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()))}function $n(e,t,n){return n<t?e<=n||t<=e:t<=e&&e<=n}function Qn(e,t){var t=Oe*t,n=Gn(e).setHours(0,0,0,0),n=n+Math.round((+e-+n)/t)*t;return wn(e)?e.createDate(n):new Date(n)}He&&"undefined"==typeof Symbol&&(window.Symbol={toPrimitive:"toPrimitive"}),R.datetime={formatDate:Xn,parseDate:Jn};var ea,ta,na=p,aa=+new Date,sa={};function ia(n){!n._logged&&"mbscdemo"!==Dn.apiKey&&P&&(n._logged=!0,sa.components=sa.components||[],sa.components.push(n.constructor._name.toLowerCase()),clearTimeout(ta),ta=setTimeout(function(){if(!Dn.fwv){var e=void 0;switch(Dn.fw){case"angular":var t=P.querySelector("[ng-version]"),e=t?t.getAttribute("ng-version"):"N/A";break;case"jquery":e=na.$.fn&&na.$.fn.jquery}Dn.fwv=e||"N/A"}sa.demo=!!na.isMbscDemo,sa.fw=Dn.fw,sa.fwv=Dn.fwv,sa.theme=n.s.theme,sa.trialCode=Dn.apiKey,sa.v=n._v.version,ra("log",null,sa,function(){sa={}})},5e3))}function oa(e){var t,n,a;e&&P&&(P.getElementById("trial-message")||((t=P.createElement("div")).setAttribute("id","trial-message"),t.setAttribute("style","position: absolute;width: 100%; bottom: 0;left: 0; padding: 10px;box-sizing: border-box;"),t.setAttribute("class","mbsc-font"),(n=P.createElement("div")).setAttribute("style","padding: 15px 25px; max-width: 400px; margin: 0 auto 10px auto; border-radius: 16px; line-height: 25px; background: #cacaca59; font-size: 15px; color: #151515;"),n.innerHTML=e.message+" ",(a=P.createElement("a")).innerHTML=e.button.text,a.setAttribute("style","color: #FF4080;font-weight: 600;"),a.setAttribute("href","https://mobiscroll.com/pricing?ref=trialapp"),n.appendChild(a),t.appendChild(n),P.body.appendChild(t),setTimeout(function(){P.body.removeChild(t)},6e3)))}function ra(n,a,e,s,t,i){var o,r,l,c;function d(){p&&p[r]&&p[r](null,!0),"remote"===n&&(l<4?ra(n,a,e,s,t,l+1):ea||(ea=!0,la()))}p&&P?(o=P.createElement("script"),r="mbsc_jsonp_"+(t||++aa),r=p[r]?"mbsc_jsonp_"+ ++aa:r,l=i||1,p[r]=function(e,t){clearTimeout(c),o.parentNode.removeChild(o),delete p[r],e=e?JSON.parse(e,function(e,t){return"string"!=typeof t?t:"function_"===t.substring(0,9)&&a?a[t.replace("function_","")]:t.match(En)?Re(t):t}):{},"remote"===n&&(e.__e,delete e.__e),t||s(e)},c=setTimeout(d,6e3),o.onerror=d,o.src=Dn.apiUrl+Dn.apiKey+"/"+n+"?callback="+r+"&data="+encodeURIComponent(JSON.stringify(e)),P.body.appendChild(o)):s({})}function la(){var e=P.cookie.replace(/(?:(?:^|.*;\s*)ASP.NET_SessionId\s*=\s*([^;]*).*$)|^.*$/,"$1");P.cookie="mobiscrollClientError=1; expires="+new Date((new Date).getTime()+864e5).toUTCString()+"; path=/; SameSite=Strict";try{p.name=(p.name||"")+";mobiscrollClientError"}catch(e){}ra("error",null,{sessionID:e,trialCode:Dn.apiKey},function(){P.cookie="mobiscrollClientError=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/";try{p.name=(p.name||"").replace(/;mobiscrollClientError/g,"")}catch(e){}})}P&&(P.cookie.replace(/(?:(?:^|.*;\s*)mobiscrollClientError\s*=\s*([^;]*).*$)|^.*$/,"$1")||/mobiscrollClientError/.test(p.name||""))&&P.addEventListener("DOMContentLoaded",function(){la()});var ca={0:"SU",1:"MO",2:"TU",3:"WE",4:"TH",5:"FR",6:"SA"},da={SU:0,MO:1,TU:2,WE:3,TH:4,FR:5,SA:6},ha={byday:"weekDays",bymonth:"month",bymonthday:"day",bysetpos:"pos",dtstart:"from",freq:"repeat",wkst:"weekStart"};function ua(e,t,n,a){var s=Re(t.start,t.allDay?Ee:n),i=Re(t.end,t.allDay?Ee:n),o=i-s;for(a&&(t.start=s,t.end=i),s=Fe(s),i=n.exclusiveEndDates?i:Fe(We(i,1));s<i||!o;)ma(e,s,t),s=We(s,1),o=1}function ma(e,t,n){var a=Pe(t);e[a]||(e[a]=[],e[a].date=Fe(t,!0)),e[a].push(n)}function _a(e,t,n,a,s,i){var o={};if(s)for(var r=0,l=Da(s);r<l.length;r++)o[Pe(Re(l[r]))]=!0;if(i)for(var c=0,d=Ta(i,e,e,t,n,a);c<d.length;c++)o[Pe(d[c].d)]=!0;return o}function pa(e){return me(e)||e.getTime||e.toDate?e:e.start||e.date}function va(e,t,n){var a=(t.original||t).start,a=t.allDay||!a,s=e.timezonePlugin,t=t.timezone||e.dataTimezone||e.displayTimezone;return s&&!a?{dataTimezone:t,displayTimezone:n?t:e.displayTimezone,timezonePlugin:s}:Ee}function fa(e){for(var t={},n=0,a=e.split(";");n<a.length;n++){var s=a[n].split("="),i=s[0].trim().toLowerCase(),s=s[1].trim();t[ha[i]||i]=s}return t}function ga(e){return me(e)?fa(e):ne({},e)}function ya(e,t,n){function a(e,t,n){return-1===(e=e.filter(function(e){return e!==t})).indexOf(n)&&e.push(n),e}function s(e,t,n){return e=ue(e)?e:((e||"")+"").split(",").map(function(e){return+e}),1<(e=a(e,t,n)).length?e:e[0]}function i(){var e,t,n;o.weekDays&&(n=o.weekDays.split(","),e=ca[l.getDay()],t=ca[r.getDay()],n=a(n,e,t),o.weekDays=n.join())}var o=ga(e),r=Re(t),l=Re(n),e=Fn(l,r),t=(o.repeat||"").toLowerCase();return"weekly"===t?i():"monthly"===t?o.pos===Ee?o.day=s(o.day,l.getDate(),r.getDate()):i():"yearly"===t&&(o.pos===Ee?(o.month=s(o.month,l.getMonth()+1,r.getMonth()+1),o.day=s(o.day,l.getDate(),r.getDate())):i()),o.from&&(o.from=We(Re(o.from),e)),o.until&&(o.until=We(Re(o.until),e)),o}function ba(e,t,n,a){for(var s=null,i=0,o=e;i<o.length;i++){var r,l=o[i];l.recurring?(r=Re(l.start||l.date),r=Ta(l.recurring,r,r,t,Ee,n,l.reccurringException,l.recurringExceptionRule,"first"),(!s||r<s)&&(s=r)):l.start&&l.end?(r=Re(l.start,n,a),t<Re(l.end,n,a)&&(s=r<=t?t:s&&s<r?s:r)):t<(l=Re(pa(l),n,a))&&(!s||l<s)&&(s=l)}return s}function xa(e,t,n,a){var s=t;e.sort(function(e,t){return Re(pa(e),n,a)-Re(pa(t),n,a)});for(var i=0,o=e;i<o.length;i++){var r,l,c=o[i];c.recurring?(r=Re(c.start||c.date),s<(r=Ta(c.recurring,r,r,t,Ee,n,c.reccurringException,c.recurringExceptionRule,"last"))&&(s=r)):c.start&&c.end?(r=Re(c.start,n,a),s<(l=Re(c.end,n,a))&&Fn(s,r)<=1&&(s=l)):s<(l=Re(pa(c),n,a))&&Fn(s,l)<=1&&(s=l)}return s}function Da(e){return e?ue(e)?e:me(e)?e.split(","):[e]:[]}function Ta(e,P,t,n,a,s,F,z,i){me(e)&&(e=fa(e));for(var r=s.getYear,l=s.getMonth,c=s.getDay,d=s.getDate,V=s.getMaxDayOfMonth,R=(e.repeat||"").toLowerCase(),o=e.interval||1,h=e.count,u=e.from?Re(e.from):P||(1!==o||h!==Ee?new Date:n),m=Fe(u),_=r(u),p=l(u),A=c(u),v=t?t.getHours():0,f=t?t.getMinutes():0,g=t?t.getSeconds():0,t=e.until?Re(e.until):1/0,W=u<n,U=W?n:Fe(u),y="first"===i,b="last"===i,x=y||b||!a||t<a?t:a,D=h===Ee?1/0:h,i=(e.weekDays||ca[u.getDay()]).split(","),T=da[(e.weekStart||"MO").trim().toUpperCase()],B=ue(e.day)?e.day:((e.day||A)+"").split(","),j=ue(e.month)?e.month:((e.month||p+1)+"").split(","),K=[],X=e.pos!==Ee,J=X?+e.pos:1,q=[],G=a?_a(P,n,a,s,F,z):{},S=!0,C=0,w=0,k=null,M=n,Z=0,$=i;Z<$.length;Z++){var E=$[Z];q.push(da[E.trim().toUpperCase()])}function N(){var e;!(G=a?G:_a(I,I,We(I,1),s,F,z))[Pe(I)]&&U<=I&&(y?(k=!k||I<k?I:k,S=!1):b?(e=Fn(M,I),M=M<I&&e<=1?I:M,S=e<=1):K.push({d:I,i:w})),w++}function Q(e,t){for(var n=[],a=0,s=q;a<s.length;a++)for(var i=Vn(e,{firstDay:s[a]});i<t;i.setDate(i.getDate()+7))i.getMonth()===e.getMonth()&&n.push(+i);n.sort();var o=n[J<0?n.length+J:J-1];I=o?new Date(o):t,(I=d(r(I),l(I),c(I),v,f,g))<=x?o&&N():S=!1}switch(R){case"daily":for(w=h&&W?Le(Fn(u,n)/o):0;S;)(I=d(_,p,A+w*o,v,f,g))<=x&&w<D?N():S=!1;break;case"weekly":var ee=q,te=Vn(u,{firstDay:T}),ne=te.getDay();for(ee.sort(function(e,t){return(e=(e-=ne)<0?e+7:e)-(t=(t-=ne)<0?t+7:t)});S;){for(var ae=0,se=ee;ae<se.length;ae++){var I,ie=We(te,(E=se[ae])<T?E-T+7:E-T);(I=d(r(ie),l(ie),c(ie)+7*C*o,v,f,g))<=x&&w<D?m<=I&&N():S=!1}C++}break;case"monthly":for(;S;){var L=V(_,p+C*o);if(X)Q(d(_,p+C*o,1),d(_,p+C*o+1,1));else for(var oe=0,re=B;oe<re.length;oe++){var H=re[oe];(I=d(_,p+C*o,(Y=+H)<0?L+Y+1:Y,v,f,g))<=x&&w<D?H<=L&&m<=I&&N():S=!1}C++}break;case"yearly":for(;S;){for(var le=0,ce=j;le<ce.length;le++){var O=+ce[le],L=V(_+C*o,O-1);if(X)Q(d(_+C*o,O-1,1),d(_+C*o,O,1));else for(var de=0,he=B;de<he.length;de++){var Y,H=he[de];(I=d(_+C*o,O-1,(Y=+H)<0?L+Y+1:Y,v,f,g))<=x&&w<D?H<=L&&m<=I&&N():S=!1}}C++}}return y?k:b?M:K}function Sa(e,t,n,a,s){var i={};if(!e)return Ee;for(var o=0,r=e;o<r.length;o++){var l=r[o],c=va(a,l,!0),d=va(a,l),h=pa(l),d=Re(h,d);if(l.recurring)for(var h=Nn.test(h)?null:Re(h),u=Ve(c,d),m=l.end?Re(l.end,c):u,_="00:00"===l.end?We(m,1):m,p=+_-+u,m=We(t,-1),v=We(n,1),f=0,g=Ta(l.recurring,h,u,m,v,a,l.recurringException,l.recurringExceptionRule);f<g.length;f++){var y,b=g[f],x=b.d,D=ne({},l);l.start?D.start=Ve(c,x.getFullYear(),x.getMonth(),x.getDate(),u.getHours(),u.getMinutes(),u.getSeconds()):(D.allDay=!0,D.start=Ve(Ee,x.getFullYear(),x.getMonth(),x.getDate())),l.end&&(l.allDay?(y=We(x,Fn(u,_)),D.end=new Date(y.getFullYear(),y.getMonth(),y.getDate(),_.getHours(),_.getMinutes(),_.getSeconds())):D.end=Ve(c,+D.start+p)),D.nr=b.i,D.occurrenceId=D.id+"_"+Pe(D.start),D.original=l,D.start&&D.end?ua(i,D,a,s):ma(i,x,D)}else l.start&&l.end?ua(i,l,a,s):d&&ma(i,d,l)}return i}var Ca=1,j="month",wa="year",ee="multi-year",ka=ne({},Mn,{dateText:"Date",eventText:"event",eventsText:"events",moreEventsText:"{count} more",nextPageText:"Next page",prevPageText:"Previous page",showEventTooltip:!0,showToday:!0,timeText:"Time"});function Ma(e,t){var n=t.refDate?Re(t.refDate):Tn,a=t.showCalendar?t.calendarType:t.eventRange,s=(t.showCalendar?"year"===a?1:"week"===a?t.weeks:t.size:t.eventRangeSize)||1,i=t.getDate,n="week"===a?Vn(n,t):n,o=t.getYear(n),r=t.getMonth(n),l=t.getDay(n);switch(a){case"year":return i(o+e*s,0,1);case"week":return i(o,r,l+7*s*e);case"day":return i(o,r,l+s*e);default:return i(o,r+e*s,1)}}function Ea(e,t){var n,a=t.refDate?Re(t.refDate):Tn,s=t.getYear,i=t.getMonth,o=t.showCalendar?t.calendarType:t.eventRange,r=(t.showCalendar?"year"===o?1:"week"===o?t.weeks:t.size:t.eventRangeSize)||1;switch(o){case"year":n=s(e)-s(a);break;case"week":n=Fn(Vn(a,t),Vn(e,t))/7;break;case"day":n=Fn(a,e);break;case"month":n=i(e)-i(a)+12*(s(e)-s(a));break;default:return Ee}return Le(n/r)}function Na(e,t){var n=t.refDate?Re(t.refDate):Tn;return Le((t.getYear(e)-t.getYear(n))/12)}function Ia(e,t){var n=t.refDate?Re(t.refDate):Tn;return t.getYear(e)-t.getYear(n)}function La(e,t){var n=Re(e.start||e.date),a=Re(t.start||e.date),s=e.title||e.text,i=t.title||t.text,n=n?+n*(e.allDay?1:10):0,e=a?+a*(t.allDay?1:10):0;return n==e?i<s?1:-1:n-e}function Ha(e,t){return"auto"===e?Math.max(1,Math.min(3,Math.floor(t?t/296:1))):e?+e:1}function Oa(e,t,n,a,s,P,F,z,i,V,o,R,A,W){t=t||{};for(var r={},l=new Map,c={},d=n,h=0,u=s,m=a;d<a;){var _=Pe(d),p=d.getDay(),U=e.getDay(d),v=o&&e.getDate(e.getYear(d),e.getMonth(d)+1,0),f=i&&(p===z||1===U&&o)||+d==+n,p=Vn(d,e),g=Ya(t[_]||[],V),y=void 0,b=void 0,x=void 0,D=0,T=0,S=0,C=(f&&(c={},m=i?We(p,P):a),F&&(g=g.filter(function(e){return e.allDay})),-1===s&&(u=g.length+1),g.length),w=[];for(R&&(w.push({id:"count_"+ +d,count:C,placeholder:0===C}),D=u);C&&D<u;){for(var k,M,E,N,y=null,I=0;I<g.length;I++)c[D]===g[I]&&(y=g[I],x=I);if(b=y&&l.get(y)||[],D===u-1&&(T<C-1||S===C&&!y)&&-1!==s){var L=C-T,H=A||"",O=(1<L&&W||H).replace(/{count}/,L);if(L&&w.push({id:"more_"+ ++h,more:O,label:O}),y){c[D]=null;for(var Y=0,B=b;Y<B.length;Y++){var j=B[Y],K=H.replace(/{count}/,"1");r[Pe(j)].data[D]={id:"more_"+ ++h,more:K,label:K}}}T++,D++}else y?(x===S&&S++,ze(d,Re(y.end,va(e,y)))&&(c[D]=null),w.push({id:y.occurrenceId||y.id,event:y}),D++,T++,b.push(d)):S<C?(O=(L=g[S]).allDay,N=va(e,L),(E=L.start&&Re(L.start,N))&&!ze(d,E)&&!f||(k=(N=Yn(e,O,E,L.end&&Re(L.end,N),!0))&&!ze(E,N),M=v&&v<N?v:N,E=E?", "+e.fromText+": "+Ae("DDDD, MMMM D, YYYY",E,e):"",N=N?", "+e.toText+": "+Ae("DDDD, MMMM D, YYYY",N,e):"",L.id===Ee&&(L.id="mbsc_"+Ca++),k&&(c[D]=L),l.set(L,[d]),w.push({event:L,id:L.occurrenceId||L.id,label:(L.title||L.text||"")+E+N,lastDay:v?We(v,1):Ee,multiDay:k,showText:!0,width:k?100*Math.min(Fn(d,M)+1,Fn(d,m)):100}),D++,T++),S++):(T<C&&w.push({id:"ph_"+ ++h,placeholder:!0}),D++)}r[_]={data:w,events:g},d=Fe(We(d,1))}return r}function Ya(e,t){return e&&e.slice(0).sort(t||La)}function Pa(e,t,n){return!(!1===e||!1===n||!t)}function Fa(e,t,n){return!1!==e&&!1!==t&&!1!==n}var za,Va,Ra="animationstart",Aa="blur",Wa="change",Ua="click",Ba="contextmenu",ja="dblclick",Ka="focus",Xa="focusin",Ja="input",qa="keydown",V="mousedown",Ga="mousemove",Za="mouseup",$a="mouseenter",Qa="mouseleave",es="mousewheel",ts="scroll",ns="touchstart",as="touchmove",ss="touchend",is="touchcancel",os="wheel",rs=0;function ls(e,t,n){var a,s,i,o,r,l,c,d=0;function h(){s.style.width="100000px",s.style.height="100000px",a.scrollLeft=1e5,a.scrollTop=1e5,l.scrollLeft=1e5,l.scrollTop=1e5}function u(){var e=+new Date;o=0,c||(200<e-d&&!a.scrollTop&&!a.scrollLeft&&(d=e,h()),o=o||U(u))}function m(){r=r||U(_)}function _(){r=0,h(),t()}return p&&p.ResizeObserver?(za=za||new p.ResizeObserver(function(a){r=r||U(function(){for(var e=0,t=a;e<t.length;e++){var n=t[e];n.target.__mbscResize&&n.target.__mbscResize()}r=0})}),rs++,e.__mbscResize=function(){n?n.run(t):t()},za.observe(e)):i=P&&P.createElement("div"),i&&(i.innerHTML='<div class="mbsc-resize"><div class="mbsc-resize-i mbsc-resize-x"></div></div><div class="mbsc-resize"><div class="mbsc-resize-i mbsc-resize-y"></div></div>',i.dir="ltr",l=i.childNodes[1],a=i.childNodes[0],s=a.childNodes[0],e.appendChild(i),F(a,"scroll",m),F(l,"scroll",m),n?n.runOutsideAngular(function(){U(u)}):U(u)),{detach:function(){za?(rs--,delete e.__mbscResize,za.unobserve(e),rs||(za=Ee)):(i&&(z(a,"scroll",m),z(l,"scroll",m),e.removeChild(i),B(r),i=Ee),c=!0)}}}var cs="input,select,textarea,button",ds={enter:13,esc:27,space:32},hs=He&&/(iphone|ipod)/i.test(E)&&7<=N&&N<15;function us(n,e){var t=n.s,a=[],s={cancel:{cssClass:"mbsc-popup-button-close",name:"cancel",text:t.cancelText},close:{cssClass:"mbsc-popup-button-close",name:"close",text:t.closeText},ok:{cssClass:"mbsc-popup-button-primary",keyCode:13,name:"ok",text:t.okText},set:{cssClass:"mbsc-popup-button-primary",keyCode:13,name:"set",text:t.setText}};return e&&e.length?(e.forEach(function(e){var t=me(e)?s[e]||{text:e}:e;t.handler&&!me(t.handler)||(me(t.handler)&&(t.name=t.handler),t.handler=function(e){n._onButtonClick({domEvent:e,button:t})}),a.push(t)}),a):Ee}function ms(e,t){void 0===t&&(t=0);var n=e._prevModal;return n&&n!==e&&t<10?n.isVisible()?n:ms(n,t+1):Ee}yn=function(e){function t(){var c=null!==e&&e.apply(this,arguments)||this;return c._lastFocus=+new Date,c._setActive=function(e){c._active=e},c._setContent=function(e){c._content=e},c._setLimitator=function(e){c._limitator=e},c._setPopup=function(e){c._popup=e},c._setWrapper=function(e){c._wrapper=e},c._onOverlayClick=function(){c._isOpen&&c.s.closeOnOverlayClick&&!c._preventClose&&c._close("overlay"),c._preventClose=!1},c._onDocClick=function(e){c.s.showOverlay||e.target===c.s.focusElm||Va!==c||c._onOverlayClick()},c._onMouseDown=function(e){c.s.showOverlay||(c._target=e.target)},c._onMouseUp=function(e){c._target&&c._popup&&c._popup.contains(c._target)&&!c._popup.contains(e.target)&&(c._preventClose=!0),c._target=!1},c._onPopupClick=function(){c.s.showOverlay||(c._preventClose=!0)},c._onAnimationEnd=function(e){e.target===c._popup&&(c._isClosing&&(c._onClosed(),c._isClosing=!1,c.state.isReady?c.setState({isReady:!1}):c.forceUpdate()),c._isOpening&&(c._onOpened(),c._isOpening=!1,c.forceUpdate()))},c._onButtonClick=function(e){var t=e.domEvent,e=e.button;c._hook("onButtonClick",{domEvent:t,button:e}),/cancel|close|ok|set/.test(e.name)&&c._close(e.name)},c._onFocus=function(e){var t=+new Date;Va===c&&e.target.nodeType&&c._ctx.contains(e.target)&&c._popup&&!c._popup.contains(e.target)&&100<t-c._lastFocus&&e.target!==c.s.focusElm&&(c._lastFocus=t,c._active.focus())},c._onKeyDown=function(e){var t,n,a,s,i=c.s,o=e.keyCode,r=i.focusElm&&!i.focusOnOpen?i.focusElm:Ee;(32===o&&!ve(e.target,cs)||c._lock&&(38===o||40===o))&&e.preventDefault(),i.focusTrap&&9===o&&(i=c._popup.querySelectorAll('input,select,textarea,button,[tabindex="0"]'),t=[],o=0,a=n=-1,s=Ee,ye(i,function(e){e.disabled||!e.offsetHeight&&!e.offsetWidth||(t.push(e),n++,e===c._doc.activeElement&&(a=n))}),e.shiftKey&&(o=n,n=0),a===n?s=r||t[o]:e.target===r&&(s=t[o]),s&&(s.focus(),e.preventDefault()))},c._onContentScroll=function(e){!c._lock||e.type===as&&"stylus"===e.touches[0].touchType||e.preventDefault()},c._onScroll=function(e){var t=c.s;t.closeOnScroll?c._close("scroll"):!c._hasContext&&"anchored"!==t.display||c.position()},c._onWndKeyDown=function(e){var t=c.s,n=e.keyCode;if(Va===c&&n!==Ee&&(c._hook("onKeyDown",{keyCode:n}),t.closeOnEsc&&27===n&&c._close("esc"),(13!==n||!ve(e.target,'textarea,button,input[type="button"],input[type="submit"]')||e.shiftKey)&&c._buttons))for(var a=0,s=c._buttons;a<s.length;a++)for(var i=s[a],o=0,r=ue(i.keyCode)?i.keyCode:[i.keyCode];o<r.length;o++){var l=r[o];if(!i.disabled&&l!==Ee&&(l===n||ds[l]===n))return void i.handler(e)}},c._onResize=function(){var e=c._wrapper,t=c._hasContext;e&&(c._vpWidth=Math.min(e.clientWidth,t?1/0:c._win.innerWidth),c._vpHeight=Math.min(e.clientHeight,t?1/0:c._win.innerHeight),c._maxWidth=c._limitator.offsetWidth,c._maxHeight=c.s.maxHeight!==Ee||c._vpWidth<768||c._vpHeight<650?c._limitator.offsetHeight:600,c._round=!1===c.s.touchUi||c._popup.offsetWidth<c._vpWidth&&c._vpWidth>c._maxWidth,!(t={isLarge:c._round,maxPopupHeight:c._maxHeight,maxPopupWidth:c._maxWidth,target:e,windowHeight:c._vpHeight,windowWidth:c._vpWidth})===c._hook("onResize",t)||t.cancel||c.position())},c}return a(t,e),t.prototype.open=function(){this._isOpen||this.setState({isOpen:!0})},t.prototype.close=function(){this._close()},t.prototype.isVisible=function(){return!!this._isOpen},t.prototype.position=function(){var e,t,n,a,s,i,o,r,l,c,d,h,u,m,_,p,v,f,g;this._isOpen&&(e=this.s,l=this.state,u=this._wrapper,i=this._popup,_=this._hasContext,v=e.anchor,f=e.anchorAlign,t=e.rtl,r=le(this._scrollCont),p=re(this._scrollCont),n=this._vpWidth,a=this._vpHeight,g=this._maxWidth,m=this._maxHeight,s=Math.min(i.offsetWidth,g),i=Math.min(i.offsetHeight,m),o=e.showArrow,this._lock=e.scrollLock&&this._content.scrollHeight<=this._content.clientHeight,_&&(u.style.top=r+"px",u.style.left=p+"px"),r=!1===this._hook("onPosition",{isLarge:this._round,maxPopupHeight:m,maxPopupWidth:g,target:this._wrapper,windowHeight:a,windowWidth:n}),"anchored"!==e.display||r?this.setState({height:a,isReady:!0,showArrow:o,width:n}):(m=p=0,g=Ne(l.modalLeft||0,8,n-s-8),r=l.modalTop||8,l="bottom",c={},d=o?16:4,h=(u.offsetWidth-n)/2,u=(u.offsetHeight-a)/2,_&&(m=(_=this._ctx.getBoundingClientRect()).top,p=_.left),v&&this._ctx.contains(v)&&(m=(_=v.getBoundingClientRect()).top-m,_=_.left-p,p=v.offsetWidth,v=v.offsetHeight,g=Ne(g="start"===f&&!t||"end"===f&&t?_:"end"===f&&!t||"start"===f&&t?_+p-s:_-(s-p)/2,8,n-s-8),r=m+v+d,c={left:Ne(_+p/2-g-h,30,s-30)+"px"},a<r+i+d&&(0<m-i-d?(l="top",r=m-i-d):e.disableLeftRight||((f=0<_-s-8)||_+p+s+8<=n)&&(r=Ne(m-(i-v)/2,8,a-i-8),c={top:Ne(m+v/2-(r=a<r+i+8?Math.max(a-i-8,0):r)-u,30,i-30)+"px"},l=f?"left":"right",g=f?_-s:_+p))),"top"!==l&&"bottom"!==l||a<r+i+d&&(r=Math.max(a-i-d,0),o=!1),this.setState({arrowPos:c,bubblePos:l,height:a,isReady:!0,modalLeft:g,modalTop:r,showArrow:o,width:n})))},t.prototype._render=function(e,t){"bubble"===e.display&&(e.display="anchored");var n=e.animation,a=e.display,s=this._prevS,i="anchored"===a,o="inline"!==a,r=e.fullScreen&&o,l=o&&(e.isOpen===Ee?t:e).isOpen;if(l&&(e.windowWidth!==s.windowWidth||e.display!==s.display||e.showArrow!==s.showArrow||e.anchor!==s.anchor&&"anchored"===e.display)&&(this._shouldPosition=!0),this._limits={maxHeight:ie(e.maxHeight),maxWidth:ie(e.maxWidth)},this._style={height:r?"100%":ie(e.height),left:i&&t.modalLeft?t.modalLeft+"px":"",maxHeight:ie(this._maxHeight||e.maxHeight),maxWidth:ie(this._maxWidth||e.maxWidth),top:i&&t.modalTop?t.modalTop+"px":"",width:r?"100%":ie(e.width)},this._hasContext="body"!==e.context&&e.context!==Ee,this._needsLock=hs&&!this._hasContext&&"anchored"!==a&&e.scrollLock,this._isModal=o,this._flexButtons="center"===a||!this._touchUi&&!r&&("top"===a||"bottom"===a),n!==Ee&&!0!==n)this._animation=me(n)?n:"";else switch(a){case"bottom":this._animation="slide-up";break;case"top":this._animation="slide-down";break;default:this._animation="pop"}e.buttons?e.buttons!==s.buttons&&(this._buttons=us(this,e.buttons)):this._buttons=Ee,e.headerText!==s.headerText&&(this._headerText=e.headerText?this._safeHtml(e.headerText):Ee),l&&!this._isOpen&&this._onOpen(),!l&&this._isOpen&&this._onClose(),this._isOpen=l,this._isVisible=l||this._isClosing},t.prototype._updated=function(){var e=this,t=this.s,n=this._wrapper;if(P&&(t.context!==this._prevS.context||!this._ctx)&&((s=(s=me(t.context)?P.querySelector(t.context):t.context)||P.body).__mbscLock=s.__mbscLock||0,s.__mbscIOSLock=s.__mbscIOSLock||0,s.__mbscModals=s.__mbscModals||0,this._ctx=s,this._justOpened))return void y(this,function(){e.forceUpdate()});if(n){if(this._justOpened){var a,s=this._ctx,i=this._hasContext,o=this._doc=oe(n),r=this._win=ce(n),l=o.activeElement;if(!this._hasWidth&&t.responsive){var c=Math.min(n.clientWidth,i?1/0:r.innerWidth),d=Math.min(n.clientHeight,i?1/0:r.innerHeight);if(this._hasWidth=!0,c!==this.state.width||d!==this.state.height)return void y(this,function(){e.setState({height:d,width:c})})}this._scrollCont=i?s:r,this._observer=ls(n,this._onResize,this._zone),this._prevFocus=t.focusElm||l,s.__mbscModals++,this._needsLock&&(s.__mbscIOSLock||(n=le(this._scrollCont),a=re(this._scrollCont),s.style.left=-a+"px",s.style.top=-n+"px",s.__mbscScrollLeft=a,s.__mbscScrollTop=n,s.classList.add("mbsc-popup-open-ios"),s.parentNode.classList.add("mbsc-popup-open-ios")),s.__mbscIOSLock++),i&&s.classList.add("mbsc-popup-ctx"),t.focusTrap&&F(r,Xa,this._onFocus),t.focusElm&&!t.focusOnOpen&&F(t.focusElm,qa,this._onKeyDown),F(this._scrollCont,as,this._onContentScroll,{passive:!1}),F(this._scrollCont,os,this._onContentScroll,{passive:!1}),F(this._scrollCont,es,this._onContentScroll,{passive:!1}),setTimeout(function(){t.focusOnOpen&&l&&l.blur(),X&&e._animation||e._onOpened(),F(o,V,e._onMouseDown),F(o,Za,e._onMouseUp),F(o,Ua,e._onDocClick)}),this._hook("onOpen",{target:this._wrapper})}this._shouldPosition&&y(this,function(){e._onResize()}),this._justOpened=!1,this._justClosed=!1,this._shouldPosition=!1}},t.prototype._destroy=function(){this._isOpen&&(this._onClosed(),this._unlisten(),Va===this&&(Va=ms(this)))},t.prototype._onOpen=function(){var e=this;X&&this._animation&&(this._isOpening=!0,this._isClosing=!1),this._justOpened=!0,this._preventClose=!1,this.s.setActive&&Va!==this&&setTimeout(function(){e._prevModal=Va,Va=e})},t.prototype._onClose=function(){var e=this;X&&this._animation?(this._isClosing=!0,this._isOpening=!1):setTimeout(function(){e._onClosed(),e.setState({isReady:!1})}),this._hasWidth=!1,this._unlisten()},t.prototype._onOpened=function(){var e=this.s;e.focusOnOpen&&(e=(e=e.activeElm)?me(e)?this._popup.querySelector(e)||this._active:e:this._active)&&e.focus&&e.focus(),F(this._win,qa,this._onWndKeyDown),F(this._scrollCont,ts,this._onScroll)},t.prototype._onClosed=function(){var e,t,n=this,a=this._ctx,s=this._prevFocus,i=this.s.focusOnClose&&s&&s.focus&&s!==this._doc.activeElement;a.__mbscModals--,this._justClosed=!0,this._needsLock&&(a.__mbscIOSLock--,a.__mbscIOSLock||(a.classList.remove("mbsc-popup-open-ios"),a.parentNode.classList.remove("mbsc-popup-open-ios"),a.style.left="",a.style.top="",e=this._scrollCont,t=a.__mbscScrollLeft,e.scrollTo?e.scrollTo(t,e.scrollY):e.scrollLeft=t,e=this._scrollCont,t=a.__mbscScrollTop,e.scrollTo?e.scrollTo(e.scrollX,t):e.scrollTop=t)),this._hasContext&&!a.__mbscModals&&a.classList.remove("mbsc-popup-ctx"),this._hook("onClosed",{focus:i}),i&&s.focus(),setTimeout(function(){Va===n&&(Va=ms(n))})},t.prototype._unlisten=function(){z(this._win,qa,this._onWndKeyDown),z(this._scrollCont,ts,this._onScroll),z(this._scrollCont,as,this._onContentScroll,{passive:!1}),z(this._scrollCont,os,this._onContentScroll,{passive:!1}),z(this._scrollCont,es,this._onContentScroll,{passive:!1}),z(this._doc,V,this._onMouseDown),z(this._doc,Za,this._onMouseUp),z(this._doc,Ua,this._onDocClick),this.s.focusTrap&&z(this._win,Xa,this._onFocus),this.s.focusElm&&z(this.s.focusElm,qa,this._onKeyDown),this._observer&&(this._observer.detach(),this._observer=null)},t.prototype._close=function(e){this._isOpen&&(this.s.isOpen===Ee&&this.setState({isOpen:!1}),this._hook("onClose",{source:e}))},t.defaults={buttonVariant:"flat",cancelText:"Cancel",closeOnEsc:!0,closeOnOverlayClick:!0,closeText:"Close",contentPadding:!0,display:"center",focusOnClose:!0,focusOnOpen:!0,focusTrap:!0,maxWidth:600,okText:"Ok",scrollLock:!0,setActive:!0,setText:"Set",showArrow:!0,showOverlay:!0},t}(t);function _s(e,t){var n;e&&((n=e).getInputElement||n.tagName&&"ion-input"===n.tagName.toLowerCase()?function t(n,a,s){10<(s=void 0===s?0:s)?(delete n.__mbscTimer,a(n)):(clearTimeout(n.__mbscTimer),n.__mbscTimer=setTimeout(function(){n.getInputElement?n.getInputElement().then(function(e){e?(delete n.__mbscTimer,a(e)):t(n,a,s+1)}):t(n,a,s+1)},10))}(e,t):e.vInput?t(e.vInput.nativeElement):e._el?t(e._el):e.instance&&e.instance._el?t(e.instance._el):1===e.nodeType?t(e):me(e)&&(n=P.querySelector(e))&&t(n))}function ps(n,a,t,s){var i,o,e,r,l,c,d,h,u,m,_,p;return n&&1===n.nodeType?(i=function(){(a.s.showOnClick||a.s.showOnFocus)&&m&&!a._allowTyping&&(_.readOnly=!0)},o=function(e){var t=a.s;i(),s&&s(e),!t.showOnClick||t.disabled||a._popup._isVisible&&n===a._popup._prevFocus||setTimeout(function(){a._focusElm=n,a._anchor=t.anchor||n,a.open()})},e=function(e){a.s.showOnClick&&(a.s.showOnFocus&&(a._preventShow=!0),a._allowTyping||e.preventDefault())},r=function(e){a.s.showOnClick&&(a._isOpen?13===e.keyCode&&a._allowTyping&&e.stopPropagation():(32===e.keyCode&&e.preventDefault(),13!==e.keyCode&&32!==e.keyCode||o(e)))},l=function(e){i(),a.s.showOnFocus&&(a._preventShow?a._preventShow=!1:o(e))},c=function(){m&&(_.readOnly=p)},d=function(e){t&&t(e)},h=function(){u.document.activeElement===n&&(i(),a._preventShow=!0)},u=ce(n),m=ve(n,"input,select"),_=n,m&&(_.autocomplete="off",p=_.readOnly),F(n,Ua,o),F(n,V,e),F(n,qa,r),F(n,Ka,l),F(n,Aa,c),F(n,Wa,d),F(u,Ka,h),function(){m&&(_.readOnly=p),z(n,Ua,o),z(n,V,e),z(n,qa,r),z(n,Ka,l),z(n,Aa,c),z(n,Wa,d),z(u,Ka,h)}):g}var vs=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n._nullSupport=!0,n._onInputChange=function(e,t){t=e.detail||(t!==Ee?t:e.target.value);t===n._tempValueText||n._preventChange||(n._readValue(t,!0),n._valueTextChange=t!==n._tempValueText,e=Q(t)?null:n._get(n._tempValueRep),n.value=e,n._valueChange(e)),n._preventChange=!1},n._onResize=function(e){n._hook("onResize",e)},n._onWrapperResize=function(){n._wrapper&&n._onResize({windowWidth:n._wrapper.offsetWidth})},n._onPopupClose=function(e){/cancel|esc|overlay|scroll/.test(e.source)&&n._hook("onCancel",{value:n.value,valueText:n._valueText}),n.close()},n._onPopupClosed=function(e){e.focus&&(n._preventShow=!0),n._hook("onClosed",e),n._onClosed()},n._onPopupKey=function(e){13===e.keyCode&&n._onEnterKey(e)},n._onPopupOpen=function(e){e.value=n.value,e.valueText=n._valueText,n._hook("onOpen",e)},n._onButtonClick=function(e){var t=e.domEvent,e=e.button;"set"===e.name&&n.set(),n._popup&&n._popup._onButtonClick({domEvent:t,button:e})},n._setInput=function(e){n._el=e&&e.nativeElement?e.nativeElement:e},n._setPopup=function(e){n._popup=e},n._setWrapper=function(e){n._wrapper=e},n}return a(t,e),t.prototype.open=function(){this._inst?this._inst.open():this.s.isOpen===Ee&&this.setState({isOpen:!0})},t.prototype.close=function(){var e;"inline"!==this.s.display&&(this._inst?this._inst.close():(e={value:this.value,valueText:this._valueText},this.s.isOpen===Ee&&this.setState({isOpen:!1}),this._hook("onClose",e)))},t.prototype.set=function(){this._valueRep=this._copy(this._tempValueRep),this._valueText=this._tempValueText,this._value=this.value=this._get(this._valueRep),this._valueChange(this.value)},t.prototype.position=function(){this._inst?this._inst.position():this._popup&&this._popup.position()},t.prototype.isVisible=function(){return this._inst?this._inst.isVisible():!!this._popup&&this._popup.isVisible()},t.prototype.getVal=function(){return this._get(this._valueRep)},t.prototype.setVal=function(e){this.value=e,this.setState({value:e})},t.prototype.getTempVal=function(){return this._get(this._tempValueRep)},t.prototype.setTempVal=function(e){this._tempValueSet=!0,this._tempValueRep=this._parse(e),this._setOrUpdate(!0)},t.prototype._shouldValidate=function(e,t){return!1},t.prototype._valueEquals=function(e,t){return e===t},t.prototype._change=function(e){},t.prototype._render=function(e,t){var n,a,s,i=this,o=this.props||{},r=this._respProps||{},l=this._prevS,r=(this._touchUi||(e.display=r.display||o.display||Tt.display||"anchored",e.showArrow=r.showArrow||o.showArrow||!1),"bubble"===e.display&&(e.display="anchored"),this._scrollLock=e.scrollLock,(e.isOpen!==Ee?e:t).isOpen),o=e.modelValue!==Ee?e.modelValue:e.value,c=o!==Ee?o:t.value===Ee?e.defaultValue:t.value;if(this._showInput=e.showInput!==Ee?e.showInput:"inline"!==e.display&&e.element===Ee,(!this._buttons||e.buttons!==l.buttons||e.display!==l.display||e.setText!==l.setText||e.cancelText!==l.cancelText||e.closeText!==l.closeText||e.touchUi!==l.touchUi)&&(this._buttons=us(this,e.buttons||("inline"===e.display||"anchored"===e.display&&!this._touchUi?[]:["cancel","set"])),this._live=!0,this._buttons&&this._buttons.length))for(var d=0,h=this._buttons;d<h.length;d++){var u=h[d];"ok"!==u.name&&"set"!==u.name||(this._live=!1)}this._valueEquals(c,this._value)&&this._tempValueRep!==Ee&&!this._shouldValidate(e,l)&&e.defaultSelection===l.defaultSelection&&e.invalid===l.invalid&&e.valid===l.valid||(this._readValue(c),n=this._get(this._tempValueRep),a=!(this._valueEquals(c,n)||this._nullSupport&&Q(c)),this._setHeader(),clearTimeout(this._handler),this._handler=setTimeout(function(){i.value=c,a&&i._valueChange(n),i._valueEquals(i._tempValue,n)||i._inst!==Ee||i._hook("onTempChange",{value:n})})),e.headerText!==l.headerText&&this._setHeader(),r&&!this._isOpen&&(this._tempValueSet&&!this._live||(o=this._get(this._tempValueRep),s=this._get(this._valueRep),this._tempValueRep=this._copy(this._valueRep),this._tempValueText=this._format(this._tempValueRep),this._tempValue=o,this._setHeader(),this._valueEquals(o,s)||setTimeout(function(){i._hook("onTempChange",{value:s})})),this._onOpen()),this._allowTyping=e.inputTyping&&!M&&!this._touchUi,this._anchorAlign=e.anchorAlign||(this._touchUi?"center":"start"),this._cssClass="mbsc-picker "+(e.cssClass||""),this._isOpen=r,this._maxWidth=e.maxWidth,this._valueTextChange=this._valueTextChange||this._oldValueText!==this._valueText,this._oldValueText=this._valueText,this._value=c,this._shouldInitInput=this._shouldInitInput||l.display===Ee||"inline"===e.display&&"inline"!==l.display||"inline"!==e.display&&"inline"===l.display||e.element!==l.element},t.prototype._updated=function(){var t=this,n=this.s,e=this._input;this._shouldInitInput&&!this._inst&&(this._unlisten(),this._wrapper&&"inline"===n.display&&(this._observer=ls(this._wrapper,this._onWrapperResize,this._zone)),_s(n.element||this._el,function(e){t._el=e,"inline"!==n.display&&(t._resetEl=ps(e,t,t._onInputChange)),ve(e,"input,select")&&(t._input=e,t._write(e))})),this._valueTextChange&&e&&this._write(e),this._shouldInitInput=!1,this._valueTextChange=!1,this._anchor=n.anchor||this._focusElm||n.element||this._el},t.prototype._writeValue=function(e,t,n){return e.value!==(e.value=t)},t.prototype._destroy=function(){this._unlisten(),this._shouldInitInput=!0},t.prototype._setHeader=function(){var e=this.s.headerText;this._headerText=e?e.replace(/\{value\}/i,this._tempValueText||"&nbsp;"):Ee},t.prototype._setOrUpdate=function(e){var t=this._get(this._tempValueRep);this._tempValue=t,this._tempValueText=this._format(this._tempValueRep),this._setHeader(),e||this._hook("onTempChange",{value:t}),this._live?this.set():this.forceUpdate()},t.prototype._copy=function(e){return e},t.prototype._format=function(e){return e},t.prototype._get=function(e){return e},t.prototype._parse=function(e,t){return e},t.prototype._validate=function(){},t.prototype._onClosed=function(){},t.prototype._onOpen=function(){},t.prototype._onParse=function(){},t.prototype._onEnterKey=function(e){this.set(),this.close()},t.prototype._valueChange=function(e){this.s.value===Ee&&this.setState({value:e}),this._change(e),this._hook("onChange",{value:e,valueText:this._tempValueText})},t.prototype._readValue=function(e,t){this._tempValueRep=this._parse(e,t),this._onParse(),this._validate(),this._tempValueText=this._format(this._tempValueRep),this._valueRep=this._copy(this._tempValueRep),this._valueText=Q(e)?"":this._tempValueText},t.prototype._unlisten=function(){this._resetEl&&(this._resetEl(),this._resetEl=Ee),this._observer&&(this._observer.detach(),this._observer=Ee)},t.prototype._write=function(e){var t=this,n=this._value,a=(this._writeValue(e,this._valueText||"",n)&&setTimeout(function(){t._preventChange=!0,ge(e,Ja),ge(e,Wa)}),e.__mbscFormInst);a&&a.setOptions({pickerMap:this.s.valueMap,pickerValue:n})},t.defaults={cancelText:"Cancel",closeText:"Close",focusOnClose:"android"!==c,okText:"Ok",setText:"Set",showOnFocus:M},t}(t);function fs(e,t,n,a,s,i){var o=Pe(t);if(s&&+t<s||i&&i<+t)return!0;if(!a||!a[o]){s=n&&n[o];if(s)for(var r=0,l=s;r<l.length;r++){var c=l[r],d=c.start,h=c.end,u=c.allDay;if(!d||!h||u)return c;var u=Yn(e,u,d,h),m=Hn(e,t),_=On(e,u);if(!ze(d,h)&&(+d==+m||+u==+_||!ze(t,d)&&!ze(t,h)&&d<t&&t<h))return c}}return!1}function gs(e,t,n,a,s,i,o){var r,l,c=!0,d=!0,h=0,u=0,m=(a<+(e=+e<n?Ve(t,n):e)&&(e=Ve(t,a)),t.getYear(e)),_=t.getMonth(e),p=t.getDate(m,_-1,1),m=t.getDate(m,_+2,1),v=n<+p?+p:n,f=+m<a?+m:a;if(s||(i=Sa(t.valid,p,m,t,!0),s=Sa(t.invalid,p,m,t,!0)),!fs(t,e,s,i,n,a))return e;for(l=r=e;c&&+r<f&&h<100;)c=fs(t,r=We(r,1),s,i,n,a),h++;for(;d&&v<+l&&u<100;)d=fs(t,l=We(l,-1),s,i,n,a),u++;return c&&d?e:1===o&&!c||(-1!==o||d)&&(Rn(e,r,t)&&!c||(!Rn(e,l,t)||d)&&(d||h<=u&&!c))?r:l}var ys={},bs=" - ",xs=["calendar"],Ds=[{recurring:{repeat:"daily"}}];function Ts(e){return"start"===e?"end":"start"}function Ss(e,t){e=Vn(new Date(e),t,t.firstSelectDay!==Ee?t.firstSelectDay:t.firstDay),t=new Date(e.getFullYear(),e.getMonth(),e.getDate()+t.selectSize-1);return{start:e,end:t}}var E=function(B){function e(){var y=null!==B&&B.apply(this,arguments)||this;return y._iso={},y._remote=0,y._onActiveChange=function(e){y._active=e.date,y.forceUpdate()},y._onResize=function(e){var t=e.windowWidth;e.cancel=y.state.width!==t,y.setState({isLarge:e.isLarge,maxPopupWidth:e.maxPopupWidth,width:t,widthType:600<t?"md":"sm"})},y._onDayHoverIn=function(e){var t=e.date,e=e.hidden;y.setState({hoverDate:e?Ee:+t})},y._onDayHoverOut=function(e){e=e.date;y.state.hoverDate===+e&&y.setState({hoverDate:Ee})},y._onCellClick=function(e){y._lastSelected=Bn(y.s,e.date),e.active=y._activeSelect,y._hook("onCellClick",e)},y._onCalendarChange=function(e){y._tempValueSet=!1;var t=y.s,n=y._copy(y._tempValueRep),a=(e=e.value,a=function(e){return Bn(t,e)},ue(e)?e.map(a):a(e,0,[e])),e="preset-range"===t.select,s="range"===t.select,i=s&&y._newSelection,o=(s||e)&&t.exclusiveEndDates&&!y._hasTime;if(o&&n.end&&(n.end=+Hn(t,Ve(t,n.end-1))),y._hasTime&&y._selectedTime&&!s&&(y.s.selectMultiple?(r=a[a.length-1])&&r.setHours(y._selectedTime.getHours(),y._selectedTime.getMinutes()):a.setHours(y._selectedTime.getHours(),y._selectedTime.getMinutes())),s||e){var r=y._getDate(n),l=r.filter(function(e){return null!==e}),c=l.map(function(e){return+e}),d=l.map(function(e){return+Fe(e)}),h=a.filter(function(e){return d.indexOf(+e)<0})[0];if(e)h&&(e=(l=Ss(+h,t)).start,l=l.end,n.start=+e,n.end=+l);else{var u,m=!y._hasTime,_=y._renderControls,p=y._activeSelect,e=Ts(p);if(h){switch(y._hasTime&&y._selectedTime&&h.setHours(y._selectedTime.getHours(),y._selectedTime.getMinutes(),y._selectedTime.getSeconds(),y._selectedTime.getMilliseconds()),c.length){case 0:(n={})[p]=+h;break;case 1:_?n[p]=+h:c[0]>+h||"start"===y._activeSelect?y._hasTime?n[p]=+h:m=!(n={start:+h}):n.end=+h;break;case 2:_?n[p]=+h:c[0]>+h||"start"===y._activeSelect?y._hasTime?n[p]=+h:(n={start:+h},"end"===y._activeSelect&&(m=!1)):"end"===y._activeSelect&&(n.end=+h)}_&&n.start&&n.end&&n.start>n.end&&(n={start:+h},y._setActiveSelect("end"))}else{var l=void 0,l=1===c.length?Ve(t,c[0]):y._lastSelected;y._hasTime&&y._selectedTime?l.setHours(y._selectedTime.getHours(),y._selectedTime.getMinutes(),y._selectedTime.getSeconds(),y._selectedTime.getMilliseconds()):!t.exclusiveEndDates&&!y._hasTime&&"end"===y._activeSelect&&r[0]&&ze(l,r[0])&&l.setHours(23,59,59,999),_||y._hasTime?n[p]=+l:"start"===y._activeSelect?n={start:+l}:n.end=+l}n.start&&n.end&&(n.start>n.end&&(ze(r=Ve(t,n.start),l=Ve(t,n.end))?(l.setHours(r.getHours(),r.getMinutes(),r.getSeconds(),r.getMilliseconds()),n.end=+l):n.end=Ee),t.minRange&&n.end&&(u=y._hasTime?n.start+t.minRange:+We(Ve(t,n.start),t.minRange-1),n.end<u&&(!y._hasTime||"start"===p)&&(n.end=Ee)),t.maxRange&&n.end&&(u=y._hasTime?n.start+t.maxRange:+We(Ve(t,n.start),t.maxRange)-1,n.end>u&&(!y._hasTime||"start"===p)&&(n.end=Ee)),n.end&&"start"===p&&!t.inRangeInvalid&&null!==(r=t.valid?We(xa(t.valid,Ve(t,n.start),t),1):ba(t.invalid||[],Ve(t,n.start),t))&&+r<n.end&&(n.end=Ee)),m&&(y._newSelection||!y._renderControls||y._newSelection===Ee&&"inline"===y.s.display)&&(y._setActiveSelect(e),y._newSelection=!1)}}else{n={date:{}};if(y.s.selectMultiple)for(var v=0,f=a;v<f.length;v++){var g=f[v];n.date[+g]=g}else y._hasTime&&(l=y._selectedTime||new Date,a.setHours(l.getHours(),l.getMinutes(),l.getSeconds(),l.getMilliseconds())),n.date[+a]=a}y._tempValueRep=n,o&&n.end&&(n.end=+Hn(t,We(Ve(t,n.end),1))),y._setOrUpdate(),!y._live||y.s.selectMultiple&&!s||y._hasTime||s&&(!n.start||!n.end||i)||y.close()},y._onDatetimeChange=function(e){var t=y.s,n="range"===t.select,e=Bn(t,e.value),e=y._hasTime?e:Fe(e),a=+e,s=(y._tempValueSet=!1,y._copy(y._tempValueRep)),i=n&&t.exclusiveEndDates&&!y._hasTime;i&&s.end&&(s.end=+Hn(t,Ve(t,s.end-1))),n?"start"===y._activeSelect?(y._hasTime&&y._selectedTime&&e.setHours(y._selectedTime.getHours(),y._selectedTime.getMinutes(),y._selectedTime.getSeconds(),y._selectedTime.getMilliseconds()),s.start=a,s.end&&(n=t.minRange&&!y._hasTime?24*(t.minRange-1)*60*60*1e3-1:t.minRange||0,s.end-s.start<n&&(s.end=Ee))):(y._hasTime?y._selectedTime&&e.setHours(y._selectedTime.getHours(),y._selectedTime.getMinutes(),y._selectedTime.getSeconds(),y._selectedTime.getMilliseconds()):s.start!==+Fe(e)||t.exclusiveEndDates||e.setHours(23,59,59,999),s.end=+e):(y._hasTime&&y._hasDate&&t.controls.indexOf("datetime")<0?(a=y._selectedTime||new Date,e.setHours(a.getHours(),a.getMinutes(),a.getSeconds(),a.getMilliseconds())):y._selectedTime=Ve(t,e),(s={date:{}}).date[+e]=e),y._tempValueRep=s,i&&s.end&&(s.end=+Hn(t,We(Ve(t,s.end),1))),y._setOrUpdate()},y._onTimePartChange=function(e){y._tempValueSet=!1;var t,n,a=y.s,s="range"===a.select,e=Bn(a,e.value);y._selectedTime=e,s?(s=y._getDate(y._tempValueRep))[t="start"===y._activeSelect?0:1]?((n=Ve(a,s[t])).setHours(e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()),s[t]=n,"start"===y._activeSelect&&+n>+s[1]&&(s.length=1),y._tempValueRep=y._parse(s)):y._selectedTime.setHours(e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()):a.selectMultiple||((n=y._getDate(y._tempValueRep))?(n.setHours(e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()),y._tempValueRep={date:{}},y._tempValueRep.date[+n]=n):(y._selectedTime.setHours(e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()),y._live&&y.forceUpdate())),y._setOrUpdate()},y._changeActiveTab=function(e){y.setState({activeTab:e.target.value})},y._changeActiveSelect=function(e){e=e.target.value;y._setActiveSelect(e),y.setActiveDate(e)},y._clearEnd=function(){y._tempValueRep.end=Ee,y._hasTimegrid&&(y._selectedTime=Ee),y._setOrUpdate()},y._clearStart=function(){y._tempValueRep={},y._newSelection=!0,y._hasTimegrid&&(y._selectedTime=Ee),y._setOrUpdate()},y._proxy=function(e){y._hook(e.type,e)},y._onInputClickRange=function(e){e=e.target===y._startInput||y._renderControls?"start":"end";y._setActiveSelect(e)},y._onInputChangeRange=function(e){var t=y._startInput,n=y._endInput,t=(t?t.value:"")+(n&&n.value?bs+n.value:"");y._onInputChange(e,t)},y}return a(e,B),e.prototype.setActiveDate=function(e){var t=Ts(e),e=(this._activeSelect=e,this._tempValueRep[e]),t=this._tempValueRep[t];this._tempValueRep.start&&this._tempValueRep.end||!e&&t?this._newSelection=!1:e&&!t&&(this._newSelection=!0),e&&(this._active=e),!e&&this._hasTimegrid&&(this._selectedTime=Ee),this.forceUpdate()},e.prototype.getTempVal=function(){return B.prototype.getTempVal.call(this)},e.prototype.setTempVal=function(e){B.prototype.setTempVal.call(this,e)},e.prototype.navigate=function(e){this._active=+Re(e),this.forceUpdate()},e.prototype._shouldValidate=function(e,t){return e.controls!==t.controls||e.dataTimezone!==t.dataTimezone||e.displayTimezone!==t.displayTimezone||e.dateFormat!==t.dateFormat||e.timeFormat!==t.timeFormat||e.locale!==t.locale||e.min!==t.min||e.max!==t.max},e.prototype._valueEquals=function(e,t){var n=ue(e)&&0===e.length||e===Ee||null===e,a=ue(t)&&0===t.length||t===Ee||null===t;return n&&n===a||qn(e,t,this.s)},e.prototype.setVal=function(e){var t,n;"range"===this.s.select&&e&&(t=e[0],n=e[1],this._savedStartValue=+Re(t,this.s,this._valueFormat),this._savedEndValue=+Re(n,this.s,this._valueFormat)),B.prototype.setVal.call(this,e)},e.prototype._init=function(){this.props.modules&&this.props.modules.forEach(function(e){ys[e._name]=e})},e.prototype._render=function(c,e){var d=this,P=(c.inRangeInvalid&&(c.rangeEndInvalid=!1),"preset-range"===c.select&&(c.controls=xs),c.exclusiveEndDates===Ee&&(c.exclusiveEndDates=!!c.displayTimezone),this._hasTime),t=this._hasDate=!!J(c.controls,function(e){return/date|calendar/.test(e)}),h=this._hasTime=!!J(c.controls,function(e){return/time/.test(e)}),n=(h||(c.timezonePlugin=c.dataTimezone=c.displayTimezone=Ee),!c.valid||c.invalid&&!h||(c.invalid=Ds),this._prevS),a=(c.buttons,c.calendarSize),s=(c.children,c.className,c.controls),i=(c.cssClass,c.element,c.modelValue,c.onDestroy,c.onInit,c.onTempChange,c.responsive,c.select),F=c.selectMultiple,o=c.tabs,z=K(c,["buttons","calendarSize","children","className","controls","cssClass","element","modelValue","onDestroy","onInit","onTempChange","responsive","select","selectMultiple","tabs"]),r=e.widthType||"sm",u="date"!==i,m=(this._renderTabs=1<s.length&&("auto"===o?"sm"===r:o),i!==n.select&&this._tempValueRep&&(u&&this._tempValueRep.date?(D=(r=Object.keys(this._tempValueRep.date).map(function(e){return+e}).sort())[0],T=r[1],this._tempValueRep.start=D,this._tempValueRep.end=T,this._tempValueRep.date=Ee,this._tempValueText=this._format(this._tempValueRep),setTimeout(function(){d.set()})):u||!this._tempValueRep.start&&!this._tempValueRep.end||(this._tempValueRep.date||(this._tempValueRep.date={}),r=this._tempValueRep.start||this._tempValueRep.end,this._tempValueRep.date[r]=new Date(r),(l=this._tempValueRep.end||this._tempValueRep.start)!==r&&c.selectMultiple&&(this._tempValueRep.date[l]=new Date(l)),this._tempValueRep.start=Ee,this._tempValueRep.end=Ee,this._tempValueText=this._format(this._tempValueRep),setTimeout(function(){d.set()}))),c.min!==n.min&&(this._min=Q(c.min)?Ee:Re(c.min,c,c.dateFormat)),c.max!==n.max&&(this._max=Q(c.max)?Ee:Re(c.max,c,c.dateFormat)),c.minTime!==n.minTime&&(this._minTime=Q(c.minTime)?Ee:Re(c.minTime,c,c.timeFormat)),c.maxTime!==n.maxTime&&(this._maxTime=Q(c.maxTime)?Ee:Re(c.maxTime,c,c.timeFormat)),this._tempValueRep&&this._tempValueRep.end),_=this._tempValueRep&&this._tempValueRep.start,r=(t?c.dateFormat:"")+(h?(t?c.separator:"")+c.timeFormat:""),p=JSON.stringify(s)!==JSON.stringify(n.controls);p&&(this._controls=[],this._controlsClass="",l={c:"datepicker",controls:s,dateFormat:c.dateFormat,dateText:c.dateText,separator:c.separator,timeFormat:c.timeFormat,timeText:c.timeText,v:"5.26.1"},this._remote++,ia(this),ra("remote",this,l,function(e){if(d._remote--,!d._remote){for(var t=0,n=Object.keys(e);t<n.length;t++){var a=n[t];d[a]=e[a]}for(var s,i,o=0,r=d._controls;o<r.length;o++){var l=r[o];l.Component=ys["calendar"===l.name?"Calendar":"timegrid"===l.name?"Timegrid":"Datetime"],d._controlsClass+=" mbsc-datepicker-control-"+l.name}oa(e.notification),h||(d._selectedTime=Ee),p&&u&&c.exclusiveEndDates&&h!==P&&(m||_)&&(s=d._savedStartValue,i=d._savedEndValue,setTimeout(function(){var e,t;h?(d._tempValueRep.start=s||_,d._tempValueRep.end=i||m):(d._savedStartValue=_,d._savedEndValue=m,d._clearSaved=!1,e=ne({},c,{dataTimezone:d.props.dataTimezone,displayTimezone:d.props.displayTimezone,timezonePlugin:d.props.timezonePlugin}),_&&(d._tempValueRep.start=+jn(Hn(e,Ve(e,_)))),m&&(t=Ve(e,m-1),d._tempValueRep.end=+jn(Ve(e,+On(e,t)+1)))),d._valueText=d._tempValueText=d._format(d._tempValueRep),d._valueTextChange=!0,d.set()}),d._valueTextChange=!1),d.forceUpdate()}},"comp_"+this._uid),this._hasCalendar=-1!==s.indexOf("calendar")),this._renderControls=u&&"preset-range"!==i&&(c.showRangeLabels===Ee||c.showRangeLabels),this._nullSupport="inline"!==c.display||"date"!==i||!0===c.selectMultiple,this._valueFormat=r,this._activeTab=e.activeTab||s[0],B.prototype._render.call(this,c,e);var l=c.value!==Ee?c.value!==n.value:e.value!==this._prevStateValue,v=(u&&this._clearSaved&&l&&(this._savedEndValue=this._savedStartValue=Ee),this._clearSaved=!0,c.headerText===n.headerText&&c.selectCounter===n.selectCounter&&c.selectMultiple===n.selectMultiple||this._setHeader(),this._scrollLock=c.scrollLock!==Ee?c.scrollLock:!this._hasTimegrid,this._showInput=c.showInput!==Ee?c.showInput:this._showInput&&(!u||!c.startInput&&!c.endInput),this._shouldInitInputs=this._shouldInitInputs||i!==n.select||c.startInput!==n.startInput||c.endInput!==n.endInput,this._shouldInitInput=this._shouldInitInput||this._shouldInitInputs,!p&&c.dateWheels===n.dateWheels&&c.timeWheels===n.timeWheels&&c.dateFormat===n.dateFormat&&c.timeFormat===n.timeFormat||(l=c.dateWheels||c.dateFormat,g=c.timeWheels||c.timeFormat,f=this._iso={},t&&(/y/i.test(l)&&(f.y=1),/M/.test(l)&&(f.y=1,f.m=1),/d/i.test(l)&&(f.y=1,f.m=1,f.d=1)),h&&(/h/i.test(g)&&(f.h=1),/m/.test(g)&&(f.i=1),/s/i.test(g)&&(f.s=1))),l=u?(this._activeSelect===Ee&&this._setActiveSelect("start",!0),this._selectionNotReady()):(this._activeSelect=Ee,!1),!this._buttons||(g=J(this._buttons,function(e){return"set"===e.name}))&&g.disabled!==l&&(g.disabled=l,this._buttons=this._buttons.slice()),this._activeSelect),f=(this._needsWidth=("anchored"===c.display||"center"===c.display||"inline"!==c.display&&e.isLarge||1<s.length&&!o)&&c.width===Ee,c.max!==Ee?Re(c.max,c,r):Ee),g=c.min!==Ee?Re(c.min,c,r):Ee,l=(this._maxLimited=f,this._minLimited=g,this._tempValueRep.start),y=(!l||this._prevStart===l&&n.valid===c.valid&&n.invalid===c.invalid||(s=Ve(c,l),this._nextInvalid=c.valid?We(xa(c.valid,s,c),1):ba(c.invalid||[],s,c)),"end"===v&&l);y&&(c.inRangeInvalid||(o=this._nextInvalid)&&(c.rangeEndInvalid?this._maxLimited=Ve(c,+We(o,1)-1):this._maxLimited=Ve(c,+o-1)),this._hasCalendar&&!h||(!this._minLimited||Re(this._minLimited,c,r)<Ve(c,l))&&(this._minLimited=Ve(c,this._tempValueRep.start))),this._minTimeLimited=this._minLimited,y&&(c.minRange&&(f=h?this._tempValueRep.start+c.minRange:+We(Ve(c,this._tempValueRep.start),c.minRange)-1,(!this._minLimited||+Re(this._minLimited,c,r)<f)&&(this._minLimited=Ve(c,f),this._minTimeLimited=this._minLimited)),this._minTimeLimited===Ee&&this._tempValueRep.start&&this._tempValueRep.end&&(this._minTimeLimited=Ve(c,+this._tempValueRep.start)),c.maxRange!==Ee&&(g=h?this._tempValueRep.start+c.maxRange:+We(Ve(c,this._tempValueRep.start),c.maxRange)-1,(!this._maxLimited||+Re(this._maxLimited,c,r)>g)&&(this._maxLimited=Ve(c,g))));for(var V=0,R=this._controls;V<R.length;V++){var b=R[V],x=ne({},z,{display:"inline",isOpen:c.isOpen||e.isOpen,max:this._maxLimited,min:this._minLimited});if(c.rangeEndInvalid&&y&&this._nextInvalid&&(x.valid=(x.valid||[]).concat([this._nextInvalid])),"calendar"===b.name){x.min=this._minLimited?Fe(this._minLimited):Ee,x.max=this._maxLimited?Fe(this._maxLimited):Ee,x.selectRange=u,x.width=this._needsWidth?296*Ha(c.pages,e.maxPopupWidth):Ee,"week"===c.calendarType&&a?x.weeks=a:x.size=a;for(var D,T,S="auto"===c.pages?3:c.pages||1,C=(this._maxWidth=c.maxWidth||(2<S?296*S:Ee),u?((C=(S=this._getDate(this._tempValueRep))[1])&&c.exclusiveEndDates&&!h&&(S[1]=Ve(c,+C-1)),C=S.filter(function(e){return null!==e}).map(function(e){return+Fe(e)}).filter(function(e,t,n){return n.indexOf(e)===t}).map(function(e){return new Date(e)}),x.value=C,c.rangeHighlight&&(x.rangeStart=S[0]&&+Fe(jn(S[0])),x.rangeEnd=S[1]&&+Fe(jn(S[1])),x.onDayHoverIn=this._onDayHoverIn,x.onDayHoverOut=this._onDayHoverOut,"preset-range"===i?e.hoverDate&&(D=(C=Ss(e.hoverDate,c)).start,T=C.end,x.hoverStart=+D,x.hoverEnd=+T):("end"===v&&S[0]&&(x.hoverStart=x.rangeEnd||x.rangeStart,x.hoverEnd=e.hoverDate),"start"===v&&S[1]&&this._renderControls&&(x.hoverStart=e.hoverDate,x.hoverEnd=x.rangeStart||x.rangeEnd)))):(x.selectMultiple=F,x.value=this._getDate(this._tempValueRep)),ue(x.value)?x.value:[x.value]),w=x.min?+x.min:-1/0,k=x.max?+x.max:1/0,M=void 0,A=0,W=C;A<W.length;A++){var U=W[A];!M&&w<=U&&U<=k&&(M=+U)}(M=!M&&u&&C.length?+C[0]:M)===this._selectedDate&&this._active!==Ee&&c.min===n.min&&c.max===n.max||(this._selectedDate=M,this._active=M?+Fe(new Date(M)):Ne(this._active||+Fe(new Date),w,k));S=c.dateWheels||c.dateFormat,S=/d/i.test(S)?j:/m/i.test(S)?wa:/y/i.test(S)?ee:j;x.active=this._active,x.onActiveChange=this._onActiveChange,x.onChange=this._onCalendarChange,x.onCellClick=this._onCellClick,x.onCellHoverIn=this._proxy,x.onCellHoverOut=this._proxy,x.onLabelClick=this._proxy,x.onPageChange=this._proxy,x.onPageLoaded=this._proxy,x.onPageLoading=this._proxy,x.selectView=S}else{var E,N,I,L,H,O,Y,S=Object.keys(this._tempValueRep.date||{});x.displayStyle="bottom"!==c.display&&"top"!==c.display||!this._hasCalendar&&!this._renderTabs?c.display:"center",x.mode=b.name,"time"!==b.name&&"timegrid"!==b.name||!t?(x.onChange=this._onDatetimeChange,u?(E=this._tempValueRep[v],N=this._tempValueRep[Ts(v)],x.value=E?Ve(c,E):N?Ve(c,N):null,"end"===v&&c.exclusiveEndDates&&!h&&(x.value=Ve(c,+x.value-1))):((N=E=this._tempValueRep.date&&this._tempValueRep.date[S[0]])&&!h&&(N=Fe(E)),x.value=N||null)):(x.onChange=this._onTimePartChange,u?(H=this._tempValueRep[v],I=void 0,this._selectedTime&&(!this._minTimeLimited||this._selectedTime>this._minTimeLimited?I=this._selectedTime:(I=Ve(c,this._minTimeLimited)).setHours(this._selectedTime.getHours(),this._selectedTime.getMinutes(),this._selectedTime.getSeconds(),this._selectedTime.getMilliseconds())),(L=Ve(c)).setSeconds(0,0),this._selectedTime=H?Ve(c,H):I||("time"===b.name?L:Ee),x.value=this._selectedTime):c.selectMultiple||(H=this._tempValueRep.date&&this._tempValueRep.date[S[0]]||this._selectedTime,this._selectedTime=x.value=H),x.min=this._minTimeLimited,x.max=this._maxLimited),"time"!==b.name&&"timegrid"!==b.name||(O=x.value||(I=new Date,L=x.min,O=x.max,L&&I<L?new Date(L):O&&O<I?new Date(O):I),this._minTime&&(Y=this._minTime,w=new Date(O.getFullYear(),O.getMonth(),O.getDate(),Y.getHours(),Y.getMinutes(),Y.getSeconds(),Y.getMilliseconds()),(!x.min||w>x.min)&&(x.min=w)),this._maxTime&&(Y=this._maxTime,k=new Date(O.getFullYear(),O.getMonth(),O.getDate(),Y.getHours(),Y.getMinutes(),Y.getSeconds(),Y.getMilliseconds()),(!x.max||k<x.max)&&(x.max=k)))}b.options=x}this._prevStart=this._tempValueRep.start,this._prevStateValue=e.value},e.prototype._updated=function(){var n=this,e=this.s,t=(this._shouldInitInputs&&(this._resetInputs(),"range"===e.select&&((t=e.startInput)&&this._setupInput("start",t),(t=e.endInput)&&this._setupInput("end",t),!e.element||this._startInput!==e.element&&this._endInput!==e.element||(this._shouldInitInput=!1,clearTimeout(e.element.__mbscTimer))),this._shouldInitInputs=!1),this._valueTextChange);B.prototype._updated.call(this),"range"===e.select&&t&&(e=function(e,t){e.value=t,setTimeout(function(){n._preventChange=!0,ge(e,Ja),ge(e,Wa)})},this._startInput&&e(this._startInput,this._getValueText("start")),this._endInput&&e(this._endInput,this._getValueText("end")))},e.prototype._onEnterKey=function(e){this._selectionNotReady()||B.prototype._onEnterKey.call(this,e)},e.prototype._setupInput=function(a,e){var s=this;_s(e,function(e){var t=ps(e,s,s._onInputChangeRange,s._onInputClickRange),t=("start"===a?(s._startInput=e,s._resetStartInput=t):(s._endInput=e,s._resetEndInput=t),s._getValueText(a)),n=t!==e.value;e.value=t,n&&setTimeout(function(){s._preventChange=!0,ge(e,Ja),ge(e,Wa)})})},e.prototype._destroy=function(){this._resetInputs(),B.prototype._destroy.call(this)},e.prototype._setHeader=function(){var e,t=this.s;t.selectCounter&&t.selectMultiple?(e=Object.keys(this._tempValueRep&&this._tempValueRep.date||{}).length,this._headerText=(1<e&&t.selectedPluralText||t.selectedText).replace(/{count}/,""+e)):B.prototype._setHeader.call(this)},e.prototype._validate=function(){if(!(this._max<=this._min)){var e=this.s,t=this._min?+this._min:-1/0,n=this._max?+this._max:1/0;if("date"===e.select){var a=this._tempValueRep.date;if(!e.selectMultiple)for(var s=0,i=Object.keys(a);s<i.length;s++){var o=i[s],r=a[o],l=gs(r,e,t,n);+l!=+r&&(delete a[o],a[+Fe(l)]=l)}}else{var c=this._getDate(this._tempValueRep),d=c[0],c=c[1];d&&(d=gs(d,e,t,n),e.inRangeInvalid||this._prevStart&&this._prevStart===+d||(this._nextInvalid=e.valid?We(xa(e.valid,d,e),1):ba(e.invalid||[],d,e))),c=c&&(!e.inRangeInvalid&&this._nextInvalid&&this._nextInvalid<=c?e.rangeEndInvalid?this._nextInvalid:We(this._nextInvalid,-1):gs(c,e,t,n)),d&&c&&c<d&&("end"===this._activeSelect?d=c:c=d),d&&(this._prevStart=this._tempValueRep.start=+d),c&&(this._tempValueRep.end=+c)}}},e.prototype._copy=function(e){var t=e.date&&ne({},e.date);return ne({},e,{date:t})},e.prototype._format=function(e){var t,n=this.s,a=[];if(!n)return"";if("date"!==n.select)return e.start&&a.push(Ae(this._valueFormat,Ve(n,e.start),n)),e.end&&(a.length||a.push(""),t=Ve(n,e.end-(n.exclusiveEndDates&&!this._hasTime?1:0)),a.push(Ae(this._valueFormat,t,n))),this._tempStartText=a[0]||"",this._tempEndText=a[1]||"",a.join(bs);var s,i=e.date;for(s in i)i[s]!==Ee&&null!==i[s]&&a.push(Ae(this._valueFormat,i[s],n));return n.selectMultiple?a.join(", "):a[0]},e.prototype._parse=function(e,t){var n=this.s,a={},s="date"!==n.select,i=n.selectMultiple,o=[];if(Q(e)&&(r=n.defaultSelection,e=i||s?r:null===r||this._live&&"inline"!==n.display?null:r||new Date),me(e)&&(s||i)?o=e.split(s?bs:","):ue(e)?o=e:e&&!ue(e)&&(o=[e]),s){var r=o[0],i=o[1],e=Re(r,n,this._valueFormat,this._iso),s=Re(i,n,this._valueFormat,this._iso);a.start=e?+e:Ee,a.end=s?+s:Ee}else{a.date={};for(var l=0,c=o;l<c.length;l++){var d,h=c[l];Q(h)||(h=Re(h,n,this._valueFormat,this._iso,t))&&(d=+Fe(h=t?Bn(n,h):h),a.date[d]=h,this._hasTime&&(this._selectedTime=new Date(h)))}}return a},e.prototype._getDate=function(e){var t=this.s;if("date"!==t.select)return a=e.start?Ve(t,e.start):null,r=e.end?Ve(t,e.end):null,a||r?[a,r]:[];if(t.selectMultiple){var n=[],a=e.date;if(a)for(var s=0,i=Object.keys(a);s<i.length;s++){var o=i[s];n.push(Ve(t,+o))}return n}var r=Object.keys(e.date||{});return r.length?Ve(t,e.date[r[0]]):null},e.prototype._get=function(e){var t=this,n=this.s,a=this._valueFormat,s=this._iso,e=this._getDate(e);return ue(e)?e.map(function(e){return e?Kn(e,n,a,s,t._hasTime):null}):null===e?null:Kn(e,n,a,s,this._hasTime)},e.prototype._onClosed=function(){this._active=this._activeSelect=Ee,this._hasTimegrid&&(this._selectedTime=Ee)},e.prototype._onOpen=function(){this._newSelection=!0},e.prototype._resetInputs=function(){this._resetStartInput&&(this._resetStartInput(),this._resetStartInput=Ee),this._resetEndInput&&(this._resetEndInput(),this._resetEndInput=Ee)},e.prototype._getValueText=function(e){return this._valueText.split(bs)["start"===e?0:1]||""},e.prototype._selectionNotReady=function(){var e,t=!1;return t="range"===this.s.select?(t=!(e=(this._get(this._tempValueRep||{})||[]).filter(function(e){return e})).length)||(this._hasCalendar&&!this._hasTime||this._renderControls?e.length<2:!this._tempValueRep[this._activeSelect]):t},e.prototype._setActiveSelect=function(e,t){var n=this;this._activeSelect!==e&&(t?setTimeout(function(){return n._hook("onActiveDateChange",{active:e})}):this._hook("onActiveDateChange",{active:e})),this._activeSelect=e},e.defaults=ne({},Mn,vs.defaults,{activeElm:'.mbsc-calendar-cell[tabindex="0"]',controls:xs,dateText:"Date",inRangeInvalid:!1,inputTyping:!0,rangeEndHelp:"Please select",rangeEndLabel:"End",rangeHighlight:!0,rangeStartHelp:"Please select",rangeStartLabel:"Start",select:"date",selectSize:7,selectedText:"{count} selected",showOnClick:!0,timeText:"Time"}),e._name="Datepicker",e}(vs),Cs=function(){function e(){this.pageSize=0,this._prevS={},this._s={}}return e.prototype.options=function(e,t){var n,a,e=this._s=ne({},this._s,e),s=this._prevS,i=e.getDate,o=e.getYear,r=e.getMonth,l=e.showCalendar,c=e.calendarType,d=e.startDay,h=e.endDay,u=e.firstDay,m="week"===c,_=l?m?e.weeks:6:0,p=e.min===s.min&&this.minDate?this.minDate:Q(e.min)?-1/0:Re(e.min),v=e.max===s.max&&this.maxDate?this.maxDate:Q(e.max)?1/0:Re(e.max),f=e.activeDate||+new Date,g=Ne(f,+p,+v),f=this.forcePageChange||g!==f,y=new Date(g),b=g!==s.activeDate,s=e.calendarType!==s.calendarType||e.eventRange!==s.eventRange||e.firstDay!==s.firstDay||e.eventRangeSize!==s.eventRangeSize||e.refDate!==s.refDate||l!==s.showCalendar||e.size!==s.size||e.weeks!==s.weeks,f=f||this.pageIndex===Ee||s||!this.preventPageChange&&b&&(g<+this.firstDay||g>=+this.lastDay)?Ea(y,e):this.pageIndex,s="year"===c?12:e.size||1,b=1<s&&!m,g=b?1:Ha(e.pages,this.pageSize),y="vertical"===e.calendarScroll&&"auto"!==e.pages&&(e.pages===Ee||1===e.pages),c=e.showOuterDays!==Ee?e.showOuterDays:!y&&g<2&&(m||!s||s<2),y=b?0:1,m=Ma(f,e),s=Ma(f+g,e),u=(l||"week"!==e.eventRange||d===Ee||h===Ee||(m=We(m,d-u+(d<u?7:0)),s=We(m,7*e.eventRangeSize+h-d+1-(h<d?0:7))),l&&c?Vn(m,e):m),i=b?i(o(s),r(s)-1,1):Ma(f+g-1,e),o=l&&c?We(Vn(i,e),7*_):s,r=l?Vn(Ma(f-y,e),e):m,c=l?Vn(Ma(f+g+y-1,e),e):s,g=l?We(b?Vn(i,e):c,7*_):s,y=this.pageIndex===Ee,b=r,i=g,_=(l||"week"!==e.resolution||"year"!==e.eventRange&&"month"!==e.eventRange||(c=h-d+1+(h<d?7:0),m.getDay()!==d&&(b=(a=We(n=Vn(m,e,d),c))<=m?We(n,7):n),s.getDay()!==d&&(a=We(n=Vn(s,e,d),c),i=s<n?We(a,-7):a)),!1);f!==Ee&&(_=+b!=+this.viewStart||+i!=+this.viewEnd,this.pageIndex=f),this.firstDay=m,this.lastDay=s,this.firstPageDay=u,this.lastPageDay=o,this.viewStart=b,this.viewEnd=i,this.forcePageChange=!1,this.preventPageChange=!1,this.minDate=p,this.maxDate=v,this._prevS=e,f!==Ee&&(_||t)&&(_&&!y&&this.pageChange(),this.pageLoading(_))},e.prototype.pageChange=function(){this._s.onPageChange&&this._s.onPageChange({firstDay:this.firstPageDay,lastDay:this.lastPageDay,month:"month"===this._s.calendarType?this.firstDay:Ee,type:"onPageChange",viewEnd:this.viewEnd,viewStart:this.viewStart},null)},e.prototype.pageLoading=function(e){this._s.onPageLoading&&this._s.onPageLoading({firstDay:this.firstPageDay,lastDay:this.lastPageDay,month:"month"===this._s.calendarType?this.firstDay:Ee,type:"onPageLoading",viewChanged:e,viewEnd:this.viewEnd,viewStart:this.viewStart},null)},e}(),ws=function(n){function e(){var i=null!==n&&n.apply(this,arguments)||this;return i._navService=new Cs,i._update=0,i._onDayClick=function(e){var t,n=i.s,a=Bn(n,e.date),s=+a;e.disabled||(n.selectMultiple?((t=i._tempValueRep)[s]?delete t[s]:(n.selectMax===Ee||Object.keys(t).length<n.selectMax)&&(t[s]=a),i._tempValueRep=ne({},t)):(n.selectRange||(i._tempValueRep={}),i._tempValueRep[s]=a),i._navService.preventPageChange=n.selectRange,i._hook("onCellClick",e),i._setOrUpdate())},i._onTodayClick=function(){var e=new Date,t=+Fe(e);i.s.selectRange||i.s.selectMultiple||(i._tempValueRep={},i._tempValueRep[t]=e,i._setOrUpdate())},i._onActiveChange=function(e){i._navService.forcePageChange=e.pageChange,i._update++,i._hook("onActiveChange",e)},i._setCal=function(e){i._calendarView=e},i}return a(e,n),e.prototype._valueEquals=function(e,t){return qn(e,t,this.s)},e.prototype._shouldValidate=function(e,t){return e.dataTimezone!==t.dataTimezone||e.displayTimezone!==t.displayTimezone},e.prototype._render=function(e,t){n.prototype._render.call(this,e,t),this._navService.options({activeDate:e.active,calendarType:e.calendarType,firstDay:e.firstDay,getDate:e.getDate,getDay:e.getDay,getMonth:e.getMonth,getYear:e.getYear,max:e.max,min:e.min,onPageChange:e.onPageChange,onPageLoading:e.onPageLoading,pages:e.pages,refDate:e.refDate,showCalendar:!0,showOuterDays:e.showOuterDays,size:e.size,weeks:e.weeks})},e.prototype._copy=function(e){return ne({},e)},e.prototype._format=function(e){var t,n=this.s,a=[];for(t in e)e[t]!==Ee&&null!==e[t]&&a.push(Ae(n.dateFormat,new Date(+e[t]),n));return n.selectMultiple||n.selectRange?a.join(", "):a[0]},e.prototype._parse=function(e){var t=this.s,n=t.selectRange,a={},s=[];me(e)?s=e.split(","):ue(e)?s=e:e&&!ue(e)&&(s=[e]);for(var i=0,o=s;i<o.length;i++){var r=o[i];null!==r&&(r=Re(r,t,t.dateFormat),a[n?+r:+Fe(r)]=r)}return a},e.prototype._get=function(e){var t=this.s,n=t.selectRange;if(this.s.selectMultiple||n){for(var a=[],s=0,i=Object.keys(e);s<i.length;s++){var o=i[s];a.push(Ve(t,+e[o]))}return a}n=Object.keys(e||{});return n.length?Ve(t,e[n[0]]):null},e.defaults=ne({},ka,{calendarScroll:"horizontal",calendarType:"month",selectedText:"{count} selected",showControls:!0,showOnClick:!0,weeks:1}),e._name="Calendar",e}(vs),ks=function(){function e(){this.onInstanceReady=new Dt,this.onComponentChange=new Dt}return Object.defineProperty(e.prototype,"instance",{get:function(){return this.inst},set:function(e){this.inst=e,this.onInstanceReady.next(e)},enumerable:!0,configurable:!0}),e}();var Ms,Es,Ns=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,ae("span",{onClick:(e=e).onClick,className:t._cssClass,dangerouslySetInnerHTML:t._svg,"v-html":Ee},t._hasChildren&&e.name);var t},t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._render=function(e){this._hasChildren=!me(e.name),this._cssClass=this._className+" mbsc-icon"+this._theme+(e.name&&!this._hasChildren?-1!==e.name.indexOf(" ")?" "+e.name:" mbsc-font-icon mbsc-icon-"+e.name:""),this._svg=e.svg?this._safeHtml(e.svg):Ee},t}(t)),Is=0;function Ls(e,t,n){n=(n?"page":"client")+t;return(e.targetTouches&&e.targetTouches[0]?e.targetTouches[0]:e.changedTouches&&e.changedTouches[0]?e.changedTouches[0]:e)[n]}function Hs(e,t){var n;t.mbscClick||(e=(e.originalEvent||e).changedTouches[0],(n=document.createEvent("MouseEvents")).initMouseEvent("click",!0,!0,window,1,e.screenX,e.screenY,e.clientX,e.clientY,!1,!1,!1,!1,0,null),n.isMbscTap=!0,n.isIonicTap=!0,Ms=!0,t.mbscChange=!0,t.mbscClick=!0,t.dispatchEvent(n),Ms=!1,Is++,setTimeout(function(){Is--},500),setTimeout(function(){delete t.mbscClick}))}function Os(e){!Is||Ms||e.isMbscTap||"TEXTAREA"===e.target.nodeName&&e.type===V||(e.stopPropagation(),e.preventDefault())}function Ys(e){ce(e.target).__mbscFocusVisible=!1}function Ps(e){ce(e.target).__mbscFocusVisible=!0}function Fs(e){e&&setTimeout(function(){e.style.opacity="0",e.style.transition="opacity linear .4s",setTimeout(function(){e&&e.parentNode&&e.parentNode.removeChild(e)},400)},200)}function zs(r,l){var c,n,a,d,t,s,h,i,o,u,m,_,p,v,f,e,g={},y=ce(r),b=oe(r);function x(e){if(e.type===ns)Es=!0;else if(Es)return e.type===V&&(Es=!1),1}function D(){var e,t,n,a,s,i,o;h&&(Fs(d),t=m,n=_,a=(e=r).getBoundingClientRect(),s=t-a.left,i=n-a.top,s=Math.max(s,e.offsetWidth-s),i=Math.max(i,e.offsetHeight-i),s=2*Math.sqrt(Math.pow(s,2)+Math.pow(i,2)),(i=P.createElement("span")).classList.add("mbsc-ripple"),(o=i.style).backgroundColor=getComputedStyle(e).color,o.width=s+"px",o.height=s+"px",o.top=n-a.top-s/2+"px",o.left=t-a.left-s/2+"px",e.appendChild(i),setTimeout(function(){o.opacity=".2",o.transform="scale(1)",o.transition="opacity linear .1s, transform cubic-bezier(0, 0, 0.2, 1) .4s"},30),d=i),l.onPress(),c=!0}function T(e,t){n=!1,Fs(e),clearTimeout(a),a=setTimeout(function(){c&&(l.onRelease(),c=!1)},t)}function S(e){var t;x(e)||e.type===V&&(0!==e.button||e.ctrlKey)||(o=Ls(e,"X"),u=Ls(e,"Y"),m=o,_=u,f=!(i=n=c=!1),g.moved=i,g.startX=o,g.startY=u,g.endX=m,g.endY=_,g.deltaX=0,g.deltaY=0,g.domEvent=e,g.isTouch=Es,Fs(d),l.onStart&&(t=l.onStart(g),h=t&&t.ripple),l.onPress&&(n=!0,clearTimeout(a),a=setTimeout(D,50)),e.type===V&&(F(b,Ga,C),F(b,Za,w)),F(b,Ba,Y))}function C(e){f&&(m=Ls(e,"X"),_=Ls(e,"Y"),p=m-o,v=_-u,!i&&(9<Math.abs(p)||9<Math.abs(v))&&(i=!0,T(d)),g.moved=i,g.endX=m,g.endY=_,g.deltaX=p,g.deltaY=v,g.domEvent=e,g.isTouch=e.type===as,l.onMove&&l.onMove(g))}function w(e){f&&(n&&!c&&(clearTimeout(a),D()),g.domEvent=e,g.isTouch=e.type===ss,l.onEnd&&l.onEnd(g),T(d,75),f=!1,e.type===ss&&l.click&&q&&!i&&Hs(e,e.target),e.type===Za&&(z(b,Ga,C),z(b,Za,w)),z(b,Ba,Y))}function k(e){x(e)||(s=!0,l.onHoverIn(e))}function M(e){s&&l.onHoverOut(e),s=!1}function E(e){l.onKeyDown(e)}function N(e){(l.keepFocus||y.__mbscFocusVisible)&&(t=!0,l.onFocus(e))}function I(e){t&&l.onBlur(e),t=!1}function L(e){l.onChange(e)}function H(e){l.onInput(e)}function O(e){g.domEvent=e,Es||l.onDoubleClick(g)}function Y(e){Es&&e.preventDefault()}return F(r,V,S),F(r,ns,S,{passive:!0}),F(r,as,C,{passive:!1}),F(r,ss,w),F(r,is,w),l.onChange&&F(r,Wa,L),l.onInput&&F(r,Ja,H),l.onHoverIn&&F(r,$a,k),l.onHoverOut&&F(r,Qa,M),l.onKeyDown&&F(r,qa,E),l.onFocus&&y&&(F(r,Ka,N),l.keepFocus||(0===(e=y.__mbscFocusCount||0)&&(F(y,V,Ys,!0),F(y,qa,Ps,!0)),y.__mbscFocusCount=++e)),l.onBlur&&F(r,Aa,I),l.onDoubleClick&&F(r,ja,O),function(){var e;clearTimeout(a),l.onFocus&&y&&!l.keepFocus&&(e=y.__mbscFocusCount||0,y.__mbscFocusCount=--e,e<=0&&(z(y,V,Ys),z(y,qa,Ps))),z(r,Ja,H),z(r,V,S),z(r,ns,S,{passive:!0}),z(r,as,C,{passive:!1}),z(r,ss,w),z(r,is,w),z(b,Ga,C),z(b,Za,w),z(b,Ba,Y),z(r,Wa,L),z(r,$a,k),z(r,Qa,M),z(r,qa,E),z(r,Ka,N),z(r,Aa,I),z(r,ja,O)}}He&&(["mousedown",$a,V,Za,Ua].forEach(function(e){P.addEventListener(e,Os,!0)}),"android"===c&&N<5&&P.addEventListener(Wa,function(e){var t=e.target;Is&&"checkbox"===t.type&&!t.mbscChange&&(e.stopPropagation(),e.preventDefault()),delete t.mbscChange},!0));function Vs(e){var t=e.inst,e=e.className;return ae(Xs,{ariaLabel:t.s.prevPageText,className:"mbsc-calendar-button "+(e||""),disabled:t._isPrevDisabled(),iconSvg:t._prevIcon,onClick:t.prevPage,theme:t.s.theme,themeVariant:t.s.themeVariant,type:"button",variant:"flat"})}function Rs(e){var t=e.inst,e=e.className;return ae(Xs,{ariaLabel:t.s.nextPageText,disabled:t._isNextDisabled(),className:"mbsc-calendar-button "+(e||""),iconSvg:t._nextIcon,onClick:t.nextPage,theme:t.s.theme,themeVariant:t.s.themeVariant,type:"button",variant:"flat"})}function As(e){var t=e.inst,e=e.className;return ae(Xs,{className:"mbsc-calendar-button mbsc-calendar-button-today "+(e||""),onClick:t._onTodayClick,theme:t.s.theme,themeVariant:t.s.themeVariant,type:"button",variant:"flat"},t.s.todayText)}function Ws(e){var n=e.inst,e=e.className,a=n.s,s=n._theme,i=n._view;return ae("div",{"aria-live":"polite",className:(e||"")+s},n._title.map(function(e,t){return(1===n._pageNr||0===t||n._hasPicker||i===j)&&ae(Xs,{className:"mbsc-calendar-button"+(1<n._pageNr?" mbsc-flex-1-1":""),"data-index":t,onClick:n._onPickerBtnClick,key:t,theme:a.theme,themeVariant:a.themeVariant,type:"button",variant:"flat"},(n._hasPicker||i===j)&&(e.title?ae("span",{className:"mbsc-calendar-title"+s},e.title):ae(se,null,n._yearFirst&&ae("span",{className:"mbsc-calendar-title mbsc-calendar-year"+s},e.yearTitle),ae("span",{className:"mbsc-calendar-title mbsc-calendar-month"+s},e.monthTitle),!n._yearFirst&&ae("span",{className:"mbsc-calendar-title mbsc-calendar-year"+s},e.yearTitle))),!n._hasPicker&&i!==j&&ae("span",{className:"mbsc-calendar-title"+s},n._viewTitle),a.downIcon&&1===n._pageNr?ae(Ns,{svg:i===j?a.downIcon:a.upIcon,theme:a.theme}):null)}))}function Us(e){var t=e.calendar,n=e.view,e=K(e,["calendar","view"]);return ae(Gs,ne({component:Vs,host:t,view:n},e))}function Bs(e){var t=e.calendar,n=e.view,e=K(e,["calendar","view"]);return ae(Gs,ne({component:Rs,host:t,view:n},e))}function js(e){var t=e.calendar,n=e.view,e=K(e,["calendar","view"]);return ae(Gs,ne({component:As,host:t,view:n},e))}function Ks(e){var t=e.calendar,n=e.view,e=K(e,["calendar","view"]);return ae(Gs,ne({component:Ws,host:t,view:n},e))}var Xs=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,n=(e=e).children,a=(h=t.props).ariaLabel,h.children,h.className,h.color,s=h.endIcon,h.endIconSrc,i=h.endIconSvg,h.hasChildren,o=h.icon,h.iconSrc,r=h.iconSvg,h.ripple,h.rtl,l=h.role,c=h.startIcon,h.startIconSrc,d=h.startIconSvg,h.tag,h.tabIndex,h.theme,h.themeVariant,h.variant,h=K(h,["ariaLabel","children","className","color","endIcon","endIconSrc","endIconSvg","hasChildren","icon","iconSrc","iconSvg","ripple","rtl","role","startIcon","startIconSrc","startIconSvg","tag","tabIndex","theme","themeVariant","variant"]),a=ne({"aria-label":a,className:t._cssClass,ref:t._setEl},h),h=ae(se,null,t._isIconOnly&&ae(Ns,{className:t._iconClass,name:o,svg:r,theme:e.theme}),t._hasStartIcon&&ae(Ns,{className:t._startIconClass,name:c,svg:d,theme:e.theme}),n,t._hasEndIcon&&ae(Ns,{className:t._endIconClass,name:s,svg:i,theme:e.theme})),"span"===e.tag?ae("span",ne({role:l,"aria-disabled":e.disabled,tabIndex:t._tabIndex},a),h):"a"===e.tag?ae("a",ne({"aria-disabled":e.disabled,tabIndex:t._tabIndex},a),h):ae("button",ne({role:l,tabIndex:t._tabIndex},a),h);var t,n,a,s,i,o,r,l,c,d,h},t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._mounted=function(){var t=this;this._unlisten=zs(this._el,{click:!0,onBlur:function(){t.setState({hasFocus:!1})},onFocus:function(){t.setState({hasFocus:!0})},onHoverIn:function(){t.s.disabled||t.setState({hasHover:!0})},onHoverOut:function(){t.setState({hasHover:!1})},onKeyDown:function(e){switch(e.keyCode){case 13:case 32:t._el.click(),e.preventDefault()}},onPress:function(){t.setState({isActive:!0})},onRelease:function(){t.setState({isActive:!1})},onStart:function(){return{ripple:t.s.ripple&&!t.s.disabled}}})},t.prototype._render=function(e,t){var n=this,a=e.disabled;this._isIconOnly=!(!e.icon&&!e.iconSvg),this._hasStartIcon=!(!e.startIcon&&!e.startIconSvg),this._hasEndIcon=!(!e.endIcon&&!e.endIconSvg),this._tabIndex=a?Ee:e.tabIndex||0,this._cssClass=this._className+" mbsc-reset mbsc-font mbsc-button"+this._theme+this._rtl+" mbsc-button-"+e.variant+(this._isIconOnly?" mbsc-icon-button":"")+(a?" mbsc-disabled":"")+(e.color?" mbsc-button-"+e.color:"")+(t.hasFocus&&!a?" mbsc-focus":"")+(t.isActive&&!a?" mbsc-active":"")+(t.hasHover&&!a?" mbsc-hover":""),this._iconClass="mbsc-button-icon"+this._rtl,this._startIconClass=this._iconClass+" mbsc-button-icon-start",this._endIconClass=this._iconClass+" mbsc-button-icon-end",e.disabled&&t.hasHover&&setTimeout(function(){n.setState({hasHover:!1})})},t.prototype._destroy=function(){this._unlisten&&this._unlisten()},t.defaults={ripple:!1,role:"button",tag:"button",variant:"standard"},t._name="Button",t}(t)),Js={before:function(e,t){t.tag=e.nodeName.toLowerCase()},hasChildren:!0,parentClass:"mbsc-button",readProps:["disabled"],slots:{endIcon:"end-icon",icon:"icon",startIcon:"start-icon"}},qs=ct({}),Gs=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype.componentWillUnmount=function(){this._changes&&this._changes.unsubscribe(this._handler)},t.prototype.render=function(){var e=this,t=this.props,n=t.host,a=t.component,s=t.view,i=K(t,["host","component","view"]),t=s||n&&n._calendarView;return t&&!this._changes&&(this._changes=t.s.instanceService.onComponentChange,this._handler=this._changes.subscribe(function(){e.forceUpdate()})),ae(qs.Consumer,null,function(e){e=e.instance||s||n&&n._calendarView;return e&&ae(a,ne({inst:e},i))})},t}(H),N=(Us._name="CalendarPrev",Bs._name="CalendarNext",js._name="CalendarToday",Ks._name="CalendarNav",function(e){function t(){var f=null!==e&&e.apply(this,arguments)||this;return f.state={height:"sm",pageSize:0,pickerSize:0,width:"sm"},f._dim={},f._months=[1,2,3],f._title=[],f.MONTH_VIEW=j,f.YEAR_VIEW=wa,f.MULTI_YEAR_VIEW=ee,f.nextPage=function(){switch(f._prevDocClick(),f._view){case ee:f._activeYearsChange(1);break;case wa:f._activeYearChange(1);break;default:f._activeChange(1)}},f.prevPage=function(){switch(f._prevDocClick(),f._view){case ee:f._activeYearsChange(-1);break;case wa:f._activeYearChange(-1);break;default:f._activeChange(-1)}},f._changeView=function(e){var t=f.s,n=f._view,a=f._hasPicker,s=t.selectView,t="year"===(t.showCalendar?t.calendarType:t.eventRange);if(!e){switch(n){case j:e=ee;break;case ee:e=wa;break;default:e=a||s===wa?ee:j}n===ee&&t&&(e=j)}t=a&&e===s;f.setState({view:e,viewClosing:t?Ee:n,viewOpening:t?Ee:e})},f._onDayHoverIn=function(t){f._disableHover||(f._hook("onDayHoverIn",t),f._hoverTimer=setTimeout(function(){var e=Pe(t.date);f._labels&&(t.labels=f._labels[e]),f._marked&&(t.marked=f._marked[e]),f._isHover=!0,f._hook("onCellHoverIn",t)},150))},f._onDayHoverOut=function(e){var t;f._disableHover||(f._hook("onDayHoverOut",e),clearTimeout(f._hoverTimer),f._isHover&&(t=Pe(e.date),f._labels&&(e.labels=f._labels[t]),f._marked&&(e.marked=f._marked[t]),f._isHover=!1,f._hook("onCellHoverOut",e)))},f._onLabelClick=function(e){f._isLabelClick=!0,f._hook("onLabelClick",e)},f._onDayClick=function(e){f._shouldFocus=!f._isLabelClick,f._prevAnim=!1,f._isLabelClick=!1,f._hook("onDayClick",e)},f._onTodayClick=function(e){f._prevAnim=!1,f._hook("onActiveChange",{date:+jn(Ve(f.s)),today:!0}),f._hook("onTodayClick",{})},f._onMonthClick=function(e){var t,n;e.disabled||(t=e.date,(n=f.s).selectView===wa?f._hook("onDayClick",e):(e=Ea(t,n),f._prevDocClick(),f._changeView(j),f._shouldFocus=!0,f._prevAnim=!f._hasPicker,f._hook("onActiveChange",{date:+t,nav:!0,pageChange:e!==f._pageIndex})))},f._onYearClick=function(e){var t,n,a;e.disabled||(t=e.date,(a=(n=f.s).selectView)===ee?f._hook("onDayClick",e):(f._shouldFocus=!0,f._prevAnim=a===wa,f._activeMonth=+t,f._prevDocClick(),f._changeView(),"year"===(n.showCalendar?n.calendarType:n.eventRange)&&(e=Ea(t,n),f._hook("onActiveChange",{date:+t,pageChange:e!==f._pageIndex}))))},f._onPageChange=function(e){f._isSwipeChange=!0,f._activeChange(e.diff)},f._onYearPageChange=function(e){f._activeYearChange(e.diff)},f._onYearsPageChange=function(e){f._activeYearsChange(e.diff)},f._onAnimationEnd=function(e){f._disableHover=!1,f._isIndexChange&&(f._pageLoaded(),f._isIndexChange=!1)},f._onStart=function(){clearTimeout(f._hoverTimer)},f._onGestureStart=function(e){f._disableHover=!0,f._hook("onGestureStart",e)},f._onGestureEnd=function(e){f._prevDocClick()},f._onPickerClose=function(){f.setState({view:j})},f._onPickerOpen=function(){var e=f._pickerCont.clientHeight,t=f._pickerCont.clientWidth;f.setState({pickerSize:f._isVertical?e:t})},f._onPickerBtnClick=function(e){f._view===j&&(f._pickerBtn=e.currentTarget),f._prevDocClick(),f._changeView()},f._onDocClick=function(){var e=f.s.selectView;f._prevClick||f._hasPicker||f._view===e||f._changeView(e)},f._onViewAnimationEnd=function(){f.state.viewClosing&&f.setState({viewClosing:Ee}),f.state.viewOpening&&f.setState({viewOpening:Ee})},f._onResize=function(){var e,t,n,a,s,i,o,r,l,c,d,h,u,m,_,p,v;f._body&&He&&(e=f.s,t=f.state,n=(d=e.showCalendar)?f._body.querySelector(".mbsc-calendar-body-inner"):f._body,a=f._el.offsetWidth,s=f._el.offsetHeight,p=n.clientHeight,l=n.clientWidth,i=f._isVertical?p:l,o=f._hasPicker?t.pickerSize:i,r=d!==Ee,v=c="sm",u=!(_=1),m=h=0,e.responsiveStyle&&!f._isGrid&&(300<p&&(v="md"),767<l&&(c="md")),c!==t.width||v!==t.height?(f._shouldCheckSize=!0,f.setState({width:c,height:v})):(f._labels&&d&&(p=n.querySelector(".mbsc-calendar-text"),c=(l=n.querySelector(".mbsc-calendar-day-inner")).querySelector(".mbsc-calendar-labels"),d=p?(v="marginBottom",parseFloat(getComputedStyle(p)[v]||"0")):2,v=p?p.offsetHeight:18,h=c.offsetTop,u=n.scrollHeight>n.clientHeight,m=v+d,_=Math.max(1,Le((l.clientHeight-h)/m))),f._hook("onResize",{height:s,target:f._el,width:a}),e.navigationService.pageSize=i,p=f._shouldPageLoad?(t.update||0)+1:t.update,f.setState({cellTextHeight:h,hasScrollY:u,labelHeight:m,maxLabels:_,pageSize:i,pickerSize:o,ready:r,update:p})))},f._onKeyDown=function(e){var t,n=f.s,a=f._view,s=a===j?f._active:f._activeMonth,s=new Date(s),i=n.getYear(s),o=n.getMonth(s),r=n.getDay(s),l=n.getDate,c=n.weeks,d="month"===n.calendarType;if(a===ee){var h=void 0;switch(e.keyCode){case 37:h=i-+f._rtlNr;break;case 39:h=i+ +f._rtlNr;break;case 38:h=i-3;break;case 40:h=i+3;break;case 36:h=f._getPageYears(f._yearsIndex);break;case 35:h=f._getPageYears(f._yearsIndex)+11;break;case 33:h=i-12;break;case 34:h=i+12}h&&f._minYears<=h&&f._maxYears>=h&&(e.preventDefault(),f._shouldFocus=!0,f._prevAnim=!1,f._activeMonth=+l(h,0,1),f.forceUpdate())}else if(a===wa){switch(e.keyCode){case 37:t=l(i,o-+f._rtlNr,1);break;case 39:t=l(i,o+ +f._rtlNr,1);break;case 38:t=l(i,o-3,1);break;case 40:t=l(i,o+3,1);break;case 36:t=l(i,0,1);break;case 35:t=l(i,11,1);break;case 33:t=l(i-1,o,1);break;case 34:t=l(i+1,o,1)}t&&f._minYear<=t&&f._maxYear>=t&&(e.preventDefault(),f._shouldFocus=!0,f._prevAnim=!1,f._activeMonth=+t,f.forceUpdate())}else if(a===j){switch(e.keyCode){case 37:t=l(i,o,r-+f._rtlNr);break;case 39:t=l(i,o,r+ +f._rtlNr);break;case 38:t=l(i,o,r-7);break;case 40:t=l(i,o,r+7);break;case 36:t=l(i,o,1);break;case 35:t=l(i,o+1,0);break;case 33:t=e.altKey?l(i-1,o,r):d?l(i,o-1,r):l(i,o,r-7*c);break;case 34:t=e.altKey?l(i+1,o,r):d?l(i,o+1,r):l(i,o,r+7*c)}t&&f._minDate<=t&&f._maxDate>=t&&(e.preventDefault(),s=Ea(t,n),f._shouldFocus=!0,f._prevAnim=!1,f._pageChange=n.noOuterChange&&s!==f._pageIndex,f._hook("onActiveChange",{date:+t,pageChange:f._pageChange}))}},f._setHeader=function(e){f._headerElement=e},f._setBody=function(e){f._body=e},f._setPickerCont=function(e){f._pickerCont=e},f}return a(t,e),t.prototype._getPageDay=function(e){return+Ma(e,this.s)},t.prototype._getPageStyle=function(e,t,n){var a={};return a[(G?G+"T":"t")+"ransform"]="translate"+this._axis+"("+100*(e-t)*this._rtlNr+"%)",a.width=100/(n||1)+"%",a},t.prototype._getPageYear=function(e){var t=this.s,n=t.refDate?Re(t.refDate):Tn;return t.getYear(n)+e},t.prototype._getPageYears=function(e){var t=this.s,n=t.refDate?Re(t.refDate):Tn;return t.getYear(n)+12*e},t.prototype._getPickerClass=function(e){var t,n=e===this.s.selectView?" mbsc-calendar-picker-main":"",a="mbsc-calendar-picker",s=this._hasPicker,i=this.state,o=i.viewClosing,r=i.viewOpening;switch(e){case j:t=s?"":(r===j?"in-down":"")+(o===j?"out-down":"");break;case ee:t=s&&o===j?"":(r===ee?"in-up":"")+(o===ee?"out-up":"");break;default:t=s&&r===j?"":(r===wa?o===ee?"in-down":"in-up":"")+(o===wa?r===ee?"out-down":"out-up":"")}return a+n+(X&&t?" "+a+"-"+t:"")},t.prototype._isNextDisabled=function(e){if(!this._hasPicker||e){e=this._view;if(e===ee)return this._yearsIndex+1>this._maxYearsIndex;if(e===wa)return this._yearIndex+1>this._maxYearIndex}return this._pageIndex+1>this._maxIndex},t.prototype._isPrevDisabled=function(e){if(!this._hasPicker||e){e=this._view;if(e===ee)return this._yearsIndex-1<this._minYearsIndex;if(e===wa)return this._yearIndex-1<this._minYearIndex}return this._pageIndex-1<this._minIndex},t.prototype._render=function(e,t){var n=e.getDate,a=e.getYear,s=e.getMonth,i=e.showCalendar,o=e.calendarType,r=e.eventRange,l=e.eventRangeSize||1,P=e.firstDay,c="week"===o,F="month"===o,d="year"===o?12:+(e.size||1),h=1<d&&!c,z=i?c?e.weeks:6:0,u=e.activeDate||this._active||+new Date,V=u!==this._active,R=new Date(u),m=this._prevS,_=e.dateFormat,p=e.monthNames,v=e.yearSuffix,A=te(e.labelList)?+e.labelList+1:"all"===e.labelList?-1:0,f=e.labelList!==m.labelList,g=e.navigationService,y=g.pageIndex,b=g.firstDay,W=g.lastDay,x=g.viewStart,D=g.viewEnd,g=(this._minDate=g.minDate,this._maxDate=g.maxDate,Q(e.min)?(this._minIndex=-1/0,this._minYears=-1/0,this._minYearsIndex=-1/0,this._minYear=-1/0,this._minYearIndex=-1/0):(g=Fe(this._minDate),this._minDate=Fe(g),this._minYear=n(a(g),s(g),1),this._minYears=a(g),this._minIndex=Ea(g,e),this._minYearIndex=Ia(g,e),this._minYearsIndex=Na(g,e)),Q(e.max)?(this._maxIndex=1/0,this._maxYears=1/0,this._maxYearsIndex=1/0,this._maxYear=1/0,this._maxYearIndex=1/0):(g=this._maxDate,this._maxYear=n(a(g),s(g)+1,1),this._maxYears=a(g),this._maxIndex=Ea(g,e),this._maxYearIndex=Ia(g,e),this._maxYearsIndex=Na(g,e)),o!==m.calendarType||r!==m.eventRange||P!==m.firstDay||e.eventRangeSize!==m.eventRangeSize||e.refDate!==m.refDate||e.showCalendar!==m.showCalendar||e.weeks!==m.weeks),T=(g&&this._pageIndex!==Ee&&(this._prevAnim=!0),V&&(this._activeMonth=u),this._view=t.view||e.selectView,this._yearsIndex=Na(new Date(this._activeMonth),e),this._yearIndex=Ia(new Date(this._activeMonth),e),this._view===wa?this._viewTitle=this._getPageYear(this._yearIndex)+"":this._view===ee&&(S=this._getPageYears(this._yearsIndex),this._viewTitle=S+" - "+(S+11)),h?1:Ha(e.pages,t.pageSize)),S="vertical"===e.calendarScroll&&"auto"!==e.pages&&(e.pages===Ee||1===e.pages),U=e.showOuterDays!==Ee?e.showOuterDays:!S&&T<2&&(c||!d||d<2),B=_.search(/m/i),C=_.search(/y/i);if(h&&(this._monthsMulti=[],y!==Ee)){for(var w=Le(.96*t.pageSize/325.6)||1;d%w;)w--;for(var k=0;k<d/w;++k){for(var j=[],M=0;M<w;++M)j.push(+n(a(b),s(b)+k*w+M,1));this._monthsMulti.push(j)}}o===m.calendarType&&e.theme===m.theme&&e.calendarScroll===m.calendarScroll&&e.hasContent===m.hasContent&&e.showCalendar===m.showCalendar&&e.showSchedule===m.showSchedule&&e.showWeekNumbers===m.showWeekNumbers&&e.weeks===m.weeks&&!f||(this._shouldCheckSize=!0),m.width===e.width&&m.height===e.height||(this._dim={height:ie(e.height),width:ie(e.width)}),this._cssClass="mbsc-calendar mbsc-font mbsc-flex-col"+this._theme+this._rtl+(t.ready?"":" mbsc-hidden")+(h?" mbsc-calendar-grid-view":" mbsc-calendar-height-"+t.height+" mbsc-calendar-width-"+t.width)+" "+e.cssClass,this._dayNames="sm"===t.width||h?e.dayNamesMin:e.dayNamesShort,this._isSwipeChange=!1,this._yearFirst=C<B,this._pageNr=T,this._variableRow=A;var C=e.pageLoad!==m.pageLoad,E=+x!=+this._viewStart||+D!=+this._viewEnd;if(this._pageIndex!==Ee&&E&&(this._isIndexChange=!this._isSwipeChange&&!g),y!==Ee&&(this._pageIndex=y),y!==Ee&&(e.marked!==m.marked||e.colors!==m.colors||e.labels!==m.labels||e.invalid!==m.invalid||e.valid!==m.valid||t.maxLabels!==this._maxLabels||E||f||C)&&(this._maxLabels=t.maxLabels,this._viewStart=x,this._viewEnd=D,(f=(g=e.labelsMap||Sa(e.labels,x,D,e))&&Oa(e,g,x,D,this._variableRow||this._maxLabels||1,7,!1,P,!0,e.eventOrder,!U,e.showLabelCount,e.moreEventsText,e.moreEventsPluralText))&&!this._labels&&(this._shouldCheckSize=!0),(f&&t.maxLabels||!f)&&(this._shouldPageLoad=!this._isIndexChange||this._prevAnim||!i||C),this._labelsLayout=f,this._labels=g,this._marked=g?Ee:e.marksMap||Sa(e.marked,x,D,e),this._colors=Sa(e.colors,x,D,e),this._valid=Sa(e.valid,x,D,e,!0),this._invalid=Sa(e.invalid,x,D,e,!0)),E||V||r!==m.eventRange||l!==m.eventRangeSize||e.monthNames!==m.monthNames){this._title=[];var N=We(W,-1),I=y===Ee?R:b;if(c)for(var I=R,K=0,X=Object.keys(e.selectedDates);K<X.length;K++){var J=X[K];if(+b<=+J&&+J<+W){I=new Date(+J);break}}if(1<this._pageNr)for(k=0;k<T;k++){var q=n(a(b),s(b)+k,1),G=a(q)+v,q=p[s(q)];this._title.push({yearTitle:G,monthTitle:q})}else{var L,H,O,Y={yearTitle:a(I)+v,monthTitle:p[s(I)]},Z=(!e.showSchedule||1!==l)&&i?o:r,$=r&&!i&&(!e.showSchedule||1<l);switch(Z){case"year":Y.title=a(b)+v,1<l&&(Y.title+=" - "+(a(N)+v));break;case"month":1<l&&!i?(L=p[s(b)],H=a(b)+v,L=this._yearFirst?H+" "+L:L+" "+H,H=p[s(N)],O=a(N)+v,H=this._yearFirst?O+" "+H:H+" "+O,Y.title=L+" - "+H):h&&(Y.title=a(b)+v);break;case"day":case"week":$&&(O=_.search(/d/i)<B?"D MMM, YYYY":"MMM D, YYYY",Y.title=Ae(O,b,e),("week"===Z||1<l)&&(Y.title+=" - "+Ae(O,N,e)))}this._title.push(Y)}}this._active=u,this._hasPicker=e.hasPicker||h||!F||!i||"md"===t.width&&!1!==e.hasPicker,this._axis=S?"Y":"X",this._rtlNr=!S&&e.rtl?-1:1,this._weeks=z,this._nextIcon=S?e.nextIconV:e.rtl?e.prevIconH:e.nextIconH,this._prevIcon=S?e.prevIconV:e.rtl?e.nextIconH:e.prevIconH,this._mousewheel=e.mousewheel===Ee?S:e.mousewheel,this._isGrid=h,this._isVertical=S,this._showOuter=U,this._showDaysTop=S||!!A&&1==d},t.prototype._mounted=function(){this._observer=ls(this._el,this._onResize,this._zone),this._doc=oe(this._el),F(this._doc,Ua,this._onDocClick)},t.prototype._updated=function(){var e,t=this;this._shouldCheckSize?(setTimeout(function(){t._onResize()}),this._shouldCheckSize=!1):this._shouldPageLoad&&(this._pageLoaded(),this._shouldPageLoad=!1),this._shouldFocus&&setTimeout(function(){t._focusActive(),t._shouldFocus=!1}),this.s.instanceService&&this.s.instanceService.onComponentChange.next({}),this._pageChange=!1,this._variableRow&&this.s.showCalendar&&((e=(e=this._body.querySelector(".mbsc-calendar-body-inner")).scrollHeight>e.clientHeight)!==this.state.hasScrollY&&(this._shouldCheckSize=!0,this.setState({hasScrollY:e})))},t.prototype._destroy=function(){this._observer&&this._observer.detach(),z(this._doc,Ua,this._onDocClick),clearTimeout(this._hoverTimer)},t.prototype._getActiveCell=function(){var e=this._view,t=e===j?this._body:this._pickerCont;return t&&t.querySelector(".mbsc-calendar-"+(e===ee?"year":e===wa?"month":"cell")+'[tabindex="0"]')},t.prototype._focusActive=function(){var e=this._getActiveCell();e&&e.focus()},t.prototype._pageLoaded=function(){var e=this.s.navigationService;this._hook("onPageLoaded",{activeElm:this._getActiveCell(),firstDay:e.firstPageDay,lastDay:e.lastPageDay,month:"month"===this.s.calendarType?e.firstDay:Ee,viewEnd:e.viewEnd,viewStart:e.viewStart})},t.prototype._activeChange=function(e){var t=this._pageIndex+e;this._minIndex<=t&&this._maxIndex>=t&&(this._prevAnim=!1,this._pageChange=!0,this._hook("onActiveChange",{date:this._getPageDay(t),dir:e,pageChange:!0}))},t.prototype._activeYearsChange=function(e){var e=this._yearsIndex+e;this._minYearsIndex<=e&&this._maxYearsIndex>=e&&(e=this._getPageYears(e),this._prevAnim=!1,this._activeMonth=+this.s.getDate(e,0,1),this.forceUpdate())},t.prototype._activeYearChange=function(e){var e=this._yearIndex+e;this._minYearIndex<=e&&this._maxYearIndex>=e&&(e=this._getPageYear(e),this._prevAnim=!1,this._activeMonth=+this.s.getDate(e,0,1),this.forceUpdate())},t.prototype._prevDocClick=function(){var e=this;this._prevClick=!0,setTimeout(function(){e._prevClick=!1})},t}(t));function Zs(e){return this.getChildContext=function(){return e.context},e.children}function $s(e){var n=this,t=e._container;n.componentWillUnmount=function(){rt(null,n._temp),n._temp=null,n._container=null},n._container&&n._container!==t&&n.componentWillUnmount(),e._vnode?(n._temp||(n._container=t,n._temp={nodeType:1,parentNode:t,childNodes:[],appendChild:function(e){this.childNodes.push(e),n._container.appendChild(e)},insertBefore:function(e,t){this.childNodes.push(e),n._container.appendChild(e)},removeChild:function(e){this.childNodes.splice(this.childNodes.indexOf(e)>>>1,1),n._container.removeChild(e)}}),rt(ae(Zs,{context:n.context},e._vnode),n._temp)):n._temp&&n.componentWillUnmount()}var Qs=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype.render=function(){var e=this.props.context;return e?ae($s,{_vnode:this.props.children,_container:e}):null},t}(we);var ei=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e,t){return t=t,a=this,e=(n=e).children,o=a._hb,r=a._rtl,l=a._theme,c=n.display,(s={})[mt]=a._onKeyDown,(i={})[ht]=a._onAnimationEnd,a._isModal?a._isVisible?ae(Qs,{context:a._ctx},ae("div",ne({className:"mbsc-font mbsc-flex mbsc-popup-wrapper mbsc-popup-wrapper-"+c+l+r+" "+a._className+(n.fullScreen?" mbsc-popup-wrapper-"+c+"-full":"")+(a._touchUi?"":" mbsc-popup-pointer")+(a._round?" mbsc-popup-round":"")+(a._hasContext?" mbsc-popup-wrapper-ctx":"")+(t.isReady?"":" mbsc-popup-hidden"),ref:a._setWrapper},s),n.showOverlay&&ae("div",{className:"mbsc-popup-overlay mbsc-popup-overlay-"+c+l+(a._isClosing?" mbsc-popup-overlay-out":"")+(a._isOpening&&t.isReady?" mbsc-popup-overlay-in":""),onClick:a._onOverlayClick}),ae("div",{className:"mbsc-popup-limits mbsc-popup-limits-"+c,ref:a._setLimitator,style:a._limits}),ae("div",ne({className:"mbsc-flex-col mbsc-popup mbsc-popup-"+c+l+o+(n.fullScreen?"-full":"")+(t.bubblePos&&t.showArrow&&"anchored"===c?" mbsc-popup-anchored-"+t.bubblePos:"")+(a._isClosing?" mbsc-popup-"+a._animation+"-out":"")+(a._isOpening&&t.isReady?" mbsc-popup-"+a._animation+"-in":""),role:"dialog","aria-modal":"true",ref:a._setPopup,style:a._style,onClick:a._onPopupClick},i),"anchored"===c&&t.showArrow&&ae("div",{className:"mbsc-popup-arrow-wrapper mbsc-popup-arrow-wrapper-"+t.bubblePos+l},ae("div",{className:"mbsc-popup-arrow mbsc-popup-arrow-"+t.bubblePos+l,style:t.arrowPos})),ae("div",{className:"mbsc-popup-focus",tabIndex:-1,ref:a._setActive}),ae("div",{className:"mbsc-flex-col mbsc-flex-1-1 mbsc-popup-body mbsc-popup-body-"+c+l+o+(n.fullScreen?" mbsc-popup-body-"+c+"-full":"")+(a._round?" mbsc-popup-body-round":"")},a._headerText&&ae("div",{className:"mbsc-flex-none mbsc-popup-header mbsc-popup-header-"+c+l+o+(a._buttons?"":" mbsc-popup-header-no-buttons"),dangerouslySetInnerHTML:a._headerText,"v-html":Ee}),ae("div",{className:"mbsc-flex-1-1 mbsc-popup-content"+(n.contentPadding?" mbsc-popup-padding":""),ref:a._setContent},e),a._buttons&&ae("div",{className:"mbsc-flex-none mbsc-popup-buttons mbsc-popup-buttons-"+c+l+r+o+(a._flexButtons?" mbsc-popup-buttons-flex mbsc-flex":"")+(n.fullScreen?" mbsc-popup-buttons-"+c+"-full":"")},a._buttons.map(function(e,t){return ae(Xs,{color:e.color,className:"mbsc-popup-button mbsc-popup-button-"+c+r+o+(a._flexButtons?" mbsc-popup-button-flex":"")+" "+(e.cssClass||""),icon:e.icon,disabled:e.disabled,key:t,theme:n.theme,themeVariant:n.themeVariant,variant:e.variant||n.buttonVariant,onClick:e.handler},e.text)})))))):null:ae(se,null,e);var n,a,s,i,o,r,l,c},t}(yn),ti={before:function(n,e){var a,s,i=this,t=(e.onOpen&&(a=e.onOpen),e.onClosed&&(s=e.onClosed),oe(n)),o=t&&t.createComment("popup");o&&n.parentNode&&n.parentNode.insertBefore(o,n),n.style.display="none",e.onOpen=function(e,t){n.style.display="",e.target.querySelector(".mbsc-popup-content").appendChild(n),a&&a.call(i,e,t)},e.onClosed=function(e,t){n.style.display="none",o&&o.parentNode&&o.parentNode.insertBefore(n,o),s&&s.call(i,e,t)}}},ni={};var ai=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,a=(e=e).event&&!1!==e.event.editable,(n={})[ut]=t._onRightClick,ae("div",ne({"aria-hidden":e.showText?Ee:"true",className:t._cssClass,"data-id":e.showText&&e.event?e.event.id:null,onClick:t._onClick,ref:t._setEl,role:e.showText?"button":Ee,style:{color:t._color},tabIndex:t._tabIndex,title:t._title},n),t._hasResizeStart&&a&&ae("div",{className:"mbsc-calendar-label-resize mbsc-calendar-label-resize-start"+t._rtl+(e.isUpdate?" mbsc-calendar-label-resize-start-touch":"")}),t._hasResizeEnd&&a&&ae("div",{className:"mbsc-calendar-label-resize mbsc-calendar-label-resize-end"+t._rtl+(e.isUpdate?" mbsc-calendar-label-resize-end-touch":"")}),e.showText&&!e.more&&!e.render&&ae("div",{className:"mbsc-calendar-label-background"+t._theme}),e.showText&&!e.more&&e.render?t._html?ae("div",{dangerouslySetInnerHTML:t._html},Ee):t._content:ae("div",{className:"mbsc-calendar-label-inner"+t._theme,style:{color:t._textColor}},ae("div",{"aria-hidden":"true",className:"mbsc-calendar-label-text"+t._theme,dangerouslySetInnerHTML:t._html,style:{color:e.event&&e.event.textColor}},t._content),e.label&&ae("div",{className:"mbsc-hidden-content"},e.label)));var t,n,a},t}(function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n._onClick=function(e){var t;n._isDrag?e.stopPropagation():(n._triggerEvent("onClick",e),e=n.s,(t=ni[e.id])&&e.selected&&t.next({hasFocus:!1}))},n._onRightClick=function(e){n._triggerEvent("onRightClick",e)},n._onDocTouch=function(e){z(n._doc,ns,n._onDocTouch),z(n._doc,V,n._onDocTouch),n._isDrag=!1,n._hook("onDragModeOff",{data:n.s.event,domEvent:e})},n._updateState=function(e){n.s.showText&&n.setState(e)},n._triggerEvent=function(e,t){n._hook(e,{domEvent:t,label:n.s.event,target:n._el})},n}return a(t,e),t.prototype._mounted=function(){var a,s=this,e=this.s,t=e.id,n=e.isPicker,i=ni[t];i||(i=new Dt,ni[t]=i),this._unsubscribe=i.subscribe(this._updateState),this._doc=oe(this._el),this._unlisten=zs(this._el,{keepFocus:!0,onBlur:function(){n||i.next({hasFocus:!1})},onDoubleClick:function(e){e.domEvent.stopPropagation(),s._hook("onDoubleClick",{domEvent:e.domEvent,label:s.s.event,target:s._el})},onEnd:function(e){var t;s._isDrag&&(t=s.s,(e=ne({},e)).domEvent.preventDefault(),e.data=t.event,t.resize&&a?(e.resize=!0,e.direction=a):t.drag&&(e.drag=!0),s._hook("onDragEnd",e),t.isUpdate||(s._isDrag=!1)),clearTimeout(s._touchTimer),a=Ee},onFocus:function(){n||i.next({hasFocus:!0})},onHoverIn:function(e){s._isDrag||n||(i.next({hasHover:!0}),s._triggerEvent("onHoverIn",e))},onHoverOut:function(e){i.next({hasHover:!1}),s._triggerEvent("onHoverOut",e)},onKeyDown:function(e){var t=s.s.event;switch(e.keyCode){case 13:case 32:s._el.click(),e.preventDefault();break;case 8:case 46:t&&!1!==t.editable&&s._hook("onDelete",{domEvent:e,event:t,source:"calendar"})}},onMove:function(e){var t=s.s,e=ne({},e);if(e.data=t.event,a)e.resize=!0,e.direction=a;else{if(!t.drag)return;e.drag=!0}t.event&&!1!==t.event.editable&&(s._isDrag?(e.domEvent.preventDefault(),s._hook("onDragMove",e)):(7<Math.abs(e.deltaX)||7<Math.abs(e.deltaY))&&(clearTimeout(s._touchTimer),e.isTouch||(s._isDrag=!0,s._hook("onDragStart",e))))},onStart:function(e){var t=s.s,n=ne({},e),e=n.domEvent.target;if(n.data=t.event,t.resize&&e.classList.contains("mbsc-calendar-label-resize"))a=e.classList.contains("mbsc-calendar-label-resize-start")?"start":"end",n.resize=!0,n.direction=a;else{if(!t.drag)return;n.drag=!0}t.event&&!1!==t.event.editable&&(!s._isDrag&&n.isTouch||n.domEvent.stopPropagation(),s._isDrag?s._hook("onDragStart",n):n.isTouch&&(s._touchTimer=setTimeout(function(){s._hook("onDragModeOn",n),s._hook("onDragStart",n),s._isDrag=!0},350)))}}),this._isDrag&&(F(this._doc,ns,this._onDocTouch),F(this._doc,V,this._onDocTouch))},t.prototype._destroy=function(){var e,t;this._unsubscribe&&(e=this.s.id,(t=ni[e])&&(t.unsubscribe(this._unsubscribe),t.nr||delete ni[e])),this._unlisten&&this._unlisten(),z(this._doc,ns,this._onDocTouch),z(this._doc,V,this._onDocTouch)},t.prototype._render=function(e,t){var n,a,s,i,o,r,l,c,d,h=e.event,u=new Date(e.date),m=e.render||e.renderContent,_=!1;this._isDrag=this._isDrag||e.isUpdate,this._content=Ee,this._title=e.more||e.count||!e.showEventTooltip?Ee:(s=h.tooltip||h.title||h.text,P&&s?((a=P.createElement("div")).innerHTML=s,a.textContent.trim()):s||""),this._tabIndex=e.isActiveMonth&&e.showText&&!e.count&&!e.isPicker?0:-1,h&&(s=(a=h.allDay)?Ee:e,i=h.start?Re(h.start,s):null,o=h.end?Re(h.end,s):null,c=i&&o&&Yn(e,a,i,o,!0),d=We(Vn(u,e),7),d=e.lastDay&&e.lastDay<d?e.lastDay:d,r=!(_=i&&c&&!ze(i,c))||i&&ze(i,u),l=!_||c&&ze(c,u),c=!_||(e.showText?c<d:l),this._hasResizeStart=e.resize&&r,this._hasResizeEnd=e.resize&&c,!(u=h.color)&&h.resource&&e.resourcesMap&&(u=(d=e.resourcesMap[ue(h.resource)?h.resource[0]:h.resource])&&d.color),e.showText&&(this._textColor=u?he(u):Ee),this._color=e.render||e.template?Ee:h.textColor&&!u?"transparent":u),h&&e.showText&&(m||e.contentTemplate||e.template)?(d=h.allDay||!i||_&&!r&&!l,this._data={end:!d&&l&&o?Ae(e.timeFormat,o,e):"",id:h.id,isMultiDay:_,original:h,start:!d&&r&&i?Ae(e.timeFormat,i,e):"",title:this._title},m&&(me(u=m(this._data))?n=u:this._content=u)):n=e.more||e.count||e.showText&&(h.title||h.text)||"",n!==this._text&&(this._text=n,this._html=n?this._safeHtml(n):Ee,this._shouldEnhance=n&&h&&e.showText&&!!m),this._cssClass="mbsc-calendar-text"+this._theme+this._rtl+(t.hasFocus&&!e.inactive&&!e.selected||e.selected&&e.showText?" mbsc-calendar-label-active ":"")+(!t.hasHover||e.inactive||this._isDrag?"":" mbsc-calendar-label-hover")+(e.more?" mbsc-calendar-text-more":e.render||e.template?" mbsc-calendar-custom-label":" mbsc-calendar-label")+(e.inactive?" mbsc-calendar-label-inactive":"")+(e.isUpdate?" mbsc-calendar-label-dragging":"")+(e.hidden?" mbsc-calendar-label-hidden":"")+(r?" mbsc-calendar-label-start":"")+(c?" mbsc-calendar-label-end":"")+(h&&!1===h.editable?" mbsc-readonly-event":"")+(h&&h.cssClass?" "+h.cssClass:"")},t}(t));function si(e,t,n,a,s,i,o){return ae(ai,{key:o,amText:t.amText,count:n.count?n.count+" "+(1<n.count?t.eventsText:t.eventText):Ee,date:t.date,dataTimezone:t.dataTimezone,displayTimezone:t.displayTimezone,drag:t.dragToMove,resize:Pa(n.event&&n.event.resize,t.dragToResize),event:n.event,exclusiveEndDates:t.exclusiveEndDates,firstDay:t.firstDay,hidden:s,id:n.id,inactive:!i&&n.event&&t.dragData&&t.dragData.draggedEvent&&n.event.id===t.dragData.draggedEvent.id,isActiveMonth:t.isActiveMonth,isPicker:t.isPicker,isUpdate:i,label:n.label,lastDay:n.lastDay,more:n.more,pmText:t.pmText,resourcesMap:t.resourcesMap,rtl:t.rtl,selected:n.event&&t.selectedEventsMap&&!(!t.selectedEventsMap[n.id]&&!t.selectedEventsMap[n.event.id]),showEventTooltip:t.showEventTooltip,showText:a,theme:t.theme,timeFormat:t.timeFormat,timezonePlugin:t.timezonePlugin,render:t.renderLabel,renderContent:t.renderLabelContent,onClick:e._onLabelClick,onDoubleClick:e._onLabelDoubleClick,onRightClick:e._onLabelRightClick,onHoverIn:e._onLabelHoverIn,onHoverOut:e._onLabelHoverOut,onDelete:t.onLabelDelete,onDragStart:t.onLabelUpdateStart,onDragMove:t.onLabelUpdateMove,onDragEnd:t.onLabelUpdateEnd,onDragModeOn:t.onLabelUpdateModeOn,onDragModeOff:t.onLabelUpdateModeOff})}function ii(s,i){var e,t,n=i._draggedLabel,a=i._draggedLabelOrig,o=i._theme;(t={})[ut]=i._onRightClick;return s.renderDay&&(e=s.renderDay(i._data)),me(e=s.renderDayContent?s.renderDayContent(i._data):e)&&(e=ae("div",{dangerouslySetInnerHTML:i._safeHtml(e)}),i._shouldEnhance=!0),ae("div",ne({ref:i._setEl,className:i._cssClass,onClick:i._onClick,style:i._cellStyles,tabIndex:s.disabled?Ee:s.active?0:-1},t),ae("div",{className:"mbsc-calendar-cell-inner mbsc-calendar-"+s.type+"-inner"+o+("day"===s.type?"":i._hb)+(s.display?"":" mbsc-calendar-day-hidden")},s.renderDay?e:ae(se,null,1===s.text&&ae("div",{"aria-hidden":"true",className:"mbsc-calendar-month-name"+o+i._rtl},s.monthShort),ae("div",{"aria-label":i._ariaLabel,role:"button","aria-pressed":s.selected,className:"mbsc-calendar-cell-text mbsc-calendar-"+s.type+"-text"+o+i._todayClass,style:i._circleStyles},s.text),s.marks&&ae("div",null,ae("div",{className:"mbsc-calendar-marks"+o+i._rtl},s.marks.map(function(e,t){return ae("div",{className:"mbsc-calendar-mark "+(e.markCssClass||"")+o,key:t,style:{background:e.color}})}))),s.renderDayContent&&e),s.labels&&ae("div",null,a&&a.event&&ae("div",{className:"mbsc-calendar-labels mbsc-calendar-labels-dragging"},ae("div",{style:{width:a.width+"%"||"100%"}},si(i,s,{id:0,event:a.event},!0,!!s.dragData.draggedDates,!0))),n&&n.event&&ae("div",{className:"mbsc-calendar-labels mbsc-calendar-labels-dragging"},ae("div",{className:"mbsc-calendar-label-wrapper",style:{width:n.width+"%"||"100%"}},si(i,s,{id:0,event:n.event},!0,!1,!0))),ae("div",{className:"mbsc-calendar-labels"},s.labels.data.map(function(e){return t=i,n=s,a=(e=e).id,e.placeholder?ae("div",{className:"mbsc-calendar-text mbsc-calendar-text-placeholder",key:a}):e.more||e.count?si(t,n,e,!0,!1,!1,a):e.multiDay?[ae("div",{className:"mbsc-calendar-label-wrapper",style:{width:e.width+"%"},key:a},si(t,n,e,!0)),si(t,n,e,!1,!1,!1,"-"+a)]:si(t,n,e,e.showText,!1,!1,a);var t,n,a})),ae("div",{className:"mbsc-calendar-text mbsc-calendar-text-placeholder"}))))}function oi(e){var n=e.firstDay,t=e.hidden,a=e.rtl,s=e.theme,i=e.dayNamesShort,o=e.showWeekNumbers,e=e.hasScroll;return ae("div",{"aria-hidden":"true",className:"mbsc-calendar-week-days mbsc-flex"+(t?" mbsc-hidden":"")},o&&ae("div",{className:"mbsc-calendar-week-day mbsc-flex-none mbsc-calendar-week-nr"+s+a}),b.map(function(e,t){return ae("div",{className:"mbsc-calendar-week-day mbsc-flex-1-0-0"+s+a,key:t},i[(t+n)%7])}),e&&ae("div",{className:"mbsc-schedule-fake-scroll-y"}))}var ri=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return ii(e,this)},t}(function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._onClick=function(e){t._cellClick("onDayClick",e)},t._onRightClick=function(e){t._cellClick("onDayRightClick",e)},t._onLabelClick=function(e){t._labelClick("onLabelClick",e)},t._onLabelDoubleClick=function(e){t._labelClick("onLabelDoubleClick",e)},t._onLabelRightClick=function(e){t._labelClick("onLabelRightClick",e)},t._onLabelHoverIn=function(e){t._labelClick("onLabelHoverIn",e)},t._onLabelHoverOut=function(e){t._labelClick("onLabelHoverOut",e)},t}return a(t,e),t.prototype._mounted=function(){var n,a,s,i=this;this._unlisten=zs(this._el,{click:!0,onBlur:function(){i.setState({hasFocus:!1})},onDoubleClick:function(e){var t=i.s;t.clickToCreate&&"single"!==t.clickToCreate&&t.labels&&!t.disabled&&t.display&&(i._hook("onLabelUpdateStart",e),i._hook("onLabelUpdateEnd",e)),i._cellClick("onDayDoubleClick",e.domEvent)},onEnd:function(e){n&&(e.domEvent.preventDefault(),i._hook("onLabelUpdateEnd",e),n=!1),clearTimeout(s),a=n=!1},onFocus:function(){i.setState({hasFocus:!0})},onHoverIn:function(e){var t=i.s;t.disabled||i.setState({hasHover:!0}),i._hook("onHoverIn",{date:new Date(t.date),domEvent:e,hidden:!t.display,outer:t.outer,target:i._el})},onHoverOut:function(e){var t=i.s;i.setState({hasHover:!1}),i._hook("onHoverOut",{date:new Date(t.date),domEvent:e,hidden:!t.display,outer:t.outer,target:i._el})},onKeyDown:function(e){switch(e.keyCode){case 13:case 32:e.preventDefault(),i._onClick(e)}},onMove:function(e){n&&i.s.dragToCreate?(e.domEvent.preventDefault(),i._hook("onLabelUpdateMove",e)):a&&i.s.dragToCreate&&(7<Math.abs(e.deltaX)||7<Math.abs(e.deltaY))?(n=!e.isTouch,i._hook("onLabelUpdateStart",e)):clearTimeout(s)},onStart:function(e){var t=i.s;e.create=!0,t.disabled||!t.dragToCreate&&!t.clickToCreate||!t.labels||n||fe(e.domEvent.target,".mbsc-calendar-text",i._el)||(e.isTouch&&t.dragToCreate?s=setTimeout(function(){i._hook("onLabelUpdateStart",e),i._hook("onLabelUpdateModeOn",e),n=!0},350):"single"===t.clickToCreate?(i._hook("onLabelUpdateStart",e),n=!0):a=!e.isTouch)}})},t.prototype._render=function(e,t){var n=Ve(e),a=e.date,s=e.colors,i=e.display,o=e.dragData,r=e.hoverEnd,l=e.hoverStart,c=e.labels,d=e.rangeEnd,h=e.rangeStart,u=new Date(a),m=Pe(u),n=ze(n,u),_=c&&c.events,p=s&&s[0],v=p&&p.background,f=p&&p.highlight,g="",y="";this._draggedLabel=o&&o.draggedDates&&o.draggedDates[m],this._draggedLabelOrig=o&&o.originDates&&o.originDates[m],this._todayClass=n?" mbsc-calendar-today":"",this._cellStyles=v&&i?{backgroundColor:v,color:he(v)}:Ee,this._circleStyles=f?{backgroundColor:f,color:he(p.highlight)}:Ee,this._ariaLabel="day"===e.type?(n?e.todayText+", ":"")+e.day+", "+e.month+" "+e.text+", "+e.year:"month"===e.type?e.month:"",i&&((h&&h<=a&&a<=(d||h)||d&&a<=d&&(h||d)<=a)&&(y=" mbsc-range-day"+(a===(h||d)?" mbsc-range-day-start":"")+(a===(d||h)?" mbsc-range-day-end":"")),l&&r&&l<=a&&a<=r&&(y+=" mbsc-range-hover"+(a===l?" mbsc-range-hover-start mbsc-hover":"")+(a===r?" mbsc-range-hover-end mbsc-hover":""))),e.marks&&e.marks.forEach(function(e){g+=e.cellCssClass?" "+e.cellCssClass:""}),s&&s.forEach(function(e){g+=e.cellCssClass?" "+e.cellCssClass:""}),_&&_.forEach(function(e){g+=e.cellCssClass?" "+e.cellCssClass:""}),this._cssClass="mbsc-calendar-cell mbsc-flex-1-0-0 mbsc-calendar-"+e.type+this._theme+this._rtl+this._hb+g+(c?" mbsc-calendar-day-labels":"")+(s?" mbsc-calendar-day-colors":"")+(e.outer?" mbsc-calendar-day-outer":"")+(e.hasMarks?" mbsc-calendar-day-marked":"")+(e.disabled?" mbsc-disabled":"")+(i?"":" mbsc-calendar-day-empty")+(e.selected?" mbsc-selected":"")+(t.hasFocus?" mbsc-focus":"")+(!t.hasHover||a!==l&&a!==r&&(l||r)?"":" mbsc-hover")+(this._draggedLabel?" mbsc-calendar-day-highlight":"")+y,this._data={date:u,events:e.events||[],selected:e.selected}},t.prototype._destroy=function(){this._unlisten&&this._unlisten()},t.prototype._cellClick=function(e,t){var n=this.s;n.display&&this._hook(e,{date:new Date(n.date),disabled:n.disabled,domEvent:t,outer:n.outer,selected:n.selected,source:"calendar",target:this._el})},t.prototype._labelClick=function(e,t){var n=this.s;t.date=new Date(n.date),t.labels=n.labels.events,this._hook(e,t)},t}(t));var li=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return s=this,i=(a=e).showWeekNumbers,e=a.showWeekDays?ae(oi,{dayNamesShort:a.dayNamesShort,firstDay:a.firstDay,rtl:s._rtl,showWeekNumbers:i,theme:s._theme}):null,ae("div",{"aria-hidden":a.isActive?Ee:"true",className:"mbsc-calendar-table mbsc-flex-col mbsc-flex-1-1"+(a.isActive?" mbsc-calendar-table-active":"")},e,s._rows.map(function(e,t){var n=i?s._getWeekNr(a,e[0].date):"";return ae("div",{className:"mbsc-calendar-row mbsc-flex mbsc-flex-1-0",key:t,style:{minHeight:s._rowHeights[t]}},i&&ae("div",{className:"mbsc-calendar-cell mbsc-flex-none mbsc-calendar-day mbsc-calendar-week-nr"+s._theme},ae("div",{"aria-hidden":"true"},n),ae("div",{className:"mbsc-hidden-content"},a.weekText.replace("{count}",n))),e.map(function(e,t){return ae(ri,{active:e.display&&s._isActive(e.date),amText:a.amText,clickToCreate:a.clickToCreate,colors:e.colors,date:e.date,day:e.day,disabled:s._isInvalid(e.date),display:e.display,dataTimezone:a.dataTimezone,displayTimezone:a.displayTimezone,dragData:a.dragData,dragToCreate:a.dragToCreate,dragToResize:a.dragToResize,dragToMove:a.dragToMove,eventText:a.eventText,events:e.events,eventsText:a.eventsText,exclusiveEndDates:a.exclusiveEndDates,firstDay:a.firstDay,hasMarks:a.hasMarks,hoverEnd:a.hoverEnd,hoverStart:a.hoverStart,isActiveMonth:a.isActive,isPicker:a.isPicker,key:e.date,labels:e.labels,pmText:a.pmText,marks:e.marks,month:e.month,monthShort:e.monthShort,onDayClick:a.onDayClick,onDayDoubleClick:a.onDayDoubleClick,onDayRightClick:a.onDayRightClick,onLabelClick:a.onLabelClick,onLabelDoubleClick:a.onLabelDoubleClick,onLabelRightClick:a.onLabelRightClick,onLabelHoverIn:a.onLabelHoverIn,onLabelHoverOut:a.onLabelHoverOut,onLabelDelete:a.onLabelDelete,onLabelUpdateStart:a.onLabelUpdateStart,onLabelUpdateMove:a.onLabelUpdateMove,onLabelUpdateEnd:a.onLabelUpdateEnd,onLabelUpdateModeOn:a.onLabelUpdateModeOn,onLabelUpdateModeOff:a.onLabelUpdateModeOff,outer:e.outer,renderDay:a.renderDay,renderDayContent:a.renderDayContent,renderLabel:a.renderLabel,renderLabelContent:a.renderLabelContent,rangeEnd:a.rangeEnd,rangeStart:a.rangeStart,resourcesMap:a.resourcesMap,selectedEventsMap:a.selectedEventsMap,rtl:a.rtl,showEventTooltip:a.showEventTooltip,selected:s._isSelected(e.date),text:e.text,theme:a.theme,timeFormat:a.timeFormat,timezonePlugin:a.timezonePlugin,todayText:a.todayText,type:"day",year:e.year,onHoverIn:a.onDayHoverIn,onHoverOut:a.onDayHoverOut})}))}));var a,s,i},t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._isActive=function(e){return this.s.isActive&&e===this.s.activeDate},t.prototype._isInvalid=function(e){var t=this.s;return fs(t,Bn(t,new Date(e)),t.invalid,t.valid,+t.min,+t.max)},t.prototype._isSelected=function(e){e=new Date(e),e=Bn(this.s,e);return!!this.s.selectedDates[+e]},t.prototype._getWeekNr=function(e,t){t=new Date(t);return""+e.getWeekNumber(e.getDate(t.getFullYear(),t.getMonth(),t.getDate()+(7-e.firstDay+1)%7))},t.prototype._render=function(e){var t=e.weeks,n=e.firstDay,a=new Date(e.firstPageDay),s=e.getYear(a),i=e.getMonth(a),o=e.getDay(a),r=e.getDate(s,i,o).getDay(),l=0<n-r?7:0,c=[],d=0;this._rowHeights=[],this._rows=[],this._days=b;for(var h=0;h<7*t;h++){var u=e.getDate(s,i,h+n-l-r+o),m=Pe(u),_=e.getMonth(u),p=_!==i&&"week"!==e.calendarType,v=e.marked&&e.marked[m],v=v?e.showSingleMark?[{}]:v:null,f=e.labels&&e.labels[m],g=f?f.data.length:0,y=h%7==0;if(e.variableRow){if(y&&p&&h)break;d<g&&(d=g),h%7==6&&(this._rowHeights.push(d*(e.labelHeight||20)+(e.cellTextHeight||0)+3),d=0)}y&&this._rows.push(c=[]),c.push({colors:e.colors&&e.colors[m],date:+u,day:e.dayNames[u.getDay()],display:!p||e.showOuter,events:e.events&&e.events[m],labels:f,marks:v,month:e.monthNames[_],monthShort:e.monthNamesShort[_],outer:p,text:e.getDay(u),year:e.getYear(u)})}},t}(t));function ci(e,t,n,a){if(!(t<n||a<t))return ue(e)?e[0<=(a=t%(n=e.length))?a:a+n]:e(t)}var di=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return n=this,e=(t=e).children,t.itemRenderer&&(e=n.visibleItems.map(function(e){return t.itemRenderer(e,n._offset)}),t.scroll3d&&(a=n.visible3dItems.map(function(e){return t.itemRenderer(e,n._offset,!0)}))),ae("div",{ref:n._setEl,className:n._cssClass,style:t.styles},ae("div",{ref:n._setInnerEl,className:t.innerClass,style:t.innerStyles},ae("div",{ref:n._setScrollEl,className:"mbsc-scrollview-scroll"+n._rtl},e)),t.scroll3d&&ae("div",{ref:n._setScrollEl3d,style:{height:t.itemSize+"px"},className:"mbsc-scroller-items-3d"},a),ae("div",{ref:n._setScrollbarContEl,className:"mbsc-scroller-bar-cont "+n._rtl+(t.scrollBar&&n._barSize!==n._barContSize?"":" mbsc-scroller-bar-hidden")+(n._started?" mbsc-scroller-bar-started":"")},ae("div",{className:"mbsc-scroller-bar"+n._theme,ref:n._setScrollbarEl,style:{height:n._barSize+"px"}})));var t,n,a},t}(function(e){function t(){var n,a,s,o=null!==e&&e.apply(this,arguments)||this;return o._currPos=0,o._delta=0,o._endPos=0,o._lastRaf=0,o._maxSnapScroll=0,o._margin=0,o._scrollEnd=(n=function(){B(o._raf),o._raf=!1,o._onEnd(),o._hasScrolled=!1},void 0===(a=200)&&(a=100),function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];clearTimeout(s),s=setTimeout(function(){n.apply(void 0,e)},a)}),o._setInnerEl=function(e){o._innerEl=e},o._setScrollEl=function(e){o._scrollEl=e},o._setScrollEl3d=function(e){o._scrollEl3d=e},o._setScrollbarEl=function(e){o._scrollbarEl=e},o._setScrollbarContEl=function(e){o._scrollbarContEl=e},o._onStart=function(e){var t=o.s;o._hook("onStart",{}),t.changeOnEnd&&o._isScrolling||!t.mouseSwipe&&!e.isTouch||!t.swipe||(o._started=!0,o._hasScrolled=o._isScrolling,o._currX=e.startX,o._currY=e.startY,o._delta=0,o._velocityX=0,o._velocityY=0,o._startPos=de(o._scrollEl,o._isVertical),o._timestamp=+new Date,o._isScrolling&&(B(o._raf),o._raf=!1,o._scroll(o._startPos)))},o._onMove=function(e){var t=e.domEvent,n=o.s;o._isVertical||n.scrollLock||o._hasScrolled?t.cancelable&&t.preventDefault():t.type===as&&(7<Math.abs(e.deltaY)||!n.swipe)&&(o._started=!1),o._started&&(o._delta=o._isVertical?e.deltaY:e.deltaX,(o._hasScrolled||Math.abs(o._delta)>o._threshold)&&(o._hasScrolled||o._hook("onGestureStart",{}),o._hasScrolled=!0,o._isScrolling=!0,o._raf||(o._raf=U(function(){return o._move(e)}))))},o._onEnd=function(){var e,t,n,a,s,i;o._started=!1,o._hasScrolled&&(e=o.s,i=17*(o._isVertical?o._velocityY:o._velocityX),t=o._maxSnapScroll,a=o._delta,a+=i*i*.5*(i<(i=0)?-1:1),t&&(a=Ne(a,-o._round*t,o._round*t)),t=Ne(Ie((o._startPos+a)/o._round)*o._round,o._min,o._max),n=Ie(-t*o._rtlNr/e.itemSize)+o._offset,a=0<a?o._isVertical?270:360:o._isVertical?90:180,s=n-e.selectedIndex,i=e.time||Math.max(1e3,3*Math.abs(t-o._currPos)),o._hook("onGestureEnd",{direction:a,index:n}),o._delta=0,o._scroll(t,i),s&&!e.changeOnEnd&&(o._hook("onIndexChange",{index:n,diff:s}),e.selectedIndex===o._prevIndex&&e.selectedIndex!==n&&o.forceUpdate()))},o._onClick=function(e){o._hasScrolled&&(o._hasScrolled=!1,e.stopPropagation(),e.preventDefault())},o._onScroll=function(e){e.target.scrollTop=0,e.target.scrollLeft=0},o._onMouseWheel=function(e){var t=o._isVertical?e.deltaY===Ee?e.wheelDelta||e.detail:e.deltaY:e.deltaX;t&&o.s.mousewheel&&(e.preventDefault(),o._hook("onStart",{}),o._started||(o._delta=0,o._velocityX=0,o._velocityY=0,o._startPos=o._currPos,o._hook("onGestureStart",{})),e.deltaMode&&1===e.deltaMode&&(t*=15),t=Ne(-t,-o._scrollSnap,o._scrollSnap),o._delta+=t,o._maxSnapScroll&&Math.abs(o._delta)>o._round*o._maxSnapScroll&&(t=0),o._startPos+o._delta<o._min&&(o._startPos=o._min,t=o._delta=0),o._startPos+o._delta>o._max&&(o._startPos=o._max,t=o._delta=0),o._raf||(o._raf=U(function(){return o._move()})),!t&&o._started||(o._hasScrolled=!0,o._isScrolling=!0,o._started=!0,o._scrollEnd()))},o._onTrackStart=function(e){e.stopPropagation();var t={domEvent:e,startX:Ls(e,"X",!0),startY:Ls(e,"Y",!0)};o._onStart(t),o._trackStartX=t.startX,o._trackStartY=t.startY,e.target===o._scrollbarEl?(F(o._doc,Za,o._onTrackEnd),F(o._doc,Ga,o._onTrackMove)):(e=pe(o._scrollbarContEl).top,t=(t.startY-e)/o._barContSize,o._startPos=o._currPos=o._max+(o._min-o._max)*t,o._hasScrolled=!0,o._onEnd())},o._onTrackMove=function(e){var t=o._barContSize,n=Ls(e,"X",!0),a=Ls(e,"Y",!0),e=(o._isVertical?a-o._trackStartY:n-o._trackStartX)/t;o._isInfinite?o._delta=-(o._maxSnapScroll*o._round*2+t)*e:o._delta=(o._min-o._max-t)*e,(o._hasScrolled||Math.abs(o._delta)>o._threshold)&&(o._hasScrolled||o._hook("onGestureStart",{}),o._hasScrolled=!0,o._isScrolling=!0,o._raf||(o._raf=U(function(){return o._move({endX:n,endY:a},!o._isInfinite)})))},o._onTrackEnd=function(){o._delta=0,o._startPos=o._currPos,o._onEnd(),z(o._doc,Za,o._onTrackEnd),z(o._doc,Ga,o._onTrackMove)},o._onTrackClick=function(e){e.stopPropagation()},o}return a(t,e),t.prototype._render=function(e,t){for(var n=this._prevS,a=e.batchSize,s=e.batchSize3d,i=e.itemNr||1,o=e.itemSize,r=e.selectedIndex,l=n.selectedIndex,c=t.index===Ee?r:t.index,d=[],h=[],t=r-l,l=c-this._currIndex,u=e.minIndex,m=e.maxIndex,_=e.items,p=e.offset,v=(this._currIndex=c,this._isVertical="Y"===e.axis,this._threshold=this._isVertical?e.thresholdY:e.thresholdX,this._rtlNr=!this._isVertical&&e.rtl?-1:1,this._round=e.snap?o:1,this._round);44<v;)v/=2;if(this._scrollSnap=Ie(44/v)*v,_){for(var f=c-a;f<c+i+a;f++)d.push({key:f,data:ci(_,f,u,m)});if(e.scroll3d)for(f=c-s;f<c+i+s;f++)h.push({key:f,data:ci(_,f,u,m)});this.visibleItems=d,this.visible3dItems=h,this._maxSnapScroll=a,this._isInfinite="function"==typeof _}this._offset===Ee&&(this._offset=r);var r=-(r-this._offset)*o*this._rtlNr;Math.abs(t)>a&&r!==this._endPos&&(this._offset+=r=t+a*(0<t?-1:1),this._margin-=r),p&&p!==n.offset&&(this._offset+=p,this._margin-=p),l&&(this._margin+=l),this._max=u!==Ee?-(u-this._offset)*o*this._rtlNr:1/0,this._min=m!==Ee?-(m-this._offset-(e.spaceAround?0:i-1))*o*this._rtlNr:-1/0,-1===this._rtlNr&&(t=this._min,this._min=this._max,this._max=t),this._min>this._max&&(this._min=this._max);r=e.visibleSize*o;this._barContSize=r,this._barSize=Math.max(20,r*r/(this._max-this._min+r)),this._cssClass=this._className+" mbsc-ltr"},t.prototype._mounted=function(){this._doc=oe(this._el),F(this.s.scroll3d?this._innerEl:this._el,ts,this._onScroll),F(this._el,Ua,this._onClick,!0),F(this._el,es,this._onMouseWheel,{passive:!1}),F(this._el,os,this._onMouseWheel,{passive:!1}),F(this._scrollbarContEl,V,this._onTrackStart),F(this._scrollbarContEl,Ua,this._onTrackClick),this._unlisten=zs(this._el,{onEnd:this._onEnd,onMove:this._onMove,onStart:this._onStart,prevDef:!0})},t.prototype._updated=function(){var e=this.s,t=e.batchSize,n=e.itemSize,a=e.selectedIndex,s=this._prevIndex,s=!e.prevAnim&&(s!==Ee&&s!==a||this._isAnimating),i=-(a-this._offset)*n*this._rtlNr;e.margin&&(this._scrollEl.style.marginTop=this._isVertical?(this._margin-t)*n+"px":""),this._started||this._scroll(i,s?this._isAnimating||e.time||1e3:0),this._prevIndex=a},t.prototype._destroy=function(){z(this.s.scroll3d?this._innerEl:this._el,ts,this._onScroll),z(this._el,Ua,this._onClick,!0),z(this._el,es,this._onMouseWheel,{passive:!1}),z(this._el,os,this._onMouseWheel,{passive:!1}),z(this._scrollbarContEl,V,this._onTrackStart),z(this._scrollbarContEl,Ua,this._onTrackClick),B(this._raf),this._raf=!1,this._scroll(0),this._unlisten()},t.prototype._anim=function(n){var a=this;return this._raf=U(function(){var e=a.s,t=+new Date;a._raf&&((a._currPos-a._endPos)*-n<4?(a._currPos=a._endPos,a._raf=!1,a._isAnimating=0,a._isScrolling=!1,a._infinite(a._currPos),a._hook("onAnimationEnd",{}),a._scrollbarContEl.classList.remove("mbsc-scroller-bar-started")):(100<t-a._lastRaf&&(a._lastRaf=t,a._currPos=de(a._scrollEl,a._isVertical),e.changeOnEnd||a._infinite(a._currPos)),a._raf=a._anim(n)))})},t.prototype._infinite=function(e){var t,n=this.s;n.itemSize&&(t=(e=Ie(-e*this._rtlNr/n.itemSize)+this._offset)-this._currIndex)&&(n.changeOnEnd?this._hook("onIndexChange",{index:e,diff:t}):this.setState({index:e}))},t.prototype._scroll=function(e,t){var n,a=this.s,s=a.itemSize,i=this._isVertical,o=this._scrollEl.style,r=G?G+"T":"t",l=t?Z+"transform "+Ie(t)+"ms "+a.easing:"";o[r+"ransform"]="translate3d("+(i?"0,"+e+"px,":e+"px,0,")+"0)",o[r+"ransition"]=l,this._endPos=e,a.scroll3d&&(o=this._scrollEl3d.style,n=360/(2*a.batchSize3d),o[r+"ransform"]="translateY(-50%) rotateX("+-e/s*n+"deg)",o[r+"ransition"]=l),this._scrollbarEl&&(s=this._scrollbarEl.style,n=this._isInfinite?(this._maxSnapScroll*this._round-this._delta)/(this._maxSnapScroll*this._round*2):(e-this._max)/(this._min-this._max),o=Ne((this._barContSize-this._barSize)*n,0,this._barContSize-this._barSize),s[r+"ransform"]="translate3d("+(i?"0,"+o+"px,":o+"px,0,")+"0)",s[r+"ransition"]=l),t?(B(this._raf),this._isAnimating=t,this._scrollbarContEl.classList.add("mbsc-scroller-bar-started"),this._raf=this._anim(e>this._currPos?1:-1)):(this._currPos=e,a.changeOnEnd||this._infinite(e))},t.prototype._move=function(e,t){var n=this._currX,a=this._currY,s=this._timestamp,i=this._maxSnapScroll;e&&(this._currX=e.endX,this._currY=e.endY,this._timestamp=+new Date,0<(e=this._timestamp-s)&&e<100&&(s=(this._currX-n)/e,n=(this._currY-a)/e,this._velocityX=.7*s+.3*this._velocityX,this._velocityY=.7*n+.3*this._velocityY)),i&&!t&&(this._delta=Ne(this._delta,-this._round*i,this._round*i)),this._scroll(Ne(this._startPos+this._delta,this._min-this.s.itemSize,this._max+this.s.itemSize)),this._raf=!1},t.defaults={axis:"Y",batchSize:40,easing:"cubic-bezier(0.190, 1.000, 0.220, 1.000)",mouseSwipe:!0,mousewheel:!0,prevDef:!0,selectedIndex:0,spaceAround:!0,stopProp:!0,swipe:!0,thresholdX:10,thresholdY:5},t}(t)),hi=0;function ui(d,n,h,e){function s(e,t){return ae(li,ne({},t,{activeDate:h._active,amText:d.amText,calendarType:d.calendarType,cellTextHeight:n.cellTextHeight,clickToCreate:d.clickToCreate,colors:h._colors,dayNames:d.dayNames,dayNamesShort:h._dayNames,dataTimezone:d.dataTimezone,displayTimezone:d.displayTimezone,eventText:d.eventText,events:d.eventMap,eventsText:d.eventsText,exclusiveEndDates:d.exclusiveEndDates,firstDay:d.firstDay,firstPageDay:e,getDate:d.getDate,getDay:d.getDay,getMonth:d.getMonth,getWeekNumber:d.getWeekNumber,getYear:d.getYear,hasMarks:!!h._marked,hoverEnd:d.hoverEnd,hoverStart:d.hoverStart,isPicker:d.isPicker,invalid:h._invalid,labels:h._labelsLayout,labelHeight:n.labelHeight,marked:h._marked,max:h._maxDate,min:h._minDate,monthNames:d.monthNames,monthNamesShort:d.monthNamesShort,onDayClick:h._onDayClick,onDayDoubleClick:d.onDayDoubleClick,onDayRightClick:d.onDayRightClick,onDayHoverIn:h._onDayHoverIn,onDayHoverOut:h._onDayHoverOut,onLabelClick:h._onLabelClick,onLabelDoubleClick:d.onLabelDoubleClick,onLabelRightClick:d.onLabelRightClick,onLabelHoverIn:d.onLabelHoverIn,onLabelHoverOut:d.onLabelHoverOut,onLabelDelete:d.onLabelDelete,pmText:d.pmText,rangeEnd:d.rangeEnd,rangeStart:d.rangeStart,resourcesMap:d.resourcesMap,rtl:d.rtl,selectedDates:d.selectedDates,selectedEventsMap:d.selectedEventsMap,showEventTooltip:d.showEventTooltip,showOuter:h._showOuter,showWeekDays:!h._showDaysTop,showWeekNumbers:d.showWeekNumbers,showSingleMark:!!d.marksMap,todayText:d.todayText,theme:d.theme,timeFormat:d.timeFormat,timezonePlugin:d.timezonePlugin,valid:h._valid,weeks:h._weeks,weekText:d.weekText,renderDay:d.renderDay,renderDayContent:d.renderDayContent,renderLabel:d.renderLabel,renderLabelContent:d.renderLabelContent,variableRow:h._variableRow}))}hi++;var t,a,i,o,r,l=h._variableRow,c=h._view!==j,u=((o={})[ht]=h._onViewAnimationEnd,(r={})[mt]=h._onKeyDown,h._showDaysTop&&d.showCalendar?ae(oi,{dayNamesShort:h._dayNames,rtl:h._rtl,theme:h._theme,firstDay:d.firstDay,hasScroll:n.hasScrollY,hidden:h._view!==j&&!h._hasPicker,showWeekNumbers:d.showWeekNumbers}):null),m={axis:h._axis,batchSize:1,changeOnEnd:!0,className:"mbsc-calendar-scroll-wrapper"+h._theme,data:hi,easing:"ease-out",itemSize:n.pickerSize,items:h._months,mousewheel:h._mousewheel,prevAnim:h._prevAnim,rtl:d.rtl,snap:!0,time:200},_=ae("div",{ref:h._setPickerCont,className:h._hasPicker?"mbsc-calendar-picker-wrapper":""},(n.view===ee||n.viewClosing===ee||d.selectView===ee)&&ae("div",ne({className:h._getPickerClass(ee)},o),ae(di,ne({key:"years",itemRenderer:function(e,t){var e=e.key,s=h._getPageYears(e),i=d.getYear(new Date(h._active)),o=d.getYear(new Date(h._activeMonth));return ae("div",{"aria-hidden":h._yearsIndex===e?Ee:"true",className:"mbsc-calendar-picker-slide mbsc-calendar-slide"+h._theme+h._rtl,key:e,style:h._getPageStyle(e,t)},ae("div",{className:"mbsc-calendar-table mbsc-flex-col"},f.map(function(e,a){return ae("div",{className:"mbsc-calendar-row mbsc-flex mbsc-flex-1-0",key:a},v.map(function(e,t){var t=s+3*a+t,n=+d.getDate(t,0,1);return ae(ri,{active:t===o,date:n,display:!0,selected:t===i,disabled:t<h._minYears||t>h._maxYears,rtl:d.rtl,text:t+d.yearSuffix,theme:d.theme,type:"year",onDayClick:h._onYearClick,key:t})}))})))},maxIndex:h._maxYearsIndex,minIndex:h._minYearsIndex,onGestureEnd:h._onGestureEnd,onIndexChange:h._onYearsPageChange,selectedIndex:h._yearsIndex},m))),(n.view===wa||n.viewClosing===wa||d.selectView===wa)&&ae("div",ne({className:h._getPickerClass(wa)},o),ae(di,ne({key:"year",itemRenderer:function(e,t){var e=e.key,i=h._getPageYear(e),n=new Date(h._activeMonth),o=d.getYear(n),r=d.getMonth(n),n=new Date(h._active),l=d.getYear(n),c=d.getMonth(n);return ae("div",{"aria-hidden":h._yearIndex===e?Ee:"true",className:"mbsc-calendar-picker-slide mbsc-calendar-slide"+h._theme+h._rtl,key:e,style:h._getPageStyle(e,t)},ae("div",{className:"mbsc-calendar-table mbsc-flex-col"},f.map(function(e,s){return ae("div",{className:"mbsc-calendar-row mbsc-flex mbsc-flex-1-0",key:s},v.map(function(e,t){var t=d.getDate(i,3*s+t,1),n=d.getYear(t),a=d.getMonth(t);return ae(ri,{active:n===o&&a===r,date:+t,display:!0,selected:n===l&&a===c,disabled:t<h._minYear||t>=h._maxYear,month:d.monthNames[a],rtl:d.rtl,text:d.monthNamesShort[a],theme:d.theme,type:"month",onDayClick:h._onMonthClick,key:+t})}))})))},maxIndex:h._maxYearIndex,minIndex:h._minYearIndex,onGestureEnd:h._onGestureEnd,onIndexChange:h._onYearPageChange,selectedIndex:h._yearIndex},m))));return ae("div",{className:h._cssClass,ref:h._setEl,style:h._dim,onClick:g},ae("div",{className:"mbsc-calendar-wrapper mbsc-flex-col"+h._theme+h._hb+(d.hasContent||!d.showCalendar?" mbsc-calendar-wrapper-fixed mbsc-flex-none":" mbsc-flex-1-1")},ae("div",{className:"mbsc-calendar-header"+h._theme+h._hb+(h._showDaysTop?" mbsc-calendar-header-vertical":""),ref:h._setHeader},d.showControls&&(d.renderHeader?me(a=d.renderHeader())&&(a!==h._headerHTML&&(h._headerHTML=a,h._shouldEnhanceHeader=!0),t=h._safeHtml(a)):(i=1<h._pageNr,a=ae(se,null,ae(Ks,{className:"mbsc-flex mbsc-flex-1-1 mbsc-calendar-title-wrapper"}),ae(Us,{className:"mbsc-calendar-button-prev"+(i?" mbsc-calendar-button-prev-multi":"")}),d.showToday&&ae(js,{className:"mbsc-calendar-header-today"}),ae(Bs,{className:"mbsc-calendar-button-next"+(i?" mbsc-calendar-button-next-multi":"")}))),i=ae("div",{className:"mbsc-calendar-controls mbsc-flex"+h._theme,dangerouslySetInnerHTML:t},a),ae(qs.Provider,{children:i,value:{instance:h}})),u),ae("div",ne({className:"mbsc-calendar-body mbsc-flex-col mbsc-flex-1-1"+h._theme,ref:h._setBody},r),d.showCalendar&&ae("div",{className:"mbsc-calendar-body-inner mbsc-flex-col mbsc-flex-1-1"+(l?" mbsc-calendar-body-inner-variable":"")},h._isGrid?ae("div",{"aria-hidden":c?"true":Ee,className:"mbsc-calendar-grid mbsc-flex-1-1 mbsc-flex-col"+h._theme+h._hb},h._monthsMulti.map(function(e,t){return ae("div",{key:t,className:"mbsc-calendar-grid-row mbsc-flex mbsc-flex-1-1"},e.map(function(e,t){return ae("div",{key:t,className:"mbsc-calendar-grid-item mbsc-flex-col mbsc-flex-1-1"+h._theme},ae("div",{className:"mbsc-calendar-month-title"+h._theme},d.monthNames[new Date(e).getMonth()]),s(e,{isActive:!0}))}))})):l?ae("div",{"aria-hidden":c?"true":Ee,className:"mbsc-calendar-slide mbsc-calendar-slide-active "+h._getPickerClass(j)},s(+d.navigationService.firstDay,{dragData:d.dragData,dragToCreate:d.dragToCreate,dragToMove:d.dragToMove,dragToResize:d.dragToResize,isActive:!0,onLabelUpdateEnd:d.onLabelUpdateEnd,onLabelUpdateModeOff:d.onLabelUpdateModeOff,onLabelUpdateModeOn:d.onLabelUpdateModeOn,onLabelUpdateMove:d.onLabelUpdateMove,onLabelUpdateStart:d.onLabelUpdateStart})):d.selectView===j&&ae("div",ne({"aria-hidden":c?"true":Ee,className:h._getPickerClass(j)},o),ae(di,ne({},m,{itemNr:h._pageNr,itemSize:n.pageSize/h._pageNr,itemRenderer:function(e,t){var e=e.key,n=e>=h._pageIndex&&e<h._pageIndex+h._pageNr&&h._view===j,a={dragData:d.dragData,dragToCreate:d.dragToCreate,dragToMove:d.dragToMove,dragToResize:d.dragToResize,isActive:n,onLabelUpdateEnd:d.onLabelUpdateEnd,onLabelUpdateModeOff:d.onLabelUpdateModeOff,onLabelUpdateModeOn:d.onLabelUpdateModeOn,onLabelUpdateMove:d.onLabelUpdateMove,onLabelUpdateStart:d.onLabelUpdateStart};return ae("div",{className:"mbsc-calendar-slide"+(n?" mbsc-calendar-slide-active":"")+h._theme+h._rtl,key:e,style:h._getPageStyle(e,t,h._pageNr)},s(h._getPageDay(e),a))},maxIndex:h._maxIndex,minIndex:h._minIndex,mouseSwipe:d.mouseSwipe,onAnimationEnd:h._onAnimationEnd,onGestureStart:h._onGestureStart,onIndexChange:h._onPageChange,onStart:h._onStart,selectedIndex:h._pageIndex,swipe:d.swipe}))),!h._hasPicker&&_))),e,h._hasPicker&&ae(ei,{anchor:h._pickerBtn,closeOnScroll:!0,contentPadding:!1,context:d.context,cssClass:"mbsc-calendar-popup",display:"anchored",isOpen:h._view!==j,locale:d.locale,onClose:h._onPickerClose,onOpen:h._onPickerOpen,rtl:d.rtl,scrollLock:!1,showOverlay:!1,theme:d.theme,themeVariant:d.themeVariant},ae("div",ne({},r),ae("div",{className:"mbsc-calendar-controls mbsc-flex"+h._theme},ae("div",{"aria-live":"polite",className:"mbsc-calendar-picker-button-wrapper mbsc-calendar-title-wrapper mbsc-flex mbsc-flex-1-1"+h._theme},ae(Xs,{className:"mbsc-calendar-button",onClick:h._onPickerBtnClick,theme:d.theme,themeVariant:d.themeVariant,type:"button",variant:"flat"},h._viewTitle,d.downIcon&&ae(Ns,{svg:n.view===ee?d.downIcon:d.upIcon,theme:d.theme}))),ae(Xs,{className:"mbsc-calendar-button",ariaLabel:d.prevPageText,disabled:h._isPrevDisabled(!0),iconSvg:h._prevIcon,onClick:h.prevPage,theme:d.theme,themeVariant:d.themeVariant,type:"button",variant:"flat"}),ae(Xs,{className:"mbsc-calendar-button",ariaLabel:d.nextPageText,disabled:h._isNextDisabled(!0),iconSvg:h._nextIcon,onClick:h.nextPage,theme:d.theme,themeVariant:d.themeVariant,type:"button",variant:"flat"})),_)))}var mi=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e,t){return ui(e,t,this,e.children)},t.prototype._updated=function(){e.prototype._updated.call(this),this._shouldEnhanceHeader&&(yt(this._headerElement,{view:this}),this._shouldEnhanceHeader=!1)},t}(N);H=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._instanceService=new ks,e}return a(e,t),e.prototype._template=function(e){return ae(mi,{ref:(t=this)._setCal,refDate:e.refDate,activeDate:e.active,amText:e.amText,cssClass:t._className+" mbsc-flex-1-1 mbsc-calendar-"+e.display,calendarScroll:e.calendarScroll,calendarType:e.calendarType,colors:e.colors,context:e.context,dataTimezone:e.dataTimezone,displayTimezone:e.displayTimezone,timezonePlugin:e.timezonePlugin,downIcon:e.downIcon,exclusiveEndDates:e.exclusiveEndDates,hoverEnd:e.hoverEnd,hoverStart:e.hoverStart,invalid:e.invalid,instanceService:t._instanceService,isPicker:!0,labels:e.labels,marked:e.marked,max:e.max,min:e.min,mousewheel:e.mousewheel,navigationService:t._navService,nextIconH:e.nextIconH,nextIconV:e.nextIconV,nextPageText:e.nextPageText,noOuterChange:e.selectRange,onActiveChange:t._onActiveChange,onCellHoverIn:e.onCellHoverIn,onCellHoverOut:e.onCellHoverOut,onDayClick:t._onDayClick,onDayHoverIn:e.onDayHoverIn,onDayHoverOut:e.onDayHoverOut,onLabelClick:e.onLabelClick,onPageChange:e.onPageChange,onPageLoaded:e.onPageLoaded,onPageLoading:e.onPageLoading,onTodayClick:t._onTodayClick,pages:e.pages,pmText:e.pmText,prevIconH:e.prevIconH,prevIconV:e.prevIconV,prevPageText:e.prevPageText,renderDay:e.renderDay,renderDayContent:e.renderDayContent,renderHeader:e.renderCalendarHeader,rangeEnd:e.rangeEnd,rangeStart:e.rangeStart,rtl:e.rtl,selectedDates:t._tempValueRep,selectView:e.selectView,showCalendar:!0,showControls:e.showControls,showOuterDays:e.showOuterDays,showToday:!1,showWeekNumbers:e.showWeekNumbers,size:e.size,theme:e.theme,themeVariant:e.themeVariant,update:t._update,upIcon:e.upIcon,valid:e.valid,weeks:e.weeks,width:e.width,getDate:e.getDate,getDay:e.getDay,getMaxDayOfMonth:e.getMaxDayOfMonth,getMonth:e.getMonth,getWeekNumber:e.getWeekNumber,getYear:e.getYear,dateFormat:e.dateFormat,dayNames:e.dayNames,dayNamesMin:e.dayNamesMin,dayNamesShort:e.dayNamesShort,eventText:e.eventText,eventsText:e.eventsText,firstDay:e.firstDay,fromText:e.fromText,monthNames:e.monthNames,monthNamesShort:e.monthNamesShort,moreEventsPluralText:e.moreEventsPluralText,moreEventsText:e.moreEventsText,todayText:e.todayText,toText:e.toText,weekText:e.weekText,yearSuffix:e.yearSuffix});var t},e}(ws);function _i(e,t,n,a){var s=e.min===Ee?-1/0:e.min,i=e.max===Ee?1/0:e.max,o=fi(e,t),t=gi(e,o),r=t,l=t,c=0,d=0;if(n&&n.get(t)){for(;s<=o-c&&n.get(r)&&c<100;)r=gi(e,o-++c);for(;o+d<i&&n.get(l)&&d<100;)l=gi(e,o+ ++d);if(n.get(r)&&n.get(l))return t;t=(d<c&&d&&-1!==a||!c||o-c<0||1===a)&&!n.get(l)?l:r}return t}function pi(e){return e!==Ee?e.value!==Ee?e.value:e.display!==Ee?e.display:e:e}function vi(e,t){var n,a,s;return e.getItem?e.getItem(t):(s=t%(a=(n=e.data||[]).length),e._circular?n[0<=s?s:s+a]:n[Ne(t,0,a-1)])}function fi(e,t){var n=e.multiple?t&&t.length&&t[0]||Ee:t;return(e.getIndex?+e.getIndex(t):e._map.get(n))||0}function gi(e,t){return pi(vi(e,t))}yn=function(r){function e(){var h=null!==r&&r.apply(this,arguments)||this;return h._indexes=[],h._activeIndexes=[],h._wheels=[],h._batches=[],h._lastIndexes=[],h._onSet=function(){h._setOrUpdate()},h._onActiveChange=function(e){var t=e.wheel,e=e.index,t=t._key,n=(h._activeIndexes[t]=e,h._indexes),a=n[t];h._scroll3d?a=e:e-a>=h._rows?a++:e<a&&a--,n[t]=a,h.forceUpdate()},h._onWheelIndexChange=function(e){var t=h.s,n=e.wheel,a=n._key,s=n.multiple,i=gi(n,e.index),o=h._disabled&&h._disabled[a]&&h._disabled[a].get(i),r=[],l=t.selectOnScroll,c=((l||!e.click)&&(h._lastIndexes[a]=h._indexes[a]=e.index,h._indexes.forEach(function(e,t){var n=h._wheelMap[t],n=n.data?n.data.length:0;h._batches[t]=n?Le(e/n):0,r[t]=n})),h._activeIndexes[a]=e.index,h._get(h._tempValueRep)),o=!!e.click&&!o,d=l||o,i=(s?o&&(s=(h._tempValueRep[a]||[]).slice(),!1===e.selected?s.push(i):!0===e.selected&&s.splice(s.indexOf(i),1),h._tempValueRep[a]=s):d&&(h._tempValueRep[a]=i),!t.onWheelMove||e.index===Ee||(s=t.onWheelMove({dataItem:vi(n,e.index),selection:d,wheelIndex:a}))&&s.forEach(function(e,t){e!==Ee&&(h._tempValueRep[t]=e),d||(e=fi(t=h._wheelMap[t],e),h._constrainIndex(e,t))}),d&&h._validate(a,0<e.diff?1:-1),l&&h._tempValueRep.forEach(function(e,t){var n=h._wheelMap[t],a=n.data?n.data.length:0,s=h._indexes[t],e=fi(n,e)+h._batches[t]*a;h._activeIndexes[t]=h._lastIndexes[t]=h._indexes[t]=e,n._offset=a!==r[t]?e-s:0}),h._get(h._tempValueRep)),t=!h._valueEquals(c,i);t||e.click&&h._live&&!h._valueEquals(h.value,i)?h._setOrUpdate(!t):h.forceUpdate(),h._live&&o&&n.closeOnTap&&h.close()},h}return a(e,r),e.prototype._initWheels=function(){var t=this,n=0,e=this.s.wheels||[];this._wheelMap=[],e.forEach(function(e){e.forEach(function(e){t._initWheel(e,n),t._wheelMap[n]=e,n++})}),this._wheels=e},e.prototype._shouldValidate=function(e,t){return!!e.shouldValidate&&e.shouldValidate(e,t)},e.prototype._valueEquals=function(e,t){return this.s.valueEquality?this.s.valueEquality(e,t):e===t},e.prototype._render=function(e,t){var a=this,n=this.props||{},s=this._respProps||{},i=this._prevS,o=!!this._touchUi&&e.circular,s=this._touchUi?e.rows:s.rows||n.rows||7;this._displayStyle=e.displayStyle||e.display,this._scroll3d=e.scroll3d&&this._touchUi&&$,e.itemHeight===i.itemHeight&&s===this._rows||(this._rows=s,this._lineStyle={height:e.itemHeight+"px"},this._scroll3d&&(n="translateZ("+(e.itemHeight*s/2+3)+"px",this._overlayStyle={},this._overlayStyle[Z+"transform"]=n,this._lineStyle[Z+"transform"]="translateY(-50%) "+n)),e.wheels===i.wheels&&o===this._circular||(this._batches=[],this._shouldSetIndex=!0,this._circular=o,this._initWheels()),r.prototype._render.call(this,e,t),this._shouldSetIndex&&(this._setIndexes(),this._shouldSetIndex=this._indexFromValue=!1),e.wheels!==i.wheels&&i.wheels!==Ee&&setTimeout(function(){for(var e=0,t=a._wheelMap;e<t.length;e++){var n=t[e];a._onWheelIndexChange({diff:0,index:a._indexes[n._key],wheel:n})}})},e.prototype._writeValue=function(e,t,n){return this.s.writeValue?this.s.writeValue(e,t,n):r.prototype._writeValue.call(this,e,t,n)},e.prototype._copy=function(e){return e.slice(0)},e.prototype._format=function(e){return this.s.formatValue?this.s.formatValue(e):e.join(" ")},e.prototype._get=function(e){return this.s.getValue?this.s.getValue(e):e},e.prototype._parse=function(e){var i,o,r;return this.s.parseValue?this.s.parseValue(e):(i=[],o=[],r=0,null!==e&&e!==Ee&&(o=(e+"").split(" ")),this._wheels.forEach(function(e){e.forEach(function(e){for(var t=e.data||[],n=t.length,a=pi(t[0]),s=0;a!=o[r]&&s<n;)a=pi(t[s]),s++;i.push(a),r++})}),i)},e.prototype._validate=function(e,n){var a=this;this.s.validate&&(e=this.s.validate.call(this._el,{direction:n,index:e,values:this._tempValueRep.slice(0),wheels:this._wheelMap}),this._disabled=e.disabled,e.init&&this._initWheels(),e.indexes&&e.indexes.forEach(function(e,t){e!==Ee&&(e=fi(t=a._wheelMap[t],e),a._constrainIndex(e,t))}),e.valid?this._tempValueRep=e.valid.slice(0):this._wheelMap.forEach(function(e,t){a._tempValueRep[t]=_i(e,a._tempValueRep[t],a._disabled&&a._disabled[t],n)}))},e.prototype._onOpen=function(){this._batches=[],this._shouldSetIndex=!0,this._indexFromValue=!0},e.prototype._onParse=function(){this._shouldSetIndex=!0},e.prototype._initWheel=function(n,e){var t=this._circular;n._key=e,n._map=new Map,n._circular=t===Ee?n.circular===Ee?n.data&&n.data.length>this._rows:n.circular:ue(t)?t[e]:t,n.data&&(n.min=n._circular?Ee:0,n.max=n._circular?Ee:n.data.length-1,n.data.forEach(function(e,t){n._map.set(pi(e),t)}))},e.prototype._setIndexes=function(){var o=this,r=this._indexes||[];this._indexes=[],this._activeIndexes=[],this._tempValueRep.forEach(function(e,t){var n,a,s=o._wheelMap[t],i=s.data?s.data.length:0,e=fi(s,e);o.s.selectOnScroll?o._activeIndexes[t]=o._indexes[t]=e+(o._batches[t]||0)*i:(e=e,o._indexFromValue||(e=r[t])!==Ee&&(a=e,e=((n=s).getItem&&n.getIndex?n.getIndex(pi(n.getItem(a))):(n=a%(a=(n.data||[]).length),a?0<=n?n:n+a:0))+(o._batches[t]||0)*i),o._constrainIndex(e,s))})},e.prototype._constrainIndex=function(e,t){var n=t._key;e!==Ee&&t.data?(t.spaceAround||(e=Ne(e,0,Math.max(t.data.length-this._rows,0))),this._activeIndexes[n]=this._indexes[n]=e):this._activeIndexes[n]=this._indexes[n]=this._lastIndexes[n]||0},e.defaults={itemHeight:40,rows:5,selectOnScroll:!0,showOnClick:!0},e._name="Scroller",e}(vs);var yi=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,a=(e=e).renderItem&&e.data!==Ee?(a=me(n=e.renderItem(e.data))?{__html:n}:Ee)?ae("div",{dangerouslySetInnerHTML:a}):ae("div",null,n):e.text,ae("div",{"aria-disabled":e.disabled?"true":Ee,"aria-hidden":a===Ee||e.is3d?"true":Ee,"aria-selected":e.selected?"true":Ee,ref:t._setEl,tabIndex:e.active?0:Ee,className:t._cssClass,role:"option",style:t._style,onClick:t._onClick},e.checkmark&&ae("span",{className:t._checkmarkClass}),a);var t,n,a},t}(function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._onClick=function(){var e=t.s;e.text===Ee||e.isGroup||t._hook("onClick",{index:e.index,selected:e.selected,disabled:e.disabled})},t}return a(t,e),t.prototype._mounted=function(){var t=this;this._unlisten=zs(this._el,{click:!0,keepFocus:!1,onBlur:function(){t.setState({hasFocus:!1})},onFocus:function(){t.setState({hasFocus:!0})},onHoverIn:function(){t.s.text!==Ee&&t.setState({hasHover:!0})},onHoverOut:function(){t.s.text!==Ee&&t.setState({hasHover:!1})},onKeyDown:function(e){32!==e.keyCode&&(t.s.multiple||13!==e.keyCode)||t._onClick()},onPress:function(){t.s.text!==Ee&&t.setState({isActive:!0})},onRelease:function(){t.s.text!==Ee&&t.setState({isActive:!1})}})},t.prototype._destroy=function(){this._unlisten()},t.prototype._render=function(e,t){var n=e.height;this._cssClass="mbsc-scroller-wheel-"+(e.isGroup?"header":"item")+this._theme+this._rtl+(e.checkmark&&!e.isGroup?" mbsc-wheel-item-checkmark":"")+(e.is3d?" mbsc-scroller-wheel-item-3d":"")+(e.scroll3d&&!e.is3d?" mbsc-scroller-wheel-item-2d":"")+(e.selected&&!e.is3d?" mbsc-selected":"")+(e.selected&&e.is3d?" mbsc-selected-3d":"")+(e.disabled?" mbsc-disabled":"")+(e.multiple&&!e.isGroup?" mbsc-wheel-item-multi":"")+(t.hasHover?" mbsc-hover":"")+(t.hasFocus?" mbsc-focus":"")+(t.isActive?" mbsc-active":""),this._style={height:n+"px",lineHeight:n+"px"},this._checkmarkClass=this._theme+this._rtl+" mbsc-wheel-checkmark"+(e.selected?" mbsc-selected":""),e.is3d&&(this._transform="rotateX("+(e.offset-e.index)*e.angle3d%360+"deg) translateZ("+n*e.rows/2+"px)",this._style[Z+"transform"]=this._transform)},t}(t));var bi,xi=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return s=e,i=this,(e={})[mt]=i._onKeyDown,ae("div",ne({"aria-multiselectable":s.multiple?"true":Ee,className:"mbsc-scroller-wheel-wrapper mbsc-scroller-wheel-wrapper-"+s.wheel._key+" "+(s.wheel.cssClass||"")+(s.scroll3d?" mbsc-scroller-wheel-wrapper-3d":"")+i._theme+i._rtl,ref:i._setEl,role:"listbox",style:i._wheelStyle},e),ae(di,{batchSize3d:i._batchSize3d,className:"mbsc-scroller-wheel"+(s.scroll3d?" mbsc-scroller-wheel-3d":"")+i._theme,innerClass:"mbsc-scroller-wheel-cont mbsc-scroller-wheel-cont-"+s.display+(s.scroll3d?" mbsc-scroller-wheel-cont-3d":"")+(s.multiple?" mbsc-scroller-wheel-multi":"")+i._theme,innerStyles:i._innerStyle,items:i._items,itemSize:s.itemHeight,itemRenderer:function(e,t,n){var a;return e!==Ee?(a=i._getText(e.data),ae(yi,{active:i._isActive(e,a,n),angle3d:i._angle3d,data:e.data,disabled:i._isDisabled(e.data),height:s.itemHeight,index:e.key,is3d:n,isGroup:e.data&&e.data.isGroup,key:e.key,multiple:s.multiple,onClick:i._onItemClick,offset:t,checkmark:s.wheel.checkmark,renderItem:s.renderItem,rows:s.rows,rtl:s.rtl,scroll3d:s.scroll3d,selected:i._isSelected(e),text:a,theme:s.theme})):null},itemNr:i._itemNr,margin:!0,maxIndex:s.maxIndex,minIndex:s.minIndex,onIndexChange:i._onIndexChange,offset:s.wheel._offset,rtl:s.rtl,scroll3d:s.scroll3d,scrollBar:!i._touchUi,selectedIndex:s.selectedIndex,snap:!0,spaceAround:s.wheel.spaceAround,styles:i._style,visibleSize:s.rows}));var s,i},t}(function(e){function t(){var i=null!==e&&e.apply(this,arguments)||this;return i._onIndexChange=function(e){e.wheel=i.s.wheel,i._hook("onIndexChange",e)},i._onItemClick=function(e){i._hook("onIndexChange",{click:!0,index:e.index,wheel:i.s.wheel,selected:e.selected})},i._onKeyDown=function(e){var t=0,n=(38===e.keyCode?t=-1:40===e.keyCode&&(t=1),i.s),a=n.activeIndex+t,s=!(a<n.minIndex||a>n.maxIndex);t&&e.preventDefault(),t&&s?(s=n.selectOnScroll?"onIndexChange":"onActiveChange",i._shouldFocus=!0,i._hook(s,{diff:t,index:a,wheel:n.wheel})):13===e.keyCode&&n.multiple&&i._hook("onSet",{})},i}return a(t,e),t.prototype._getText=function(e){return e!==Ee?e.display!==Ee?e.display:e:Ee},t.prototype._getValue=function(e){return e&&(e.value!==Ee?e.value:e.display!==Ee?e.display:e)},t.prototype._isActive=function(e,t,n){var a=this.s,n=a.scroll3d&&a.multiple?n:!n;return a.activeIndex===e.key&&t&&n},t.prototype._isSelected=function(e){var t=this.s,n=t.selectedValues,a=this._getValue(e.data);return t.multiple?!(!n||!n.indexOf)&&0<=n.indexOf(a):t.selectOnScroll?e.key===t.selectedIndex:a!==Ee&&a===n},t.prototype._isDisabled=function(e){var t=this.s.disabled,n=e&&e.disabled,e=this._getValue(e);return!!(n||t&&t.get(e))},t.prototype._render=function(e){var t=e.rows,n=e.itemHeight,a=e.wheel._key,s=2*Ie((n-.03*(n*t/2+3))/2);this._items=e.wheel.getItem||e.wheel.data||[],this._batchSize3d=Ie(1.8*t),this._angle3d=360/(2*this._batchSize3d),this._style={height:2*Ie(t*n*(e.scroll3d?1.1:1)/2)+"px"},this._itemNr=e.wheel.spaceAround?1:t,this._innerStyle={height:(e.scroll3d?s:e.wheel.spaceAround?n:n*t)+"px"},this._wheelStyle=e.wheelWidth?{width:(ue(e.wheelWidth)?e.wheelWidth[a]:e.wheelWidth)+"px"}:{maxWidth:(ue(e.maxWheelWidth)?e.maxWheelWidth[a]:e.maxWheelWidth)+"px",minWidth:(ue(e.minWheelWidth)?e.minWheelWidth[a]:e.minWheelWidth)+"px"},e.scroll3d&&(this._innerStyle[Z+"transform"]="translateY(-50%) translateZ("+(n*t/2+3)+"px")},t.prototype._updated=function(){var e;this._shouldFocus&&((e=this._el.querySelector('[tabindex="0"]'))&&setTimeout(function(){e.focus()}),this._shouldFocus=!1)},t}(t)),Di=new Dt,Ti=0;function Si(){clearTimeout(bi),bi=setTimeout(function(){Di.next()},100)}function Ci(e){try{return ve(e,"*:-webkit-autofill")}catch(e){return!1}}var wi=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),Object.defineProperty(t.prototype,"value",{get:function(){return this._el&&this._el.value},set:function(e){this._el.value=e,this._checkFloating(),"textarea"===this._tag&&this._sizeTextArea()},enumerable:!0,configurable:!0}),t.prototype._template=function(e,t){return t=t,a=this,e=(n=e).children,(d=a.props).children,i=d.dropdown,d.dropdownIcon,d.endIcon,d.endIconSrc,d.endIconSvg,d.error,o=d.errorMessage,r=d.hasChildren,d.hideIcon,d.hideIconSvg,d.inputClass,d.inputStyle,d.label,d.labelStyle,d.modelValue,d.notch,d.passwordToggle,d.pickerMap,d.pickerValue,d.ripple,d.rows,d.rtl,d.showIcon,d.showIconSvg,d.startIcon,d.startIconSrc,d.startIconSvg,l=d.tags,d.theme,d.themeVariant,c=d.type,d=K(d,["children","dropdown","dropdownIcon","endIcon","endIconSrc","endIconSvg","error","errorMessage","hasChildren","hideIcon","hideIconSvg","inputClass","inputStyle","label","labelStyle","modelValue","notch","passwordToggle","pickerMap","pickerValue","ripple","rows","rtl","showIcon","showIconSvg","startIcon","startIconSrc","startIconSvg","tags","theme","themeVariant","type"]),h=n.label,(s={}).onMouseDown=a._onMouseDown,ae("label",ne({className:a._cssClass},s),(h||r)&&ae("span",{className:a._labelClass},r?"":h),ae("span",{className:a._innerClass},"input"===a._tag&&ae("input",ne({},d,{ref:a._setEl,className:a._nativeElmClass+(n.tags?" mbsc-textfield-hidden":""),disabled:a._disabled,type:n.passwordToggle?a._hidePass?"password":"text":c})),"file"===c&&ae("input",{className:a._dummyElmClass,disabled:a._disabled,placeholder:n.placeholder,readOnly:!0,type:"text",value:t.files||""}),"select"===a._tag&&ae("select",ne({},d,{ref:a._setEl,className:"mbsc-select"+a._nativeElmClass,disabled:a._disabled}),e),"textarea"===a._tag&&ae("textarea",ne({},d,{ref:a._setEl,className:a._nativeElmClass,disabled:a._disabled})),l&&ae("span",{className:"mbsc-textfield-tags"+a._nativeElmClass},a._tagsArray.length?a._tagsArray.map(function(e,t){return e&&ae("span",{key:t,className:"mbsc-textfield-tag"+a._theme+a._rtl},ae("span",{className:"mbsc-textfield-tag-text"+a._theme},e),ae(Ns,{className:"mbsc-textfield-tag-clear",onClick:function(e){return a._onTagClear(e,t)},svg:n.clearIcon,theme:n.theme}))}):ae("span",{className:"mbsc-textfield-tags-placeholder"+a._theme},n.placeholder)),("select"===a._tag||i)&&ae(Ns,{className:a._selectIconClass,svg:n.dropdownIcon,theme:n.theme}),a._hasStartIcon&&ae(Ns,{className:a._startIconClass,name:n.startIcon,svg:n.startIconSvg,theme:n.theme}),a._hasEndIcon&&!n.passwordToggle&&ae(Ns,{className:a._endIconClass,name:n.endIcon,svg:n.endIconSvg,theme:n.theme}),n.passwordToggle&&ae(Ns,{onClick:a._onClick,className:a._passIconClass,name:a._hidePass?n.showIcon:n.hideIcon,svg:a._hidePass?n.showIconSvg:n.hideIconSvg,theme:n.theme}),a._hasError&&ae("span",{className:a._errorClass},o),n.notch&&"outline"===n.inputStyle&&ae("fieldset",{"aria-hidden":"true",className:a._fieldSetClass},ae("legend",{className:a._legendClass},h&&"inline"!==n.labelStyle?h:"&nbsp;")),n.ripple&&"outline"!==n.inputStyle&&ae("span",{className:a._rippleClass})));var n,a,s,i,o,r,l,c,d,h},t}(function(e){function t(){var s=null!==e&&e.apply(this,arguments)||this;return s._tag="input",s._onClick=function(){s._hidePass=!s._hidePass},s._onMouseDown=function(e){s.s.tags&&(s._preventFocus=!0)},s._onTagClear=function(e,t){e.stopPropagation(),e.preventDefault(),s.s.disabled||((e=s.s.pickerValue.slice()).splice(t,1),ge(s._el,Wa,e))},s._sizeTextArea=function(){var e,t,n=s._el,a=s.s.rows;n.offsetHeight&&(n.style.height="",t=n.scrollHeight-n.offsetHeight,t=n.offsetHeight+(0<t?t:0),a<(e=Math.round(t/24))?(t=24*a+(t-24*e),n.style.overflow="auto"):n.style.overflow="",t&&(n.style.height=t+"px"))},s._onAutoFill=function(){"floating"===s.s.labelStyle&&Ci(s._el)&&s.setState({isFloatingActive:!0})},s}return a(t,e),t.prototype._change=function(e){},t.prototype._checkFloating=function(){var e=this,t=this._el,n=this.s,a=Ci(t),s=this.state.hasFocus||a||!Q(this.value);t&&"floating"===n.labelStyle&&("select"===this._tag?(a=t.options[0],s=!!(s||t.multiple||t.value||-1<t.selectedIndex&&a&&a.label)):this.value===Ee&&(s=!(!s&&!t.value)),this._valueChecked=!0,y(this,function(){e.setState({isFloatingActive:s})}))},t.prototype._mounted=function(){var e,i=this,o=this.s,t=this._el;F(t,Ra,this._onAutoFill),"textarea"===this._tag&&(F(t,Ja,this._sizeTextArea),this._unsubscribe=(e=this._sizeTextArea,Ti||F(p,"resize",Si),Ti++,Di.subscribe(e))),this._unlisten=zs(t,{keepFocus:!0,onBlur:function(){i.setState({hasFocus:!1,isFloatingActive:!!t.value})},onChange:function(e){if("file"===o.type){for(var t=[],n=0,a=e.target.files;n<a.length;n++){var s=a[n];t.push(s.name)}i.setState({files:t.join(", ")})}o.tags&&o.value===Ee&&o.defaultValue===Ee&&i.setState({value:e.target.value}),i._checkFloating(),i._change(e.target.value),i._emit("onChange",e)},onFocus:function(){i._preventFocus||i.setState({hasFocus:!0,isFloatingActive:!0}),i._preventFocus=!1},onHoverIn:function(){i._disabled||i.setState({hasHover:!0})},onHoverOut:function(){i.setState({hasHover:!1})},onInput:function(e){i._change(e.target.value)}})},t.prototype._render=function(t,e){var n=!(!t.endIconSvg&&!t.endIcon),a=t.pickerValue,s=!(!t.startIconSvg&&!t.startIcon),i=t.label!==Ee||t.hasChildren,o=t.error,r=t.rtl?"right":"left",l=t.rtl?"left":"right",c=t.inputStyle,d=t.labelStyle,h="floating"===d,u=!(!h||!i||!e.isFloatingActive&&Q(t.value)),m=(t.disabled===Ee?e:t).disabled,_=this._prevS,p=t.modelValue!==Ee?t.modelValue:t.value,p=p!==Ee?p:e.value!==Ee?e.value:t.defaultValue,v=this._theme+this._rtl+(o?" mbsc-error":"")+(m?" mbsc-disabled":"")+(e.hasHover?" mbsc-hover":"")+(e.hasFocus&&!m?" mbsc-focus":"");"file"!==t.type||n||(t.endIconSvg='<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z"/></svg>',n=!0),t.tags&&(ue(a=Q(a)?[]:a)||(a=[a]),this._tagsArray=t.pickerMap?a.map(function(e){return t.pickerMap.get(e)}):Q(p)?[]:p.split(", ")),t.passwordToggle&&(n=!0,this._passIconClass=v+" mbsc-toggle-icon mbsc-textfield-icon mbsc-textfield-icon-"+c+" mbsc-textfield-icon-"+l+" mbsc-textfield-icon-"+c+"-"+l+(i?" mbsc-textfield-icon-"+d:""),this._hidePass=this._hidePass===Ee?"password"===t.type:this._hidePass),this._hasStartIcon=s,this._hasEndIcon=n,this._hasError=o,this._disabled=m,this._value=p,this._cssClass=this._className+this._hb+v+" mbsc-form-control-wrapper mbsc-textfield-wrapper mbsc-font mbsc-textfield-wrapper-"+c+(m?" mbsc-disabled":"")+(i?" mbsc-textfield-wrapper-"+d:"")+(s?" mbsc-textfield-wrapper-has-icon-"+r+" ":"")+(n?" mbsc-textfield-wrapper-has-icon-"+l+" ":""),i&&(this._labelClass=v+" mbsc-label mbsc-label-"+d+" mbsc-label-"+c+"-"+d+(s?" mbsc-label-"+c+"-"+d+"-has-icon-"+r+" ":"")+(n?" mbsc-label-"+c+"-"+d+"-has-icon-"+l+" ":"")+(h&&this._animateFloating?" mbsc-label-floating-animate":"")+(u?" mbsc-label-floating-active":"")),this._innerClass=v+" mbsc-textfield-inner mbsc-textfield-inner-"+c+(i?" mbsc-textfield-inner-"+d:""),s&&(this._startIconClass=v+" mbsc-textfield-icon mbsc-textfield-icon-"+c+" mbsc-textfield-icon-"+r+" mbsc-textfield-icon-"+c+"-"+r+(i?" mbsc-textfield-icon-"+d:"")),n&&(this._endIconClass=v+" mbsc-textfield-icon mbsc-textfield-icon-"+c+" mbsc-textfield-icon-"+l+" mbsc-textfield-icon-"+c+"-"+l+(i?" mbsc-textfield-icon-"+d:"")),this._nativeElmClass=v+" "+(t.inputClass||"")+" mbsc-textfield mbsc-textfield-"+c+(t.dropdown?" mbsc-select":"")+(i?" mbsc-textfield-"+d+" mbsc-textfield-"+c+"-"+d:"")+(u?" mbsc-textfield-floating-active":"")+(s?" mbsc-textfield-has-icon-"+r+" mbsc-textfield-"+c+"-has-icon-"+r+(i?" mbsc-textfield-"+c+"-"+d+"-has-icon-"+r:""):"")+(n?" mbsc-textfield-has-icon-"+l+" mbsc-textfield-"+c+"-has-icon-"+l+(i?" mbsc-textfield-"+c+"-"+d+"-has-icon-"+l:""):""),"select"!==this._tag&&!t.dropdown||(this._selectIconClass="mbsc-select-icon mbsc-select-icon-"+c+this._rtl+this._theme+(i?" mbsc-select-icon-"+d:"")+(s?" mbsc-select-icon-"+r:"")+(n?" mbsc-select-icon-"+l:"")),"textarea"!==this._tag&&!t.tags||(this._cssClass+=" mbsc-textarea-wrapper",this._innerClass+=" mbsc-textarea-inner",this._nativeElmClass+=" mbsc-textarea","textarea"!==this._tag||p===this._prevValue&&t.inputStyle===_.inputStyle&&t.labelStyle===_.labelStyle&&t.rows===_.rows&&t.theme===_.theme||(this._shouldSize=!0),this._prevValue=p),t.tags&&(this._innerClass+=" mbsc-textfield-tags-inner"),"file"===t.type&&(this._dummyElmClass=this._nativeElmClass,this._nativeElmClass+=" mbsc-textfield-file"),this._errorClass=this._theme+this._rtl+" mbsc-error-message mbsc-error-message-"+c+(i?" mbsc-error-message-"+d:"")+(s?" mbsc-error-message-has-icon-"+r:"")+(n?" mbsc-error-message-has-icon-"+l:""),t.notch&&"outline"===c&&(this._fieldSetClass="mbsc-textfield-fieldset"+v+(s?" mbsc-textfield-fieldset-has-icon-"+r:"")+(n?" mbsc-textfield-fieldset-has-icon-"+l:""),this._legendClass="mbsc-textfield-legend"+this._theme+(u||i&&"stacked"===d?" mbsc-textfield-legend-active":"")),t.ripple&&"outline"!==t.inputStyle&&(this._rippleClass="mbsc-textfield-ripple"+this._theme+(o?" mbsc-error":"")+(e.hasFocus?" mbsc-textfield-ripple-active":"")),this._valueChecked&&(this._animateFloating=!0)},t.prototype._updated=function(){var e=this;this._shouldSize&&(this._shouldSize=!1,y(this,function(){e._sizeTextArea()})),this._checkFloating()},t.prototype._destroy=function(){var e;z(this._el,Ra,this._onAutoFill),z(this._el,Ja,this._sizeTextArea),this._unsubscribe&&(e=this._unsubscribe,Ti--,Di.unsubscribe(e),Ti||z(p,"resize",Si)),this._unlisten&&this._unlisten()},t.defaults={dropdown:!1,dropdownIcon:Et,hideIcon:"eye-blocked",inputStyle:"underline",labelStyle:"stacked",placeholder:"",ripple:!1,rows:6,showIcon:"eye",type:"text"},t._name="Input",t}(t)),ki={hasChildren:!0,parentClass:"mbsc-label",readAttrs:["placeholder","rows"],readProps:["disabled","type"],renderToParent:!0,slots:{endIcon:"end-icon",label:"label",startIcon:"start-icon"},before:function(e,t,n){var a=e.parentNode,s=P.createElement("span");a.insertBefore(s,e),s.appendChild(e),t.inputClass=e.getAttribute("class")||"","SELECT"===e.nodeName&&delete t.hasChildren,!t.label&&t.hasChildren&&(t.label=n[0].textContent),t.label&&(e=P.createElement("span"),a.insertBefore(e,s))}},Mi=ne({},ki,{hasValue:!0,parentClass:"mbsc-select",useOwnChildren:!0}),Ei=ne({},ki,{hasValue:!0});function Ni(e,t,n){var a=t.inputComponent,s=ne({defaultValue:e._value&&e._valueText||"",placeholder:t.placeholder,ref:e._setInput},t.inputProps),a=(t.inputComponent||(a=wi,s=ne({"aria-expanded":!!e._isOpen,"aria-haspopup":"dialog",disabled:t.disabled,dropdown:t.dropdown,endIcon:t.endIcon,endIconSrc:t.endIconSrc,endIconSvg:t.endIconSvg,error:t.error,errorMessage:t.errorMessage,inputStyle:t.inputStyle,label:t.label,labelStyle:t.labelStyle,name:t.name,pickerMap:t.valueMap,pickerValue:e._value,placeholder:t.placeholder,rtl:t.rtl,startIcon:t.startIcon,startIconSrc:t.startIconSrc,startIconSvg:t.startIconSvg,tags:t.tagInput===Ee?t.selectMultiple:t.tagInput,theme:t.theme,themeVariant:t.themeVariant},s)),ae(a,s));return ae(se,null,e._showInput&&a,ae(ei,{activeElm:t.activeElm,anchor:e._anchor,anchorAlign:e._anchorAlign,animation:t.animation,buttons:e._buttons,cancelText:t.cancelText,closeOnEsc:t.closeOnEsc,closeOnOverlayClick:t.closeOnOverlayClick,closeOnScroll:t.closeOnScroll,closeText:t.closeText,contentPadding:!1,context:t.context,cssClass:e._cssClass,disableLeftRight:!0,display:t.display,focusElm:e._focusElm,focusOnClose:t.focusOnClose,focusOnOpen:!e._allowTyping,focusTrap:t.focusTrap,fullScreen:t.fullScreen,headerText:e._headerText,height:t.height,isOpen:e._isOpen,maxHeight:t.maxHeight,maxWidth:e._maxWidth,onClose:e._onPopupClose,onClosed:e._onPopupClosed,onKeyDown:e._onPopupKey,onOpen:e._onPopupOpen,onResize:e._onResize,setText:t.setText,showArrow:t.showArrow,showOverlay:!e._allowTyping&&t.showOverlay,ref:e._setPopup,rtl:t.rtl,scrollLock:e._scrollLock,theme:t.theme,themeVariant:t.themeVariant,touchUi:e._touchUi,windowWidth:e.state.width,width:t.width},n))}var Ii=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return Ni(this,e,(a=this,e=(n=e).renderPreContent?n.renderPreContent(n.preContentData):"",t=n.renderInContent?n.renderInContent(n.preContentData):"",ae(se,null,e,ae("div",{className:"mbsc-scroller mbsc-scroller-"+a._displayStyle+a._theme+a._rtl+(a._touchUi?" mbsc-scroller-touch":" mbsc-scroller-pointer")+("inline"===n.display?" mbsc-font ":" ")+a._className},t,a._wheels.map(function(e,t){return ae("div",{key:t,className:"mbsc-scroller-wheel-group-cont"+(n.scroll3d?" mbsc-scroller-wheel-group-cont-3d":"")+a._theme},n.selectOnScroll&&ae("div",{className:"mbsc-scroller-wheel-line"+a._theme,style:a._lineStyle}),ae("div",{className:"mbsc-flex mbsc-scroller-wheel-group"+(n.scroll3d?" mbsc-scroller-wheel-group-3d":"")+a._theme},ae("div",{className:"mbsc-scroller-wheel-overlay mbsc-scroller-wheel-overlay-"+a._displayStyle+a._theme,style:a._overlayStyle}),e.map(function(e,t){return ae(xi,{activeIndex:a._activeIndexes[e._key],disabled:a._disabled&&a._disabled[e._key],display:a._displayStyle,key:t,itemHeight:n.itemHeight,onActiveChange:a._onActiveChange,onIndexChange:a._onWheelIndexChange,onSet:a._onSet,maxIndex:e.max,maxWheelWidth:n.maxWheelWidth,minIndex:e.min,minWheelWidth:n.minWheelWidth,multiple:e.multiple,renderItem:n.renderItem,rows:a._rows,scroll3d:a._scroll3d,selectedIndex:a._indexes[e._key],selectedValues:a._tempValueRep[e._key],selectOnScroll:n.selectOnScroll,theme:n.theme,touchUi:n.touchUi,rtl:n.rtl,wheel:e,wheelWidth:n.wheelWidth})})))})))));var n,a,t},t}(yn),Li={ios:50,material:46,windows:50},Hi=["a","h","i","s","tt"];function Oi(e,t){e=new Date(e);return t?Le(+e/864e5):e.getMonth()+12*(e.getFullYear()-1970)}function Yi(e){return e.getFullYear()+"-"+T(e.getMonth()+1)+"-"+T(e.getDate())}function Pi(e){return e.getMilliseconds()}function Fi(e){return 11<e.getHours()?1:0}var N=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._preset="datetime",e}return a(e,t),e}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,ae(Ii,{disabled:e.disabled,endIcon:e.endIcon,endIconSrc:e.endIconSrc,endIconSvg:e.endIconSvg,error:e.error,errorMessage:e.errorMessage,inputStyle:e.inputStyle,label:e.label,labelStyle:e.labelStyle,placeholder:e.placeholder,name:e.name,startIcon:e.startIcon,startIconSrc:e.startIconSrc,startIconSvg:e.startIconSvg,anchor:e.anchor,animation:e.animation,buttons:e.buttons,cancelText:e.cancelText,clearText:e.clearText,closeOnOverlayClick:e.closeOnOverlayClick,context:e.context,display:e.display,focusOnClose:e.focusOnClose,focusTrap:e.focusTrap,headerText:e.headerText,height:e.height,setText:e.setText,showArrow:e.showArrow,showOverlay:e.showOverlay,width:e.width,circular:e.circular,displayStyle:e.displayStyle,formatValue:t._formatDate,getValue:t._getDate,itemHeight:e.itemHeight,maxWheelWidth:e.maxWheelWidth,minWheelWidth:t._minWheelWidth,parseValue:t._parseDate,ref:t._setScroller,rows:e.rows,rtl:e.rtl,shouldValidate:t._shouldValidate,showOnClick:e.showOnClick,showOnFocus:e.showOnFocus,theme:e.theme,themeVariant:e.themeVariant,touchUi:t._touchUi,validate:t._validate,value:t._value,valueEquality:t._valueEquals,wheels:t._wheels,wheelWidth:e.wheelWidth,onChange:t._onChange},e.children);var t},t}(function(e){function t(){var $=null!==e&&e.apply(this,arguments)||this;return $._preset="date",$._innerValues={},$._onChange=function(e){$.s.value===Ee&&$.setState({value:e.value}),$._hook("onChange",e)},$._parseDate=function(e){var t=$.s;return e||($._innerValues={}),$._getArray(Re(e||t.defaultSelection||new Date,t,$._format),!!e)},$._formatDate=function(e){e=$._getDate(e);return e?Ae($._format,e,$.s):""},$._getDate=function(e){var t,n=$.s,a=$._getArrayPart,s=$._wheelOrder,i=new Date((new Date).setHours(0,0,0,0));if(null===e||e===Ee)return null;s.dd!==Ee&&(r=e[s.dd].split("-"),r=new Date(r[0],r[1]-1,r[2])),s.tt!==Ee&&(t=r||i,t=new Date(t.getTime()+e[s.tt]%86400*1e3));var s=a(e,"y",r,i),o=a(e,"m",r,i),r=Math.min(a(e,"d",r,i),n.getMaxDayOfMonth(s,o)),l=a(e,"h",t,i);return n.getDate(s,o,r,$._hasAmPm&&a(e,"a",t,i)?l+12:l,a(e,"i",t,i),a(e,"s",t,i),a(e,"u",t,i))},$._validate=function(e){var R,A,W=e.direction,t=e.index,n=e.values,U=e.wheels,B=[],j=$.s,e=j.stepHour,a=j.stepMinute,s=j.stepSecond,i=j.mode||$._preset,K=$._wheelOrder,X=$._getDatePart,c=$._max,d=$._min,n=Bn(j,$._getDate(n)),o=j.getYear(n),r=j.getMonth(n),l=j.getDate(o,r-1,1),o=j.getDate(o,r+2,1),h=(t!==K.y&&t!==K.m&&t!==K.d&&t!==K.dd&&t!==Ee||($._valids=Sa(j.valid,l,o,j,!0),$._invalids=Sa(j.invalid,l,o,j,!0)),$._valids),u=$._invalids,J=gs(n,j,d?+d:-1/0,c?+c:1/0,u,h,W),q=$._getArray(J),r=$._wheels&&$._wheels[0][K.d],m=X.y(J),_=X.m(J),p=j.getMaxDayOfMonth(m,_),v={y:d?d.getFullYear():-1/0,m:0,d:1,h:0,i:0,s:0,a:0,tt:0},G={y:c?c.getFullYear():1/0,m:11,d:31,h:S($._hasAmPm?11:23,e),i:S(59,a),s:S(59,s),a:1,tt:86400},Z={y:1,m:1,d:1,h:e,i:a,s:s,a:1,tt:$._timeStep},t=!1,f=!0,g=!0,l=(["dd","y","m","d","tt","a","h","i","s"].forEach(function(e){var t,n,a=v[e],s=G[e],i=X[e](J),o=K[e];if(f&&d&&(a=X[e](d)),(s=g&&c?X[e](c):s)<(i=i<a?a:i)&&(i=s),"dd"===e||"tt"===e||"a"===e&&o===Ee||(f=f&&i===a,g=g&&i===s),o!==Ee){if(B[o]=new Map,"y"!==e&&"dd"!==e)for(var r=v[e];r<=G[e];r+=Z[e])(r<a||s<r)&&B[o].set(r,!0);if("d"===e&&u)for(var l in u)h&&h[l]||(l=new Date(l),t=j.getYear(l),n=j.getMonth(l),t===m&&n===_&&fs(j,l,u,h)&&B[o].set(j.getDay(l),!0))}}),/time/i.test(i)&&(R=u&&u[Pe(J)],A=h&&h[Pe(J)],Hi.forEach(function(e,P){var t=K[e];if(t!==Ee){var n=j.valid?A:R;if(n){if(j.valid)for(var a=0;a<=G[e];a++)B[t].set(a,!0);for(var s=0,i=n;s<i.length;s++){var o=i[s],r=o.start,o=o.end;if(r&&o){Y=O=L=H=I=N=E=M=k=w=V=z=C=S=T=F=D=x=b=y=g=f=v=p=_=m=u=h=d=c=l=void 0;for(var l=j,c=$._hasAmPm,d=P,h=q,u=K,m=X,_=G,p=Z,v=e,f=B,g=t,y=J,b=r,x=o,D=!!j.valid,F=j.exclusiveEndDates,T=ze(b,x),S=T||!ze(y,x)?b:Hn(l,b),C=T||!ze(y,b)?x:On(l,x),z=m.a(S),V=m.a(C),w=!0,k=!0,M=!1,E=0,N=0,I=0;I<d;I++){var L=h[u[H=Hi[I]]];L!==Ee&&(O=w?m[H](S):0,Y=k?m[H](C):_[H],c&&1===I&&(O+=z?12:0,Y+=V?12:0,L+=h[u.a]?12:0),(w||k)&&O<L&&L<Y&&(M=!0),L!==O&&(w=!1),L!==Y&&(k=!1))}if(!D){for(var H,I=d+1;I<4;I++)u[H=Hi[I]]!==Ee&&(0<m[H](S)&&w&&(E=p[v]),m[H](C)<_[H]&&k&&(N=p[v]));k&&F&&!N&&(N=999!==C.getMilliseconds()?p[v]:0)}if(w||k||M)for(var O=w&&!M?m[v](S)+E:0,Y=k&&!M?m[v](C)-N:_[v],I=O;I<=Y;I+=p[v])f[g].set(I,!D)}}}q[t]=_i(U[t],X[e](J),B[t],W)}})),$._dateDisplay);if(r&&(r.data.length!==p||/DDD/.test(l))){for(var y=[],b=l.replace(/[my|]/gi,"").replace(/DDDD/,"{dddd}").replace(/DDD/,"{ddd}").replace(/DD/,"{dd}").replace(/D/,"{d}"),x=1;x<=p;x++){var D=j.getDate(m,_,x).getDay(),D=b.replace(/{dddd}/,j.dayNames[D]).replace(/{ddd}/,j.dayNamesShort[D]).replace(/{dd}/,T(x)+j.daySuffix).replace(/{d}/,x+j.daySuffix);y.push({display:D,value:x})}r.data=y,t=!0}return{disabled:B,init:t,valid:q}},$._shouldValidate=function(e,t){return!!(e.min&&+e.min!=+t.min||e.max&&+e.max!=+t.max)||e.wheels!==t.wheels||e.dataTimezone!==t.dataTimezone||e.displayTimezone!==t.displayTimezone},$._setScroller=function(e){$._scroller=e},$._getYearValue=function(e){return{display:(/yy/i.test($._dateDisplay)?e:(e+"").substr(2,2))+$.s.yearSuffix,value:e}},$._getYearIndex=function(e){return+e},$._getDateIndex=function(e){return Oi(e,$._hasDay)},$._getDateItem=function(e){var t=$.s,n=$._hasDay,a=new Date((new Date).setHours(0,0,0,0)),e=n?new Date(864e5*e):new Date(1970,e,1);return n&&(e=new Date(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate())),{disabled:n&&fs(t,e,$._invalids,$._valids),display:a.getTime()===e.getTime()?t.todayText:Ae($._dateTemplate,e,t),value:Yi(e)}},$._getArrayPart=function(e,t,n,a){return $._wheelOrder[t]===Ee||(e=+e[$._wheelOrder[t]],isNaN(e))?n?$._getDatePart[t](n):$._innerValues[t]!==Ee?$._innerValues[t]:$._getDatePart[t](a):e},$._getHours=function(e){e=e.getHours();return S(e=$._hasAmPm&&12<=e?e-12:e,$.s.stepHour)},$._getMinutes=function(e){return S(e.getMinutes(),$.s.stepMinute)},$._getSeconds=function(e){return S(e.getSeconds(),$.s.stepSecond)},$._getFullTime=function(e){return S(Ie((e.getTime()-new Date(e).setHours(0,0,0,0))/1e3),$._timeStep||1)},$}return a(t,e),t.prototype.getVal=function(){return this._value},t.prototype.setVal=function(e){this._value=e,this.setState({value:e})},t.prototype.position=function(){this._scroller&&this._scroller.position()},t.prototype.isVisible=function(){return this._scroller&&this._scroller.isVisible()},t.prototype._valueEquals=function(e,t){return qn(e,t,this.s)},t.prototype._render=function(e,t){var n=!1,a=this._prevS,s=e.dateFormat,i=e.timeFormat,o=e.mode||this._preset,r="datetime"===o?s+e.separator+i:"time"===o?i:s;this._value=(e.value===Ee?t:e).value,this._minWheelWidth=e.minWheelWidth||("datetime"===o?Li[e.baseTheme||e.theme]:Ee),this._dateWheels=e.dateWheels||("datetime"===o?e.dateWheelFormat:s),this._dateDisplay=e.dateWheels||e.dateDisplay,this._timeWheels=e.timeWheels||i,this._timeDisplay=this._timeWheels,this._format=r,this._hasAmPm=/h/.test(this._timeDisplay),this._getDatePart={y:e.getYear,m:e.getMonth,d:e.getDay,h:this._getHours,i:this._getMinutes,s:this._getSeconds,u:Pi,a:Fi,dd:Yi,tt:this._getFullTime},+Re(a.min)!=+Re(e.min)&&(n=!0,this._min=Q(e.min)?Ee:Re(e.min,e,r)),+Re(a.max)!=+Re(e.max)&&(n=!0,this._max=Q(e.max)?Ee:Re(e.max,e,r)),e.theme===a.theme&&e.mode===a.mode&&e.locale===a.locale&&e.dateWheels===a.dateWheels&&e.timeWheels===a.timeWheels&&!n||(this._wheels=this._getWheels())},t.prototype._getWheels=function(){this._wheelOrder={};var e,t=this.s,n=t.mode||this._preset,a=this._hasAmPm,s=this._dateDisplay,i=this._timeDisplay,o=this._wheelOrder,r=[],l=[],c=[],d=0;if(/date/i.test(n)){for(var h=0,u=this._dateWheels.split(/\|/.test(this._dateWheels)?"|":"");h<u.length;h++){var m=0;if((y=u[h]).length)if(/y/i.test(y)&&m++,/m/i.test(y)&&m++,/d/i.test(y)&&m++,1<m&&o.dd===Ee)o.dd=d,d++,l.push(this._getDateWheel(y)),c=l;else if(/y/i.test(y)&&o.y===Ee)o.y=d,d++,l.push({cssClass:"mbsc-datetime-year-wheel",getIndex:this._getYearIndex,getItem:this._getYearValue,max:this._max?t.getYear(this._max):Ee,min:this._min?t.getYear(this._min):Ee,spaceAround:!0});else if(/m/i.test(y)&&o.m===Ee){o.m=d,e=[],d++;for(var _=s.replace(/[dy|]/gi,"").replace(/MMMM/,"{mmmm}").replace(/MMM/,"{mmm}").replace(/MM/,"{mm}").replace(/M/,"{m}"),p=0;p<12;p++){var v=_.replace(/{mmmm}/,t.monthNames[p]).replace(/{mmm}/,t.monthNamesShort[p]).replace(/{mm}/,T(p+1)+(t.monthSuffix||"")).replace(/{m}/,p+1+(t.monthSuffix||""));e.push({display:v,value:p})}l.push({cssClass:"mbsc-datetime-month-wheel",data:e,spaceAround:!0})}else if(/d/i.test(y)&&o.d===Ee){o.d=d,e=[],d++;for(p=1;p<32;p++)e.push({display:(/dd/i.test(s)?T(p):p)+t.daySuffix,value:p});l.push({cssClass:"mbsc-datetime-day-wheel",data:e,spaceAround:!0})}}r.push(l)}if(/time/i.test(n)){for(var f=0,g=this._timeWheels.split(/\|/.test(this._timeWheels)?"|":"");f<g.length;f++){var y,m=0;if((y=g[f]).length&&(/h/i.test(y)&&m++,/m/i.test(y)&&m++,/s/i.test(y)&&m++,/a/i.test(y)&&m++),1<m&&o.tt===Ee)o.tt=d,d++,c.push(this._getTimeWheel(y));else if(/h/i.test(y)&&o.h===Ee){e=[],o.h=d,d++;for(p=0;p<(a?12:24);p+=t.stepHour)e.push({display:a&&0===p?12:/hh/i.test(i)?T(p):p,value:p});c.push({cssClass:"mbsc-datetime-hour-wheel",data:e,spaceAround:!0})}else if(/m/i.test(y)&&o.i===Ee){e=[],o.i=d,d++;for(p=0;p<60;p+=t.stepMinute)e.push({display:/mm/i.test(i)?T(p):p,value:p});c.push({cssClass:"mbsc-datetime-minute-wheel",data:e,spaceAround:!0})}else if(/s/i.test(y)&&o.s===Ee){e=[],o.s=d,d++;for(p=0;p<60;p+=t.stepSecond)e.push({display:/ss/i.test(i)?T(p):p,value:p});c.push({cssClass:"mbsc-datetime-second-wheel",data:e,spaceAround:!0})}else/a/i.test(y)&&o.a===Ee&&(o.a=d,d++,c.push({cssClass:"mbsc-dt-whl-a",data:/A/.test(y)?[{display:t.amText.toUpperCase(),value:0},{display:t.pmText.toUpperCase(),value:1}]:[{display:t.amText,value:0},{display:t.pmText,value:1}],spaceAround:!0}))}c!==l&&r.push(c)}return r},t.prototype._getDateWheel=function(e){var t=/d/i.test(e);return this._hasDay=t,this._dateTemplate=e,{cssClass:"mbsc-datetime-date-wheel",getIndex:this._getDateIndex,getItem:this._getDateItem,label:"",max:this._max?Oi(Yi(this._max),t):Ee,min:this._min?Oi(Yi(this._min),t):Ee,spaceAround:!0}},t.prototype._getTimeWheel=function(e){var t=this.s,n=[],a=1;/s/i.test(e)?a=t.stepSecond:/m/i.test(e)?a=60*t.stepMinute:/h/i.test(e)&&(a=3600*t.stepHour),this._timeStep=a;for(var s=0;s<86400;s+=a){var i=new Date((new Date).setHours(0,0,0,0)+1e3*s);n.push({display:Ae(e,i,t),value:s})}return{data:n,label:"",spaceAround:!0}},t.prototype._getArray=function(e,t){var n=[],a=this._wheelOrder;if(null!==e&&e!==Ee)for(var s=0,i=["y","m","d","a","h","i","s","u","dd","tt"];s<i.length;s++){var o=i[s],r=this._getDatePart[o](e);a[o]!==Ee&&(n[a[o]]=r),t&&(this._innerValues[o]=r)}return n},t.defaults=ne({},Mn,{dateDisplay:"MMMMDDYYYY",dateWheelFormat:"|DDD MMM D|",stepHour:1,stepMinute:1,stepSecond:1}),t._name="Datetime",t}(t))),zi=ct({}),Vi={};function Ri(e,t){return Vi[e]||(Vi[e]={change:new Dt,selectedIndex:-1}),Vi[e].change.subscribe(t)}function Ai(e,t){var n=Vi[e];n&&(n.change.unsubscribe(t),n.change.nr||delete Vi[e])}function Wi(e,t,n){e=Vi[e];e&&(n!==Ee&&(e.selectedIndex=n),t!==Ee&&(e.value=t),e.change.next(e.value))}function Ui(e){return Vi[e]&&Vi[e].selectedIndex}var Bi=1;var ji=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return ae(zi.Provider,{children:(t=this,e=e.children,ae("div",{className:t._groupClass,ref:t._setEl},e)),value:this._groupOpt});var t},t}(function(e){function t(){var i=null!==e&&e.apply(this,arguments)||this;return i._id="mbsc-segmented-group"+Bi++,i._onChange=function(e,t){var n,a=i.s,s=a.modelValue!==Ee?a.modelValue:i.value;"multiple"===a.select?s!==Ee&&(-1!==(n=(s=s||[]).indexOf(t))?s.splice(n,1):s.push(t),i.value=s.slice()):i.value=t,i._change(i.value),a.onChange&&a.onChange(e)},i}return a(t,e),t.prototype._change=function(e){},t.prototype._setupDrag=function(){var s,i,o,r,t,l,c=this,d=[],h=[];this._unlisten=zs(this._el,{onEnd:function(){o&&r!==t&&!d[r]&&c._el.querySelectorAll(".mbsc-segmented-input")[r].click(),o=!1,c.setState({dragging:!1})},onMove:function(e){if(o){for(var t=Math.min(Math.max(e.endX-i,0),s),n=0,a=h[0];a<t&&h.length>n+1;)a+=h[++n];(n=c.s.rtl?h.length-1-n:n)===r||d[n]||Wi(l,Ee,r=n)}},onStart:function(e){var e=fe(e.domEvent.target,".mbsc-segmented-item",c._el);!e||(e=e.querySelector(".mbsc-segmented-input")).classList.contains("mbsc-selected")&&(d=[],ye(c._el.querySelectorAll(".mbsc-segmented-button"),function(e){d.push(e.classList.contains("mbsc-disabled"))}),h=[],ye(c._el.querySelectorAll(".mbsc-segmented-item"),function(e){h.push(e.clientWidth)}),s=c._el.clientWidth-30,i=pe(c._el).left+15,l=e.name,r=Ui(l),t=r,h.length&&"radio"===e.type&&(o=!0,c.setState({dragging:!0})))}})},t.prototype._cleanupDrag=function(){this._unlisten&&(this._unlisten(),this._unlisten=null)},t.prototype._render=function(e){this._name=e.name===Ee?this._id:e.name,this._groupClass="mbsc-segmented mbsc-flex "+this._className+this._theme+this._rtl+(e.color?" mbsc-segmented-"+e.color:"")+(this.state.dragging?" mbsc-segmented-dragging":""),this._groupOpt={color:e.color,disabled:e.disabled,name:this._name,onChange:this._onChange,select:e.select,value:e.modelValue!==Ee?e.modelValue:e.value}},t.prototype._updated=function(){this.s.drag&&"multiple"!==this.s.select?this._unlisten||this._setupDrag():this._cleanupDrag()},t.prototype._destroy=function(){this._cleanupDrag()},t.defaults={select:"single"},t._name="SegmentedGroup",t}(t)),Ki=1;var Xi=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),Object.defineProperty(t.prototype,"checked",{get:function(){return this._checked},set:function(e){this._toggle(e)},enumerable:!0,configurable:!0}),t.prototype._template=function(i,o){var r=this;return ae(zi.Consumer,null,function(e){return n=o,a=r,s=(t=i).children,a._groupOptions(e),ae("label",{className:a._cssClass},ae("input",{ref:a._setEl,"aria-labelledby":a._id,checked:a._checked,className:"mbsc-segmented-input mbsc-reset "+(t.inputClass||"")+a._theme+(a._checked?" mbsc-selected":""),disabled:a._disabled,name:a._isMultiple?t.name:a._name,onChange:g,type:a._isMultiple?"checkbox":"radio",value:a._value}),ae("div",{ref:a._setBox,className:"mbsc-segmented-selectbox"+a._theme+(a._animate?" mbsc-segmented-selectbox-animate":"")+(a._checked?" mbsc-selected":"")},ae("div",{className:"mbsc-segmented-selectbox-inner"+a._theme+(a._index===a._selectedIndex||a._checked?" mbsc-segmented-selectbox-inner-visible":"")+(a._checked?" mbsc-selected":"")})),ae(Xs,{"aria-hidden":!0,ariaLabel:t.ariaLabel,className:"mbsc-segmented-button"+(a._checked?" mbsc-selected":"")+(n.hasFocus?" mbsc-focus":""),color:a._color,disabled:a._disabled,endIcon:t.endIcon,endIconSrc:t.endIconSrc,endIconSvg:t.endIconSvg,icon:t.icon,iconSrc:t.iconSrc,iconSvg:t.iconSvg,id:a._id,ripple:t.ripple,rtl:t.rtl,startIcon:t.startIcon,startIconSrc:t.startIconSrc,startIconSvg:t.startIconSvg,tag:"span",tabIndex:-1,theme:t.theme,themeVariant:t.themeVariant},s));var t,n,a,s})},t}(function(e){function t(){var a=null!==e&&e.apply(this,arguments)||this;return a._onChange=function(e){var t=a.s,n=e.target.checked;n!==a._checked&&(a._change(n),a._onGroupChange&&a._onGroupChange(e,a._value),a._toggle(n),t.onChange&&t.onChange(e))},a._onValueChange=function(e){var t=a.s,e=a._isMultiple?e&&-1!==e.indexOf(a._value):e===a._value;t.checked===Ee&&e!==a.state.selected?a.setState({selected:e}):a.forceUpdate(),a._change(e)},a._setBox=function(e){a._box=e},a}return a(t,e),t.prototype._change=function(e){},t.prototype._groupOptions=function(e){var t=this,n=e.color,a=e.disabled,s=e.name,i=e.onChange,o=e.select,e=e.value,r=this.s,l=this.state,c=this._checked,d=r.modelValue!==Ee?r.modelValue===r.value:r.checked,d=d!==Ee?_(d):l.selected===Ee?_(r.defaultChecked):l.selected;this._id=r.id===Ee?this._id||"mbsc-segmented-"+Ki++:r.id,this._value=r.value===Ee?this._id:r.value,this._onGroupChange=i,this._isMultiple="multiple"===(o||r.select),this._name=s===Ee?r.name:s,this._disabled=a===Ee?r.disabled===Ee?l.disabled:_(r.disabled):_(a),this._color=n===Ee?r.color:n,this._checked=e===Ee?d:this._isMultiple?e&&-1!==e.indexOf(this._value):e===this._value,this._name&&!this._unsubscribe&&(this._unsubscribe=Ri(this._name,this._onValueChange)),this._isMultiple||c||!this._checked||setTimeout(function(){t._checked&&Wi(t._name,t._value,t._index)}),this._selectedIndex=Ui(this._name),this._cssClass="mbsc-segmented-item "+this._className+this._theme+this._rtl+(this._checked?" mbsc-segmented-item-checked":"")+(l.hasFocus?" mbsc-focus":"")+(this._index===this._selectedIndex||this._index===Ee&&this._checked||this._isMultiple&&this._checked?" mbsc-segmented-item-selected":"")},t.prototype._toggle=function(e){this.s.checked===Ee&&this.setState({selected:e})},t.prototype._mounted=function(){var e=this;F(this._el,Ua,this._onChange),this._unlisten=zs(this._el,{onBlur:function(){e.setState({hasFocus:!1})},onFocus:function(){e.setState({hasFocus:!0})}})},t.prototype._updated=function(){if(!this._isMultiple){var e=fe(this._el,".mbsc-segmented"),t=-1,n=-1;if(e)for(var a=e.querySelectorAll('.mbsc-segmented-input[name="'+this._name+'"]'),s=0;s<a.length;s++)a[s]===this._el&&(t=s),a[s].checked&&(n=s);this._index!==t&&-1!==n&&(e=this._name,i=n,Vi[e]&&(Vi[e].selectedIndex=i)),-1!==this._selectedIndex&&(this._box.style.transform="translateX("+(this.s.rtl?-1:1)*(this._selectedIndex-t)*100+"%)",this._animate=!0),-1!==t&&(this._index=t)}var i},t.prototype._destroy=function(){z(this._el,Ua,this._onChange),this._unsubscribe&&Ai(this._name,this._unsubscribe),this._unlisten&&this._unlisten()},t.defaults={select:"single"},t._name="Segmented",t}(t)),Ji={hasChildren:!0,parentClass:"mbsc-segmented-button",readAttrs:["value"],readProps:["disabled","name"],renderToParent:!0,before:function(e,t){t.select="checkbox"===e.type?"multiple":"single",t.defaultChecked=e.checked,t.inputClass=e.getAttribute("class")||"";var n,t=e.parentNode,a=t.parentNode;null===a.getAttribute("mbsc-segmented-group")&&((n=P.createElement("div")).setAttribute("mbsc-segmented-group",""),a.insertBefore(n,t),n.appendChild(t),ye(a.querySelectorAll('input[name="'+e.name+'"]'),function(e){n.appendChild(e.parentNode)}))}},qi={hasChildren:!0,parentClass:"mbsc-segmented"};function Gi(e){var t,n=e.disabled,a=e.selected,s=e.theme,i=e.timeSlot,o=e.onClick,e=e.onKeyDown;return(t={})[mt]=e,ae("div",ne({className:"mbsc-timegrid-item"+(a?" mbsc-selected":"")+(n?" mbsc-disabled":"")+s,onClick:function(){return o(i)},tabIndex:n?Ee:0,"data-timeslot":i.value},t),i.formattedValue)}ws=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return ae("div",{className:(a=this)._cssClass,ref:a._setCont},a._timeSlots.map(function(e,t){return ae("div",{className:"mbsc-timegrid-row",key:t},e.map(function(e,t){var n=a._isDisabled(e.value);return ae("div",{className:"mbsc-timegrid-cell"+(n?" mbsc-disabled":""),key:t},ae(Gi,{disabled:n,onKeyDown:a._onKeyDown,selected:a._value===e.value,timeSlot:e,onClick:a._setTime,theme:a._theme}))}))}));var a},t}(function(e){function t(){var h=null!==e&&e.apply(this,arguments)||this;return h._setTime=function(e){h._hook("onChange",{value:Ve(h.s,e.value)})},h._isDisabled=function(e){if(e){var t=Pe(Ve(h.s,e)),n=h._invalids&&h._invalids[t],t=h._valids&&h._valids[t],a=h.s.exclusiveEndDates;if(t){for(var s=0,i=t;s<i.length;s++){var o=i[s],r=o.end&&(a?e<+o.end:e<=+o.end);if(o.start&&e>=+o.start&&r||o.allDay)return!1}return!0}if(n)for(var l=0,c=n;l<c.length;l++){var d=c[l],r=d.end&&(a?e<+d.end:e<=+d.end);if(d.start&&e>=+d.start&&r||d.allDay)return!0}}return!1},h._onKeyDown=function(e){32===e.keyCode&&(e.target.click(),e.preventDefault())},h._setCont=function(e){h._gridContEl=e&&e.parentElement},h}return a(t,e),t.prototype._render=function(e,t){var n=this,a=this._prevS,s=(this._cssClass="mbsc-timegrid-container mbsc-font"+this._theme+this._rtl,e.min!==a.min),i=e.max!==a.max,o=e.timeFormat,r=a.value&&!e.value||e.value&&+e.value!==this._value;s&&(this._min=Q(e.min)?Ee:Re(e.min,e,o)),i&&(this._max=Q(e.max)?Ee:Re(e.max,e,o));var l,c=Fe(e.value||Ve(e)),d=We(c,1),h=this._selectedDate!==+c,u=e.invalid!==a.invalid,m=e.valid!==a.valid,m=((u||h)&&(this._invalids=Sa(e.invalid,c,d,e,!0)),(m||h)&&(this._valids=Sa(e.valid,c,d,e,!0)),r&&(this._value=e.value&&+e.value),h||u||s||i||o!==a.timeFormat);if(m){this._selectedDate=+c;for(var _,p=Math.max(+c,+(this._min||-1/0)),v=Math.min(+d,+(this._max||1/0)+1),f=36e5*e.stepHour+6e4*e.stepMinute,g=(this._timeSlots=[],this._validTimes=[],[]),y=0,b=+c;b<+d;b+=f)(p<=v?p<=b&&b<v:p<=b||b<v)&&(_={formattedValue:Ae(o,Ve(e,b),e),value:b},g.push(_),2===y&&(this._timeSlots.push(g),g=[],y=-1),this._isDisabled(b)||this._validTimes.push(_),y++);g.length&&this._timeSlots.push(g)}this._isDisabled(this._value)||(r||m)&&-1===D(this._validTimes,function(e){return e.value===n._value})?(l=function(e,t){if(null==t||!e.length)return null;for(var n,a,s=0;s<e.length&&t>=e[s];)s++;return s===e.length?e[s-1]:0===s?e[0]:t-(n=e[s-1])<(a=e[s])-t?n:a}(this._validTimes.map(function(e){return e.value}),this._value))&&(clearTimeout(this._validationHandle),this._validationHandle=setTimeout(function(){var e=J(n._validTimes,function(e){return e.value===l});n._setTime(e)})):m&&clearTimeout(this._validationHandle),this._valueChanged=this._valueChanged||r},t.prototype._updated=function(){var i,o,r;this._value!==Ee&&(this._valueChanged||this._isOpen!==this.s.isOpen&&this.s.isOpen)&&(i=this._lastValue!==Ee,o=this._gridContEl,(r=o.querySelector('[data-timeslot="'+this._value+'"]'))&&setTimeout(function(){var e=r.getBoundingClientRect(),t=e.top,e=e.height,n=o.getBoundingClientRect(),a=n.top,n=n.height,s=le(o);(a+n<t+e||t<a)&&_e(o,Ee,t-a+s-5,i)}),this._valueChanged=!1,this._lastValue=this._value),this._isOpen=this.s.isOpen},t.defaults=ne({},Mn,{stepHour:0,stepMinute:30}),t._name="Timegrid",t}(t));ys[N._name]=N,ys[H._name]=H,ys[ws._name]=ws;yn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return Ni(this,e,(a=this,e=(n=e).children,i=a._renderTabs,o=a._controls,t=a._activeSelect,r=a._rtl,l=a._theme,ae(se,null,ae("div",{className:"mbsc-datepicker mbsc-flex-col mbsc-datepicker-"+n.display+l+("inline"===n.display?" "+a._className+a._hb:"")+a._controlsClass},a._headerText&&"inline"===n.display&&ae("div",{className:"mbsc-picker-header"+l+a._hb},a._headerText),i&&ae(ji,{rtl:n.rtl,theme:n.theme,themeVariant:n.themeVariant,value:a._activeTab,onChange:a._changeActiveTab},o.map(function(e,t){return ae(Xi,{key:t,rtl:n.rtl,theme:n.theme,themeVariant:n.themeVariant,value:e.name},e.title)})),a._renderControls&&ae("div",{className:"mbsc-range-control-wrapper"+l},ae(ji,{theme:n.theme,themeVariant:n.themeVariant,rtl:n.rtl,value:t,onChange:a._changeActiveSelect},ae(Xi,{rtl:n.rtl,theme:n.theme,themeVariant:n.themeVariant,value:"start",className:"mbsc-range-start"+(a._tempStartText?" mbsc-range-value-nonempty":"")},ae("div",{className:"mbsc-range-control-label"+l+r+("start"===t?" active":"")},n.rangeStartLabel),ae("div",{className:"mbsc-range-control-value"+l+r+("start"===t?" active":"")+(a._tempStartText?"":" mbsc-range-control-text-empty")},a._tempStartText||n.rangeStartHelp),"start"===t&&a._tempStartText&&ae(Ns,{className:"mbsc-range-label-clear"+r,onClick:a._clearStart,svg:n.clearIcon,theme:n.theme})),ae(Xi,{rtl:n.rtl,theme:n.theme,themeVariant:n.themeVariant,value:"end",className:"mbsc-range-end"+(a._tempEndText?" mbsc-range-value-nonempty":"")},ae("div",{className:"mbsc-range-control-label"+l+r+("end"===t?" active":"")},n.rangeEndLabel),ae("div",{className:"mbsc-range-control-value"+l+r+("end"===t?" active":"")+(a._tempEndText?"":" mbsc-range-control-text-empty")},a._tempEndText||n.rangeEndHelp),"end"===t&&a._tempEndText&&ae(Ns,{className:"mbsc-range-label-clear"+r,onClick:a._clearEnd,svg:n.clearIcon,theme:n.theme})))),ae("div",{className:"mbsc-datepicker-tab-wrapper mbsc-flex mbsc-flex-1-1"+l,ref:a._setWrapper},o.map(function(e,t){var n=e.options;return s&&(n.renderCalendarHeader=s.header,n.renderDay=s.day,n.renderDayContent=s.dayContent),ae("div",{key:t,className:"mbsc-flex mbsc-datepicker-tab mbsc-datepicker-tab-"+e.name+l+(i&&e.name===a._activeTab||!i?" mbsc-datepicker-tab-active":"")+(i&&"time"===e.name?" mbsc-datepicker-time-modal":"")+(i||1===o.length?" mbsc-datepicker-tab-expand mbsc-flex-1-1":"")},ae(e.Component,ne({},n)))}))),e)));var n,a,s,i,o,t,r,l},t}(E);function Zi(e){return me(e)?P.querySelector(e):e}var $i,Qi={before:function(e,t){var n=t.select,a=t.startInput,s=t.endInput;"range"===n&&a&&s?(n=Zi(a),a=Zi(s),s=n&&n.value,n=a&&a.value,s&&n&&(t.defaultValue=s+bs+n)):t.defaultValue=e.value,t.element=e}},eo=0;function to(e,t,n){var a,s,i,o,r;"jsonp"===n?(n=e,i=t,p&&(o=P.createElement("script"),r="mbscjsonp"+ ++eo,p[r]=function(e){o.parentNode.removeChild(o),delete p[r],e&&i(e)},o.src=n+(0<=n.indexOf("?")?"&":"?")+"callback="+r,P.body.appendChild(o))):(n=e,a=t,(s=new XMLHttpRequest).open("GET",n,!0),s.onload=function(){200<=s.status&&s.status<400&&a(JSON.parse(s.response))},s.onerror=function(){},s.send())}function no(e){return $i=$i||so.luxon.DateTime.local().zoneName,e&&"local"!==e?e:$i}R.http={getJson:to};var ao=function(){function e(e,t){void 0===t&&(t="utc"),this._mbsc=!0,t=no(t);var n=so.luxon.DateTime,a={zone:t};if(this.zone=t,h(e))this.dt=n.utc().setZone(t);else if(Wn(e)||d(e))this.dt=n.fromMillis(+e,a);else if(me(e))this.dt=n.fromISO(e,a);else if(ue(e)){for(var s=["year","month","day","hour","minute","second","millisecond"],i={},o=0;o<e.length&&o<7;o++)i[s[o]]=e[o]+(1===o?1:0);so.version=so.version||(t=(t=n).fromObject.toString().trim(),/^(function )?\w*\(\w+\)/.test(t)?1:2),1===so.version?this.dt=n.fromObject(ne({},i,a)):this.dt=n.fromObject(i,a)}}return e.prototype.clone=function(){return new e(this,this.zone)},e.prototype.createDate=function(e,t,n,a,s,i,o){return so.createDate({displayTimezone:this.zone},e,t,n,a,s,i,o)},e.prototype[Symbol.toPrimitive]=function(e){return this.dt.toJSDate()[Symbol.toPrimitive](e)},e.prototype.toDateString=function(){return this.dt.toFormat("ccc MMM dd yyyy")},e.prototype.toISOString=function(){return this.dt.toISO()},e.prototype.toJSON=function(){return this.dt.toISO()},e.prototype.valueOf=function(){return this.dt.valueOf()},e.prototype.getDate=function(){return this.dt.day},e.prototype.getDay=function(){return this.dt.weekday%7},e.prototype.getFullYear=function(){return this.dt.year},e.prototype.getHours=function(){return this.dt.hour},e.prototype.getMilliseconds=function(){return this.dt.millisecond},e.prototype.getMinutes=function(){return this.dt.minute},e.prototype.getMonth=function(){return this.dt.month-1},e.prototype.getSeconds=function(){return this.dt.second},e.prototype.getTime=function(){return this.valueOf()},e.prototype.getTimezoneOffset=function(){return-this.dt.offset},e.prototype.getUTCDate=function(){return this.dt.toUTC().day},e.prototype.getUTCDay=function(){return this.dt.toUTC().weekday%7},e.prototype.getUTCFullYear=function(){return this.dt.toUTC().year},e.prototype.getUTCHours=function(){return this.dt.toUTC().hour},e.prototype.getUTCMilliseconds=function(){return this.dt.toUTC().millisecond},e.prototype.getUTCMinutes=function(){return this.dt.toUTC().minute},e.prototype.getUTCMonth=function(){return this.dt.toUTC().month-1},e.prototype.getUTCSeconds=function(){return this.dt.toUTC().second},e.prototype.setMilliseconds=function(e){return this.setter({millisecond:e})},e.prototype.setSeconds=function(e,t){return this.setter({second:e,millisecond:t})},e.prototype.setMinutes=function(e,t,n){return this.setter({minute:e,second:t,millisecond:n})},e.prototype.setHours=function(e,t,n,a){return this.setter({hour:e,minute:t,second:n,millisecond:a})},e.prototype.setDate=function(e){return this.setter({day:e})},e.prototype.setMonth=function(e,t){return this.setter({month:++e,day:t})},e.prototype.setFullYear=function(e,t,n){return this.setter({year:e,month:t,day:n})},e.prototype.setTime=function(e){return this.dt=so.luxon.DateTime.fromMillis(e),this.dt.valueOf()},e.prototype.setTimezone=function(e){e=no(e),this.zone=e,this.dt=this.dt.setZone(e)},e.prototype.setUTCMilliseconds=function(e){return 0},e.prototype.setUTCSeconds=function(e,t){return 0},e.prototype.setUTCMinutes=function(e,t,n){return 0},e.prototype.setUTCHours=function(e,t,n,a){return 0},e.prototype.setUTCDate=function(e){return 0},e.prototype.setUTCMonth=function(e,t){return 0},e.prototype.setUTCFullYear=function(e,t,n){return 0},e.prototype.toUTCString=function(){return""},e.prototype.toTimeString=function(){return""},e.prototype.toLocaleDateString=function(){return""},e.prototype.toLocaleTimeString=function(){return""},e.prototype.setter=function(e){return this.dt=this.dt.set(e),this.dt.valueOf()},e}(),so={luxon:Ee,version:Ee,parse:function(e,t){return new ao(e,t.dataTimezone||t.displayTimezone)},createDate:function(e,t,n,a,s,i,o,r){e=e.displayTimezone;return u(t)||me(t)||h(n)?new ao(t,e):new ao([t||1970,n||0,a||1,s||0,i||0,o||0,r||0],e)}};function io(e){return e&&"local"!==e?e:ro.moment.tz.guess()}var oo=function(){function e(e,t){this._mbsc=!0,this.timezone=io(t),this.init(e)}return e.prototype.clone=function(){return new e(this,this.timezone)},e.prototype.createDate=function(e,t,n,a,s,i,o){return ro.createDate({displayTimezone:this.timezone},e,t,n,a,s,i,o)},e.prototype[Symbol.toPrimitive]=function(e){return this.m.toDate()[Symbol.toPrimitive](e)},e.prototype.toDateString=function(){return this.m.format("ddd MMM DD YYYY")},e.prototype.toISOString=function(){return this.m.toISOString(!0)},e.prototype.toJSON=function(){return this.m.toISOString()},e.prototype.valueOf=function(){return this.m.valueOf()},e.prototype.getDate=function(){return this.m.date()},e.prototype.getDay=function(){return this.m.day()},e.prototype.getFullYear=function(){return this.m.year()},e.prototype.getHours=function(){return this.m.hours()},e.prototype.getMilliseconds=function(){return this.m.milliseconds()},e.prototype.getMinutes=function(){return this.m.minutes()},e.prototype.getMonth=function(){return this.m.month()},e.prototype.getSeconds=function(){return this.m.seconds()},e.prototype.getTime=function(){return this.m.valueOf()},e.prototype.getTimezoneOffset=function(){return-this.m.utcOffset()},e.prototype.getUTCDate=function(){return this.utc().date()},e.prototype.getUTCDay=function(){return this.utc().day()},e.prototype.getUTCFullYear=function(){return this.utc().year()},e.prototype.getUTCHours=function(){return this.utc().hours()},e.prototype.getUTCMilliseconds=function(){return this.utc().milliseconds()},e.prototype.getUTCMinutes=function(){return this.utc().minutes()},e.prototype.getUTCMonth=function(){return this.utc().month()},e.prototype.getUTCSeconds=function(){return this.utc().seconds()},e.prototype.setMilliseconds=function(e){return+this.m.set({millisecond:e})},e.prototype.setSeconds=function(e,t){return+this.m.set({seconds:e,milliseconds:t})},e.prototype.setMinutes=function(e,t,n){return+this.m.set({minutes:e,seconds:t,milliseconds:n})},e.prototype.setHours=function(e,t,n,a){return+this.m.set({hours:e,minutes:t,seconds:n,milliseconds:a})},e.prototype.setDate=function(e){return+this.m.set({date:e})},e.prototype.setMonth=function(e,t){return+this.m.set({month:e,date:t})},e.prototype.setFullYear=function(e,t,n){return+this.m.set({year:e,month:t,date:n})},e.prototype.setTime=function(e){return this.init(e),this.m.valueOf()},e.prototype.setTimezone=function(e){this.timezone=io(e),this.m.tz(this.timezone)},e.prototype.setUTCMilliseconds=function(e){return 0},e.prototype.setUTCSeconds=function(e,t){return 0},e.prototype.setUTCMinutes=function(e,t,n){return 0},e.prototype.setUTCHours=function(e,t,n,a){return 0},e.prototype.setUTCDate=function(e){return 0},e.prototype.setUTCMonth=function(e,t){return 0},e.prototype.setUTCFullYear=function(e,t,n){return 0},e.prototype.toUTCString=function(){return""},e.prototype.toTimeString=function(){return""},e.prototype.toLocaleDateString=function(){return""},e.prototype.toLocaleTimeString=function(){return""},e.prototype.init=function(e){var t=ro.moment.tz,n=h(e)||me(e)||d(e)||ue(e)?e:+e,e=me(e)&&Nn.test(e);this.m=e?t(n,"HH:mm:ss",this.timezone):t(n,this.timezone)},e.prototype.utc=function(){return this.m.clone().utc()},e}(),ro={moment:Ee,parse:function(e,t){return new oo(e,t.dataTimezone||t.displayTimezone)},createDate:function(e,t,n,a,s,i,o,r){e=e.displayTimezone;return u(t)||me(t)||h(n)?new oo(t,e):new oo([t||1970,n||0,a||1,s||0,i||0,o||0,r||0],e)}},N=(Ks._fname="calendarNav",Ks._selector="[mbsc-calendar-nav]",Ks),H=(Bs._fname="calendarNext",Bs._selector="[mbsc-calendar-next]",Bs),ws=(Us._fname="calendarPrev",Us._selector="[mbsc-calendar-prev]",Us),E=(js._fname="calendarToday",js._selector="[mbsc-calendar-today]",js),yn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="datepicker",t._renderOpt=Qi,t}(yn),lo="group_0";var co={before:function(e,t){if("select"===e.nodeName.toLowerCase()){for(var n=e,a=(e.style.display="none",t.inputElement||"inline"===t.display?t.element=t.inputElement||e:(t.inputComponent="input",t.showInput=!0),t.selectElement=n,t.selectMultiple!==Ee?n.multiple=t.selectMultiple:t.selectMultiple=n.multiple,[]),s=n.options,i=0;i<s.length;i++){var o=s[i];o.defaultSelected&&a.push(o.value)}a.length&&(t.defaultValue=t.selectMultiple?a:a[0])}else t.element=e,t.defaultValue=e.value}},ho=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="select",t._renderOpt=co,t}(function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n._filterRenderer=function(){return t=(e=n).s,ae("div",{className:"mbsc-select-filter-cont"+e._theme+e._rtl},ae(wi,{ref:e._setInput,autoComplete:"off",className:"mbsc-select-filter",inputClass:"mbsc-select-filter-input",placeholder:t.filterPlaceholderText,onInput:e._onFilterChange,theme:t.theme,themeVariant:t.themeVariant,rtl:t.rtl,inputStyle:"box"}),e._filterText?ae(Ns,{className:"mbsc-select-filter-clear"+e._rtl,onClick:e._onFilterClear,svg:t.clearIcon,theme:t.theme}):null);var e,t},n._filterEmptyRenderer=function(){return(e=n)._noResults?ae("div",{className:"mbsc-select-empty-text mbsc-flex"+e._theme},e.s.filterEmptyText):null;var e},n}return a(t,e),t.prototype._template=function(e){return t=this,n=(e=e).children,ae(Ii,{activeElm:e.filter?".mbsc-select-filter-input":Ee,anchor:e.anchor,animation:e.animation,buttons:e.buttons,cancelText:e.cancelText,circular:e.circular,className:(e.cssClass||"")+(t._noResults?" mbsc-select-empty":"")+" mbsc-select-scroller mbsc-select-scroller-"+e.display,clearText:e.clearText,closeOnEsc:e.closeOnEsc,closeOnOverlayClick:e.closeOnOverlayClick,closeText:e.closeText,context:e.context,defaultValue:e.defaultValue,disabled:e.disabled,display:e.display,dropdown:e.dropdown,element:e.element,endIcon:e.endIcon,endIconSrc:e.endIconSrc,endIconSvg:e.endIconSvg,error:e.error,errorMessage:e.errorMessage,focusOnClose:e.focusOnClose,focusOnOpen:e.focusOnOpen,focusTrap:e.focusTrap,formatValue:t._format,getValue:t._get,headerText:e.headerText,height:e.height,inputComponent:e.inputComponent,inputProps:e.inputProps,inputStyle:e.inputStyle,itemHeight:e.itemHeight,isOpen:e.isOpen,label:e.label,labelStyle:e.labelStyle,maxHeight:e.maxHeight,maxWheelWidth:e.maxWheelWidth,maxWidth:e.maxWidth,minWheelWidth:e.minWheelWidth,modelValue:e.modelValue,name:e.name,onCancel:e.onCancel,onChange:t._onChange,onClose:t._onClose,onOpen:e.onOpen,onResize:t._onResize,onTempChange:e.onTempChange,onWheelMove:t._onWheelMove,parseValue:t._parse,placeholder:e.placeholder,ref:t._setScroller,renderInContent:t._filterEmptyRenderer,renderItem:a?a.item:e.renderItem,renderPreContent:e.filter?t._filterRenderer:Ee,rows:t._rows,rtl:e.rtl,selectOnScroll:t._selectOnScroll,setText:e.setText,shouldValidate:t._shouldValidate,showArrow:e.showArrow,showInput:e.showInput,showOnClick:e.showOnClick,showOnFocus:e.showOnFocus,showOverlay:e.showOverlay,startIcon:e.startIcon,startIconSrc:e.startIconSrc,startIconSvg:e.startIconSvg,theme:e.theme,themeVariant:e.themeVariant,touchUi:t._touchUi,validate:t._validate,value:e.value,valueEquality:t._valueEquals,valueMap:t._map,wheelWidth:t._wheelWidth,wheels:t._wheels,width:e.width,writeValue:t._writeValue},n);var t,n,a},t}(function(e){function t(){var p=null!==e&&e.apply(this,arguments)||this;return p._options=[],p._selectMap=new Map,p._onFilterChange=function(e){var t=e.target.value;clearTimeout(p._debounce),p._filterInput.value=t,p._debounce=setTimeout(function(){p._filter(t)},300)},p._onFilterClear=function(){var e=p._filterInput;e&&(e.value=""),p._filter("")},p._onResize=function(e){p.setState({width:e.windowWidth})},p._onChange=function(e){var t=e.value;p._parsedValue=t,p._saveSelected(t),p._change(t),p._hook("onChange",e)},p._onClose=function(e){p._hook("onClose",e),p._filterText&&setTimeout(function(){return p._onFilterClear()},100)},p._onWheelMove=function(e){var t=e.wheelIndex,n=e.selection,a=e.dataItem;return p._selectOnScroll||n||1!==t?Ee:(e=J(p._options,function(e){return e.value===a.value}),[a.isGroup?a.value:e.group])},p._shouldValidate=function(e,t){e=e.selectMultiple!==t.selectMultiple||!e.filter&&e.data!==t.data||p._groupChanged;return p._groupChanged=!1,e},p._writeValue=function(e,t,n){var a=e.value;if(e.value=t,p._isSelect){ue(n)||(n=[n]);for(var e=p.s.selectElement,s=e.options,i=!1,o=0;o<s.length;o++){var r=s[o],l=r.selected;r.selected=-1<n.indexOf(r.value),l!==r.selected&&(i=!0)}return i&&ge(e,Wa),i}return a!==t},p._format=function(e){e=e[p.s.showGroupWheel?1:0],e=p.s.selectMultiple?e:[e];return(e.map&&e.map(function(e){return p._map?p._map.get(e):Ee})||[]).join(", ")},p._parse=function(e){var t,n,a=p._map,s=p._reMap,i=p.s.selectMultiple,o=p.s.defaultSelection,o=i?o?o.length!==Ee?o:o.slice():[]:o!==Ee?o:null;if(p._parsedValue=e,a)if(i&&!Q(e)){var r=[];if(e.length===Ee)r.push(e);else if(me(e))for(var l=0,c=e.split(", ");l<c.length;l++){var d=c[l],d=s.get(d);d!==Ee&&r.push(d)}else for(var h=0,u=e;h<u.length;h++){var m=u[h];a.has(m)&&r.push(m)}t=r}else a.has(e)?t=e:me(e)&&s.has(e)&&(t=s.get(e));return t===Ee&&(t=o),p.s.showGroupWheel?(n=i?t[0]:t,[(e=J(p._options,function(e){return e.value===n}))&&e.group,t]):[t]},p._get=function(e){e=e[p.s.showGroupWheel?1:0];return p.s.selectMultiple?e||[]:e},p._valueEquals=function(e,t){if(p.s.selectMultiple){var n=e||[],a=t||[];if(n!==a){if(n&&!a||a&&!n)return!1;if(n.length!==a.length)return!1;for(var s=0;s<n.length;s++)if(n[s]!==a[s])return!1}return!0}return e===t},p._validate=function(e){var t=e.values,n=e.direction,a=e.wheels,e=e.index,s=p._disabled,i=p._selectOnScroll,o=p.s.selectMultiple,r=p.s.showGroupWheel,l=r?[p._disabledGroups,s]:[s],c=r?1:0,d=p._get(t),h={disabled:l};if(e===c||e===Ee)if(o){var u=[];d.forEach(function(e){s.get(e)||u.push(e)}),h.valid=p._parse(u),e!==Ee&&(h.valid[0]=t[0])}else{if(Q(d)&&!i)return h.valid=r?[null,null]:[null],h;var m=_i(a[c],t[c],s,n);r?(e=J(p._options,function(e){return e.value===m}),h.valid=[e.group,m]):h.valid=[m]}else{var _=_i(a[0],t[0],l[0],n),d=J(p._options,function(e){return!(e.group!==_||i&&s.get(e.value))}),c=p._touchUi||d.group===Ee?d.value:d.group;i?h.valid=[_,c]:(h.valid=[_,t[1]],r=p._touchUi?_:Ee,h.indexes=[r,o?[c]:c])}return h},p._setScroller=function(e){p._scroller=e},p._setInput=function(e){p._filterInput=e&&e.nativeElement},p._saveSelected=function(e){var n;p.s.selectMultiple&&(n=new Map,ye(e,function(e){var t=p._map.get(e);n.set(e,t)}),p._selectMap=n)},p}return a(t,e),t.prototype._change=function(e){},t.prototype.reloadOptionElements=function(){var e=this;this._optionsReloaded=!0,this._setOptionsFromElm(),setTimeout(function(){e.forceUpdate()})},t.prototype.setVal=function(e){this._proxy("setVal",[e])},t.prototype.getVal=function(){return Q(this._parsedValue)?this._parsedValue:this._proxy("getVal")},t.prototype.setTempVal=function(e){this._proxy("setTempVal",[e])},t.prototype.getTempVal=function(){return this._proxy("getTempVal")},t.prototype.open=function(){this._proxy("open")},t.prototype.close=function(){this._proxy("close")},t.prototype._render=function(e){var n,a,t,s=this._prevS,i=this._touchUi&&(!e.selectMultiple||"ios"===(e.baseTheme||e.theme)),o=this._touchUi&&!e.selectMultiple,r=e.element!==s.element||e.selectElement!==s.selectElement,l=e.data!==s.data,c=l||this._optionsReloaded,d=e.placeholder,d=e.display!==s.display||d!==s.placeholder||o!==this._selectOnScroll,h=c||r||e.invalid!==s.invalid||this._selectOnScroll!==o;this._selectOnScroll=o,e.showGroupWheel!==s.showGroupWheel&&(this._groupChanged=!0),(r||d)&&(this._isSelect=e.selectElement!==Ee,this._isSelect?this._setOptionsFromElm():e.element||(this._options=[])),(l||d)&&e.data&&this._createOptionList(e.data),h&&(this._disabled=(r=this._options,l=e.invalid,t=new Map,r&&r.forEach(function(e){e.disabled&&t.set(e.value,!0)}),l&&l.forEach(function(e){t.set(e,!0)}),t),this._disabledGroups=(n=this._disabled,d=o?this._options:Ee,a=new Map,d&&d.forEach(function(e){var t=e.group,e=e.value;t&&(a.has(t)||a.set(t,!0),n.get(e)||a.set(t,!1))}),a)),(h||i!==this._spaceAround||this._groupChanged||e.filter!==s.filter||e.selectMultiple!==s.selectMultiple)&&this._createWheels(this._filterText,i),!c&&e.filter===s.filter&&e.touchUi===s.touchUi&&e.rows===s.rows||(r=e.filter?1/0:this._wheels[0][e.showGroupWheel?1:0].data.length,l=(this._respProps||{}).rows,o=this.props.rows,d=this._touchUi?e.rows:Math.min(l||o||7,r),this._rows=o||d),!this._groupChanged&&e.wheelWidth===s.wheelWidth&&e.filter===s.filter||(this._wheelWidth=e.wheelWidth||(e.filter?e.showGroupWheel?[150,250]:400:Ee)),this._spaceAround=i,this._optionsReloaded=!1},t.prototype._createOptionList=function(e){function t(e,t){Q((e=e&&e.value!==Ee?e:{text:e,value:e}).value)&&(r=!0),n.showGroupWheel&&e.group===Ee&&(e.group=lo),i.set(e.value,e.text),o.set(e.text,e.value),s.splice(t,0,e)}var n=this.s,a=n.placeholder,s=[],i=new Map,o=new Map,r=(this._selectMap.forEach(function(e,t){i.set(t,e)}),!1);e.forEach(t),"inline"===n.display&&this._selectOnScroll&&a&&!r&&t({value:"",text:a},0),this._map=i,this._reMap=o,this._options=s},t.prototype._proxy=function(e,t){var n=this._inst||this._scroller;if(n)return n[e].apply(n,t)},t.prototype._createWheels=function(e,t){var n,a=this,s=this.s,i=s.selectMultiple,e=s.filter&&e?(c=this._options,(e=e)?(e=e.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),n=new RegExp(e,"i"),c.filter(function(e){return n.test(e.text)})):c):this._options,o=[],r=[],l=new Map,c=(e.forEach(function(e){var t=e.group,t=t&&t!==lo?t:"",n=l.get(t),e={display:e.text,value:e.value,data:e,disabled:a._disabled.get(e.value)};n?n.push(e):l.set(t,[e])}),l.get("")),d=(c&&(o.push.apply(o,c),this._selectOnScroll&&r.push({display:"",value:lo})),l.forEach(function(e,t){t&&(o.push({display:t,isGroup:!0,value:t}),o.push.apply(o,e),r.push({display:t,value:t}),a._disabled.set(t,!0))}),{checkmark:!0,circular:!1,closeOnTap:!i,data:o,multiple:i,spaceAround:t}),i={checkmark:!1,circular:!1,cssClass:"mbsc-select-group-wheel"+(i?" mbsc-select-group-wheel-multi":""),data:r,multiple:!1,spaceAround:t};this._noResults=s.filter&&!e.length,this._wheels=s.showGroupWheel?[[i,d]]:[[d]]},t.prototype._setOptionsFromElm=function(){for(var e=this.s.selectElement,t=e.options,n=[],a=!1,s=!1,i=0;i<t.length;i++){var o=t[i],r=o.parentElement,r="optgroup"===r.nodeName.toLowerCase()?r.label:Ee;""!==o.value?n.push({disabled:o.disabled,group:r,text:o.text,value:o.value}):a=!0,o.defaultSelected&&(s=!0)}a||(e.insertBefore(new Option(""),e.childNodes[0]||null),s||(e.value="")),this._createOptionList(n)},t.prototype._filter=function(e){!1!==this._hook("onFilter",{filterText:e})&&(this._filterText=e,this._createWheels(e,this._spaceAround)),this.forceUpdate()},t.defaults=ne({},vs.defaults,{dropdown:!0,filterEmptyText:"No results",filterPlaceholderText:"Search",rows:5}),t._name="Select",t}(t))),uo=new Dt;function mo(e){return uo.subscribe(e)}function _o(e){uo.unsubscribe(e)}function po(e,t){t.style.left=e.endX+"px",t.style.top=e.endY+"px"}var vo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._render=function(e){e.dragData!==this._prevS.dragData&&(this._dragData=me(e.dragData)?JSON.parse(e.dragData.toString()):e.dragData)},t.prototype._updated=function(){var n,a,s,i,o=this,r=this.s.element||this._el;this._unlisten===Ee&&r&&(r.classList.add("mbsc-draggable"),i=oe(r).body,this._unlisten=zs(r,{onEnd:function(e){a&&((e=ne({},e)).domEvent.preventDefault(),e.action="externalDrop",e.event=o._dragData,e.create=!0,e.external=!0,e.eventName="onDragEnd",uo.next(e),a=!1,i.removeChild(n)),clearTimeout(s)},onMove:function(e){var t=ne({},e);t.event=o._dragData,t.clone=n,t.create=!0,t.external=!0,!a&&t.isTouch||t.domEvent.preventDefault(),a?(po(e,n),t.eventName="onDragMove",uo.next(t)):(7<Math.abs(t.deltaX)||7<Math.abs(t.deltaY))&&(clearTimeout(s),t.isTouch||(po(e,n),i.appendChild(n),t.eventName="onDragStart",uo.next(t),a=!0))},onStart:function(e){var t=ne({},e);a||((n=r.cloneNode(!0)).classList.add("mbsc-drag-clone"),t.event=o._dragData,t.create=!0,t.external=!0,t.isTouch&&(s=setTimeout(function(){po(e,n),i.appendChild(n),t.clone=n,t.eventName="onDragModeOn",uo.next(t),t.eventName="onDragStart",uo.next(t),a=!0},350)))}}))},t.prototype._destroy=function(){this._unlisten&&(this._unlisten(),this._unlisten=Ee)},t._name="Draggable",t}(t),fo=1;function go(e,t,n,a,s,i){var o,r=n,l=a,c=new Map,d=[],h=(s&&(r=Re(s,t)),i?l=Re(i,t):s&&(l=We(r,1)),Sa(e,r,l,t));for(o in h)if(o)for(var u=0,m=h[o];u<m.length;u++){var _,p,v,f=m[u];f.start?c.has(f)||(_=Re(f.start,t),p=Re(f.end,t)||_,f.allDay&&(_=Ve(t,_.getFullYear(),_.getMonth(),_.getDate()),p=Ve(t,(p=Yn(t,!0,_,p)).getFullYear(),p.getMonth(),p.getDate(),23,59,59,999)),Ln(r,l,_,p)&&(v=ne({},f),(t.dataTimezone||t.displayTimezone)&&(v.start=_.toISOString(),v.end=p.toISOString()),c.set(f,!0),d.push(v))):d.push(f)}return d}function yo(){return"mbsc_"+fo++}function bo(e,t,n,a,s,i,o,r,l){var c=t.color||s&&s.color,d=t.start||t.date,h=(t.recurring?t.original:t).start,h=t.allDay||!h,u=va(e,t),d=d?Re(d,u):null,u=t.end?Re(t.end,u):null,i=Yn(e,t.allDay,d,u,i),m=d&&i&&!ze(d,i),_=!m||ze(d,n),p=!m||ze(i,n),v=h||o&&m&&!_&&!p,f="",g="",r=(!l&&d&&u&&(o||r?h||(f=Ae(e.timeFormat,d,e),g=Ae(e.timeFormat,u,e)):(f=Ae(e.dateFormat,d,e),g=Ae(e.dateFormat,i,e))),v||!_&&o?"":f),i=v||!p&&o?"":g,_=t.title||t.text||"",o=_,y=o+(v?"":", "+r+" - "+i),b="DDDD, MMMM D, YYYY",f=!l&&d?", "+e.fromText+": "+Ae(b,d,e)+(h?"":", "+f):"",l=!l&&u?", "+e.toText+": "+Ae(b,u,e)+(h?"":", "+g):"",b=s&&s.name?", "+s.name:"";return{allDay:h,allDayText:v?e.allDayText:"",ariaLabel:o+b+f+l,color:c,currentResource:s,date:+n,end:i,endDate:u||(d?new Date(d):null),html:_,id:t.id,isMultiDay:m,lastDay:!v&&m&&p?e.toText:"",original:t,position:{},resource:t.resource,slot:t.slot,start:r,startDate:d,style:{background:c,color:a&&c?he(c):""},title:o,tooltip:e.showEventTooltip?t.tooltip||y:Ee,uid:t.occurrenceId||t.id}}function xo(e){var t=[];if(e)for(var n=0,a=e;n<a.length;n++){var s=a[n];s.id===Ee&&(s.id=yo()),t.push(s)}return t}var Do=function(e){function t(){var a,s,i,o,w=null!==e&&e.apply(this,arguments)||this;return w.print=g,w._checkSize=0,w._navService=new Cs,w._pageLoad=0,w._selectedDates={},w._shouldScrollSchedule=0,w._update=0,w._onScroll=(a=function(){if(!w._isListScrolling&&!w._viewChanged)for(var e in w._listDays)if(w._listDays[e]){var t=w._listDays[e];if(0<t.offsetTop+t.offsetHeight-w._list.scrollTop){+e!==w._selected&&(w._shouldSkipScroll=!0,w._selectedChange(+e));break}}},void 0===s&&(s=100),function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=+new Date;i&&n<i+s?(clearTimeout(o),o=setTimeout(function(){i=n,a.apply(void 0,e)},s)):(i=n,a.apply(void 0,e))}),w._isListScrolling=0,w._remote=0,w._onWeekDayClick=function(e){e!==w._selected&&(w._skipScheduleScroll=!0,w._selectedChange(e))},w._onDayClick=function(e){var t=e.date,n=+t,a=Pe(t),s=w.state,i=Ya(w._eventMap[a],w.s.eventOrder),a=w._showEventPopover,o=a===Ee?!w._showEventLabels&&!w._showEventList&&!w._showSchedule:a,a=!1!==a&&w._moreLabelClicked,o=(o||a)&&(!s.showPopover||s.showPopover&&n!==s.popoverDate)&&i&&0<i.length;e.events=i,w._isEventClick||w._resetSelection(),w._hook("onCellClick",e),w._moreLabelClicked=!1,e.disabled||n===w._selected||(w._navService.preventPageChange=!w._showEventList,w._skipScheduleScroll=!0,w._selectedChange(n)),o&&setTimeout(function(){w._anchor=e.target,w._popoverClass=w._popoverClass.replace(" mbsc-popover-hidden",""),w.setState({popoverDate:n,popoverList:i.map(function(e){return w._getEventData(e,t)}),showPopover:!0})}),w._isEventClick=!1},w._onActiveChange=function(e){var t,n;e.scroll?w._viewDate=+e.date:(n={activeDate:t=w._getValidDay(e.date,e.dir)},w._active=t,w._viewDate=t,w._update++,w._skipScheduleScroll=e.pageChange&&!e.nav,(e.pageChange||e.today)&&(n.selectedDate=t,w._selectedChange(t,!0),w._navService.forcePageChange=!0),w.setState(n))},w._onGestureStart=function(e){w._hidePopover()},w._onDayDoubleClick=function(e){w._dayClick("onCellDoubleClick",e)},w._onDayRightClick=function(e){w._dayClick("onCellRightClick",e)},w._onCellHoverIn=function(e){e.events=w._eventMap[Pe(e.date)],w._hook("onCellHoverIn",e)},w._onCellHoverOut=function(e){e.events=w._eventMap[Pe(e.date)],w._hook("onCellHoverOut",e)},w._onEventHoverIn=function(e){w._hoverTimer=setTimeout(function(){w._isHover=!0,w._eventClick("onEventHoverIn",e)},150)},w._onEventHoverOut=function(e){clearTimeout(w._hoverTimer),w._isHover&&(w._isHover=!1,w._eventClick("onEventHoverOut",e))},w._onEventClick=function(e){var t=w.s;w._handleMultipleSelect(e),!1===w._eventClick("onEventClick",e)||t.selectMultipleEvents||t.eventDelete||(t.dragToCreate||t.clickToCreate)&&!1!==t.eventDelete||w._hidePopover()},w._onEventDoubleClick=function(e){w._eventClick("onEventDoubleClick",e)},w._onEventRightClick=function(e){w._eventClick("onEventRightClick",e)},w._onEventDragEnd=function(e){w._hook("onEventDragEnd",e)},w._onEventDragStart=function(e){w._hook("onEventDragStart",e)},w._onEventDragEnter=function(e){w._hook("onEventDragEnter",e)},w._onEventDragLeave=function(e){w._hook("onEventDragLeave",e)},w._onLabelHoverIn=function(e){w._hoverTimer=setTimeout(function(){w._isHover=!0,w._labelClick("onEventHoverIn",e)},150)},w._onLabelHoverOut=function(e){clearTimeout(w._hoverTimer),w._isHover&&(w._isHover=!1,w._labelClick("onEventHoverOut",e))},w._onLabelClick=function(e){w._handleMultipleSelect(e),w._hook("onLabelClick",e),w._labelClick("onEventClick",e),w._isEventClick=!0,e.label||(w._moreLabelClicked=!0)},w._onLabelDoubleClick=function(e){w._labelClick("onEventDoubleClick",e)},w._onLabelRightClick=function(e){w._labelClick("onEventRightClick",e)},w._onCellClick=function(e){w._resetSelection(),w._cellClick("onCellClick",e)},w._onCellDoubleClick=function(e){w._cellClick("onCellDoubleClick",e)},w._onCellRightClick=function(e){w._cellClick("onCellRightClick",e)},w._proxy=function(e){w._hook(e.type,e)},w._onPageChange=function(e){setTimeout(function(){w._hidePopover()}),w._isPageChange=!0,w._hook("onPageChange",e)},w._onPageLoading=function(e){var t=w.s,n=Sa(w._events,e.viewStart,e.viewEnd,t);w._colorsMap=Sa(t.colors,e.viewStart,e.viewEnd,t),w._invalidsMap=Sa(t.invalid,e.viewStart,e.viewEnd,t,!0),w._validsMap=Sa(t.valid,e.viewStart,e.viewEnd,t,!0),w._eventMap=n,w._firstDay=Vn(e.firstDay,t,w._firstWeekDay),w._lastDay=e.lastDay,w._labelsMap=w._marksMap=Ee,t.labels||!w._showEventLabels&&!w._showEventCount?t.marked||(w._marksMap=n):w._labelsMap=n,e.viewChanged&&w._hook("onPageLoading",e)},w._onPageLoaded=function(e){w._shouldAnimateScroll=w._isPageChange,w._isPageChange=!1;var t,n,a,s=w._eventListType;!w._showEventList||w._showCalendar&&"day"===s||(t=w.s,n=e.month,a=(s=w._showEventList&&n&&"month"===s)?n:e.firstDay,s=s?t.getDate(t.getYear(n),t.getMonth(n)+w._eventListSize,1):e.lastDay,w._setEventList(a,s)),w._hook("onPageLoaded",e)},w._onPopoverClose=function(){w._hidePopover()},w._onResize=function(e){var t,n;w._showEventList&&He&&(n=(t=e.target).offsetHeight,t=t.getBoundingClientRect().top,n=170<n-w._list.getBoundingClientRect().top+t),w.setState({height:e.height,isListScrollable:n,width:e.width})},w._onSelectedEventsChange=function(e){w._emit("selectedEventsChange",e),w._hook("onSelectedEventsChange",{events:e})},w._getDragDates=function(e,t,n){for(var a={},s=w._firstWeekDay,i=Yn(w.s,n.allDay,e,t,!0),o=Fe(We(i,1)),r=Fe(e);r<o;r.setDate(r.getDate()+1)){var l=r.getDay(),c=0<s-l?7:0;ze(e,r)||l===s?a[Pe(r)]={event:n,width:100*Math.min(Fn(r,i)+1,7+s-l-c)}:a[Pe(r)]={}}return a},w._onLabelUpdateModeOn=function(e){var t,n,a=e.create?w._tempEvent:e.data;a&&(t=Re(a.start),n=Re(a.end||t),w.setState({isTouchDrag:!0,labelDragData:{draggedEvent:a,originDates:e.external?Ee:w._getDragDates(t,n,a)}}))},w._onLabelUpdateModeOff=function(e){var t=e.create?w._tempEvent:e.data;w._hook("onEventDragEnd",{domEvent:e.domEvent,event:t,source:"calendar"}),w.setState({isTouchDrag:!1,labelDragData:Ee})},w._onLabelUpdateStart=function(n){var e=w.s,t=w._el,a=(!e.externalDrag||!n.drag||n.create||(s=t.querySelector(".mbsc-calendar-label[data-id="+n.data.id+"]"))&&(a=(s=s.cloneNode(!0)).classList,s.style.display="none",a.add("mbsc-drag-clone","mbsc-schedule-drag-clone","mbsc-font"),a.remove("mbsc-calendar-label-hover"),w._clone=s,w._body=oe(t).body,w._body.appendChild(s),w._eventDropped=!1,uo.next(ne({},n,{create:!0,event:n.data,eventName:"onDragStart",external:!0,inst:w}))),w._showWeekNumbers?t.querySelector(".mbsc-calendar-week-nr").getBoundingClientRect().width:0),s=t.querySelectorAll(".mbsc-calendar-slide")["all"===w._calendarLabelList||te(w._calendarLabelList)?0:1],i=s.getBoundingClientRect(),t=t.querySelector(".mbsc-calendar-week-days"),s=s.querySelectorAll(".mbsc-calendar-row"),o=/click/.test(n.domEvent.type),r=(w._areaTop=0,t&&(t=t.getBoundingClientRect(),w._areaTop=t.top+t.height),w._areaLeft=i.left+(e.rtl?0:a),w._areaBottom=i.top+i.height,w._areaRight=w._areaLeft+i.width-(e.rtl?a:0),w._calCellWidth=(w._areaRight-w._areaLeft)/7,0);w._rowTops=[],s.forEach(function(e,t){e=e.getBoundingClientRect().top-w._areaTop;w._rowTops.push(e),n.endY-w._areaTop>e&&(r=t)}),n.create&&(t=Le((e.rtl?w._areaRight-n.endX:n.endX-w._areaLeft)/w._calCellWidth),i=We(w._firstDay,7*r+t),s=We(a=new Date(i.getFullYear(),i.getMonth(),i.getDate()),1),t=e.exclusiveEndDates?s:new Date(+s-1),i=e.extendDefaultEvent?e.extendDefaultEvent({start:a}):Ee,w._tempEvent=ne({allDay:!0,end:t,id:yo(),start:a,title:e.newEventText},n.event,i)),o||w._hook("onEventDragStart",{action:n.create?"create":n.resize?"resize":"move",domEvent:n.domEvent,event:n.create?w._tempEvent:n.data,source:"calendar"})},w._onLabelUpdateMove=function(n){var e=w.s,t=n.create?w._tempEvent:n.data,a=t.allDay?Ee:e;if(e.externalDrag&&n.drag&&!n.create&&w._clone&&(uo.next(ne({},n,{clone:w._clone,create:!0,event:n.data,eventName:"onDragMove",external:!0,inst:w})),!w._onCalendar))po(n,w._clone);else if(n.endY>w._areaTop&&n.endY<w._areaBottom&&n.endX>w._areaLeft&&n.endX<w._areaRight){var s=w.state.labelDragData,i=Le((e.rtl?w._areaRight-n.endX:n.endX-w._areaLeft)/w._calCellWidth),o=Le((e.rtl?w._areaRight-n.startX:n.startX-w._areaLeft)/w._calCellWidth),r=0,l=0,o=(w._rowTops.forEach(function(e,t){n.startY-w._areaTop>e&&(l=t),n.endY-w._areaTop>e&&(r=t)}),7*(r-l)+(i-o));if(i!==w._tempDay||r!==w._tempWeek){var c=Re(t.start,a),d=Re(t.end,a)||c,h=ne({},t),u=c,m=d;if(n.external)var _=Ye(c),p=+d-+c,u=Ve(e,+We(w._firstDay,7*r+i)+_),m=Ve(e,+u+p);else if(n.drag){if(!Fa(t.dragInTime,Ee,e.dragInTime))return;u=We(c,o),m=We(d,o)}else{_=e.rtl?-1:1,p=n.create?r===l?0<n.deltaX*_:0<o:"end"===n.direction,t=Fn(c,d);p?m=We(d,Math.max(-t,o)):u=We(c,Math.min(t,o)),m<u&&(p?m=Ve(a,u):u=Ve(a,m))}h.start=u,h.end=m,/mbsc-popover-hidden/.test(w._popoverClass)||(w._popoverClass=w._popoverClass+" mbsc-popover-hidden"),w.setState({labelDragData:{draggedDates:w._getDragDates(u,m,h),draggedEvent:h,originDates:s&&s.originDates}}),w._tempDay=i,w._tempWeek=r}}},w._onLabelUpdateEnd=function(e){var t=w.state,n=e.create,a=t.labelDragData||{},s=n?w._tempEvent:e.data,i=a.draggedEvent||s,o=Re(s.start),r=Re(s.end),l=Re(i.start),c=Re(i.end),o=n||+o!=+l||+r!=+c,r={allDay:s.allDay,endDate:c,original:s,startDate:l},d=!1,h=(w.s.externalDrag&&e.drag&&!e.create&&w._clone&&(uo.next(ne({},e,{action:"externalDrop",create:!0,event:e.data,eventName:"onDragEnd",external:!0,inst:w})),w._body.removeChild(w._clone),w._clone=Ee,w._onCalendar||(d=!0,w._eventDropped&&(e.event=s,w._onEventDelete(e)))),e.action||(a.draggedEvent?"drag":"click")),o=!d&&(!o||w._onEventDragStop({action:h,collision:function(e,t,n,a,s,i,o,r,l){if("start-end"===r){var r=fs(e,a,t,n,i,o),c=fs(e,s,t,n,i,o);if(r)return r;if(c)return c}else for(var d=l?s:Fe(We(s,1)),h=Fe(a);h<d;h.setDate(h.getDate()+1)){var u=fs(e,h,t,n,i,o);if(u)return u}return!1}(w.s,w._invalidsMap,w._validsMap,l,c,w._minDate,w._maxDate,w.s.invalidateEvent,w.s.exclusiveEndDates),create:n,domEvent:e.domEvent,event:r,source:"calendar"})),t=t.isTouchDrag&&!d&&(!n||o);t||"click"===h||w._hook("onEventDragEnd",{domEvent:e.domEvent,event:s,source:"calendar"}),w.setState({isTouchDrag:t,labelDragData:t?{draggedEvent:o?i:ne({},s),originDates:o?w._getDragDates(l,c,r.original):a.originDates}:{}}),e.drag&&w._hidePopover(),w._tempWeek=-1,w._tempDay=-1},w._onEventDragStop=function(e){var t=w.s,n=e.action,a=e.resource,s=e.slot,i=e.collision,o=e.create,r=e.source,l=e.event,c=l.original,d=c.recurring?c.original:c,h=ne({},d),u=ne({},d),m=c.timezone,_=kn(c.start,t,m),p=kn(l.startDate,t,m),t=kn(l.endDate,t,m),m=l.allDay,v=u.recurring,_=(v?u.recurringException=Da(u.recurringException).concat([_]):(u.allDay=m,u.start=p,u.end=t,a!==Ee&&(u.resource=a),s!==Ee&&(u.slot=s)),!1),f=v?ne({},d):d;return(o||v)&&(v&&delete f.recurring,!v&&f.id!==Ee||(f.id=yo()),a!==Ee&&(f.resource=a),s!==Ee&&(f.slot=s),f.start=p,f.end=t,f.allDay=m,_=!1!==w._hook("onEventCreate",ne({action:n,domEvent:e.domEvent,event:f,source:r},v&&{originEvent:c})),!1!==i&&(_=!1,w._hook("onEventCreateFailed",ne({action:n,event:f,invalid:i,source:r},v&&{originEvent:c})))),o&&!v||(_=!1!==w._hook("onEventUpdate",ne({domEvent:e.domEvent,event:u,oldEvent:h,source:r},v&&{newEvent:f,oldEventOccurrence:c})),!1!==i&&(_=!1,w._hook("onEventUpdateFailed",ne({event:u,invalid:i,oldEvent:h,source:r},v&&{newEvent:f,oldEventOccurrence:c})))),_&&((o||v)&&(w._events.push(f),w._triggerCreated={action:n,event:f,source:r}),o&&!v||(v?(l.id=f.id,l.original=f,d.recurringException=u.recurringException):(d.start=p,d.end=t,d.allDay=m,a!==Ee&&(d.resource=a),s!==Ee&&(d.slot=s)),w._triggerUpdated={event:d,oldEvent:h,source:r}),w._refresh=!0,"calendar"!==r&&w.forceUpdate()),_},w._onExternalDrag=function(e){var t=w.s,n=e.clone,a=e.inst===w,s=!a&&t.externalDrop,i=a&&t.externalDrag&&!t.dragToMove,o=w.state.labelDragData;if(w._showCalendar&&(s||t.externalDrag)){var r=!i&&e.endY>w._areaTop&&e.endY<w._areaBottom&&e.endX>w._areaLeft&&e.endX<w._areaRight;switch(e.eventName){case"onDragModeOff":s&&w._onLabelUpdateModeOff(e);break;case"onDragModeOn":s&&w._onLabelUpdateModeOn(e);break;case"onDragStart":s?w._onLabelUpdateStart(e):a&&(w._onCalendar=!0);break;case"onDragMove":(a||s)&&(r?(w._onCalendar||w._hook("onEventDragEnter",{domEvent:e.domEvent,event:e.event,source:"calendar"}),(a||s)&&(n.style.display="none"),s&&w._onLabelUpdateMove(e),w._onCalendar=!0):w._onCalendar&&(w._hook("onEventDragLeave",{domEvent:e.domEvent,event:e.event,source:"calendar"}),n.style.display="table",i||w.setState({labelDragData:{draggedDates:{},draggedEvent:a?o&&o.draggedEvent:Ee,originDates:a?o&&o.originDates:Ee}}),w._tempWeek=-1,w._tempDay=-1,w._onCalendar=!1));break;case"onDragEnd":s&&(r?(e.inst&&(e.inst._eventDropped=!0),w._onLabelUpdateEnd(e)):(w.setState({labelDragData:Ee}),w._hook("onEventDragEnd",{domEvent:e.domEvent,event:e.event,source:"calendar"})))}}},w._onEventDelete=function(e){var t,n=w.s;if((n.eventDelete!==Ee||n.dragToCreate||n.clickToCreate)&&!1!==n.eventDelete){for(var a,s,i=!1,o=!1,r=!1,l=e.event,c=l,d=n.selectMultipleEvents,h=d?w._selectedEventsMap:((t={})[l.id]=l,t),u=[],m=[],_=[],p={},v=[],f=0,g=k(h);f<g.length;f++){var y,b,x=g[f];x.recurring?(o=!0,p[b=(y=(c=x).original).id]?s=p[b]:(a=ne({},y),s=ne({},y),m.push(y),u.push(a),_.push(s),p[b]=s),b=kn(x.start,n),s.recurringException=Da(s.recurringException).concat([b])):(r=!0,v.push(l=x))}if(o)if(!1!==w._hook("onEventUpdate",{domEvent:e.domEvent,event:s,events:d?_:Ee,isDelete:!0,oldEvent:d?Ee:a,oldEventOccurrence:c,oldEvents:d?u:Ee})){for(var i=!0,D=0,T=m;D<T.length;D++){var S=T[D],C=p[S.id];S.recurringException=C.recurringException}w._triggerUpdated={event:y,events:d?m:Ee,oldEvent:d?Ee:a,oldEvents:d?u:Ee,source:e.source}}r&&!1!==w._hook("onEventDelete",{domEvent:e.domEvent,event:l,events:d?v:Ee})&&(i=!0,w._events=w._events.filter(function(e){return!h[e.id]}),w._selectedEventsMap={},w._triggerDeleted={event:l,events:d?v:Ee,source:e.source}),i&&(w._hidePopover(),w.refresh())}},w._setEl=function(e){w._el=e?e._el||e:null,w._calendarView=e},w._setList=function(e){w._list=e},w._setPopoverList=function(e){w._popoverList=e&&e._el},w._onKeyDown=function(e){9===e.keyCode&&w._resetSelection()},w}return a(t,e),t.prototype.addEvent=function(e){for(var t=[],n=0,a=xo(ue(e)?e:[e]);n<a.length;n++){var s=a[n];t.push(""+s.id),this._events.push(s)}return this.refresh(),t},t.prototype.getEvents=function(e,t){return go(this._events,this.s,this._firstDay,this._lastDay,e,t)},t.prototype.getInvalids=function(e,t){return go(this.s.invalid,this.s,this._firstDay,this._lastDay,e,t)},t.prototype.getSelectedEvents=function(){return k(this._selectedEventsMap)},t.prototype.setEvents=function(e){for(var t=[],e=xo(e),n=0,a=e;n<a.length;n++){var s=a[n];t.push(""+s.id)}return this._events=e,this.refresh(),t},t.prototype.setSelectedEvents=function(e){this._selectedEventsMap=(e||[]).reduce(function(e,t){return t.occurrenceId?e[t.occurrenceId]=t:e[t.id]=t,e},{}),this.forceUpdate()},t.prototype.removeEvent=function(e){for(var e=ue(e)?e:[e],t=this._events,n=t.length,a=0,s=e;a<s.length;a++)for(var i=s[a],o=!1,r=0;!o&&r<n;){var l=t[r];l.id!==i&&l.id!==i.id||(o=!0,t.splice(r,1)),r++}this.refresh()},t.prototype.navigateToEvent=function(e){this._navigateToEvent=e,this._shouldScrollSchedule++,this.navigate(e.start,!0)},t.prototype.navigate=function(e,t){var e=+Re(e),n=this._navigateToEvent!==Ee,a=e!==this._selectedDateTime;(a||n)&&(this._shouldAnimateScroll=!!t),this.s.selectedDate===Ee?!this._showSchedule&&!this._showTimeline||a?this.setState({selectedDate:e}):(this._shouldScrollSchedule++,this.forceUpdate()):(a||n)&&this._selectedChange(e)},t.prototype.updateEvent=function(e){for(var e=ue(e)?e:[e],t=this._events,n=t.length,a=0,s=e;a<s.length;a++)for(var i=s[a],o=!1,r=0;!o&&r<n;)t[r].id===i.id&&(o=!0,t.splice(r,1,ne({},i))),r++;this.refresh()},t.prototype.refresh=function(){this._refresh=!0,this.forceUpdate()},t.prototype._render=function(e,t){var n,s=this,a=this._prevS,i=this._showDate,o=e.displayTimezone!==a.displayTimezone||e.dataTimezone!==a.dataTimezone,r=!1,l=!!this._viewChanged,c=!1,o=(this._colorEventList=e.eventTemplate===Ee&&e.renderEvent===Ee&&e.colorEventList,e.exclusiveEndDates===Ee&&(e.exclusiveEndDates=!!e.displayTimezone),Q(e.min)?this._minDate=-1/0:a.min!==e.min&&(this._minDate=+Re(e.min)),Q(e.max)?this._maxDate=1/0:a.max!==e.max&&(this._maxDate=+Re(e.max)),n=e.selectedDate!==Ee?+Re(e.selectedDate):(this._defaultDate||(this._defaultDate=+(e.defaultSelectedDate!==Ee?Re(e.defaultSelectedDate):jn(Ve(e)))),t.selectedDate||this._defaultDate),this.eventList=t.eventList||[],e.data!==a.data&&(this._events=xo(e.data),this._refresh=!0),e.invalid===a.invalid&&e.colors===a.colors&&!o||(this._refresh=!0),JSON.stringify(e.view)===JSON.stringify(a.view)&&e.firstDay===a.firstDay&&e.dragTimeStep===a.dragTimeStep||(o={c:"eventcalendar",dragTimeStep:e.dragTimeStep,eventListSize:this._eventListSize,eventListType:this._eventListType,firstDay:e.firstDay,resourcesLength:e.resources?e.resources.length:0,scheduleEndDay:this._scheduleEndDay,scheduleEndTime:this._scheduleEndTime,scheduleStartDay:this._scheduleStartDay,scheduleStartTime:this._scheduleStartTime,scheduleTimeCellStep:this._scheduleTimeCellStep,scheduleTimeLabelStep:this._scheduleTimeLabelStep,scheduleTimezones:this._scheduleTimezones,scheduleType:this._scheduleType,showCalendar:this._showCalendar,showEventCount:this._showEventCount,showEventLabels:this._showEventLabels,showEventList:this._showEventList,showMarked:!!e.marked,showSchedule:this._showSchedule,showScheduleDays:this._showScheduleDays,slotsLength:e.slots?e.slots.length:0,timelineEndDay:this._timelineEndDay,timelineEndTime:this._timelineEndTime,timelineListing:this._timelineListing,timelineResolution:this._timelineResolution,timelineResolutionVertical:this._timelineResolutionVertical,timelineStartTime:this._timelineStartTime,timelineTimeCellStep:this._timelineTimeCellStep,timelineTimeLabelStep:this._timelineTimeLabelStep,timelineType:this._timelineType,v:"5.26.1",view:e.view},this._remote++,ia(this),ra("remote",this,o,function(e){if(s._remote--,!s._remote){for(var t=0,n=Object.keys(e);t<n.length;t++){var a=n[t];s[a]=e[a]}oa(e.notification),s.forceUpdate()}},"comp_"+this._uid)),this._showDate=!this._showScheduleDays&&(this._showSchedule&&"day"===this._scheduleType||this._showEventList&&"day"===this._eventListType&&this._eventListSize<2),this._pageLoad),c=(!this._refresh&&e.locale===a.locale&&e.theme===a.theme||(r=!0,this._pageLoad++),e.resources!==a.resources&&(this._resourcesMap=(e.resources||[]).reduce(function(e,t){return e[t.id]=t,e},{})),e.selectMultipleEvents&&e.selectedEvents!==a.selectedEvents&&(this._selectedEventsMap=(e.selectedEvents||[]).reduce(function(e,t){return t.occurrenceId?e[t.occurrenceId]=t:e[t.id]=t,e},{})),this._selectedEventsMap===Ee&&(this._selectedEventsMap={}),e.refDate!==a.refDate&&(this._refDate=Re(e.refDate)),this._refDate||this._showCalendar||!this._showSchedule&&!this._showTimeline||(this._refDate=Fe(new Date)),e.cssClass===a.cssClass&&e.className===a.className&&e.class===a.class||(this._checkSize++,this._viewChanged=l=!0),this._viewChanged&&this._viewDate&&n!==this._viewDate&&(c=!0,n=this._viewDate),n===this._selectedDateTime&&!l||(l=this._showCalendar&&(this._showSchedule||this._showTimeline||this._showEventList)?+gs(new Date(n),e,this._minDate,this._maxDate,Ee,Ee,1):Ne(n,this._minDate,this._maxDate),l=this._getValidDay(l),n===l&&!c||(n=l,setTimeout(function(){s._selectedChange(n)})),this._skipScheduleScroll||this._shouldScrollSchedule++,this._selectedDateTime=n),Fe(new Date(n))),l=+c;l===this._selected&&i===this._showDate&&e.locale===a.locale&&a.dateFormatLong===e.dateFormatLong||(this._selectedDateHeader=this._showDate?Ae(e.dateFormatLong,c,e):""),l===this._selected&&e.dataTimezone===a.dataTimezone&&e.displayTimezone===a.displayTimezone||(this._shouldScroll=!this._isPageChange&&!this._shouldSkipScroll,this._shouldAnimateScroll=this._shouldAnimateScroll!==Ee?this._shouldAnimateScroll:this._selected!==Ee,this._selected=l,this._selectedDates={},this._selectedDates[+Bn(e,new Date(l))]=!0,this._active=l,r=!0),r&&this._showCalendar&&("day"===this._eventListType||"day"===this._scheduleType||"day"===this._timelineType)&&this._setEventList(c,We(c,1)),this._refresh&&t.showPopover&&setTimeout(function(){s._hidePopover()}),this._refresh=!1,this._cssClass=this._className+" mbsc-eventcalendar"+(this._showEventList?" mbsc-eventcalendar-agenda":"")+(this._showSchedule?" mbsc-eventcalendar-schedule":"")+(this._showTimeline?" mbsc-eventcalendar-timeline":""),this._navService.options({activeDate:this._active,calendarType:this._calendarType,endDay:this._showSchedule?this._scheduleEndDay:this._showTimeline?this._timelineEndDay:this._rangeEndDay,eventRange:this._rangeType,eventRangeSize:this._showSchedule?this._scheduleSize:this._showTimeline?this._timelineSize:this._eventListSize,firstDay:e.firstDay,getDate:e.getDate,getDay:e.getDay,getMonth:e.getMonth,getYear:e.getYear,max:e.max,min:e.min,onPageChange:this._onPageChange,onPageLoading:this._onPageLoading,refDate:this._refDate,resolution:this._timelineResolution,showCalendar:this._showCalendar,showOuterDays:this._showOuterDays,size:this._calendarSize,startDay:this._rangeStartDay,weeks:this._calendarSize},this._pageLoad!==o)},t.prototype._mounted=function(){this._unsubscribe=mo(this._onExternalDrag),F(this._el,qa,this._onKeyDown)},t.prototype._updated=function(){var e,t,n=this;this._shouldScroll&&this.state.isListScrollable&&(this._scrollToDay(),this._shouldScroll=!1,this._shouldAnimateScroll=Ee),this._shouldLoadDays&&(this._shouldLoadDays=!1,ye(this._list.querySelectorAll("[mbsc-timestamp]"),function(e){n._listDays[e.getAttribute("mbsc-timestamp")]=e})),this._shouldEnhance&&(this._shouldEnhance="popover"===this._shouldEnhance?this._popoverList:this._list),this._triggerCreated&&(t="calendar"===(t=this._triggerCreated).source?this._calendarView._body.querySelector('.mbsc-calendar-table-active .mbsc-calendar-text[data-id="'+t.event.id+'"]'):this._el.querySelector('.mbsc-schedule-event[data-id="'+t.event.id+'"]'),this._hook("onEventCreated",ne({},this._triggerCreated,{target:t})),this._triggerCreated=null),this._triggerUpdated&&(t="calendar"===(e=this._triggerUpdated).source?this._calendarView._body.querySelector('.mbsc-calendar-table-active .mbsc-calendar-text[data-id="'+e.event.id+'"]'):this._el.querySelector('.mbsc-schedule-event[data-id="'+e.event.id+'"]'),this._hook("onEventUpdated",ne({},this._triggerUpdated,{target:t})),this._triggerUpdated=null),this._triggerDeleted&&(this._hook("onEventDeleted",ne({},this._triggerDeleted)),this._triggerDeleted=null),this._viewChanged&&setTimeout(function(){n._viewChanged=!1},10),this._shouldSkipScroll&&setTimeout(function(){n._shouldSkipScroll=!1}),this._skipScheduleScroll=!1,this._navigateToEvent=Ee},t.prototype._destroy=function(){this._unsubscribe&&_o(this._unsubscribe),z(this._el,qa,this._onKeyDown)},t.prototype._resetSelection=function(){this.s.selectMultipleEvents&&0<Object.keys(this._selectedEventsMap).length&&(this._selectedEventsMap={},this._onSelectedEventsChange([]),this.forceUpdate())},t.prototype._getAgendaEvents=function(e,t,n){var a=this,s=[],i=this.s;if(n&&this._showEventList)for(var o=Fe(e);o<t;o.setDate(o.getDate()+1))!function(t){var e=n[Pe(t)];e&&e.length&&(e=Ya(e,i.eventOrder),s.push({date:Ae(i.dateFormatLong,t,i),events:e.map(function(e){return a._getEventData(e,t)}),timestamp:+t}))}(o);return s},t.prototype._getEventData=function(e,t){var n,a=this.s,a=(!e.color&&e.resource&&(n=ue(e.resource)?e.resource:[e.resource],n=(this._resourcesMap||{})[n[0]]),bo(a,e,t,this._colorEventList,n,!0,!0));return a.html=this._safeHtml(a.html),a},t.prototype._getValidDay=function(e,t){void 0===t&&(t=1);var n=this._rangeStartDay,a=this._rangeEndDay;if(!this._showCalendar&&"day"===this._rangeType&&n!==Ee&&a!==Ee){var s=new Date(e),i=s.getDay(),a=(a<n?a<i&&i<n:a<i||i<n)?t<0?a-i:n-i:0;if(a)return+We(s,a+=t<0?0<a?-7:0:a<0?7:0)}return e},t.prototype._setEventList=function(e,t){var n=this;setTimeout(function(){n._eventListHTML=Ee,n._shouldScroll=!0,n._listDays=null,n._scrollToDay(0),n.setState({eventList:n._getAgendaEvents(e,t,n._eventMap)})})},t.prototype._hidePopover=function(){this.state.showPopover&&this.setState({showPopover:!1})},t.prototype._scrollToDay=function(e){var t,n,a,s,i=this;this._list&&(t=void 0,(e=e)===Ee&&this._listDays&&(n=this._listDays[this._selected],a=this._navigateToEvent&&this._navigateToEvent.id,n&&(a!==Ee?(a=n.querySelector('.mbsc-event[data-id="'+a+'"]'),s=n.querySelector(".mbsc-event-day"),a&&(e=a.offsetTop-(s?s.offsetHeight:0)+1)):e=n.offsetTop),e!==Ee&&(t=this._shouldAnimateScroll)),e!==Ee&&(this._isListScrolling++,_e(this._list,Ee,e,t,!1,function(){setTimeout(function(){i._isListScrolling--},150)})))},t.prototype._selectedChange=function(e,t){var n=new Date(e);this.s.selectedDate!==Ee||t||this.setState({selectedDate:+e}),this._emit("selectedDateChange",n),this._hook("onSelectedDateChange",{date:n})},t.prototype._cellClick=function(e,t){this._hook(e,ne({target:t.domEvent.currentTarget},t))},t.prototype._dayClick=function(e,t){var n=Pe(t.date),n=Ya(this._eventMap[n],this.s.eventOrder);t.events=n,this._hook(e,t)},t.prototype._labelClick=function(e,t){t.label&&this._hook(e,{date:t.date,domEvent:t.domEvent,event:t.label,source:"calendar"})},t.prototype._eventClick=function(e,t){return t.date=new Date(t.date),this._hook(e,t)},t.prototype._handleMultipleSelect=function(e){var t,n=e.label||e.event;n&&this.s.selectMultipleEvents&&((e=(e=e.domEvent).shiftKey||e.ctrlKey||e.metaKey?this._selectedEventsMap:{})[t=n.occurrenceId||n.id]?delete e[t]:e[t]=n,this._selectedEventsMap=ne({},e),this._onSelectedEventsChange(k(e)),this.s.selectedEvents===Ee&&this.forceUpdate())},t.defaults=ne({},ka,{actionableEvents:!0,allDayText:"All-day",data:[],newEventText:"New event",noEventsText:"No events",showControls:!0,showEventTooltip:!0,view:{calendar:{type:"month"}}}),t._name="Eventcalendar",t}(t);var To=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,e=e.children,ae("div",{ref:t._setEl,className:t._cssClass},e);var t},t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._render=function(e){this._cssClass=this._className+this._rtl+" mbsc-font mbsc-list"+this._theme},t}(t));var So=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,e=e.children,ae("div",{ref:t._setEl,className:t._cssClass},e);var t},t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._render=function(e){this._cssClass=this._className+" mbsc-list-header"+this._theme+this._hb},t}(t));var Co=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,e=e.children,(a=t.props).actionable,a.children,a.className,a.data,a.drag,a.ripple,a.rtl,n=a.theme,a.themeVariant,a.onHoverIn,a.onHoverOut,a.onDragEnd,a.onDragMove,a.onDragStart,a.onDragModeOn,a.onDragModeOff,a.onDelete,a.onClick,a=K(a,["actionable","children","className","data","drag","ripple","rtl","theme","themeVariant","onHoverIn","onHoverOut","onDragEnd","onDragMove","onDragStart","onDragModeOn","onDragModeOff","onDelete","onClick"]),ae("div",ne({tabIndex:0,ref:t._setEl,onClick:t._onClick,className:t._cssClass},a),e,ae("div",{className:"mbsc-list-item-background mbsc-"+n}));var t,n,a},t}(function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._onClick=function(e){t._hook("onClick",{domEvent:e}),t.s.selected&&t.setState({hasFocus:!1})},t}return a(t,e),t.prototype._mounted=function(){var a,s,i=this;this._unlisten=zs(this._el,{click:!0,keepFocus:!0,onBlur:function(){i.setState({hasFocus:!1})},onEnd:function(e){a&&((e=ne({},e)).domEvent.preventDefault(),e.data=i.s.data,e.drag=!0,i._hook("onDragEnd",e),a=!1),clearTimeout(s)},onFocus:function(){i.setState({hasFocus:!0})},onHoverIn:function(e){i.s.actionable&&i.setState({hasHover:!0}),i._hook("onHoverIn",{domEvent:e})},onHoverOut:function(e){i.setState({hasHover:!1}),i._hook("onHoverOut",{domEvent:e})},onKeyDown:function(e){var t=i.s.data;switch(e.keyCode){case 13:case 32:i._el.click(),e.preventDefault();break;case 8:case 46:t&&!1!==t.editable&&i._hook("onDelete",{domEvent:e,event:t,source:"agenda"})}},onMove:function(e){var t=i.s,e=ne({},e);e.data=t.data,e.drag=!0,e.external=!0,!a&&e.isTouch||e.domEvent.preventDefault(),a?i._hook("onDragMove",e):(7<Math.abs(e.deltaX)||7<Math.abs(e.deltaY))&&(clearTimeout(s),!e.isTouch&&t.drag&&!1!==t.data.editable&&(a=!0,i._hook("onDragStart",e)))},onPress:function(){i.s.actionable&&i.setState({isActive:!0})},onRelease:function(){i.setState({isActive:!1})},onStart:function(t){var n=i.s;return t.isTouch&&n.drag&&!1!==n.data.editable&&!a&&(s=setTimeout(function(){var e=ne({},t);e.data=n.data,e.drag=!0,i._hook("onDragModeOn",e),i._hook("onDragStart",e),a=!0},350)),{ripple:n.actionable&&n.ripple}}})},t.prototype._render=function(e,t){this._cssClass=this._className+" mbsc-list-item"+this._theme+this._hb+this._rtl+(e.actionable?" mbsc-list-item-actionable":"")+(t.hasFocus?" mbsc-focus":"")+(t.hasHover?" mbsc-hover":"")+(t.isActive?" mbsc-active":"")+(e.selected?" mbsc-selected":"")},t.prototype._destroy=function(){this._unlisten&&this._unlisten()},t.defaults={actionable:!0,ripple:!1},t._name="ListItem",t}(t)),Ue="mbsc-def";function wo(e,t,n,a,s,i,o,r){var l=e.allDay||n,e=e.startDate;return a&&n&&!s?(a=r[Pe(e)],e<i?i:o[a+($n(e.getDay(),t.startDay,t.endDay)?0:1)].date):l?Ve(t,e.getFullYear(),e.getMonth(),e.getDate()):e}function ko(e,t,n,a,s,i,o,r){var l=e.allDay||n,c=e.endDate;return a&&n&&!s?(a=r[Pe(Yn(t,e.allDay,e.startDate,c))],n=i<=c||a>=o.length-1?i:o[a+1].date,Yn(t,!1,e.startDate,n)):(s=l?Yn(t,e.allDay,e.startDate,c):c,l?Ve(t,s.getFullYear(),s.getMonth(),s.getDate(),23,59,59,999):s)}function Mo(e,t,n,a,s,i,o,r,l,c,d,h,u){for(var m=n.allDay?r:l,_=n.allDay?c:d,p=wo(n,e,s,i,o,m,h,u),v=ko(n,e,s,i,o,_,h,u),f=!1,g=0,y=t;g<y.length;g++){for(var b=y[g],x=0,D=!1,T=void 0,S=0,C=b;S<C.length;S++){for(var w=C[S],k=!1,M=0,E=w;M<E.length;M++){var N=E[M],I=N.allDay?r:l,L=N.allDay?c:d;Ln(wo(N,e,s,i,o,I,h,u),ko(N,e,s,i,o,L,h,u),p,v,!0)&&(D=k=!0,T?a[n.uid]=a[n.uid]||x:a[N.uid]=x+1)}k||T||(T=w),x++}D&&(T?T.push(n):b.push([n]),f=!0)}f||(a[n.uid]=0,t.push([[n]]))}function Eo(n){return 60<(n=Math.abs(Ie(n)))?60*Ie(n/60):60%n==0?n:[6,10,12,15,20,30].reduce(function(e,t){return Math.abs(t-n)<Math.abs(e-n)?t:e})}function No(e,t,n,a,s,i){a=Ye(e=a&&e<a?a:e);return 100*((a=a<t||s!==Ee&&i!==Ee&&!$n(e.getDay(),s,i)?t:a)-t)/n}function Io(n,e,t,i,o){n=n||{};for(var a=Object.keys(n),r={},l=e.map(function(e){return e.id}),c=t.map(function(e){return e.id}),s=(l.forEach(function(t){r[t]={},c.forEach(function(e){r[t][e]={}})}),function(s){for(var e=0,t=n[s];e<t.length;e++)!function(n){var e=n.resource,t=n.slot,e=e!==Ee&&i?ue(e)?e:[e]:l,a=t!==Ee&&o?[t]:c;e.forEach(function(e){var t=r[e];t&&a.forEach(function(e){e=t[e];e&&(e[s]||(e[s]=[]),e[s].push(n))})})}(t[e])}),d=0,h=a;d<h.length;d++)s(h[d]);return r}function Lo(e,t){e=new Date(e),t=new Date(+Tn+t);return new Date(e.getFullYear(),e.getMonth(),e.getDate(),t.getHours(),t.getMinutes())}var Ho={};var Oo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,a=(e=e).event,s=t._isAllDay,i=e.isTimeline,o=t._theme,r=e.resize&&!1!==a.original.editable,(n={})[ut]=t._onRightClick,ae("div",ne({tabIndex:0,className:t._cssClass,"data-id":a.id,style:t._style,ref:t._setEl,title:a.tooltip,onClick:t._onClick},n),t._isStart&&r&&ae("div",{className:"mbsc-schedule-event-resize mbsc-schedule-event-resize-start"+(i?" mbsc-timeline-event-resize":"")+t._rtl+(e.isDrag?" mbsc-schedule-event-resize-start-touch":"")}),t._isEnd&&r&&ae("div",{className:"mbsc-schedule-event-resize mbsc-schedule-event-resize-end"+(i?" mbsc-timeline-event-resize":"")+t._rtl+(e.isDrag?" mbsc-schedule-event-resize-end-touch":"")}),e.render?t._html?ae("div",{style:{height:"100%"},dangerouslySetInnerHTML:t._html}):t._content:ae(se,null,!s&&!i&&ae("div",{className:"mbsc-schedule-event-bar"+o+t._rtl}),ae("div",{className:"mbsc-schedule-event-background"+(i?" mbsc-timeline-event-background":"")+(s?" mbsc-schedule-event-all-day-background":"")+o,style:{background:a.style.background}}),ae("div",{"aria-hidden":"true",className:"mbsc-schedule-event-inner"+o+(s?" mbsc-schedule-event-all-day-inner":"")+(a.cssClass||""),style:{color:a.style.color}},ae("div",{className:"mbsc-schedule-event-title"+(s?" mbsc-schedule-event-all-day-title":"")+o,dangerouslySetInnerHTML:t._html},t._content),!s&&ae("div",{className:"mbsc-schedule-event-range"+o},t._rangeText)),a.ariaLabel&&ae("div",{className:"mbsc-hidden-content"},a.ariaLabel)));var t,n,a,s,i,o,r},t}(function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n._onClick=function(e){n._triggerClick("onClick",e);var e=n.s,t=Ho[e.event.uid];t&&e.selected&&t.next({hasFocus:!1})},n._onRightClick=function(e){n._triggerClick("onRightClick",e)},n._onDocTouch=function(e){z(n._doc,ns,n._onDocTouch),z(n._doc,V,n._onDocTouch),n._isDrag=!1,n._hook("onDragModeOff",{domEvent:e,event:n.s.event.original})},n._updateState=function(e){n.setState(e)},n}return a(t,e),t.prototype._render=function(e,t){var n,a=e.event,s=new Date(a.date),i=a.position,o=a.startDate,r=Yn(e,a.allDay,o,a.endDate),l=e.isTimeline,c=e.isListing,d=c||a.allDay,h=!ze(o,r),u=h&&ze(o,s),m=h&&ze(r,s),_=d&&(!l||c),p=l?"timeline":"schedule",v=e.gridStartTime,f=e.gridEndTime,o=Ye(o),g=Ye(r),y=l&&e.slot!==Ue,b=$n(r.getDay(),e.startDay,e.endDay),s=e.singleDay?We(s,1):new Date(e.lastDay),r=(a.allDay||(s=Bn(e,s)),this._isStart=y||!h||u,this._isEnd=y||!h||(d||l&&!e.hasResY?r<s&&b:m),y||d||!(o<v||f<o)||(this._isStart=!1),y||d||!(f<g||g<v)||(this._isEnd=!1),this._isDrag=this._isDrag||e.isDrag,this._content=Ee,this._rangeText=a.start+" - "+a.end,this._isAllDay=_,this._host=p,!a.allDay&&(l&&!e.hasResY||!h||u||m)||(this._rangeText=a.allDayText||" "),this._cssClass="mbsc-schedule-event"+this._theme+this._rtl+(e.render||e.template?" mbsc-schedule-event-custom":"")+(l?" mbsc-timeline-event":"")+(c?" mbsc-timeline-event-listing":"")+(this._isStart?" mbsc-"+p+"-event-start":"")+(this._isEnd?" mbsc-"+p+"-event-end":"")+(_?" mbsc-schedule-event-all-day":"")+(y?" mbsc-timeline-event-slot":"")+(t.hasFocus&&!e.inactive&&!e.selected||e.selected?" mbsc-schedule-event-active":"")+(!t.hasHover||e.inactive||this._isDrag?"":" mbsc-schedule-event-hover")+(e.isDrag?" mbsc-schedule-event-dragging"+(l?" mbsc-timeline-event-dragging":""):"")+(e.hidden?" mbsc-schedule-event-hidden":"")+(e.inactive?" mbsc-schedule-event-inactive":"")+(!1===a.original.editable?" mbsc-readonly-event":"")+(a.original.cssClass?" "+a.original.cssClass:""),this._style=ne({},i,{color:a.color,top:e.eventHeight&&i.top!==Ee?i.top*e.eventHeight+"px":i.top}),e.render||e.renderContent);r?me(s=r(a))?n=s:this._content=s:e.contentTemplate||(n=a.html),n!==this._text&&(this._text=n,this._html=n?this._safeHtml(n):Ee,this._shouldEnhance=n&&!!r)},t.prototype._mounted=function(){var a,s,i,o=this,e=this.s.event.uid,t=Ho[e];t||(t=new Dt,Ho[e]=t),this._unsubscribe=t.subscribe(this._updateState),this._doc=oe(this._el),this._unlisten=zs(this._el,{keepFocus:!0,onBlur:function(){t.next({hasFocus:!1})},onDoubleClick:function(e){e.domEvent.stopPropagation(),o._triggerClick("onDoubleClick",e.domEvent)},onEnd:function(e){var t;o._isDrag&&(t=o.s,(e=ne({},e)).domEvent.preventDefault(),e.event=t.event,e.resource=t.resource,e.slot=t.slot,t.resize&&a?(e.resize=!0,e.direction=a):t.drag&&(e.drag=!0),o._hook("onDragEnd",e),t.isDrag||(o._isDrag=!1),o._el&&e.moved&&o._el.blur()),clearTimeout(i),a=Ee},onFocus:function(){t.next({hasFocus:!0})},onHoverIn:function(e){t.next({hasHover:!0}),o._triggerClick("onHoverIn",e)},onHoverOut:function(e){t.next({hasHover:!1}),o._triggerClick("onHoverOut",e)},onKeyDown:function(e){var t=o.s.event.original;switch(e.keyCode){case 13:case 32:o._el.click(),e.preventDefault();break;case 8:case 46:!1!==t.editable&&o._hook("onDelete",{domEvent:e,event:t,source:o._host})}},onMove:function(e){var t=o.s,e=ne({},e);if(e.event=t.event,e.resource=t.resource,e.slot=t.slot,a)e.resize=!0,e.direction=a;else{if(!t.drag)return;e.drag=!0}!1!==t.event.original.editable&&(!o._isDrag&&e.isTouch||e.domEvent.preventDefault(),o._isDrag?o._hook("onDragMove",e):(7<Math.abs(e.deltaX)||7<Math.abs(e.deltaY))&&(clearTimeout(i),e.isTouch||(e.domEvent=s,o._isDrag=!0,o._hook("onDragStart",e))))},onStart:function(e){s=e.domEvent;var t=o.s,n=ne({},e),e=s.target;if(n.event=t.event,n.resource=t.resource,n.slot=t.slot,t.resize&&e.classList.contains("mbsc-schedule-event-resize"))a=e.classList.contains("mbsc-schedule-event-resize-start")?"start":"end",n.resize=!0,n.direction=a;else{if(!t.drag)return;n.drag=!0}!1!==t.event.original.editable&&(o._isDrag?(s.stopPropagation(),o._hook("onDragStart",n)):n.isTouch&&(i=setTimeout(function(){o._hook("onDragModeOn",n),o._hook("onDragStart",n),o._isDrag=!0},350)))}}),this._isDrag&&(F(this._doc,ns,this._onDocTouch),F(this._doc,V,this._onDocTouch))},t.prototype._destroy=function(){var e,t;this._el&&this._el.blur(),this._unsubscribe&&(e=this.s.event.uid,(t=Ho[e])&&(t.unsubscribe(this._unsubscribe),t.nr||delete Ho[e])),this._unlisten&&this._unlisten(),z(this._doc,ns,this._onDocTouch),z(this._doc,V,this._onDocTouch)},t.prototype._triggerClick=function(e,t){var n=this.s;this._hook(e,{date:n.event.date,domEvent:t,event:n.event.original,resource:n.resource,slot:n.slot,source:this._host})},t}(t));var Yo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return n=this,t=(e=e).timezones,ae("div",{"aria-hidden":"true",className:n._cssClass,style:n._pos},ae("div",{className:(t?"mbsc-flex ":"")+"mbsc-schedule-time-indicator-time mbsc-schedule-time-indicator-time-"+e.orientation+n._theme+n._rtl},t?t.map(function(e,t){return ae("div",{key:t,className:"mbsc-schedule-time-indicator-tz"+n._theme+n._rtl},n._times[t])}):n._time),e.showDayIndicator&&ae("div",{className:"mbsc-schedule-time-indicator-day"+n._theme+n._rtl,style:n._dayPos}));var n,t},t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._mounted=function(){var e=this;clearInterval(this._timer),this._timer=setInterval(function(){e._zone?e._zone.runOutsideAngular(function(){e.forceUpdate()}):e.forceUpdate()},1e4)},t.prototype._destroy=function(){clearInterval(this._timer)},t.prototype._render=function(e){var t=Ve(e),n=e.rtl,a=e.displayedDays,s=e.displayedTime,i=e.startTime,o=Le(Ye(t)/Oe)*Oe,r=e.timezones,l={amText:e.amText,pmText:e.pmText};if(r&&wn(t)){this._times=[];for(var c=0,d=r;c<d.length;c++){var h=d[c],u=t.clone();u.setTimezone(h.timezone),this._times.push(Ae(e.timeFormat,u,l))}}else this._time=Ae(e.timeFormat,t,l);this._cssClass="mbsc-schedule-time-indicator mbsc-schedule-time-indicator-"+e.orientation+this._theme+this._rtl+" "+(o<i||i+s<o||!$n(t.getDay(),e.startDay,e.endDay)?" mbsc-hidden":"");var m,_,p=e.hasResY?0:zn(e.firstDay,t,e.startDay,e.endDay);"x"===e.orientation?(m=100*p/a+"%",_=r&&4.25*r.length+"em",this._pos={left:r&&!n?_:Ee,right:r&&n?_:Ee,top:100*(o-i)/s+"%"},this._dayPos={left:n?"":m,right:n?m:"",width:100/a+"%"}):(r=100*(p*s+o-i)/(a*s)+"%",this._pos={left:n?"":r,right:n?r:""})},t}(t));var Po=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e,t){return t=t,n=this,(e=e).renderDay&&(a=e.renderDay(n._data)),me(a=e.renderDayContent?e.renderDayContent(n._data):a)&&(a=ae("div",{dangerouslySetInnerHTML:n._safeHtml(a)}),n._shouldEnhance=!0),ae("div",{ref:n._setEl,className:n._cssClass,onClick:n._onClick},e.renderDay?a:ae(se,null,ae("div",{"aria-hidden":"true",className:"mbsc-schedule-header-dayname"+n._theme+(e.selected?" mbsc-selected":"")+(e.isToday?" mbsc-schedule-header-dayname-curr":"")},e.dayNames[n._day]),ae("div",{"aria-hidden":"true",className:"mbsc-schedule-header-day"+n._theme+n._rtl+(e.selected?" mbsc-selected":"")+(e.isToday?" mbsc-schedule-header-day-today":"")+(t.hasHover?" mbsc-hover":"")},e.day),e.label&&ae("div",{className:"mbsc-hidden-content","aria-pressed":e.selectable?e.selected?"true":"false":Ee,role:e.selectable?"button":Ee},e.label),e.renderDayContent&&a));var n,a},t}(function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._onClick=function(){var e=t.s;e.selectable&&e.onClick(e.timestamp)},t}return a(t,e),t.prototype._render=function(e,t){var n=new Date(e.timestamp);this._cssClass="mbsc-schedule-header-item "+this._className+this._theme+this._rtl+this._hb+(e.largeNames?" mbsc-schedule-header-item-large":"")+(e.selected?" mbsc-selected":"")+(t.hasHover?" mbsc-hover":""),this._data={date:n,events:e.events||[],resource:e.resource,selected:e.selected},this._day=n.getDay()},t.prototype._mounted=function(){var e=this;this._unlisten=zs(this._el,{onHoverIn:function(){e.s.selectable&&e.setState({hasHover:!0})},onHoverOut:function(){e.s.selectable&&e.setState({hasHover:!1})}})},t.prototype._destroy=function(){this._unlisten&&this._unlisten()},t}(t)),Fo=function(e){function t(){var X=null!==e&&e.apply(this,arguments)||this;return X._isScrolling=0,X._onScroll=function(){},X._onMouseLeave=function(e,t){!X._cursorTimeCont||X.state.dragData&&!t||(X._cursorTimeCont.style.visibility="hidden",X._isCursorTimeVisible=!1)},X._onMouseMove=function(e){var t,n,a,s,i,o,r,l,c,d;X._showCursorTime&&(n=(t=X.s).rtl,a=X._isTimeline,s=X._cursorTimeCont,!X._isTouch||X._tempStart?!X._isCursorTimeVisible&&e&&(s.style.visibility="visible",X._isCursorTimeVisible=!0):(s.style.visibility="hidden",X._isCursorTimeVisible=!1),X._isCursorTimeVisible&&X._colWidth&&(d=X._gridCont.getBoundingClientRect(),i=e?e.clientX:X._cursorX||0,e=e?e.clientY:X._cursorY||0,c=n?d.right-i:i-d.left,d=Ne(e-d.top,8,X._colHeight),r=l=o=void 0,X._dragDelta!==Ee?(l=Ve(t,X._dragDelta<0?X._tempStart:X._tempEnd),o=a&&!X._hasResY?X._dayIndexMap[Pe(l)]:0,r=0!==(r=Ye(l))||X._dragDelta<0?r:Cn):(o=a&&!X._hasResY?Ne(Le(c/X._colWidth),0,X._daysNr-1):0,r=X._startTime+S(Le(a?X._time*(c-o*X._colWidth)/X._colWidth:X._time*(d-8)/(X._colHeight-16)),t.dragTimeStep*Oe),c=X._days[o].date,d=new Date(+Tn+r),l=Ve(t,c.getFullYear(),c.getMonth(),c.getDate(),d.getHours(),d.getMinutes())),c=X._time*(a?X._daysNr:1),(d=s.style)[a?n?"right":"left":"top"]=100*(o*X._time+r-X._startTime)/c+"%",d[n?"left":"right"]="",s.textContent=Ae(t.timeFormat,l,t),X._cursorX=i,X._cursorY=e))},X._onEventDragModeOn=function(e){X.s.externalDrag&&e.drag&&!e.create&&uo.next(ne({},e,{create:!0,eventName:"onDragModeOn",external:!0,inst:X}));var t=e.create?X._tempEvent:e.event,n=e.create?X._tempResource:e.resource,a=e.create?X._tempSlot:e.slot;X.setState({dragData:{draggedEvent:t,originDates:e.external?Ee:X._getDragDates(t,n,a),resource:n},isTouchDrag:!0})},X._onEventDragModeOff=function(e){X._hook("onEventDragEnd",{domEvent:e.domEvent,event:e.event,resource:X._tempResource!==Ue?X._tempResource:Ee,slot:X._tempSlot!==Ue?X._tempSlot:Ee,source:X._isTimeline?"timeline":"schedule"}),X.setState({dragData:Ee,isTouchDrag:!1})},X._onEventDragStart=function(e){var t=X.s,n=e.click,a=t.eventList,s=X._isTimeline,i=X._visibleResources,o=X._slots,r=t.dragTimeStep,l=e.startX,c=e.startY,l=(X._isTouch=e.isTouch,X._scrollY=0,X._scrollX=0,X._calcGridSizes(),t.rtl?X._gridRight-l:l-X._gridLeft),d=Ne(c-X._gridTop,8,X._colHeight-9),c=a?X._cols:X._days,h=c.length,u=X._colWidth,m=u?Le(l/u):1,_=X._resourceTops,p=0,v=m,f=0,u=(t.externalDrag&&e.drag&&!e.create&&(g=(y=fe(e.domEvent.target,".mbsc-schedule-event",X._el).cloneNode(!0)).classList,y.style.display="none",g.add("mbsc-drag-clone","mbsc-schedule-drag-clone","mbsc-font"),g.remove("mbsc-schedule-event-hover"),X._clone=y,X._body=oe(X._el).body,X._body.appendChild(y),X._eventDropped=!1,uo.next(ne({},e,{create:!0,event:e.event.original,eventName:"onDragStart",external:!0,inst:X}))),s?(f=u?Le(l/(u/o.length))%o.length:1,X._hasResY?c.forEach(function(n,a){i.forEach(function(e,t){d>_[n.dateKey+"-"+e.id]&&(v=a,p=t)})}):i.forEach(function(e,t){d>_[e.id]&&(p=t)})):(y=(g=X._groupByResource)?h:(X._hasSlots?X._slots:i).length,p=g?Le(m/y):m%y,v=g?m%y:Le(m/y)),e.external?Ee:i[p]),g=u?u.id:Ee,m=e.external?Ee:o[f],y=m?m.id:Ee;return(!u||!1!==u.eventCreation)&&(e.create&&(v=Ne(v,0,h-1),o=!s&&t.showAllDay&&e.endY<X._gridContTop,f="day"===t.type&&1===t.size?X._firstDay:c[v].date,h=a||!e.external&&!n?r*Oe:X._stepCell,c=X._getGridTime(f,l,d,v,n?X._stepCell/Oe:r),l=!X._isDailyResolution||o||a?o?f:Bn(t,f):c,c="year"===t.resolution?Zn(l,12,t):"month"===t.resolution?Zn(l,1,t):"week"===t.resolution?We(l,t.endDay-t.startDay+1+(t.endDay<t.startDay?7:0)):We(l,1),c=t.exclusiveEndDates?c:new Date(+c-1),a=o||a?c:Qn(Ve(t,+l+h),n?1:r),c=t.extendDefaultEvent?t.extendDefaultEvent({resource:g,slot:y,start:l}):Ee,h=ne({allDay:o,end:a,id:yo(),resource:u&&g!==Ue?g:Ee,slot:m&&y!==Ue?y:Ee,start:l,title:t.newEventText},c,e.event),r=X._getEventData(h,f,u),s&&g!==Ee&&X._setRowHeight&&(r.position.top=Ne(Le((d-_[g])/X._eventHeight),0,X._eventRows[g]-1)),e.event&&(o=+r.endDate-+r.startDate,r.startDate=f,r.endDate=new Date(+f+o)),X._tempEvent=r,X._tempResource=g,X._tempSlot=y),n||X._hook("onEventDragStart",{action:e.create?"create":e.resize?"resize":"move",domEvent:e.domEvent,event:(e.create?X._tempEvent:e.event).original,resource:g!==Ue?g:Ee,slot:y!==Ue?y:Ee,source:s?"timeline":"schedule"}),!0)},X._onEventDragMove=function(e){clearTimeout(X._scrollTimer);var t,n,P,a,s,i,o,F,r,l,c=X.s,d=c.rtl,h=d?-1:1,u=X._isTimeline,m=c.eventList,z="month"===c.resolution||"year"===c.resolution,_=m?X._cols:X._days,p=X._colWidth,v=_.length,f=X._slots,g=X._groupByResource,V=X._visibleResources,R=X.state.dragData,y=c.dragTimeStep,A=c.timeFormat,b=e.startX,x=Ne(e.endX,X._gridContLeft,X._gridContRight-1),D=Ne(e.endY,X._gridContTop,X._gridContBottom-1),T=D-e.startY+X._scrollY,W=d?b-x+X._scrollX:x-b+X._scrollX,W=u?W:T,T=u?p:X._colHeight-16,S=X._gridRight-X._gridLeft-1,U=Ne(e.startY-X._gridTop,8,X._colHeight-9),x=Ne(d?X._gridRight+X._scrollX-x:x-X._gridLeft+X._scrollX,0,S),B=Ne(D-X._gridTop+X._scrollY,8,X._colHeight-9),S=Le((d?X._gridRight-b:b-X._gridLeft)/p),D=Le(x/p),b=c.showAllDay&&e.endY<X._gridContTop,C=X._scrollCont,j=X._hasResY,w=S,k=D,K=0,M=0,E=!1,N=X._gridContBottom-e.endY,I=e.endY-X._gridContTop,L=e.endX-X._gridContLeft,H=X._gridContRight-e.endX,O=(C.scrollWidth-C.clientWidth)*h,Y=d?0:O,d=d?O:0;if(!c.externalDrag||!e.drag||e.create||(uo.next(ne({},e,{clone:X._clone,create:!0,event:e.event.original,eventName:"onDragMove",external:!0,inst:X})),X._onCalendar))return N<30&&C.scrollTop<C.scrollHeight-C.clientHeight&&(C.scrollTop+=5,X._scrollY+=5,E=!0),I<30&&!b&&0<C.scrollTop&&(C.scrollTop-=5,X._scrollY-=5,E=!0),L<30&&C.scrollLeft>d&&(C.scrollLeft-=5,X._scrollX-=5*h,E=!0),H<30&&C.scrollLeft<Y&&(C.scrollLeft+=5,X._scrollX+=5*h,E=!0),E&&(X._scrollTimer=setTimeout(function(){X._onEventDragMove(e)},20)),u?(M=Le(x/(p/f.length))%f.length,j?_.forEach(function(n,a){V.forEach(function(e,t){U>X._resourceTops[n.dateKey+"-"+e.id]&&(w=a),B>X._resourceTops[n.dateKey+"-"+e.id]&&(k=a,K=t)})}):V.forEach(function(e,t){B>X._resourceTops[e.id]&&(K=t)})):(O=g?v:X._resources.length,w=g?S%O:Le(S/O),k=g?D%O:Le(D/O),K=g?Le(D/O):D%O),w=Ne(w,0,v-1),k=Ne(k,0,v-1),I=(N=e.create?X._tempEvent:e.event).startDate,d=+(L=N.endDate)-+I,Y=Le((H=X._time)*W/T),C=f[M].id,h=V[K],E=e.create?X._tempResource:e.resource,(!1!==h.eventCreation||X._tempResource!==Ee)&&(p=!1!==h.eventCreation?h.id:X._tempResource,v=(O=N.allDay)?Ee:c,T=O||m,f=I,M=L,P=n=!0,a=_[w].date,_=_[k].date,a="day"===c.type&&1===c.size?0:Fn(a,_),s=k-w,i="year"===c.resolution?12:1,o=a-s,e.drag&&!e.create&&(F=N.original.dragBetweenResources,r=X._resourcesMap[E].eventDragBetweenResources,l=c.dragBetweenResources,n=!1!==F&&!1!==r&&!1!==l,P=Fa(N.original.dragInTime,X._resourcesMap[E].eventDragInTime,c.dragInTime)),e.drag||e.external?(u||n||E===p||(a=X._dragDayDelta),M=u&&m&&z?(f=Zn(I,s*i,c),Zn(L,s*i,c)):(T=(O=b||u&&N.allDay)||m,v=O?Ee:c,f=!u&&!b&&(N.allDay||e.external)||u&&e.external&&!N.allDay?(F=Fe(We(I,a)),X._getGridTime(F,x,B,k,y)):!u||T||j?(t=We(I,a),T?t:Qn(Ve(v,+t+Y),y)):Qn(Ve(c,+I+Y+(Cn-H)*a+H*o),y),!1!==h.eventCreation||u||(f=Ve(c,X._tempStart)),Ve(v,+f+d))):(r=u?s:D-S,l=e.create?r?0<r:0<W:"end"===e.direction,b=Fn(I,L),!u&&g&&E!==p&&(a=X._dragDayDelta),l?u&&m&&z?M=Zn(L,s*i,c):!u||T||j?(t=We(L,Math.max(-b,a)),M=T?t:Qn(Ve(v,+t+Y),y),!T&&(Ye(M)>X._endTime+1||M>=We(Fe(t),1))&&(M=Ve(c,+Fe(t)+X._endTime+1))):M=Qn(Ve(c,+L+Y+a*(Cn-H)+H*o),y):u&&m&&z?f=Zn(I,s*i,c):!u||T||j?(t=We(I,Math.min(b,a)),f=T?t:Qn(Ve(v,+t+Y),y),!T&&(Ye(f)<X._startTime||f<Fe(t))&&(f=Ve(c,+Fe(t)+X._startTime))):f=Qn(Ve(c,+I+Y+a*(Cn-H)+H*o),y),p=E,T&&M<f&&(l?M=Ve(c,f):f=Ve(c,M)),!T&&(M<f||Math.abs(+M-+f)<y*Oe)&&(l?M=Ve(c,+f+y*Oe):f=Ve(c,+M-y*Oe))),e.drag&&(P||(f=I,M=L,O=X._tempAllDay),n||(p=E)),X._tempStart===+f&&X._tempEnd===+M&&X._tempAllDay===O&&X._tempResource===p&&X._tempSlot===C||(x=ne({},N),d=h=void 0,d=X._isDailyResolution?(h=Ae(A,f,c),Ae(A,M,c)):(h=Ae(c.dateFormat,f,c),Ae(c.dateFormat,Yn(c,O,f,M),c)),x.startDate=f,x.endDate=M,x.start=h,x.end=d,x.allDay=O,x.date=+_,X._tempStart=+f,X._tempEnd=+M,X._tempAllDay=O,X._tempResource=p,X._tempSlot=C,X._dragDelta=e.drag||e.external?-1:e.direction?"end"===e.direction?1:-1:W,X._dragDayDelta=a,O||X._onMouseMove(e.domEvent),X.setState({dragData:{draggedDates:X._getDragDates(x,p,C),draggedEvent:x,originDate:N.date,originDates:R&&R.originDates,originResource:e.external?Ee:E,resource:p,slot:C}})),!0);po(e,X._clone)},X._onEventDragEnd=function(e){clearTimeout(X._scrollTimer);var t=X.s,n=e.create,a=X.state,s=a.dragData,i=!1;if(t.externalDrag&&e.drag&&!e.create&&(uo.next(ne({},e,{action:"externalDrop",create:!0,event:e.event.original,eventName:"onDragEnd",external:!0,inst:X})),X._body.removeChild(X._clone),X._onCalendar||(i=!0,X._eventDropped&&t.onEventDelete(e))),n&&!s&&((s={}).draggedEvent=X._tempEvent),s&&s.draggedEvent){var o=e.event,r=s.draggedEvent,l=r.startDate,c=r.endDate,d=r.allDay,h=r.original,u=e.resource,m=s.resource===Ee?u:s.resource,_=h.resource===Ee?m:h.resource,p=n?X._tempSlot:e.slot,v=s.slot===Ee?p:s.slot,f={},g=X._isTimeline?"timeline":"schedule",p=n||+l!=+o.startDate||+c!=+o.endDate||d!==o.allDay||u!==m||p!==v,y=_;u===m||n&&!e.external||X._isSingleResource||(ue(_)&&_.length&&m?(T=_.indexOf(u),-1===_.indexOf(m)&&(y=_.slice()).splice(T,1,m)):y=m);for(var b=0,x=y&&t.resources?ue(y)?y:[y]:X._resources.map(function(e){return e.id});b<x.length;b++){var D=x[b];X._invalids[D]&&(f[D]=X._invalids[D][v])}var _=e.action||(a.dragData?"drag":"click"),T=!i&&(!p||t.eventDragEnd({action:_,collision:function(e,t,n,a,s,i){for(var o="start-end"===s,r=i?n:Fe(We(n,1)),l=0,c=Object.keys(e);l<c.length;l++)for(var d=e[c[l]],h=Fe(t);h<r;h.setDate(h.getDate()+1)){var u=d[Pe(h)];if(u){if(u.allDay&&(!o||ze(h,t)||ze(h,n)))return u.allDay.original;if(!a)for(var m=0,_=u.invalids;m<_.length;m++){var p=_[m];if(o){if(Ln(p.startDate,p.endDate,t,t,!0))return p.original;if(Ln(p.startDate,p.endDate,n,n))return p.original}else if(Ln(p.startDate,p.endDate,t,n))return p.original}}}return!1}(f,l,c,d,t.invalidateEvent,t.exclusiveEndDates),create:n,domEvent:e.domEvent,event:r,resource:y!==Ue?y:Ee,slot:v!==Ue?v:Ee,source:g})),p=a.isTouchDrag&&!i&&(!n||T);T&&p&&u!==m&&!h.color&&((c=(l=J(X._resources,function(e){return e.id===m}))&&l.color)?(r.color=c,r.style.background=c,r.style.color=he(c)):(r.color=Ee,r.style={})),p||"click"===_||X._hook("onEventDragEnd",{domEvent:e.domEvent,event:(n?X._tempEvent:e.event).original,resource:m!==Ue?m:Ee,slot:v!==Ue?v:Ee,source:g}),X.setState({dragData:p?{draggedEvent:T?r:ne({},o),originDate:(T?r:o).date,originDates:T?X._getDragDates(r,m,v):s.originDates,originResource:T?m:s.originResource}:Ee,isTouchDrag:p}),X._tempStart=0,X._tempEnd=0,X._tempAllDay=Ee,X._dragDelta=Ee,X._onMouseMove(e.domEvent),X._isTouch=!1}},X._onExternalDrag=function(e){var t=X.s,n=e.clone,a=e.inst===X,s=!a&&t.externalDrop,i=a&&t.externalDrag&&!t.dragToMove,o=X.state.dragData;if(s||t.externalDrag){var r=!i&&e.endY<X._gridContBottom&&e.endY>X._allDayTop&&e.endX>X._gridContLeft&&e.endX<X._gridContRight;switch(e.eventName){case"onDragModeOff":s&&X._onEventDragModeOff(e);break;case"onDragModeOn":s&&X._onEventDragModeOn(e);break;case"onDragStart":s?X._onEventDragStart(e):a&&(X._onCalendar=!0);break;case"onDragMove":(a||s)&&(r?(X._onCalendar||X._hook("onEventDragEnter",{domEvent:e.domEvent,event:e.event,source:X._isTimeline?"timeline":"schedule"}),(a||s&&!1!==X._onEventDragMove(e))&&(n.style.display="none"),X._onCalendar=!0):X._onCalendar&&(X._hook("onEventDragLeave",{domEvent:e.domEvent,event:e.event,source:X._isTimeline?"timeline":"schedule"}),clearTimeout(X._scrollTimer),n.style.display="table",i||X.setState({dragData:{draggedDates:{},draggedEvent:a?o&&o.draggedEvent:Ee,originDates:a?o&&o.originDates:Ee}}),X._tempStart=0,X._tempEnd=0,X._tempAllDay=Ee,X._tempResource=Ee,X._dragDelta=Ee,X._onCalendar=!1,X._onMouseLeave(Ee,!0)));break;case"onDragEnd":s&&(r&&X._tempResource!==Ee?(e.inst&&(e.inst._eventDropped=!0),X._onEventDragEnd(e)):(X.setState({dragData:Ee,isTouchDrag:!1}),X._hook("onEventDragEnd",{domEvent:e.domEvent,event:e.event,resource:e.resource,slot:e.slot,source:e.source})))}}},X}return a(t,e),t.prototype._isToday=function(e){return ze(new Date(e),Ve(this.s))},t.prototype._formatTime=function(e,t){var n=this.s,a=n.timeFormat,a=/a/i.test(a)&&this._stepLabel===Sn&&e%Sn==0?a.replace(/.[m]+/i,""):a,e=new Date(+Tn+e),e=Ve(n,e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes());return wn(e)&&t&&e.setTimezone(t),Ae(a,e,n)},t.prototype._getEventPos=function(e,t,n,a){var s=this.s,i=e.allDay?Ee:s,t=Ve(i,t.getFullYear(),t.getMonth(),t.getDate()),o=Fe(We(t,1)),r=i?this._firstDayTz:this._firstDay,i=i?this._lastDayTz:this._lastDay,l=this._isTimeline,c=!l&&!this._groupByResource,d=e.allDay,h=this._startTime,u=this._endTime+1,m=this._time,_=this._hasSlots,p=this._hasResY,v=this._isDailyResolution,f=s.eventList,n=p?0:this._dayIndexMap[n],g=e.start,y=e.end,b=wo(e,s,f,l,v,r,this._cols,this._colIndexMap),x=ko(e,s,f,l,v,i,this._cols,this._colIndexMap),D=+b==+x?1:0;if((!d&&!l||p&&!_)&&(b<t&&(g="",b=Ve(s,t)),o<=x&&(y="",x=Ve(s,+o-1)),o<=x&&(x=Ve(s,+o-1))),d||l){if(!a.get(e.original)||_||p||c){var t=s.startDay,o=s.endDay,p=d||f,d=!ze(b,x),T=this._daysNr,S=No(b=l&&d&&Ye(b)>=u?Ve(s,+Fe(b)+u):b,h,m,r,t,o),t=function(e,t,n,a,s,i,o,r,l,c){var d=e,h=t,u=We(Fe(h),1),m=(s<h&&(h=u=s),Ye(d=d<a?a:d)),_=Ye(h),p=(m<i&&(m=i),o<_&&(_=o),ze(d,h)||(o<m&&(m=o),_<i&&(_=i)),0);if(ze(d,h))p=c?n:_-m;else for(var v=Fe(d);v<u;v.setDate(v.getDate()+1))$n(v.getDay(),r,l)&&(!c&&ze(v,d)?p+=n-m+i:!c&&ze(v,h)?p+=_-i:p+=n);return 100*p/n}(b,x,m,r,i,h,u,t,o,p),v=(l&&(o=0,f&&!v&&(n=this._dayIndexMap[Pe(b)]),"month"===s.resolution&&(f=this._days[n].dayDiff,v=Pe(i<=x?We(i,-1):x),i=this._dayIndexMap[v],o=this._days[i].dayDiff-f),t=(t+100*o)/T,S=(S+100*n)/T),l?p?{left:s.rtl?"":(_?"":100*n/T)+"%",right:s.rtl?(_?"":100*n/T)+"%":"",width:(_?"":t)+"%"}:{height:this._setRowHeight?"":"100%",left:s.rtl?"":S+"%",right:s.rtl?S+"%":"",top:"0",width:t+"%"}:{width:(d&&!c?t:100)+"%"}),i=Ye(b)<u&&r<x,f=Ye(x)+D>h;if(p||d&&0<t||i&&f)return a.set(e.original,!0),{end:y,endDate:x,position:v,start:g,startDate:b}}}else if(Ye(b)<u&&Ye(x)+D>h&&b<=x)return o=x,l=m,n=h,T=u,_=Ye(_=b),o=Ye(o),{cssClass:(s=100*((o=T<o?T:o)-(_=_<n?n:_))/l)<2?" mbsc-schedule-event-small-height":"",end:y,endDate:x,position:{height:s+"%",top:No(b,h,m)+"%",width:"100%"},start:g,startDate:b};return Ee},t.prototype._getEventData=function(e,t,n,a){var s=this.s,t=bo(s,e,t,!0,n,!1,!this._isTimeline||this._hasResY,this._isDailyResolution,a);return e.allDay&&s.exclusiveEndDates&&+t.endDate==+t.startDate&&(t.endDate=Fe(We(t.startDate,1))),t},t.prototype._getEvents=function(B){var j=this,K=this.s,e=this._resources,d=this._slots,X=this._hasSlots,J=this._hasResY,q=this._isTimeline,G=!q,Z={},h=Io(B,e,d,!!K.resources,!!K.slots),$={},Q=this._firstDay,ee=this._lastDay,te=this._setRowHeight,ne={},ae=this._cols,se=this._createEventMaps||K.renderHour||K.renderHourFooter||K.renderDay||K.renderDayFooter||K.renderWeek||K.renderWeekFooter||K.renderMonth||K.renderMonthFooter||K.renderYear||K.renderYearFooter;if(se&&ae.forEach(function(e){return e.eventMap={}}),K.connections)for(var t=0,n=K.connections;t<n.length;t++){var a=n[t];ne[a.from]=!0,ne[a.to]=!0}for(var s=function(V){for(var R=V.id,A=new Map,W=[],U=0,e=(Z[R]={},function(e){for(var F=e.id,z=h[R][F],e=Object.keys(z).sort(),t=(Z[R][F]={all:{allDay:[],events:[]}},G&&($[F]=Oa(K,z,Q,ee,-1,ie._daysNr,!0,K.startDay,!1,K.eventOrder)),0),n=e;t<n.length;t++)!function(a){var s=B[a].date;if(ie._dayIndexMap[a]!==Ee&&$n(s.getDay(),K.startDay,K.endDay)){var e=Ya(z[a])||[],t=[],n={},i=J||X||!q?a:"all",o=0;(G||X||J)&&(Z[R][F][i]={allDay:[],events:[]}),J&&(U=ie._eventRows[a+"-"+R]||0);for(var r=0,l=e;r<l.length;r++){var c=l[r];if(!c.allDay||q){var d=ie._getEventData(c,s,V),h=ie._getEventPos(d,s,a,A);if(h&&(d.cssClass=h.cssClass,d.position=h.position,(G||J)&&(d.showText=!0,Mo(K,t,d,n,K.eventList)),Z[R][F][i].events.push(d),W.push(d),o++,ie._eventMap[d.id]=d,se))for(var u=ie._stepCell,m=ie._isDailyResolution&&u<1440*Oe,h=c.allDay?Q:Bn(K,Q),h=d.startDate>h?d.startDate:h,_=ie._colIndexMap[Pe(h)],p=!0;p&&_<ae.length;){for(var v=ae[_],f=v.date,g=_<ae.length-1?ae[_+1].date:ee,y=f;y<g;)var b=+y,x=m?new Date(b+u):g,D=c.allDay?f:Bn(K,y),P=c.allDay?g:Bn(K,x),p=!!Ln(d.startDate,d.endDate,D,P)&&(v.eventMap[b]||(v.eventMap[b]=[]),v.eventMap[b].push(d.original),!0),y=x;_++}}}if(X&&U<o&&(U=o),G||J&&!X){G&&$[F][a]&&$[F][a].data.forEach(function(e){var t,n=e.event,e=e.width;n&&(n=j._getEventData(n,s,V),t=j._getEventPos(n,s,a,A),n.position={width:t?t.position.width:e},n.showText=!!t,Z[R][F][i].allDay.push(n))});for(var T=0,S=t;T<S.length;T++){var C=S[T],w=C.length;te&&U<w&&(U=w);for(var k=0;k<w;k++)for(var M=0,E=C[k];M<E.length;M++){var N=E[M],I=((n[N.uid]||w)-k)/w*100;G?(N.position.width=I+"%",N.position[K.rtl?"right":"left"]=100*k/w+"%",N.position[K.rtl?"left":"right"]="auto"):(N.position.height=te?"":I+"%",N.position.top=te?k:100*k/w+"%")}}}J&&(ie._eventRows[a+"-"+R]=U||1)}else if(K.connections)for(var L=0,H=e=z[a]||[];L<H.length;L++){var O=H[L],Y=O.id;!ie._eventMap[Y]&&ne[Y]&&(ie._eventMap[Y]=ie._getEventData(O,s,V))}}(n[t])}),t=0,n=d;t<n.length;t++)e(n[t]);if(q&&!X&&!J){for(var a=[],r={},s=0,i=W;s<i.length;s++){var o=i[s];Mo(K,a,o,r,K.eventList,q,ie._isDailyResolution,Q,ie._firstDayTz,ee,ie._lastDayTz,ie._cols,ie._colIndexMap)}for(var l=0,c=a;l<c.length;l++)!function(e){var o=e.length;te&&U<o&&(U=o),e.forEach(function(e,t){for(var n=0,a=e;n<a.length;n++){var s=a[n],i=((r[s.uid]||o)-t)/o*100;s.position.height=te?"":i+"%",s.position.top=te?t:100*t/o+"%"}})}(c[l])}J||(ie._eventRows[R]=U||1)},ie=this,i=0,o=e;i<o.length;i++)s(o[i]);return Z},t.prototype._getInvalids=function(e){var t,n=this.s,a=n.eventList,s=e||{},i={},o=a?Fe(new Date(n.minDate)):new Date(n.minDate),r=a?Fe(We(new Date(n.maxDate),1)):new Date(n.maxDate),l=this._isTimeline;if(n.minDate)for(var c=Fe(this._firstDay);c<o;c.setDate(c.getDate()+1))(S=s[T=Pe(c)]||[]).push({end:o,start:new Date(c)}),s[T]=S;if(n.maxDate)for(c=Fe(r);c<this._lastDay;c.setDate(c.getDate()+1))(S=s[T=Pe(c)]||[]).push({end:new Date(this._lastDay),start:r}),s[T]=S;for(var d=Io(s,this._resources,this._slots,!!n.resources,!!n.slots),h=Object.keys(s).sort(),u=0,m=this._resources;u<m.length;u++){var _=m[u],p=_.id,v=new Map;i[p]={};for(var f=0,g=this._slots;f<g.length;f++){var y=g[f].id,b={invalids:[]};i[p][y]={all:b};for(var x=0,D=h;x<D.length;x++){var T,c=Re(T=D[x]);if(this._dayIndexMap[T]!==Ee&&$n(c.getDay(),n.startDay,n.endDay)){var S=d[p][y][T]||[],C={invalids:[]},w=[];i[p][y][T]=C;for(var k=0,M=S;k<M.length;k++){var E=M[k],N=((me(E)||Wn(E))&&(N=Re(E),E={allDay:!0,end:new Date(N),start:N}),this._getEventData(E,c,_,!0)),E=(N.cssClass=E.cssClass?" "+E.cssClass:"",N.position=Ee,this._getEventPos(N,c,T,v));if(E&&(!l&&0===Ye(E.startDate)&&new Date(+E.endDate+1)>=We(c,1)?N.allDay=!0:(N.position=E.position,Ye(E.startDate)<=this._startTime&&(N.cssClass+=" mbsc-schedule-invalid-start"),Ye(E.endDate)>=this._endTime&&(N.cssClass+=" mbsc-schedule-invalid-end")),w.push(N)),C.invalids.push(N),N.allDay){l||(N.position={}),C.allDay=N,C.invalids=[N],w=[N];break}}(t=b.invalids).push.apply(t,w)}}}}return i},t.prototype._getColors=function(e){for(var t=this.s,n={},a=Io(e,this._resources,this._slots,!!t.resources,!!t.slots),s=Object.keys(e||{}).sort(),i=this._hasSlots,o=this._isTimeline,r=this._hasResY,l=0,c=this._resources;l<c.length;l++){var d=c[l],h=d.id,u=new Map;n[h]={};for(var m=0,_=this._slots;m<_.length;m++){var p=_[m].id;n[h][p]={all:{colors:[]}};for(var v=0,f=s;v<f.length;v++){var g=f[v],y=Re(g);if(this._dayIndexMap[g]!==Ee&&$n(y.getDay(),t.startDay,t.endDay))for(var b=a[h][p][g]||[],x=r||i||!o?g:"all",D=(o&&!i&&!r||(n[h][p][x]={colors:[]}),n[h][p][x]),T=0,S=b;T<S.length;T++){var C,w=S[T],k=this._getEventData(w,y,d,!0);k.cssClass=w.cssClass?" "+w.cssClass:"",k.allDay&&!o?D.allDay=k:(C=this._getEventPos(k,y,g,u))&&(k.position=C.position,Ye(C.startDate)<=this._startTime&&(k.cssClass+=" mbsc-schedule-color-start"),Ye(C.endDate)>=this._endTime&&(k.cssClass+=" mbsc-schedule-color-end"),D.colors.push(k)),k.position.background=w.background,k.position.color=w.textColor||he(w.background)}}}}return n},t.prototype._flattenResources=function(e,t,n,a){for(var s=0,i=e&&e.length?e:[{id:Ue}];s<i.length;s++){var o=i[s];o.depth=n,o.isParent=!(!o.children||!o.children.length),t.push(o),(this._resourcesMap[o.id]=o).isParent&&(this._hasHierarchy=!0,o.collapsed&&!a||this._flattenResources(o.children,t,n+1,a))}return t},t.prototype._render=function(e,r){var P,l=this,t=this._prevS,a=this._isTimeline,n=new Date(e.selected),s=+e.size,i=Eo(e.timeLabelStep),o=Eo(e.timeCellStep),F=e.firstDay,c=e.startDay,d=e.endDay,h=e.resources,u=e.slots,m=!1===e.virtualScroll,_=e.resolution,p="day"===_||"hour"===_||!a,v="day"===e.resolutionVertical,f=!1,g=!1,y=!1,b=this._startTime;this._endTime;if(c===t.startDay&&d===t.endDay&&e.checkSize===t.checkSize&&e.eventList===t.eventList&&e.refDate===t.refDate&&e.size===t.size&&e.type===t.type&&e.resolution===t.resolution&&e.resolutionVertical===t.resolutionVertical&&e.displayTimezone===t.displayTimezone&&e.weekNumbers===t.weekNumbers||(g=f=!0),!f&&e.rtl===t.rtl&&e.dateFormat===t.dateFormat&&e.getDay===t.getDay&&e.rowHeight===t.rowHeight||(y=!0),e.startTime!==t.startTime||e.endTime!==t.endTime||e.timeLabelStep!==t.timeLabelStep||e.timeCellStep!==t.timeCellStep||e.timeFormat!==t.timeFormat||this._startTime===Ee||this._endTime===Ee){for(var x=Re(e.startTime||"00:00"),D=new Date(+Re(e.endTime||"00:00")-1),z=(this._startTime=b=Ye(x),this._endTime=P=Ye(D),this._time=P-b+1,this._timesBetween=Be(Le(o/i)-1),this._times=[],this._timeLabels={},o*Oe),V=Le(b/z)*z,T=this,S=V;S<=P;S+=z)!function(n){var e;T._times.push(n),a&&(T._timeLabels[n]=(e=n===V)||n%(i*Oe)==0?T._formatTime(e?b:n):"",T._timesBetween.forEach(function(e,t){t=n+(t+1)*i*Oe;l._timeLabels[t]=l._formatTime(t)}))}(S);y=g=!0}if(e.slots===t.slots&&this._slots!==Ee||(this._hasSlots=a&&!!u&&0<u.length,this._slots=u&&u.length?u:[{id:Ue}],y=!0),h===t.resources&&this._resources!==Ee||(this._hasResources=!!h&&0<h.length,this._hasHierarchy=!1,this._resourcesMap={},this._resources=this._flattenResources(h,[],0,!0),this._visibleResources=this._flattenResources(h,[],0),this._isSingleResource=1===this._resources.length,y=!0),f||e.selected!==t.selected||e.getDay!==t.getDay||e.monthNames!==t.monthNames||e.dateFormat!==t.dateFormat||e.currentTimeIndicator!==t.currentTimeIndicator){var C=jn(Ve(e)),x="day"===e.type,w="month"===e.type,R="year"===e.type,A=x&&s<2,D=e.navigationService,u=e.dateFormat.search(/m/i),W=e.dateFormat.search(/y/i)<u,U=e.dateFormat.search(/d/i)<u,f=void 0,u=void 0,k=void 0,M=void 0,E=(1<s||R||w?(k=f=D.firstDay,M=u=D.lastDay):(k=We(Vn(n,e),c-F+(c<F?7:0)),x&&(n<k&&(k=We(k,-7)),n>=We(k,7)&&(k=We(k,7))),M=We(k,d-c+1+(d<c?7:0)),f=x?Fe(n):k,u=x?We(f,1):M),a&&"week"===_&&(R||w)&&(f=D.viewStart,u=D.viewEnd),this._isMulti=1<s||R,this._isDailyResolution=p,this._hasResY=v,this._firstDay=f,this._lastDay=u,this._firstDayTz=Ve(e,f.getFullYear(),f.getMonth(),f.getDate()),this._lastDayTz=Ve(e,u.getFullYear(),u.getMonth(),u.getDate()),this._selectedDay=+Fe(n),this._setRowHeight=e.eventList||"equal"!==e.rowHeight,this._shouldAnimateScroll=t.selected!==Ee&&e.selected!==t.selected&&!g,this._showTimeIndicator=!e.eventList&&(e.currentTimeIndicator===Ee?!a||p&&o<1440:e.currentTimeIndicator)&&(x&&s<2?ze(C,n):f<=C&&C<=u),this._colIndexMap={},this._cols=[],this._dayIndexMap={},this._days=[],this._headerDays=[],0),B=-1,j=0,K=0,X=-1,J="",q=-1,G=-1,Z="",$=-1,Q=-1,ee="",D=f,te=u,ne=0,ae=Ee,se=0;!a&&A&&(D=k,te=M);for(S=Fe(D);S<Fe(te);S.setDate(S.getDate()+1)){var N=Pe(S);if(this._dayIndexMap[N]=E,$n(S.getDay(),c,d)){var ie,I,L,oe=void 0,re="",le="",ce=p,H=(a&&!v&&(se=e.getWeekNumber(We(S,(7-F+1)%7)),ie=e.getMonth(S),I=e.getYear(S),L=e.monthNames[ie],X!==I&&(X=I,"year"===_&&(ce=!0,J=""+X)),q!==ie&&("month"===_?(J=R&&s<2?L:W?I+" "+L:L+" "+I,ce=!0):p&&(re=Z=W?I+" "+L:L+" "+I),G=E,K=e.getMaxDayOfMonth(X,q=ie)),$!==se&&(Q=E,$=se,le=ee=e.weekText.replace(/{count}/,$),0<E&&(this._days[E-1].lastOfWeek=!0)),S.getDay()!==c&&E||"week"!==_||(L=U?"D MMM":"MMM D",ae=We(S,d-c+(d<c?7:0)),J=Ae(L,S,e)+" - "+Ae(L,ae,e),ce=!0),(oe=e.getDay(S)===K)&&"month"===_&&(j+=31-K)),{columnTitle:J,date:new Date(S),dateIndex:E,dateKey:N,dateText:Ae(v?w&&!this._isMulti?"D DDD":h?e.dateFormatLong:e.dateFormat:w||this._isMulti?"D DDD":e.dateFormatLong,S,e),day:e.getDay(S),dayDiff:j,endDate:ae,eventMap:{},label:Ae("DDDD, MMMM D, YYYY",S,e),lastOfMonth:oe,monthIndex:G,monthText:Z,monthTitle:re,timestamp:+Fe(S),weekIndex:Q,weekNr:se,weekText:ee,weekTitle:le});if(ce&&(H.isActive=S<=C&&C<te,ne&&(this._cols[B].isActive=ne<=+C&&C<S),ne=+S,this._cols.push(H),B++),A&&this._headerDays.push(H),A&&this._selectedDay!==+S||this._days.push(H),oe&&"month"===_)for(var de=K;de<31;de++)this._days.push(H),E++;E++}this._colIndexMap[N]=B}this._colsNr=v?1:B+1,this._daysNr=v||A?1:E}this._groupByResource="date"!==e.groupBy&&!("day"===e.type&&s<2)||this._isSingleResource,this._stepCell=o*Oe,this._stepLabel=i*Oe,this._dayNames=49<r.dayNameWidth?e.dayNamesShort:e.dayNamesMin,this._displayTime=i<1440&&p,this._eventHeight=r.eventHeight||(e.eventList?24:46),this._showCursorTime=this._displayTime&&!!(e.dragToCreate||e.dragToMove||e.dragToResize),this._viewChanged=g,e.colorsMap===t.colorsMap&&!y||(this._colors=this._getColors(e.colorsMap)),e.eventMap===t.eventMap&&!y&&this._events||(this._eventMap={},this._eventRows={},this._events=this._getEvents(e.eventMap)),e.invalidsMap===t.invalidsMap&&!y||(this._invalids=this._getInvalids(e.invalidsMap));x=a&&e.eventMap!==t.eventMap;if((e.height!==t.height||e.width!==t.width||x||y)&&(this._shouldCheckSize=He&&!!e.height&&!!e.width),e.scroll!==t.scroll&&(this._shouldScroll=!0),e.height!==Ee&&(this._hasSideSticky=je&&!e.rtl,this._hasSticky=je),a){for(var f=this._colsNr,he=[],u=this._daysBatchNr===Ee?Ne(Le(this._stepCell/(this._time/30)),1,30):this._daysBatchNr,k=this._dayIndexMap[Pe(n)]||0,M=r.batchIndexX!==Ee?r.batchIndexX:Ie(k/u),D=Math.min(M*u,f-1),o=m?0:Math.max(0,D-Le(3*u/2)),ue=m?f:Math.min(o+3*u,f),g=this._cols[o].date,x=ue<f?this._cols[ue].date:this._lastDay,E=o;E<ue;E++)he.push(this._cols[E]);this._batchStart=Ve(e,g.getFullYear(),g.getMonth(),g.getDate()),this._batchEnd=Ve(e,x.getFullYear(),x.getMonth(),x.getDate()),this._daysBatch=he,this._daysBatchNr=u,this._placeholderSizeX=r.dayWidth*Ie(Math.max(0,D-3*u/2))||0,this._rowHeights={},this._dragRow="";for(var me=(r.scrollContHeight||0)-(r.headerHeight||0)-(r.footerHeight||0),_e=r.rowHeight||52,pe=r.parentRowHeight||52,ve=r.gutterHeight!==Ee?r.gutterHeight:16,y=r.batchIndexY||0,fe=this._visibleResources,t=v?this._days:[{}],n=fe.length*t.length,ge=[],O=[],ye={},be={},xe={},De=[],Te=-1,Y=0,k=(r.hasScrollY&&(this._resourceTops={}),t.forEach(function(i,o){fe.forEach(function(e,t){var n,a,s=(v?i.dateKey+"-":"")+e.id;xe[s]=e,me&&(n=e.children?pe:_e,n=!l._setRowHeight||!1===e.eventCreation?n:Math.max((l._eventRows[s]||1)*l._eventHeight+ve,n),l._rowHeights[s]=l._setRowHeight?n+"px":Ee,a=Le(Y/me),r.hasScrollY&&(l._resourceTops[s]=Y),a!==Te&&(De.push({startIndex:o*fe.length+t,top:Y}),Te=a),Y+=n),ge.push({dayIndex:o,key:s,resource:e})})}),De[y-1]),M=De[y+2],f=k?k.startIndex:0,Se=M?M.startIndex:Y?n:30,Ce=((m||Y&&Y<=me)&&(f=0,Se=n),[]),we=-1,E=f;E<Se;E++){var ke,Me=ge[E];Me&&(we!==(ke=Me.dayIndex)&&(O.push({day:v?this._days[ke]:Ee,rows:Ce=[]}),ye[we=ke]=O[O.length-1]),be[Me.key]=!0,Ce.push(Me.resource))}r.dragData&&r.dragData.originResource!==Ee&&(o=r.dragData.originResource,N=Pe(new Date(r.dragData.originDate)),g=v?this._dayIndexMap[N]:0,be[x=(v?N+"-":"")+o]||((D=ye[g])||(D={day:v?this._days[g]:Ee,hidden:!0,rows:[]},O.push(D)),D.rows.push(xe[x]),this._dragRow=x)),this._gridHeight=Y,this._virtualPagesY=De,this._colClass=h||!v?"mbsc-timeline-resource-col":"mbsc-timeline-date-col",this._hasRows=this._hasResources||v,this._rows=ge,this._rowBatch=O,this._placeholderSizeY=k&&!m?k.top:0}},t.prototype._mounted=function(){var a,s,i,o=this;this._unlisten=zs(this._el,{onDoubleClick:function(e){var t=o.s;i&&t.clickToCreate&&"single"!==t.clickToCreate&&(e.click=!0,o._onEventDragStart(e)&&o._onEventDragEnd(e))},onEnd:function(e){!a&&s&&"single"===o.s.clickToCreate&&(e.click=!0,o._onEventDragStart(e)&&(a=!0)),a&&(e.domEvent.preventDefault(),o._onEventDragEnd(e)),clearTimeout(o._touchTimer),s=a=!1},onMove:function(e){var t=o.s;a&&t.dragToCreate?(e.domEvent.preventDefault(),o._onEventDragMove(e)):s&&t.dragToCreate&&(7<Math.abs(e.deltaX)||7<Math.abs(e.deltaY))?o._onEventDragStart(e)?a=!0:s=!1:clearTimeout(o._touchTimer)},onStart:function(e){var t,n=o.s;e.create=!0,e.click=!1,o._isTouch=e.isTouch,a||!n.dragToCreate&&!n.clickToCreate||(t=e.domEvent.target&&e.domEvent.target.classList||[],(i=t.contains("mbsc-schedule-item")||t.contains("mbsc-schedule-all-day-item")||t.contains("mbsc-timeline-column"))&&(e.isTouch&&n.dragToCreate?o._touchTimer=setTimeout(function(){o._onEventDragStart(e)&&(o._onEventDragModeOn(e),a=!0)},350):s=!e.isTouch))}}),this._unsubscribe=mo(this._onExternalDrag)},t.prototype._updated=function(){var w=this,k=this.s,M=this.state;this._shouldCheckSize&&y(this,function(){var e,t,n,a,s,i,o,r,l,c=w._resCont,d=w._headerCont,h=w._footerCont,u=w._sidebarCont,m=w._stickyFooter,_=d.offsetHeight,p=c?c.offsetWidth:0,v=u?u.offsetWidth:0,f=h?h.offsetHeight:0,g=w._scrollCont,y=g.offsetWidth,b=g.offsetHeight,x=g.clientWidth,D=g.clientHeight,p=x-p-v,v=D-_-f,y=y-x,T=b-D,S=g.scrollHeight>D,x=g.scrollWidth>x,C=M.eventHeight;w._calcGridSizes(),w._isTimeline?(a=g.querySelector(".mbsc-timeline-day"),s=g.querySelector(".mbsc-timeline-empty-row"),i=g.querySelector(".mbsc-timeline-empty-parent"),o=g.querySelector(".mbsc-timeline-row-gutter"),t=w._colsNr,a=a?a.offsetWidth:64,s=s?s.offsetHeight:52,i=i?i.offsetHeight:52,o=o?o.offsetHeight:16,a*t<p&&(x=!1,T=0),w._gridHeight&&w._gridHeight<v&&(S=!1,y=0),a=x?a:Ie(p/t),e=w._stepCell*a/w._time,w._gridWidth=t=x?a*t:p,w._daysBatchNr=Math.max(1,Math.ceil(p/(a||1))),w._hasSticky||(d.style[k.rtl?"left":"right"]=y+"px",h&&(h.style[k.rtl?"left":"right"]=y+"px",h.style.bottom=T+"px")),w._hasSideSticky||(c&&(c.style.bottom=T+"px"),u&&(u.style[k.rtl?"left":"right"]=y+"px")),m&&(m.style.bottom=T+"px"),w._setRowHeight&&(C=(v=g.querySelector(".mbsc-schedule-event"))?v.clientHeight:C||(k.eventList?24:46)),!S&&M.rowHeight&&(w._resourceTops={},p=w._gridCont,n=p.getBoundingClientRect(),p.querySelectorAll(".mbsc-timeline-row").forEach(function(e,t){w._resourceTops[w._rows[t].key]=e.getBoundingClientRect().top-n.top}))):(d=w._el.querySelector(".mbsc-schedule-column-inner"),h=w._el.querySelector(".mbsc-schedule-header-item"),r=d?w._stepCell*d.offsetHeight/w._time:0,l=h?h.offsetWidth:0),w._onScroll(),w._calcConnections=!!k.connections&&(w._isParentClick||w._calcConnections||!S),w._shouldCheckSize=s!==M.rowHeight||C!==M.eventHeight,w._isCursorTimeVisible=!1,w.setState({cellHeight:r,cellWidth:e,dayNameWidth:l,dayWidth:a,eventHeight:C,footerHeight:f,gridWidth:t,gutterHeight:o,hasScrollX:x,hasScrollY:S,headerHeight:_,parentRowHeight:i,rowHeight:s,scrollContHeight:x?D:b,update:w._calcConnections?(M.update||0)+1:M.update})}),!this._shouldScroll||!M.dayWidth&&this._isTimeline||(setTimeout(function(){w._scrollToTime(w._shouldAnimateScroll),w._shouldAnimateScroll=!1}),this._shouldScroll=!1),this._viewChanged&&setTimeout(function(){w._viewChanged=!1},10)},t.prototype._destroy=function(){this._unlisten&&this._unlisten(),this._unsubscribe&&_o(this._unsubscribe)},t.prototype._calcGridSizes=function(){var e=this.s,t=this._resources,n=this._isTimeline,t=this._daysNr*(n?1:t.length),a=this._gridCont,s=this._scrollCont,i=!n&&this._el.querySelector(".mbsc-schedule-all-day-wrapper"),i=i&&i.getBoundingClientRect(),o=a.getBoundingClientRect(),s=s.getBoundingClientRect(),n=n?o.width:a.scrollWidth,a=this._resCont?this._resCont.offsetWidth:0;this._gridLeft=e.rtl?o.right-n:o.left,this._gridRight=e.rtl?o.right:o.left+n,this._gridTop=o.top,this._gridContTop=s.top,this._gridContBottom=s.bottom,this._gridContLeft=s.left+(e.rtl?0:a),this._gridContRight=s.right-(e.rtl?a:0),this._allDayTop=i?i.top:this._gridContTop,this._colWidth=n/(e.eventList?this._colsNr:t),this._colHeight=o.height},t.prototype._getDragDates=function(e,t,n){for(var a=this.s,s={},i=new Map,o=e.allDay?this._firstDay:this._firstDayTz,r=e.startDate,l=e.endDate,r=Fe(r),l=Yn(a,e.allDay||a.eventList,r=r<o?o:r,l);r<=l;){var c,d=ne({},e),h=Pe(r),u=$n(r.getDay(),a.startDay,a.endDay)&&this._getEventPos(e,r,h,i);u&&(c=d.resource,this._isTimeline&&this._setRowHeight&&-1!==(ue(c)?c:[c]).indexOf(this._tempResource)&&(u.position.top=d.position.top),c=!this._isTimeline||this._hasSlots||this._hasResY?h:"all",d.date=+Fe(r,!0),d.cssClass=u.cssClass,d.start=u.start,d.end=u.end,d.position=u.position,s[t+"__"+(this._isTimeline?n+"__":"")+c]=d),r=We(r,1)}return s},t.prototype._getGridTime=function(e,t,n,a,s){a=this._hasResY?0:a,t=S(this._isTimeline?Le(this._time*(t-a*this._colWidth)/this._colWidth):Le(this._time*(n-8)/(this._colHeight-16)),s*Oe),a=new Date(+Tn+this._startTime+t);return Ve(this.s,e.getFullYear(),e.getMonth(),e.getDate(),a.getHours(),a.getMinutes())},t.prototype._scrollToTime=function(e){var t,n,a,s,i,o,r,l,c,d,h=this,u=this._scrollCont,m=this._gridCont,_=this._isTimeline;u&&(t=this.s,l=this._hasResY,c=(n=t.navigateToEvent)&&n.start?Qn(new Date(+Re(n.start,t)-this._stepCell),this._stepCell/Oe):new Date(t.selected),!_||l||"hour"===t.resolution&&this._stepCell!==Cn&&!t.eventList?c.setHours(t.eventList?0:c.getHours(),0):c=this._cols[this._colIndexMap[Pe(c)]].date,a=No(c,this._startTime,this._time*(_?this._daysNr:1)),s=l?0:zn(this._firstDay,c,t.startDay,t.endDay),m=(_?m.offsetWidth:m.scrollWidth)*(100*s/this._daysNr+(_?a:0))/100+1,r=void 0,(n||l)&&(i=this._visibleResources,d=n?n.resource:i[0].id,(o=ue(d)?d[0]:d)&&(_?(d=(l?Pe(c)+"-":"")+o,r=this._resourceTops&&this._resourceTops[d]):(l=this._colWidth,c=D(i,function(e){return e.id===o})||0,m=this._groupByResource&&!this._isSingleResource?this._daysNr*l*c+l*s:i.length*s*l+c*l))),_||(r=(d=u.querySelector(".mbsc-schedule-column-inner"))?d.offsetHeight*a/100:0,!this._groupByResource||this._isSingleResource||n||(m=Ee)),this._isScrolling++,_e(u,m,r,e,t.rtl,function(){setTimeout(function(){h._isScrolling--},150)}))},t}(t);function zo(r,e,l){function a(e){var t,n=e.name;return r.renderResource&&me(n=r.renderResource(e))&&(t=l._safeHtml(n),l._shouldEnhance=!0),n&&ae("div",{key:e.id,className:"mbsc-schedule-resource"+D+v+p+(!M||"day"===r.type&&1===r.size?" mbsc-flex-1-0 mbsc-schedule-col-width":"")},ae("div",{dangerouslySetInnerHTML:t,className:"mbsc-schedule-resource-title"},n))}function c(e,t,n,a){var s=l._resourcesMap[n].eventResize,t=n+"__"+t,i=Pa(h&&h.draggedEvent&&h.draggedEvent.original.resize,r.dragToResize,s),o={displayTimezone:r.displayTimezone,drag:r.dragToMove||r.externalDrag,endDay:r.endDay,exclusiveEndDates:r.exclusiveEndDates,gridEndTime:y,gridStartTime:g,lastDay:+l._lastDay,render:r.renderEvent,renderContent:r.renderEventContent,resource:n,rtl:r.rtl,singleDay:!M,slot:Ue,startDay:r.startDay,theme:r.theme,timezonePlugin:r.timezonePlugin};return ae(se,null,e.map(function(e){return e.showText?ae(Oo,ne({},o,{event:e,key:e.uid,inactive:u===e.id,resize:Pa(e.original.resize,r.dragToResize,s),selected:!(!r.selectedEventsMap[e.uid]&&!r.selectedEventsMap[e.id]),onClick:r.onEventClick,onDoubleClick:r.onEventDoubleClick,onRightClick:r.onEventRightClick,onDelete:r.onEventDelete,onHoverIn:r.onEventHoverIn,onHoverOut:r.onEventHoverOut,onDragStart:l._onEventDragStart,onDragMove:l._onEventDragMove,onDragEnd:l._onEventDragEnd,onDragModeOn:l._onEventDragModeOn,onDragModeOff:l._onEventDragModeOff})):ae("div",{key:e.uid,className:"mbsc-schedule-event mbsc-schedule-event-all-day mbsc-schedule-event-all-day-placeholder"},ae("div",{className:"mbsc-schedule-event-all-day-inner"+D}))}),h&&h.originDates&&h.originDates[t]&&!!h.originDates[t].allDay==!!a&&ae(Oo,ne({},o,{event:h.originDates[t],hidden:h&&!!h.draggedDates,isDrag:!0,resize:i,onDragStart:l._onEventDragStart,onDragMove:l._onEventDragMove,onDragEnd:l._onEventDragEnd,onDragModeOff:l._onEventDragModeOff})),h&&h.draggedDates&&h.draggedDates[t]&&!!h.draggedDates[t].allDay==!!a&&ae(Oo,ne({},o,{event:h.draggedDates[t],isDrag:!0,resize:i})))}function n(s){return f.map(function(a,e){var t=!e,n=e===f.length-1;return ae("div",{key:e,className:"mbsc-flex-col mbsc-flex-1-0 mbsc-schedule-time-wrapper"+D+v+(n?" mbsc-schedule-time-wrapper-end":"")+(t&&!n&&b||n&&!t&&x?" mbsc-flex-none":""),style:t&&!n?b:n&&!t?x:Ee},ae("div",{className:"mbsc-flex-1-1 mbsc-schedule-time"+D+v},t||a%o==0?l._formatTime(t?g:a,s):""),l._timesBetween.map(function(e,t){var n=a+(t+1)*o;return g<n&&n<y&&ae("div",{key:t,className:"mbsc-flex-1-1 mbsc-schedule-time"+D+v},l._formatTime(n,s))}),n&&ae("div",{className:"mbsc-schedule-time mbsc-schedule-time-end"+D+v},l._formatTime(y+1,s)))})}function s(e,t,n,a){var s=_[e][Ue][t]&&_[e][Ue][t].allDay,i=d[e][Ue][t]&&d[e][Ue][t].allDay,o=m[e][Ue][t]&&m[e][Ue][t].allDay;return ae("div",{key:n+"-"+a,className:"mbsc-schedule-all-day-item mbsc-schedule-col-width mbsc-flex-1-0"+D+v+p},c(o||[],t,e,!0),s&&ae("div",{className:"mbsc-schedule-invalid mbsc-schedule-invalid-all-day"+s.cssClass+D},ae("div",{className:"mbsc-schedule-invalid-text"},s.title)),i&&ae("div",{className:"mbsc-schedule-color mbsc-schedule-color-all-day"+i.cssClass+D,style:i.position},ae("div",{className:"mbsc-schedule-color-text"},i.title)))}function i(i,e,t,o){var n=_[i][Ue][e]&&_[i][Ue][e].invalids,a=d[i][Ue][e]&&d[i][Ue][e].colors,s=m[i][Ue][e]&&m[i][Ue][e].events;return ae("div",{key:t+"-"+o,className:"mbsc-flex-col mbsc-flex-1-0 mbsc-schedule-column mbsc-schedule-col-width"+D+v+p},ae("div",{className:"mbsc-flex-col mbsc-flex-1-1 mbsc-schedule-column-inner"+D+v+p},ae("div",{className:"mbsc-schedule-events"+v},c(s||[],e,i)),n&&n.map(function(e,t){return e.position&&ae("div",{key:t,className:"mbsc-schedule-invalid"+e.cssClass+D,style:e.position},ae("div",{className:"mbsc-schedule-invalid-text"},!e.allDay&&e.title||""))}),a&&a.map(function(e,t){return ae("div",{key:t,className:"mbsc-schedule-color"+e.cssClass+D,style:e.position},ae("div",{className:"mbsc-schedule-color-text"},e.title))}),f.map(function(e,t){var n=Lo(o,e),e=!t,a=t===f.length-1,s={onDoubleClick:function(e){return r.onCellDoubleClick({date:n,domEvent:e,resource:i,source:C})},onContextMenu:function(e){return r.onCellRightClick({date:n,domEvent:e,resource:i,source:C})}};return ae("div",ne({key:t,className:"mbsc-schedule-item mbsc-flex-1-0"+D+p+(a?" mbsc-schedule-item-last":"")+(e&&!a&&b||a&&!e&&x?" mbsc-flex-none":""),onClick:function(e){return r.onCellClick({date:n,domEvent:e,resource:i,source:C})},style:e&&!a?b:a&&!e?x:Ee},s))})))}var t,d=l._colors,h=e.dragData,u=h&&h.draggedEvent&&h.draggedEvent.id,m=l._events,_=l._invalids,p=l._hb,v=l._rtl,f=l._times,g=l._startTime,y=l._endTime,b=l._startCellStyle,x=l._endCellStyle,o=l._stepLabel,D=l._theme,T=l._isSingleResource,S=r.eventMap||{},C="schedule",w=" mbsc-flex-1-0 mbsc-schedule-resource-group"+D+v,k=l._timezones,M=l._groupByResource,E=l._days,N=l._resources,I=((t={})[pt]=l._onMouseMove,t[_t]=l._onMouseLeave,{dayNames:l._dayNames,largeNames:l._largeDayNames,onClick:r.onWeekDayClick,renderDay:r.renderDay,renderDayContent:r.renderDayContent,rtl:r.rtl,theme:r.theme});return ae("div",{ref:l._setEl,className:"mbsc-flex-col mbsc-flex-1-1 mbsc-schedule-wrapper"+D+(7<l._daysNr?" mbsc-schedule-wrapper-multi":"")},ae("div",{className:"mbsc-schedule-header mbsc-flex mbsc-flex-none"+D+p},ae("div",{className:"mbsc-schedule-time-col mbsc-schedule-time-col-empty"+D+v+p,style:l._timeWidth}),ae("div",{className:"mbsc-flex-1-1 mbsc-schedule-header-wrapper"},ae("div",{ref:l._setHeaderCont,className:"mbsc-flex"},"day"===r.type&&1===r.size?ae("div",{className:w},ae("div",{className:"mbsc-flex"},r.showDays&&l._headerDays.map(function(e){var t=e.timestamp;return ae(Po,ne({},I,{key:t,cssClass:"mbsc-flex-1-1",day:e.day,events:S[e.dateKey],isToday:l._isToday(t),label:e.label,selectable:!0,selected:l._selectedDay===t,timestamp:t}))})),r.resources&&ae("div",{className:"mbsc-flex"},N.map(a))):M?N.map(function(n,e){return ae("div",{key:e,className:w},a(n),ae("div",{className:"mbsc-flex"},r.showDays&&E.map(function(e){var t=e.timestamp;return ae(Po,ne({},I,{key:t,cssClass:"mbsc-flex-1-0 mbsc-schedule-col-width",day:e.day,events:S[e.dateKey],isToday:T&&l._isToday(t),label:e.label,resource:n.id,selectable:!1,selected:T&&l._isToday(t),timestamp:t}))})))}):E.map(function(e,t){var n=e.timestamp;return ae("div",{key:t,className:w},r.showDays&&ae(Po,ne({},I,{key:n,day:e.day,events:S[e.dateKey],isToday:T&&l._isToday(n),label:e.label,selectable:!1,selected:l._isToday(n),timestamp:n})),r.resources&&ae("div",{className:"mbsc-flex"},N.map(a)))}))),ae("div",{className:"mbsc-schedule-fake-scroll-y"})),ae("div",{className:"mbsc-schedule-all-day-cont"+(e.showShadow?" mbsc-schedule-all-day-wrapper-shadow":"")+D},k&&ae("div",{className:"mbsc-flex mbsc-schedule-timezone-labels",style:l._timeWidth},k.map(function(e,t){return ae("div",{key:t,className:"mbsc-flex-1-0-0 mbsc-schedule-timezone-label"+D+v},e.label)})),r.showAllDay&&ae("div",{className:"mbsc-schedule-all-day-wrapper mbsc-flex-none"+D+p},ae("div",{className:"mbsc-flex mbsc-schedule-all-day"+D},ae("div",{className:"mbsc-schedule-time-col"+D+v,style:l._timeWidth},!k&&ae("div",{className:"mbsc-schedule-all-day-text"+D+v},r.allDayText)),ae("div",{className:"mbsc-flex-col mbsc-flex-1-1 mbsc-schedule-all-day-group-wrapper"},ae("div",{ref:l._setAllDayCont,className:"mbsc-flex mbsc-flex-1-1"},M?N.map(function(n,e){return ae("div",{key:e,className:"mbsc-flex"+w},E.map(function(e,t){return s(n.id,e.dateKey,t,e.timestamp)}))}):E.map(function(n,e){return ae("div",{key:e,className:"mbsc-flex"+w},N.map(function(e,t){return s(e.id,n.dateKey,t,n.timestamp)}))})))))),ae("div",{className:"mbsc-flex mbsc-flex-1-1 mbsc-schedule-grid-wrapper"+D},ae("div",{"aria-hidden":"true",className:"mbsc-flex-col mbsc-schedule-time-col mbsc-schedule-time-cont"+D+v,style:l._timeWidth,ref:l._setTimeCont},ae("div",{className:"mbsc-flex mbsc-schedule-time-cont-inner"},ae("div",{className:"mbsc-flex-col mbsc-flex-1-1"},ae("div",{className:"mbsc-flex-1-1 mbsc-schedule-time-cont-pos"+D+(k?" mbsc-flex":" mbsc-flex-col mbsc-schedule-time-col-last")},k?k.map(function(e,t){return ae("div",{key:t,className:"mbsc-flex-col"+D+(t===k.length-1?" mbsc-schedule-time-col-last":"")},n(e.timezone))}):n(),l._showTimeIndicator&&ae(Yo,{amText:r.amText,displayedTime:l._time,displayedDays:l._daysNr,displayTimezone:r.displayTimezone,endDay:r.endDay,firstDay:l._firstDayTz,orientation:"x",pmText:r.pmText,rtl:r.rtl,showDayIndicator:T&&!l._isMulti&&"week"===r.type,startDay:r.startDay,startTime:g,theme:r.theme,timeFormat:r.timeFormat,timezones:k,timezonePlugin:r.timezonePlugin}),l._showCursorTime&&ae("div",{ref:l._setCursorTimeCont,className:"mbsc-schedule-cursor-time mbsc-schedule-cursor-time-x"+D+v})),e.hasScrollX&&ae("div",{className:"mbsc-schedule-fake-scroll-x"})),ae("div",{className:"mbsc-schedule-fake-scroll-y"}))),ae("div",{ref:l._setCont,className:"mbsc-flex-col mbsc-flex-1-1 mbsc-schedule-grid-scroll"+D,onScroll:l._onScroll},ae("div",{className:"mbsc-flex mbsc-flex-1-1"},ae("div",ne({className:"mbsc-flex mbsc-flex-1-0 mbsc-schedule-grid",ref:l._setGridCont},t),M?N.map(function(n,e){return ae("div",{key:e,className:"mbsc-flex"+w},E.map(function(e,t){return i(n.id,e.dateKey,t,e.timestamp)}))}):E.map(function(n,e){return ae("div",{key:e,className:"mbsc-flex"+w},N.map(function(e,t){return i(e.id,n.dateKey,t,n.timestamp)}))}))))),h&&!e.isTouchDrag&&ae("div",{className:"mbsc-calendar-dragging"}))}var Vo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e,t){return zo(e,t,this)},t}(function(m){function e(){var o=null!==m&&m.apply(this,arguments)||this;return o._onScroll=function(){var e,t,n,a,s,i=o._scrollCont;i&&(e=i.scrollTop,i="translateX("+-i.scrollLeft+"px)",t=o._timeCont,n=o._allDayCont,a=o._headerCont,s=(G?G+"T":"t")+"ransform",n&&(n.style[s]=i),t&&(t.style.marginTop=-e+"px"),a&&(a.style[s]=i),0===e?o.setState({showShadow:!1}):o.state.showShadow||o.setState({showShadow:!0}),o._onMouseMove())},o._setCont=function(e){o._scrollCont=e},o._setTimeCont=function(e){o._timeCont=e},o._setAllDayCont=function(e){o._allDayCont=e},o._setGridCont=function(e){o._gridCont=e},o._setHeaderCont=function(e){o._headerCont=e},o._setCursorTimeCont=function(e){o._cursorTimeCont=e},o}return a(e,m),e.prototype._render=function(e,t){m.prototype._render.call(this,e,t);var n=this._prevS,a=e.timezones,s=this._stepCell/Oe,i=Le(this._startTime/Oe)%s,o=Le(this._endTime/Oe)%s+1;if(a!==n.timezones&&(this._timeWidth=a?{width:4.25*a.length+"em"}:Ee,this._timezones=Ee,a)){for(var r=[],l=0,c=a;l<c.length;l++){var d,h=c[l],u=void 0;u=me(h)?(wn(d=Ve(e,1970,0,1))&&d.setTimezone(h),{label:"UTC"+(0<(d=d.getTimezoneOffset()/60*-1)?"+":"")+d,timezone:h}):h,r.push(u)}this._timezones=r}this._largeDayNames=99<t.dayNameWidth,this._startCellStyle=i%s!=0?{height:(t.cellHeight||50)*((s-i)%s/s)+"px"}:Ee,this._endCellStyle=o%s!=0?{height:(t.cellHeight||50)*(o%s)/s+"px"}:Ee},e}(Fo));function Ro(l,s,d){function P(e){switch(l.resolution){case"week":if(l.renderWeek)return i(e,!1);break;case"month":if(l.renderMonth)return o(e,!1);break;case"year":if(l.renderYear){var t,n,a=e;if(l.renderYear){t=l.renderYear({date:a.date,events:a.eventMap[a.timestamp]||[],isActive:a.isActive});if(me(t)){n=d._safeHtml(t);d._shouldEnhance=true}}else t=a.columnTitle;return ae("div",{"aria-hidden":"true",dangerouslySetInnerHTML:n,className:(a.isActive&&!l.renderYear?" mbsc-timeline-header-active":"")+(l.renderYear?" mbsc-timeline-header-year-cont":" mbsc-timeline-header-year-text")+f},t)}}return e.columnTitle}function F(e){switch(l.resolution){case"week":if(l.renderWeekFooter){var t,n=e;if(l.renderWeekFooter){t=l.renderWeekFooter({date:n.date,endDate:n.endDate,events:n.eventMap[n.timestamp]||[],isActive:n.isActive,startDate:n.date,weekNr:n.weekNr});if(me(t)){r=d._safeHtml(t);d._shouldEnhance=true}}return ae("div",{dangerouslySetInnerHTML:r,className:"mbsc-timeline-footer-week-cont"},t)}break;case"month":if(l.renderMonthFooter){var a,s,n=e;if(l.renderMonthFooter){a=l.renderMonthFooter({date:n.date,events:n.eventMap[n.timestamp]||[],isActive:n.isActive});if(me(a)){s=d._safeHtml(a);d._shouldEnhance=true}}return ae("div",{dangerouslySetInnerHTML:s,className:"mbsc-timeline-footer-month-cont"},a)}break;case"year":if(l.renderYearFooter){var i,o,r=e;if(l.renderYearFooter){i=l.renderYearFooter({date:r.date,events:r.eventMap[r.timestamp]||[],isActive:r.isActive});if(me(i)){o=d._safeHtml(i);d._shouldEnhance=true}}return ae("div",{dangerouslySetInnerHTML:o,className:"mbsc-timeline-footer-year-cont"},i)}}}function z(e,t){var n,a;return d._displayTime&&d._timeLabels[t]&&(l.renderHour?(a=+e.date+t,me(a=l.renderHour({date:new Date(a),events:e.eventMap[a]||[],isActive:e.isActive}))&&(n=d._safeHtml(a),d._shouldEnhance=!0)):a=d._timeLabels[t]),ae("div",{key:t,"aria-hidden":"true",className:"mbsc-timeline-header-time mbsc-flex-1-1"+f,dangerouslySetInnerHTML:n},a)}function V(e,t){var n,a;return l.renderHourFooter&&d._displayTime&&d._timeLabels[t]&&(a=+e.date+t,me(a=l.renderHourFooter({date:new Date(a),events:e.eventMap[a]||[],isActive:e.isActive}))&&(n=d._safeHtml(a),d._shouldEnhance=!0)),ae("div",{key:t,className:"mbsc-timeline-footer-time mbsc-flex-1-1 "+f,dangerouslySetInnerHTML:n},a)}function a(e,t){var n,a;return l.renderDay?me(n=l.renderDay({date:e.date,events:e.eventMap[e.timestamp]||[],isActive:e.isActive}))&&(a=d._safeHtml(n),d._shouldEnhance=!0):n=e.dateText,ae("div",{ref:t?d._setStickyDay:Ee,"aria-hidden":"true",dangerouslySetInnerHTML:a,className:(t?"mbsc-timeline-header-text":"")+(e.isActive&&!l.renderDay?" mbsc-timeline-header-active":"")+(l.renderDay?" mbsc-timeline-header-date-cont":" mbsc-timeline-header-date-text")+f},n)}function i(e,t){var n,a;return l.renderWeek?me(n=l.renderWeek({date:e.date,endDate:e.endDate,events:e.eventMap[e.timestamp]||[],isActive:e.isActive,startDate:e.date,weekNr:e.weekNr}))&&(a=d._safeHtml(n),d._shouldEnhance=!0):n=e.weekText,ae("div",{ref:t?d._setStickyWeek:Ee,"aria-hidden":"true",dangerouslySetInnerHTML:a,className:(t?"mbsc-timeline-header-text":"")+(l.renderWeek?" mbsc-timeline-header-week-cont":" mbsc-timeline-header-week-text")+(e.lastOfWeek?"  mbsc-timeline-header-week-text-last":"")+f},n)}function o(e,t){var n,a;return l.renderMonth?me(n=l.renderMonth({date:e.date,events:e.eventMap[e.timestamp]||[],isActive:e.isActive}))&&(a=d._safeHtml(n),d._shouldEnhance=!0):n=e.monthText,ae("div",{ref:t?d._setStickyMonth:Ee,"aria-hidden":"true",dangerouslySetInnerHTML:a,className:(t?"mbsc-timeline-header-text":"")+(l.renderMonth?" mbsc-timeline-header-month-cont":" mbsc-timeline-header-month-text")+(e.lastOfMonth?" mbsc-timeline-header-month-text-last":"")+f},n)}function R(e,t){var n,a,s=e.isParent,t=(t?t+"-":"")+e.id,i={minHeight:d._rowHeights[t]};return l.renderSidebar&&me(n=l.renderSidebar(e))&&(a=d._safeHtml(n),d._shouldEnhance=!0),t!==d._dragRow&&ae("div",{key:t,className:"mbsc-timeline-sidebar-resource mbsc-timeline-row mbsc-flex-1-0"+(s?" mbsc-timeline-parent mbsc-flex":"")+f+p+_,style:i},ae("div",{className:"mbsc-timeline-sidebar-resource-title",dangerouslySetInnerHTML:a},n))}function A(t,e){var n,a=t.isParent,s=d._hasHierarchy?1.75*t.depth+"em":Ee,e=(e?e+"-":"")+t.id,s={minHeight:d._rowHeights[e],paddingLeft:l.rtl?Ee:s,paddingRight:l.rtl?s:Ee},i=t.name;return l.renderResource&&me(i=l.renderResource(t))&&(n=d._safeHtml(i),d._shouldEnhance=!0),e!==d._dragRow&&ae("div",{key:e,className:"mbsc-timeline-resource mbsc-timeline-row mbsc-flex-1-0"+(a?" mbsc-timeline-parent mbsc-flex":"")+f+p+_,style:s},a&&ae(Ns,{className:"mbsc-timeline-resource-icon"+p+_,svg:t.collapsed?l.rtl?l.nextIconRtl:l.nextIcon:l.downIcon,theme:l.theme,onClick:function(e){return d._onParentClick(e,t)}}),ae("div",{className:"mbsc-timeline-resource-title"+(a?" mbsc-flex-1-1":""),dangerouslySetInnerHTML:n},i))}function c(e,t,n,a,s,i){var e=e[n][Ue][i||"all"],o=[];if(e)for(var r=0,l=e[t];r<l.length;r++){var c=l[r];(s&&Z===c.id||d._batchStart<=c.endDate&&d._batchEnd>c.startDate)&&o.push(c)}return a(o,i||"all",n,Ue)}function W(e){return e.map(function(e,t){return ae("div",{key:t,className:"mbsc-schedule-color mbsc-timeline-color"+e.cssClass+f,style:e.position},ae("div",{className:"mbsc-schedule-color-text"},e.title))})}function U(e){return e.map(function(e,t){return e.position&&ae("div",{key:t,className:"mbsc-schedule-invalid mbsc-timeline-invalid"+e.cssClass+f,style:e.position},ae("div",{className:"mbsc-schedule-invalid-text"},e.title))})}function B(e,t,n,a){var s=d._resourcesMap[n].eventResize,t=n+"__"+a+"__"+t,i=Pa(u&&u.draggedEvent&&u.draggedEvent.original.resize,l.dragToResize,s),o={displayTimezone:l.displayTimezone,drag:l.dragToMove||l.externalDrag,endDay:l.endDay,eventHeight:d._setRowHeight?d._eventHeight:Ee,exclusiveEndDates:l.exclusiveEndDates,gridEndTime:y,gridStartTime:g,hasResY:L,isListing:$,isTimeline:!0,lastDay:+d._lastDay,render:l.renderEvent,renderContent:l.renderEventContent,resource:n,rtl:l.rtl,slot:a,startDay:l.startDay,theme:l.theme,timezonePlugin:l.timezonePlugin};return ae(se,null,e.map(function(e){return ae(Oo,ne({},o,{event:e,inactive:Z===e.id,key:e.uid,resize:Pa(e.original.resize,l.dragToResize,s),selected:!(!l.selectedEventsMap[e.uid]&&!l.selectedEventsMap[e.id]),onClick:l.onEventClick,onDoubleClick:l.onEventDoubleClick,onRightClick:l.onEventRightClick,onHoverIn:l.onEventHoverIn,onHoverOut:l.onEventHoverOut,onDelete:l.onEventDelete,onDragStart:d._onEventDragStart,onDragMove:d._onEventDragMove,onDragEnd:d._onEventDragEnd,onDragModeOn:d._onEventDragModeOn,onDragModeOff:d._onEventDragModeOff}))}),u&&u.originDates&&u.originDates[t]&&ae(Oo,ne({},o,{event:u.originDates[t],hidden:u&&!!u.draggedDates,isDrag:!0,resize:i,onDragStart:d._onEventDragStart,onDragMove:d._onEventDragMove,onDragEnd:d._onEventDragEnd,onDragModeOff:d._onEventDragModeOff})),u&&u.draggedDates&&u.draggedDates[t]&&ae(Oo,ne({},o,{event:u.draggedDates[t],isDrag:!0,resize:i})))}function j(e,t){var r=e.id,n=(t?t+"-":"")+r;return ae("div",{key:n,className:"mbsc-timeline-row mbsc-flex mbsc-flex-1-0"+(e.isParent?" mbsc-timeline-parent":"")+(n===d._dragRow?" mbsc-timeline-hidden":"")+f+_,style:{minHeight:d._rowHeights[n]}},!m&&ae(se,null,ae("div",{className:"mbsc-timeline-events"},c(d._events,"events",r,B,!0,t)),c(d._invalids,"invalids",r,U,void 0,t),c(d._colors,"colors",r,W,void 0,t)),ae("div",{style:{width:d._placeholderSizeX+"px"},className:"mbsc-flex-none"}),w.map(function(e){var o=e.timestamp,a=t||e.dateKey;return I?ae("div",{key:o,className:"mbsc-timeline-day mbsc-flex"+f+p+_+(e.dateIndex<N-1&&(T||e.lastOfMonth)?" mbsc-timeline-day-border":"")+(s.hasScrollX?" mbsc-flex-none":" mbsc-flex-1-0-0")+(Q||d._isMulti?" mbsc-timeline-day-month":"")},x.map(function(e){var i=e.id,e=d._events[r][i][a],t=d._colors[r][i][a],n=d._invalids[r][i][a];return ae("div",{key:i,className:"mbsc-flex mbsc-flex-1-1"+(m?" mbsc-timeline-slot":"")},m&&ae(se,null,ae("div",{className:"mbsc-timeline-events"},B(e?e.events:[],a,r,i)),n&&U(n.invalids),t&&W(t.colors)),v.map(function(e,t){var n=Lo(o,e),e=!t,a=t===v.length-1,s={onDoubleClick:function(e){return l.onCellDoubleClick({date:n,domEvent:e,resource:r,slot:i,source:D})},onContextMenu:function(e){return l.onCellRightClick({date:n,domEvent:e,resource:r,slot:i,source:D})}};return ae("div",ne({key:t,className:"mbsc-timeline-column mbsc-flex-1-1"+f+p+_+(e&&!a&&S||a&&!e&&C?" mbsc-flex-none":""),onClick:function(e){return l.onCellClick({date:n,domEvent:e,resource:r,slot:i,source:D})},style:e&&!a?S:a&&!e?C:Ee},s))}))})):ae("div",{key:o,className:"mbsc-timeline-day mbsc-timeline-column"+f+p+_+(s.hasScrollX?" mbsc-flex-none":" mbsc-flex-1-0-0")})}))}var e,K,t,X,n,J,r,q,G,h,u=s.dragData,Z=u&&u.draggedEvent&&u.draggedEvent.id,m=d._hasSlots,_=d._hb,p=d._rtl,v=d._times,f=d._theme,g=d._startTime,y=d._endTime,b=d._stepLabel,x=d._slots,D="timeline",$=l.eventList,Q="month"===l.type,T=d._stepCell<Cn,S=d._startCellStyle,C=d._endCellStyle,w=d._daysBatch,k={height:s.headerHeight+"px"},M={height:s.footerHeight+"px"},E=d._days,N=d._daysNr,ee=s.dayIndex||0,I=d._isDailyResolution,L=d._hasResY,H=d._hasResources,te=l.renderHourFooter||l.renderDayFooter||l.renderWeekFooter||l.renderMonthFooter||l.renderYearFooter,O=d._hasRows,Y=d._colClass;(G={}).className="mbsc-connections"+f,(h={})[pt]=d._onMouseMove,h[_t]=d._onMouseLeave;return ae("div",{ref:d._setEl,className:"mbsc-timeline mbsc-flex-1-1 mbsc-flex-col"+(s.cellWidth?"":" mbsc-hidden")+(d._hasSticky?" mbsc-has-sticky":"")+(O?"":" mbsc-timeline-no-rows")+(H?"":" mbsc-timeline-no-resource")+f+p},ae("div",{ref:d._setStickyHeader,className:"mbsc-timeline-header-sticky mbsc-flex"+f},O&&ae("div",{className:"mbsc-timeline-resource-header-cont "+Y+f+p+_,style:k},(l.renderResourceHeader&&me(r=l.renderResourceHeader())&&(q=d._safeHtml(r),d._shouldEnhance=!0),ae("div",{className:"mbsc-timeline-resource-header",dangerouslySetInnerHTML:q},r))),I&&ae("div",{className:"mbsc-flex-1-1"},!L&&ae(se,null,d._isMulti&&ae("div",{className:"mbsc-timeline-header-month mbsc-flex"+f+p+_},o(E[ee]||E[0],!0)),l.weekNumbers&&ae("div",{className:"mbsc-timeline-header-week mbsc-flex"+f+p+_},i(E[ee]||E[0],!0)),(m||T)&&ae("div",{className:"mbsc-timeline-header-date mbsc-flex"+f+p+_},a(E[ee]||E[0],!0)))),O&&l.renderSidebar&&ae("div",{className:"mbsc-timeline-sidebar-header-cont mbsc-timeline-sidebar-col"+f+p+_,style:k},(l.renderSidebarHeader&&me(n=l.renderSidebarHeader())&&(J=d._safeHtml(n),d._shouldEnhance=!0),ae("div",{className:"mbsc-timeline-sidebar-header",dangerouslySetInnerHTML:J},n))),s.hasScrollY&&ae("div",{className:"mbsc-schedule-fake-scroll-y"})),te&&ae("div",{ref:d._setStickyFooter,className:"mbsc-timeline-footer-sticky mbsc-flex"+f},O&&ae("div",{className:"mbsc-timeline-resource-footer-cont "+Y+f+p+_,style:M},(l.renderResourceFooter&&me(t=l.renderResourceFooter())&&(X=d._safeHtml(t),d._shouldEnhance=!0),ae("div",{className:"mbsc-timeline-resource-footer",dangerouslySetInnerHTML:X},t))),I&&ae("div",{className:"mbsc-flex-1-1"}),O&&l.renderSidebar&&ae("div",{className:"mbsc-timeline-sidebar-footer-cont mbsc-timeline-sidebar-col"+f+p+_,style:M},(l.renderSidebarFooter&&me(e=l.renderSidebarFooter())&&(K=d._safeHtml(e),d._shouldEnhance=!0),ae("div",{className:"mbsc-timeline-sidebar-footer",dangerouslySetInnerHTML:K},e))),s.hasScrollY&&ae("div",{className:"mbsc-schedule-fake-scroll-y"})),ae("div",{ref:d._setCont,className:"mbsc-timeline-grid-scroll mbsc-flex-col mbsc-flex-1-1"+f+p+_,onScroll:d._onScroll},ae("div",{className:"mbsc-flex-none",style:d._hasSticky?Ee:k}),ae("div",{className:"mbsc-timeline-header mbsc-flex"+f+p+_,ref:d._setHeaderCont},O&&ae("div",{className:"mbsc-timeline-resource-header-cont "+Y+f+p+_}),ae("div",{className:"mbsc-timeline-header-bg mbsc-flex-1-0 mbsc-flex"+f},ae("div",{className:"mbsc-timeline-time-indicator-cont",style:{height:(s.scrollContHeight||0)-(s.headerHeight||0)+"px",width:s.hasScrollX?d._gridWidth+"px":Ee}},d._showTimeIndicator&&ae(Yo,{amText:l.amText,displayedTime:d._time,displayedDays:N,displayTimezone:l.displayTimezone,endDay:l.endDay,firstDay:d._firstDayTz,orientation:"y",pmText:l.pmText,rtl:l.rtl,startDay:l.startDay,startTime:g,theme:l.theme,timeFormat:l.timeFormat,timezonePlugin:l.timezonePlugin,hasResY:L}),d._showCursorTime&&ae("div",{ref:d._setCursorTimeCont,className:"mbsc-schedule-cursor-time mbsc-schedule-cursor-time-y"+f})),ae("div",{className:"mbsc-flex-none",style:{width:d._placeholderSizeX+"px"}}),ae("div",{className:s.hasScrollX?"mbsc-flex-none":"mbsc-flex-1-1"},I?ae(se,null,d._isMulti&&!L&&ae("div",{className:"mbsc-flex"},w.map(function(e){var t=e.lastOfMonth;return ae("div",{key:e.timestamp,className:"mbsc-timeline-month mbsc-flex-1-0-0"+f+p+_+(e.dateIndex<N-1&&t?" mbsc-timeline-day mbsc-timeline-day-border":"")},ae("div",{className:"mbsc-timeline-header-month"+f+p+_+(t?" mbsc-timeline-header-month-last":"")},e.monthTitle&&o(e,!1)))})),l.weekNumbers&&ae("div",{className:"mbsc-flex"},w.map(function(e){var t=e.lastOfWeek;return ae("div",{key:e.timestamp,className:"mbsc-timeline-month mbsc-flex-1-0-0"+f+p+_+(e.dateIndex<N-1&&t&&(T||e.lastOfMonth)?" mbsc-timeline-day mbsc-timeline-day-border":"")},ae("div",{className:"mbsc-timeline-header-week"+f+p+_+(t?" mbsc-timeline-header-week-last":"")},e.weekTitle&&i(e,!1)))})),ae("div",{className:"mbsc-flex"},w.map(function(s){return ae("div",{key:s.timestamp,className:"mbsc-timeline-day mbsc-flex-1-0-0"+f+p+_+(s.dateIndex<N-1&&(T||s.lastOfMonth)?" mbsc-timeline-day-border":"")+(Q||d._isMulti?" mbsc-timeline-day-month":"")},!L&&ae("div",{className:"mbsc-timeline-header-date"+f+p+_},a(s),s.label&&ae("div",{className:"mbsc-hidden-content"},s.label)),m&&ae("div",{className:"mbsc-flex mbsc-timeline-slots"+f},x.map(function(e){return ae("div",{key:e.id,className:"mbsc-timeline-slot mbsc-timeline-slot-header mbsc-flex-1-1"+p+f},e.name&&(e={slot:e,date:s.date},n=e.slot,a=n.name,l.renderSlot&&me(a=l.renderSlot(e))&&(t=d._safeHtml(a),d._shouldEnhance=!0),ae("div",{key:n.id,className:"mbsc-timeline-slot-title",dangerouslySetInnerHTML:t},a)));var t,n,a})),ae("div",{"aria-hidden":"true",className:"mbsc-flex"},v.map(function(n,e){var t=!e,a=e===v.length-1;return ae("div",{key:e,style:t&&!a?S:a&&!t?C:Ee,className:"mbsc-flex mbsc-flex-1-1 mbsc-timeline-header-column"+f+p+_+(!d._displayTime||m?" mbsc-timeline-no-height":"")+(b>d._stepCell&&v[e+1]%b?" mbsc-timeline-no-border":"")+(t&&S||a&&C?" mbsc-flex-none":"")},z(s,n),d._timesBetween.map(function(e,t){t=n+(t+1)*b;return g<t&&t<y&&z(s,t)}))})))}))):ae("div",{className:"mbsc-flex"},w.map(function(e){return ae("div",{key:e.timestamp,className:"mbsc-timeline-day mbsc-flex-1-0-0"+f+p+_},ae("div",{className:"mbsc-timeline-header-week mbsc-timeline-header-week-last"+f+p+_},ae("div",{className:"mbsc-timeline-header-week-text mbsc-timeline-header-week-text-last"+(e.isActive&&!(l.renderWeek||l.renderMonth||l.renderYear)?" mbsc-timeline-header-active":"")+f},P(e))))})))),O&&l.renderSidebar&&ae("div",{className:"mbsc-timeline-sidebar-header-cont mbsc-timeline-sidebar-col"+f+p+_})),ae("div",{className:"mbsc-flex mbsc-flex-1-1"},ae("div",{className:"mbsc-flex mbsc-flex-1-1"},O&&ae("div",{className:"mbsc-timeline-resources mbsc-flex-col "+Y+f+p,ref:d._setResCont},ae("div",{className:"mbsc-flex-none",style:d._hasSideSticky?Ee:k}),ae("div",{className:"mbsc-timeline-resource-bg mbsc-flex-1-1"+(d._hasHierarchy||s.hasScrollY?"":" mbsc-flex-col")+f},ae("div",{style:{height:d._placeholderSizeY+"px"},className:"mbsc-flex-none"}),d._rowBatch.map(function(e){var t=e.day,n=t?t.dateKey:"";return!e.hidden&&t?H?ae("div",{key:n,className:"mbsc-timeline-row-group mbsc-flex mbsc-flex-1-0"+f+_},ae("div",{className:"mbsc-timeline-row-date mbsc-timeline-row-date-col mbsc-flex-none"+p+f+_},a(t)),ae("div",{className:"mbsc-timeline-row-resource-col mbsc-flex-1-1 mbsc-flex-col"},e.rows.map(function(e){return A(e,n)}))):ae("div",{key:n,className:"mbsc-timeline-row-date mbsc-flex-1-0"+p+f+_,style:{minHeight:d._rowHeights[n+"-"+Ue]}},a(t)):e.rows.map(function(e){return A(e,n)})})),ae("div",{className:"mbsc-flex-none",style:d._hasSideSticky?Ee:M})),O&&ae("div",{className:d._hasSideSticky?"":Y}),ae("div",{className:"mbsc-timeline-hidden"},ae("div",{className:"mbsc-timeline-row mbsc-timeline-empty-row"+f}),ae("div",{className:"mbsc-timeline-row mbsc-timeline-parent mbsc-timeline-empty-parent"+f}),ae("div",{className:"mbsc-timeline-row-gutter"+f})),ae("div",ne({className:"mbsc-timeline-grid mbsc-flex-1-0"+(d._hasHierarchy||s.hasScrollY?"":" mbsc-flex-col"),ref:d._setGridCont,style:{height:s.hasScrollY?d._gridHeight+"px":Ee,width:s.hasScrollX?d._gridWidth+"px":Ee}},h),ae("div",{style:{height:d._placeholderSizeY+"px"},className:"mbsc-flex-none"}),d._rowBatch.map(function(e){var t=e.day,n=t?t.dateKey:"";return t&&H?ae("div",{key:n,className:"mbsc-timeline-row-group mbsc-flex-col mbsc-flex-1-0"+f+_},e.rows.map(function(e){return j(e,n)})):ae(se,{key:n},e.rows.map(function(e){return j(e,n)}))}),d._connections&&ae("svg",ne({viewBox:"0 0 100 100",preserveAspectRatio:"none"},G),d._connections.map(function(e){(t={}).className="mbsc-connection "+e.cssClass+f,t.d=e.pathD,t.style={stroke:e.color,fill:e.fill},t["vector-effect"]="non-scaling-stroke";var t;return Ln(d._batchStart,d._batchEnd,e.startDate,e.endDate,!0)&&ae("path",ne({key:e.id},t))}))),O&&l.renderSidebar&&ae("div",{className:"mbsc-timeline-sidebar mbsc-timeline-sidebar-col mbsc-flex-col"+f+p,ref:d._setSidebarCont},ae("div",{className:"mbsc-flex-none",style:d._hasSideSticky?Ee:k}),ae("div",{className:"mbsc-timeline-resource-bg mbsc-flex-1-1"+(d._hasHierarchy||s.hasScrollY?"":" mbsc-flex-col")+f},ae("div",{style:{height:d._placeholderSizeY+"px"},className:"mbsc-flex-none"}),d._rowBatch.map(function(e){var t=e.day,n=t?t.dateKey:"";return t&&H?ae("div",{key:n,className:"mbsc-timeline-row-group mbsc-flex-col mbsc-flex-1-0"+f+_},e.rows.map(function(e){return R(e,n)})):e.rows.map(function(e){return R(e,n)})})),ae("div",{className:"mbsc-flex-none",style:d._hasSideSticky?Ee:M})),O&&l.renderSidebar&&ae("div",{className:d._hasSideSticky?"":"mbsc-timeline-sidebar-col"}))),te&&ae(se,null,ae("div",{className:"mbsc-flex-none",style:d._hasSticky?Ee:M}),ae("div",{className:"mbsc-timeline-footer mbsc-flex"+f+p+_,ref:d._setFooterCont},O&&ae("div",{className:"mbsc-timeline-resource-footer-cont "+Y+f+p+_}),ae("div",{className:"mbsc-timeline-footer-bg mbsc-flex-1-0 mbsc-flex"+f},ae("div",{className:"mbsc-flex-none",style:{width:d._placeholderSizeX+"px"}}),ae("div",{className:s.hasScrollX?"mbsc-flex-none":"mbsc-flex-1-1"},ae("div",{className:"mbsc-flex"},w.map(function(s){return I?ae("div",{key:s.timestamp,className:"mbsc-timeline-day mbsc-flex-1-0-0"+f+p+_+(s.dateIndex<N-1&&(T||s.lastOfMonth)?" mbsc-timeline-day-border":"")+(Q||d._isMulti?" mbsc-timeline-day-month":"")},ae("div",{className:"mbsc-flex"},v.map(function(n,e){var t=!e,a=e===v.length-1;return ae("div",{key:e,style:t&&!a?S:a&&!t?C:Ee,className:"mbsc-flex mbsc-flex-1-1 mbsc-timeline-column mbsc-timeline-footer-column"+f+p+_+(!d._displayTime||m?" mbsc-timeline-no-height":"")+(b>d._stepCell&&v[e+1]%b?"mbsc-timeline-no-border":"")+(t&&!a&&S||a&&!t&&C?" mbsc-flex-none":"")},V(s,n),d._timesBetween.map(function(e,t){t=n+(t+1)*b;return g<t&&t<y&&V(s,t)}))})),l.renderDayFooter&&ae("div",{className:"mbsc-timeline-footer-date"+f+p+_},(e=s,l.renderDayFooter&&me(t=l.renderDayFooter({date:e.date,events:e.eventMap[e.timestamp]||[]}))&&(n=d._safeHtml(t),d._shouldEnhance=!0),ae("div",{className:"mbsc-timeline-footer-date-cont",dangerouslySetInnerHTML:n},t))),m&&ae("div",{className:"mbsc-flex"},x.map(function(e){return ae("div",{key:e.id,className:"mbsc-timeline-slot mbsc-flex-1-1"+p+f})}))):ae("div",{key:s.timestamp,className:"mbsc-timeline-day mbsc-flex-1-0-0"+f+p+_},ae("div",{className:"mbsc-timeline-footer-week mbsc-timeline-footer-week-last"+f+p+_},ae("div",{className:"mbsc-timeline-footer-week-text"+f},F(s))));var e,t,n})))),O&&l.renderSidebar&&ae("div",{className:"mbsc-timeline-sidebar-footer-cont mbsc-timeline-sidebar-col"+f+p+_})))),u&&!s.isTouchDrag&&ae("div",{className:"mbsc-calendar-dragging"}))}var Ao=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e,t){return Ro(e,t,this)},t}(function(z){function e(){var x=null!==z&&z.apply(this,arguments)||this;return x._isTimeline=!0,x._onScroll=function(){for(var s,i,e=x.s.rtl,t=x.state,n=x._gridWidth,a=x._scrollCont,o=a.scrollTop,r=a.scrollLeft,a=x._resCont,l=x._sidebarCont,c=x._footerCont,d=x._headerCont,h=x._stickyHeader,u=x._stickyFooter,m=x._cols.length,_=e?-1:1,p=e?"marginRight":"marginLeft",v=Ie(r*_*(m/x._daysBatchNr)/n),f=0,g=x._virtualPagesY||[],y=0,b=0;b<g.length&&g[b].top-t.scrollContHeight/2<=o;)y=b,b++;je&&!e||(a&&(a.scrollTop=o),l&&(l.scrollTop=o)),h&&je&&((e=h.style).marginTop=o<0?-o+"px":"",e[p]=r*_<0?-r*_+"px":""),u&&je&&((a=u.style).marginTop=o<0?-o+"px":"",a[p]=r*_<0?-r*_+"px":""),n&&((d||c)&&x._isDailyResolution&&(s=x._days,f=Ne(Le(r*_/(i=n/m)),0,m-1),(l=function(e,t){var n,a;e&&i&&(n=e.offsetWidth,e=e.style,a=Ne(Le((r*_+n)/i),0,m-1),s[f][t+"Index"]!==s[a][t+"Index"]?e[p]=-(r*_+n-s[a][t+"Index"]*i+1)+"px":e[p]="")})(x._stickyDate,"date"),l(x._stickyMonth,"month"),l(x._stickyWeek,"week"),je||(c&&(c.scrollLeft=r),d&&(d.scrollLeft=r))),(v!==t.batchIndexX||y!==t.batchIndexY||(x._stickyDate||x._stickyMonth||x._stickyWeek)&&f!==t.dayIndex)&&x.setState({batchIndexX:v,batchIndexY:y,dayIndex:f}),clearTimeout(x._scrollDebounce),x._scrollDebounce=setTimeout(function(){var e;x._isScrolling||x._viewChanged||x._hasResY||(e=r*x._time*x._daysNr/n,x._hook("onActiveChange",{date:new Date(+x._firstDay+e),scroll:!0}))},100),x._onMouseMove())},x._setStickyHeader=function(e){x._stickyHeader=e},x._setStickyFooter=function(e){x._stickyFooter=e},x._setStickyDay=function(e){x._stickyDate=e},x._setStickyMonth=function(e){x._stickyMonth=e},x._setStickyWeek=function(e){x._stickyWeek=e},x._setCont=function(e){x._scrollCont=e},x._setResCont=function(e){x._resCont=e},x._setSidebarCont=function(e){x._sidebarCont=e},x._setGridCont=function(e){x._gridCont=e},x._setHeaderCont=function(e){x._headerCont=e},x._setFooterCont=function(e){x._footerCont=e},x._setCursorTimeCont=function(e){x._cursorTimeCont=e},x}return a(e,z),e.prototype._onParentClick=function(e,t){t.collapsed=!t.collapsed,this._hook(t.collapsed?"onResourceCollapse":"onResourceExpand",{domEvent:e,resource:t.id}),this._visibleResources=this._flattenResources(this.s.resources,[],0),this._shouldCheckSize=!0,this._isParentClick=!0,this.forceUpdate()},e.prototype._render=function(e,t){z.prototype._render.call(this,e,t),clearTimeout(this._scrollDebounce);var n=this._prevS,a=this._eventMap,s=this._resourceTops,i=this._stepCell/Oe,o=Le(this._startTime/Oe)%i,r=Le(this._endTime/Oe)%i+1;if(this._stickyDay=this._days[t.dayIndex||0]||this._days[0],this._startCellStyle=o%i!=0?{width:(t.cellWidth||64)*((i-o)%i/i)+"px"}:Ee,this._endCellStyle=r%i!=0?{width:(t.cellWidth||64)*(r%i)/i+"px"}:Ee,e.connections===n.connections&&e.eventMap===n.eventMap&&e.theme===n.theme&&e.rtl===n.rtl||(this._calcConnections=!0),this._hasSlots&&(this._connections=Ee),this._calcConnections&&!this._hasSlots&&!this._shouldCheckSize&&s){for(var l=[],c=this._eventHeight,o=this._gridWidth,d=t.hasScrollY?this._gridHeight:t.scrollContHeight-t.headerHeight,h=1500/o,u=!0===e.rtl,m=u?-1:1,_=750/o*m,p=400/d*m,P=100*c/d,v=0,F=e.connections||[];v<F.length;v++){var f,g,y,b,x,D,T,S,C,w,k,M,E,N=F[v],I=a[N.from],L=a[N.to],H=N.arrow,O=N.color,Y=N.cssClass||"",N=N.from+"__"+N.to;I&&L&&(C=I.position,k=L.position,f=C.width!==Ee,g=k.width!==Ee,y=I.resource,M=L.resource,(f||g)&&0<=s[y]&&0<=s[M]&&(x=I.endDate,b=(w=(D=L.startDate)<x)?D:x,x=w?x:D,D=C.top||0,E=k.top||0,S=u?"right":"left",T=f?+C[S].replace("%",""):w?100:0,k=g?+k[S].replace("%",""):w?0:100,S=f?+C.width.replace("%",""):0,C=I.resource===L.resource&&w&&E===D,I=k-T-S-2*h,w=(L=s[M]-s[y])<0||!L&&E<D?-1:1,k=100*(L-D*c+E*c+(C?c:0))/d,M=(u?100-T:T)+S*m,L=100*(s[y]+D*c+3+c/2)/d,!f||"from"!==H&&"bidirectional"!==H||l.push({color:O,cssClass:"mbsc-connection-arrow "+Y,endDate:x,fill:O,id:N+"__start",pathD:"M "+M+", "+L+" L "+(M+_)+" "+(L-p)+" L "+(M+_)+" "+(L+p)+" Z",startDate:b}),E="M "+M+", "+L,M+=h*m,k&&(E=E+" H "+M+" V "+(L+=k-(I<0?P/2:0)*w)),M+=I*m,k&&(E+=" H "+M),k&&I<0&&(E+=" V "+(L+=P/2*w*(C?-1:1))),E+=" H "+(M+=h*m),l.push({color:O,cssClass:Y,id:N,pathD:E,startDate:b,endDate:x}),!g||"to"!==H&&"bidirectional"!==H&&!0!==H||l.push({color:O,cssClass:"mbsc-connection-arrow "+Y,endDate:x,fill:O,id:N+"__end",pathD:"M "+M+", "+L+" L "+(M-_)+" "+(L-p)+" L "+(M-_)+" "+(L+p)+" Z",startDate:b})))}this._connections=l,this._calcConnections=!1}},e}(Fo));function Wo(t,n,e,a,s,i,o){var r,l=!t._colorEventList,c=i?"popover":"agenda",d=!i||t.state.showPopover,h=t._theme,u=o?o.eventContent:s.renderEventContent,o=o?o.event:s.renderEvent,u=u?u(n):ae("div",{className:"mbsc-event-text "+h,title:n.tooltip,dangerouslySetInnerHTML:n.html},Ee),o=(me(u)?(u=ae("div",{className:"mbsc-event-content mbsc-flex-1-1 "+h,dangerouslySetInnerHTML:{__html:u}}),t._shouldEnhance=d&&c):u=ae("div",{className:"mbsc-event-content mbsc-flex-1-1 "+h},u),o?o(n):ae(se,null,ae("div",{className:"mbsc-event-color"+h+t._rtl,style:n.style}),u,ae("div",{className:"mbsc-event-time"+h+t._rtl},n.allDayText&&ae("div",{className:"mbsc-event-all-day"+h},n.allDayText),n.lastDay&&ae("div",{className:"mbsc-event-until"+h},n.lastDay),n.start&&ae("div",{className:"mbsc-event-start"+h},n.start),n.start&&n.end&&ae("div",{className:"mbsc-event-sep"+h},"-"),n.end&&ae("div",{className:"mbsc-event-end"+h},n.end))));return me(o)&&(r={__html:o},o=Ee,t._shouldEnhance=d&&c),ae(Co,{className:"mbsc-event"+(l?"":" mbsc-colored-event")+(n.original.cssClass?" "+n.original.cssClass:""),"data-id":n.original.id,key:e,actionable:s.actionableEvents,dangerouslySetInnerHTML:r,data:n.original,drag:i&&t._showEventLabels&&(s.dragToMove||s.externalDrag),rtl:s.rtl,selected:!(!t._selectedEventsMap[n.uid]&&!t._selectedEventsMap[n.id]),style:l?Ee:n.style,theme:s.theme,themeVariant:s.themeVariant,onClick:function(e){return t._onEventClick({date:a,domEvent:e.domEvent,event:n.original,source:c})},onDoubleClick:function(e){return t._onEventDoubleClick({date:a,domEvent:e,event:n.original,source:c})},onContextMenu:function(e){return t._onEventRightClick({date:a,domEvent:e,event:n.original,source:c})},onHoverIn:function(e){e=e.domEvent;return t._onEventHoverIn({date:a,domEvent:e,event:n.original,source:c})},onHoverOut:function(e){e=e.domEvent;return t._onEventHoverOut({date:a,domEvent:e,event:n.original,source:c})},onDelete:t._onEventDelete,onDragEnd:t._onLabelUpdateEnd,onDragModeOff:t._onLabelUpdateModeOff,onDragModeOn:t._onLabelUpdateModeOn,onDragMove:t._onLabelUpdateMove,onDragStart:t._onLabelUpdateStart},o)}function Uo(n,a,s,i){s._listDays||(s._listDays={}),s._showEventList&&(r=s,l=i,t=(o=n).theme,c=r._listDays,e=r.state.eventList||[],h=l?l.agenda:o.renderAgenda,d=l?l.agendaEmpty:o.renderAgendaEmpty,d=h&&r._eventListHTML===Ee?h(e,o,c):(e.length||((d=me(h=d&&d())&&{__html:h})?(u=ae("div",{dangerouslySetInnerHTML:d}),r._shouldEnhance=r._list):u=ae("div",{className:h?"":"mbsc-event-list-empty"+r._theme},h||o.noEventsText)),ae(To,{theme:t,themeVariant:o.themeVariant,rtl:o.rtl},!e.length&&u,e.map(function(n,e){return ae("div",{className:"mbsc-event-group"+r._theme,key:e,ref:function(e){return c[n.timestamp]=e}},("day"!==r._eventListType||1<r._eventListSize)&&ae(So,{theme:t,themeVariant:o.themeVariant,className:"mbsc-event-day"},n.date),n.events.map(function(e,t){return Wo(r,e,t,n.timestamp,o,Ee,l)}))}))),me(d)&&(s._eventListHTML={__html:d},s._shouldLoadDays=!0,s._shouldEnhance=!0,d=Ee));var o,r,l,t,c,e,d,h={amText:n.amText,clickToCreate:n.clickToCreate,dataTimezone:n.dataTimezone,dateFormat:n.dateFormat,dayNames:n.dayNames,dayNamesMin:n.dayNamesMin,dayNamesShort:n.dayNamesShort,displayTimezone:n.displayTimezone,dragBetweenResources:n.dragBetweenResources,dragInTime:n.dragInTime,dragToCreate:n.dragToCreate,dragToResize:n.dragToResize,eventMap:s._eventMap,eventOrder:n.eventOrder,exclusiveEndDates:n.exclusiveEndDates,firstDay:n.firstDay,fromText:n.fromText,getDate:n.getDate,getDay:n.getDay,getMaxDayOfMonth:n.getMaxDayOfMonth,getMonth:n.getMonth,getWeekNumber:n.getWeekNumber,getYear:n.getYear,monthNames:n.monthNames,monthNamesShort:n.monthNamesShort,onActiveChange:s._onActiveChange,onEventDragEnter:s._onEventDragEnter,onEventDragLeave:s._onEventDragLeave,pmText:n.pmText,refDate:s._refDate,renderDay:i?i.day:n.renderDay,rtl:n.rtl,selectedEventsMap:s._selectedEventsMap,showEventTooltip:n.showEventTooltip,theme:n.theme,themeVariant:n.themeVariant,timeFormat:n.timeFormat,timezonePlugin:n.timezonePlugin,toText:n.toText},u=ne({},h,{allDayText:n.allDayText,checkSize:s._checkSize,colorsMap:s._colorsMap,currentTimeIndicator:s._currentTimeIndicator,dateFormatLong:n.dateFormatLong,dragTimeStep:s._dragTimeStep,dragToMove:n.dragToMove,eventDragEnd:s._onEventDragStop,extendDefaultEvent:n.extendDefaultEvent,externalDrag:n.externalDrag,externalDrop:n.externalDrop,groupBy:n.groupBy,height:a.height,invalidateEvent:n.invalidateEvent,invalidsMap:s._invalidsMap,maxDate:s._maxDate,minDate:s._minDate,navigateToEvent:s._navigateToEvent,navigationService:s._navService,newEventText:n.newEventText,onCellClick:s._onCellClick,onCellDoubleClick:s._onCellDoubleClick,onCellRightClick:s._onCellRightClick,onEventClick:s._onEventClick,onEventDelete:s._onEventDelete,onEventDoubleClick:s._onEventDoubleClick,onEventDragEnd:s._onEventDragEnd,onEventDragStart:s._onEventDragStart,onEventHoverIn:s._onEventHoverIn,onEventHoverOut:s._onEventHoverOut,onEventRightClick:s._onEventRightClick,renderEvent:i?i.scheduleEvent:n.renderScheduleEvent,renderEventContent:i?i.scheduleEventContent:n.renderScheduleEventContent,renderResource:i?i.resource:n.renderResource,resources:n.resources,scroll:s._shouldScrollSchedule,selected:s._selectedDateTime,width:a.width});return ae(mi,ne({ref:s._setEl},h,{activeDate:s._active,calendarScroll:s._calendarScroll,calendarType:s._calendarType,colors:n.colors,context:n.context,cssClass:s._cssClass,downIcon:n.downIcon,dragData:a.labelDragData,dragToMove:n.dragToMove||n.externalDrag,endDay:s._rangeEndDay,eventRange:s._rangeType,eventRangeSize:s._showSchedule?s._scheduleSize:s._showTimeline?s._timelineSize:s._eventListSize,hasContent:s._showEventList||s._showSchedule||s._showTimeline,hasPicker:!0,height:n.height,invalid:n.invalid,instanceService:s._instanceService,labels:n.labels,labelList:s._calendarLabelList,labelsMap:s._labelsMap,marked:n.marked,marksMap:s._marksMap,max:n.max,min:n.min,mouseSwipe:!n.dragToCreate&&"single"!==n.clickToCreate||!s._showEventLabels&&!s._showEventCount,mousewheel:n.mousewheel,navigationService:s._navService,nextIconH:n.nextIconH,nextIconV:n.nextIconV,nextPageText:n.nextPageText,noOuterChange:!s._showEventList,onCellHoverIn:s._onCellHoverIn,onCellHoverOut:s._onCellHoverOut,onDayClick:s._onDayClick,onDayDoubleClick:s._onDayDoubleClick,onDayRightClick:s._onDayRightClick,onGestureStart:s._onGestureStart,onLabelClick:s._onLabelClick,onLabelDoubleClick:s._onLabelDoubleClick,onLabelRightClick:s._onLabelRightClick,onLabelHoverIn:s._onLabelHoverIn,onLabelHoverOut:s._onLabelHoverOut,onLabelDelete:s._onEventDelete,onLabelUpdateStart:s._onLabelUpdateStart,onLabelUpdateMove:s._onLabelUpdateMove,onLabelUpdateEnd:s._onLabelUpdateEnd,onLabelUpdateModeOn:s._onLabelUpdateModeOn,onLabelUpdateModeOff:s._onLabelUpdateModeOff,onPageChange:s._onPageChange,onPageLoaded:s._onPageLoaded,onPageLoading:s._onPageLoading,onResize:s._onResize,pageLoad:s._pageLoad,prevIconH:n.prevIconH,prevIconV:n.prevIconV,prevPageText:n.prevPageText,resourcesMap:s._resourcesMap,responsiveStyle:!0,renderHeader:i?i.header:n.renderHeader,renderDayContent:i?i.dayContent:n.renderDayContent,renderLabel:i?i.label:n.renderLabel,renderLabelContent:i?i.labelContent:n.renderLabelContent,selectedDates:s._selectedDates,selectView:j,showCalendar:s._showCalendar,showControls:n.showControls,showLabelCount:s._showEventCount,showOuterDays:s._showOuterDays,showSchedule:s._showSchedule||s._showTimeline,showToday:n.showToday,showWeekNumbers:s._showWeekNumbers,size:s._calendarSize,startDay:s._rangeStartDay,swipe:!a.isTouchDrag,upIcon:n.upIcon,valid:n.valid,weeks:s._calendarSize,width:n.width,eventText:n.eventText,eventsText:n.eventsText,fromText:n.fromText,moreEventsPluralText:n.moreEventsPluralText,moreEventsText:n.moreEventsText,todayText:n.todayText,toText:n.toText,weekText:n.weekText,yearSuffix:n.yearSuffix}),s._showDate&&ae("div",{className:"mbsc-schedule-date-header mbsc-flex"+s._theme+s._hb},s._showSchedule&&!s._showCalendar&&n.resources&&ae("div",{className:"mbsc-schedule-time-col"}),ae("div",{className:"mbsc-schedule-date-header-text mbsc-flex-1-1"+s._theme},s._selectedDateHeader),s._showSchedule&&!s._showCalendar&&n.resources&&ae("div",{className:"mbsc-schedule-fake-scroll-y"})),s._showEventList&&ae("div",{className:"mbsc-flex-1-1 mbsc-event-list"+(a.isListScrollable?" mbsc-event-list-scroll":""),dangerouslySetInnerHTML:s._eventListHTML,onScroll:s._onScroll,ref:s._setList},d),s._showSchedule&&ae(Vo,ne({},u,{endDay:s._scheduleEndDay,endTime:s._scheduleEndTime,renderDayContent:i?i.dayContent:n.renderDayContent,showAllDay:s._showScheduleAllDay,showDays:s._showScheduleDays,size:s._scheduleSize,startDay:s._scheduleStartDay,startTime:s._scheduleStartTime,timeCellStep:s._scheduleTimeCellStep,timeLabelStep:s._scheduleTimeLabelStep,timezones:s._scheduleTimezones,type:s._scheduleType,onWeekDayClick:s._onWeekDayClick})),s._showTimeline&&ae(Ao,ne({},u,{dragToCreate:!n.slots&&n.dragToCreate,dragToResize:!n.slots&&n.dragToResize,downIcon:n.chevronIconDown,connections:n.connections,endDay:s._timelineEndDay,endTime:s._timelineEndTime,eventList:s._timelineListing,nextIcon:n.nextIconH,nextIconRtl:n.prevIconH,onResourceCollapse:s._proxy,onResourceExpand:s._proxy,renderDayFooter:i?i.dayFooter:n.renderDayFooter,renderHour:i?i.hour:n.renderHour,renderHourFooter:i?i.hourFooter:n.renderHourFooter,renderMonth:i?i.month:n.renderMonth,renderMonthFooter:i?i.monthFooter:n.renderMonthFooter,renderWeek:i?i.week:n.renderWeek,renderWeekFooter:i?i.weekFooter:n.renderWeekFooter,renderYear:i?i.year:n.renderYear,renderYearFooter:i?i.yearFooter:n.renderYearFooter,renderResourceFooter:i?i.resourceFooter:n.renderResourceFooter,renderResourceHeader:i?i.resourceHeader:n.renderResourceHeader,renderSidebar:i?i.sidebar:n.renderSidebar,renderSidebarFooter:i?i.sidebarFooter:n.renderSidebarFooter,renderSidebarHeader:i?i.sidebarHeader:n.renderSidebarHeader,renderSlot:i?i.slot:n.renderSlot,resolution:s._timelineResolution,resolutionVertical:s._timelineResolutionVertical,rowHeight:s._timelineRowHeight,weekNumbers:s._showTimelineWeekNumbers,weekText:n.weekText,size:s._timelineSize,slots:n.slots,startDay:s._timelineStartDay,startTime:s._timelineStartTime,timeCellStep:s._timelineTimeCellStep,timeLabelStep:s._timelineTimeLabelStep,type:s._timelineType,virtualScroll:!s._print})),ae(ei,{anchor:s._anchor,closeOnScroll:!0,contentPadding:!1,context:n.context,cssClass:"mbsc-calendar-popup "+s._popoverClass,display:"anchored",isOpen:a.showPopover,locale:n.locale,maxHeight:"24em",onClose:s._onPopoverClose,rtl:n.rtl,scrollLock:!1,showOverlay:!1,theme:n.theme,themeVariant:n.themeVariant},a.popoverList&&ae(To,{ref:s._setPopoverList,theme:n.theme,themeVariant:n.themeVariant,rtl:n.rtl,className:"mbsc-popover-list"},a.popoverList.map(function(e,t){return Wo(s,e,t,a.popoverDate,n,!0,i)}))),a.labelDragData&&a.labelDragData.draggedEvent&&!a.isTouchDrag&&ae("div",{className:"mbsc-calendar-dragging"}))}var Fo=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._instanceService=new ks,e}return a(e,t),e.prototype._template=function(e,t){return Uo(e,t,this)},e}(Do),Bo={before:function(e,t){t.selectedDate&&(t.defaultSelectedDate=t.selectedDate,delete t.selectedDate)}};var jo={before:function(e,t){t.element=e}},Do=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="draggable",t._selector="[mbsc-draggable]",t._renderOpt=jo,t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return e.children||""},t}(vo));var Ko={before:function(e,t){t.element=e}},vo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="dropcontainer",t._selector="[mbsc-dropcontainer]",t._renderOpt=Ko,t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return e.children||""},t}(function(e){function t(){var s=null!==e&&e.apply(this,arguments)||this;return s._onExternalDrag=function(e){function t(){return e.endY<s._elBottom&&e.endY>s._elTop&&e.endX>s._elLeft&&e.endX<s._elRight}var n,a=s.s.element||s._el;switch(e.eventName){case"onDragStart":a&&(n=a.getBoundingClientRect(),s._elTop=n.top,s._elBottom=n.bottom,s._elLeft=n.left,s._elRight=n.right,s._isItemIn=s._isOwner=t());break;case"onDragMove":(n=t())&&!s._isItemIn?s._hook("onItemDragEnter",{clone:e.clone,data:e.event,domEvent:e.domEvent}):!n&&s._isItemIn&&s._hook("onItemDragLeave",{clone:e.clone,data:e.event,domEvent:e.domEvent}),s._isItemIn=n;break;case"onDragEnd":s._isItemIn&&!s._isOwner&&(e.inst&&(e.inst._eventDropped=!0),s._hook("onItemDrop",{clone:e.clone,data:e.event,domEvent:e.domEvent})),s._isItemIn=!1}},s}return a(t,e),t.prototype._mounted=function(){this._unsubscribe=mo(this._onExternalDrag)},t.prototype._destroy=function(){this._unsubscribe&&_o(this._unsubscribe)},t._name="Dropcontainer",t}(t))),Fo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="eventcalendar",t._renderOpt=Bo,t}(Fo),Xo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="button",t._selector="[mbsc-button]",t._renderOpt=Js,t}(Xs);var Jo={hasChildren:!0,parentClass:"mbsc-form-control-label",readProps:["disabled"],renderToParent:!0,before:function(e,t){t.defaultChecked=e.checked}},qo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="checkbox",t._selector="[mbsc-checkbox]",t._renderOpt=Jo,t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),Object.defineProperty(t.prototype,"checked",{get:function(){return this._checked},set:function(e){this._checked=e,this.setState({checked:e})},enumerable:!0,configurable:!0}),t.prototype._template=function(e){return t=this,e=e.children,(i=t.props).children,i.className,i.color,i.defaultChecked,n=i.description,a=i.hasChildren,i.inputStyle,s=i.label,i.modelValue,i.onChange,i.position,i.rtl,i.theme,i.themeVariant,i=K(i,["children","className","color","defaultChecked","description","hasChildren","inputStyle","label","modelValue","onChange","position","rtl","theme","themeVariant"]),ae("label",{className:t._cssClass},ae("input",ne({type:"checkbox",className:"mbsc-form-control-input mbsc-reset",onChange:t._onChange,disabled:t._disabled,checked:t._checked,ref:t._setInput},i)),ae("span",{className:t._boxClass}),(s||a)&&ae("span",{className:"mbsc-form-control-label"+t._theme+(t._disabled?" mbsc-disabled":"")},s),n&&ae("span",{className:"mbsc-description"+t._theme+(t._disabled?" mbsc-disabled":"")},n),e);var t,n,a,s,i},t}(function(e){function t(){var a=null!==e&&e.apply(this,arguments)||this;return a._onChange=function(e){var t=a.s,n=e.target.checked;t.checked===Ee&&a.setState({checked:n}),a._change(n),t.onChange&&t.onChange(e)},a._setInput=function(e){a._input=e},a}return a(t,e),t.prototype._change=function(e){},t.prototype._mounted=function(){var e=this;this._unlisten=zs(this._input,{click:!0,onBlur:function(){e.setState({hasFocus:!1})},onFocus:function(){e.setState({hasFocus:!0})},onPress:function(){e.setState({isActive:!0})},onRelease:function(){e.setState({isActive:!1})}})},t.prototype._render=function(e,t){var n=e.disabled===Ee?t.disabled:_(e.disabled),a="start"===e.position?e.rtl?"right":"left":e.rtl?"left":"right",s=e.modelValue!==Ee?e.modelValue:e.checked;this._disabled=n,this._checked=s!==Ee?_(s):t.checked===Ee?_(e.defaultChecked):t.checked,this._cssClass="mbsc-checkbox mbsc-form-control-wrapper mbsc-font "+this._className+this._theme+this._rtl+this._hb+" mbsc-checkbox-"+a+(n?" mbsc-disabled":""),this._boxClass="mbsc-checkbox-box"+this._theme+" mbsc-checkbox-box-"+a+(t.hasFocus&&!n?" mbsc-focus":"")+(t.isActive&&!n?" mbsc-active":"")+(e.color?" mbsc-checkbox-box-"+e.color:"")+(n?" mbsc-disabled":"")+(this._checked?" mbsc-checked":"")},t.prototype._destroy=function(){this._unlisten&&this._unlisten()},t.defaults={position:"start"},t._name="Checkbox",t}(t))),Go=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._tag="select",e}return a(e,t),e._name="Dropdown",e}(wi),Zo=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._tag="textarea",e}return a(e,t),e._name="Textarea",e}(wi),$o=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="input",t._selector="[mbsc-input]",t._renderOpt=ki,t}(wi),Go=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="dropdown",t._selector="[mbsc-dropdown]",t._renderOpt=Mi,t}(Go),Zo=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="textarea",t._selector="[mbsc-textarea]",t._renderOpt=Ei,t}(Zo),Qo=[],er=[],tr=He&&!!p.Promise;function nr(e,t,n,a,s){return ne({closeOnOverlayClick:!1,context:t.context,cssClass:"mbsc-alert",display:t.display||"center",onClose:function(){e.shift()},onClosed:function(){sr(t,a,s)},theme:t.theme,themeVariant:t.themeVariant},n)}function ar(a,e,t,n){return nr(er,a,{animation:a.animation||(n?"pop":Ee),buttons:[],closeOnOverlayClick:!1,contentPadding:n,cssClass:"mbsc-"+(n?"toast":"snackbar")+" mbsc-"+(a.color||"color-none")+" "+(a.cssClass||""),display:a.display||"bottom",focusOnClose:!1,focusOnOpen:!1,focusTrap:!1,onOpen:function(e,t){var n;n=t,!1!==(t=a).duration&&setTimeout(function(){n.close()},t.duration||3e3)},scrollLock:!1,setActive:!1,showOverlay:!1,touchUi:!0},e,t)}function sr(e,t,n,a){n&&n(a),e.callback&&e.callback(a),e.onClose&&e.onClose(a),Qo.length?Qo[0].open():er.length&&er[0].open(),t&&t()}function ir(e,t,n){return ar(e,t,n,!0)}function or(e,t,n){return ar(e,t,n,!1)}function rr(e,t,n){return nr(Qo,e,{buttons:["ok"],cssClass:"mbsc-alert "+(e.cssClass||""),okText:e.okText||"OK"},t,n)}function lr(e,t,n){var a=!1;return nr(Qo,e,{buttons:["cancel","ok"],cancelText:e.cancelText||"Cancel",cssClass:"mbsc-confirm "+(e.cssClass||""),okText:e.okText||"OK",onButtonClick:function(e){"ok"===e.button.name&&(a=!0)},onClosed:function(){sr(e,t,n,a)}},t,n)}function cr(e,t,n,a){var s;return nr(Qo,e,{activeElm:"input",buttons:["cancel","ok"],cancelText:e.cancelText||"Cancel",cssClass:"mbsc-prompt "+(e.cssClass||""),okText:e.okText||"OK",onButtonClick:function(e){"ok"===e.button.name&&(s=!0)},onClosed:function(){sr(e,t,n,s&&a?a():null)}},t,n)}function dr(e){Qo.length||e.open(),Qo.push(e)}function hr(e){var t=er[0];er.push(e),Qo.length||(t?t.close():e.open())}function ur(t,n){var e;return tr?e=new Promise(function(e){t(n,e)}):t(n,g),e}function mr(e){return ae("div",{className:"mbsc-alert-content"},e.title&&ae("h2",{className:"mbsc-alert-title"},e.title),ae("p",{className:"mbsc-alert-message"}," ",e.message||""," "))}function _r(e,t,n,a,s,i,o){var r;P&&(r=P.createElement("div"),n=n(t,function(){setTimeout(function(){var e;(e=r)._children&&rt(null,e)})},s,o),rt(ae(ei,ne({onInit:function(e,t){i&&i(t),a(t)}},n),e),r))}function pr(e,t){_r(ae("div",{className:"mbsc-toast-background mbsc-toast-message"},e.message||""),e,ir,hr,t)}function vr(e,t){var n,a,s;s=function(){n&&(n.close(),e.button&&e.button.action&&e.button.action())},_r(ae("div",{className:"mbsc-toast-background mbsc-snackbar-cont mbsc-flex"},ae("div",{className:"mbsc-snackbar-message mbsc-flex-1-1"},(a=e).message||""),a.button&&ae(Xs,{className:"mbsc-snackbar-button",icon:a.button.icon,onClick:s,theme:a.theme,themeVariant:a.themeVariant,variant:"flat"},a.button.text)),e,or,hr,t,function(e){n=e})}function fr(e,t){_r(mr(e),e,rr,dr,t)}function gr(e,t){_r(mr(e),e,lr,dr,t)}function yr(e,t){function n(){return o}var a,s,i,o=e.value||"";_r((s=function(e){o=e.target.value},i=n,ae("div",{className:"mbsc-alert-content"},(a=e).title&&ae("h2",{className:"mbsc-alert-title"},a.title),ae("p",{className:"mbsc-alert-message"}," ",a.message||""),ae(wi,{className:"mbsc-prompt-input",label:a.label,onInput:s,placeholder:a.placeholder||"",type:a.inputType,theme:a.theme,themeVariant:a.themeVariant,defaultValue:i()}))),e,cr,dr,t,Ee,n)}var br={hasChildren:!0,parentClass:"mbsc-page",before:function(e,t){t.tag=e.nodeName.toLowerCase()}},xr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="page",t._selector="[mbsc-page]",t._renderOpt=br,t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._template=function(e){return t=this,n=e.children,ae(e.tag||"div",{className:t._cssClass,ref:t._setEl},n);var t,n},t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t.prototype._render=function(e){this._cssClass="mbsc-page mbsc-font "+this._className+this._theme+this._rtl},t.defaults={},t._name="Page",t}(t))),Dr=1;var Tr={hasChildren:!0,parentClass:"mbsc-form-control-label",readAttrs:["value"],readProps:["disabled","name"],renderToParent:!0,before:function(e,t){t.defaultChecked=e.checked}},Sr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="radio",t._selector="[mbsc-radio]",t._renderOpt=Tr,t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),Object.defineProperty(t.prototype,"checked",{get:function(){return this._checked},set:function(e){this._checked=e,this._toggle(e)},enumerable:!0,configurable:!0}),t.prototype._template=function(r,e){var l=this;return ae(zi.Consumer,null,function(e){return t=l,n=r.children,e=e,(o=t.props).children,o.className,o.color,o.defaultChecked,a=o.description,s=o.hasChildren,i=o.label,o.modelValue,o.onChange,o.position,o.rtl,o.theme,o.themeVariant,o=K(o,["children","className","color","defaultChecked","description","hasChildren","label","modelValue","onChange","position","rtl","theme","themeVariant"]),t._groupOptions(e),ae("label",{className:t._cssClass},ae("input",ne({checked:t._checked,className:"mbsc-form-control-input mbsc-reset",disabled:t._disabled,name:t._name,onChange:t._onChange,type:"radio",value:t._value,ref:t._setInput},o)),ae("span",{className:t._boxClass}),(i||s)&&ae("span",{className:"mbsc-form-control-label"+t._theme+(t._disabled?" mbsc-disabled":"")},i),a&&ae("span",{className:"mbsc-description"+t._theme+(t._disabled?" mbsc-disabled":"")},a),n);var t,n,a,s,i,o})},t}(function(e){function t(){var a=null!==e&&e.apply(this,arguments)||this;return a._setInput=function(e){a._input=e},a._onChange=function(e){var t=a.s,n=e.target.checked;a._change(n),a._onGroupChange&&a._onGroupChange(e,a._value),a._toggle(n),t.onChange&&t.onChange(e)},a._onValueChange=function(e){var t=a.s,e=e===a._value;t.checked===Ee&&a.setState({checked:e}),a._change(e)},a}return a(t,e),t.prototype._change=function(e){},t.prototype._groupOptions=function(e){var t=e.color,n=e.disabled,a=e.name,s=e.onChange,i=e.position,o=e.rtl,e=e.value,r=this.s,l=this.state,o=o===Ee?r.rtl:o,t=t===Ee?r.color:t,i="start"===(i===Ee?r.position:i)?r.rtl?"right":"left":r.rtl?"left":"right",n=n===Ee?r.disabled===Ee?l.disabled:_(r.disabled):_(n),c=r.modelValue!==Ee?r.modelValue===r.value:r.checked,c=c!==Ee?_(c):l.checked===Ee?_(r.defaultChecked):l.checked;this._id=r.id===Ee?this._id||"mbsc-radio-"+Dr++:r.id,this._value=r.value===Ee?this._id:r.value,this._onGroupChange=s,this._name=a===Ee?r.name:a,this._rtl=o?" mbsc-rtl":" mbsc-ltr",this._checked=e===Ee?c:e===this._value,this._disabled=n,this._cssClass="mbsc-radio mbsc-form-control-wrapper mbsc-font "+this._className+this._theme+this._rtl+this._hb+" mbsc-radio-"+i+(n?" mbsc-disabled":""),this._boxClass="mbsc-radio-box"+this._theme+" mbsc-radio-box-"+i+(l.hasFocus&&!n?" mbsc-focus":"")+(l.isActive&&!n?" mbsc-active":"")+(t?" mbsc-radio-box-"+t:"")+(n?" mbsc-disabled":"")+(this._checked?" mbsc-checked":"")},t.prototype._mounted=function(){var e=this;this._unlisten=zs(this._input,{click:!0,onBlur:function(){e.setState({hasFocus:!1})},onFocus:function(){e.setState({hasFocus:!0})},onPress:function(){e.setState({isActive:!0})},onRelease:function(){e.setState({isActive:!1})}})},t.prototype._toggle=function(e){this.s.checked===Ee&&this.setState({checked:e}),e&&Wi(this._name,this._value)},t.prototype._updated=function(){this._name&&!this._unsubscribe&&(this._unsubscribe=Ri(this._name,this._onValueChange))},t.prototype._destroy=function(){this._unsubscribe&&Ai(this._name,this._unsubscribe),this._unlisten&&this._unlisten()},t.defaults={position:"start"},t._name="Radio",t}(t))),Cr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="segmented",t._selector="[mbsc-segmented]",t._renderOpt=Ji,t}(Xi),wr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="segmentedGroup",t._selector="[mbsc-segmented-group]",t._renderOpt=qi,t}(ji);var kr={readProps:["disabled","type","min","max","step"],renderToParent:!0,before:function(e,t){var n=e.parentNode,a=P.createElement("div"),t=(n.insertBefore(a,e),a.appendChild(e),t.defaultValue=+e.value,t.inputClass=e.getAttribute("class")||"",P.createElement("div"));n.insertBefore(t,a)}},Mr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="stepper",t._selector="[mbsc-stepper]",t._renderOpt=kr,t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),Object.defineProperty(t.prototype,"value",{get:function(){return this._value},set:function(e){this._value=e,this.setState({value:e})},enumerable:!0,configurable:!0}),t.prototype._template=function(e){return e=e,(s=(t=this).props).children,s.className,s.color,s.defaultValue,n=s.description,s.inputClass,s.inputPosition,a=s.label,s.onChange,s.rtl,s.theme,s.themeVariant,s.value,s=K(s,["children","className","color","defaultValue","description","inputClass","inputPosition","label","onChange","rtl","theme","themeVariant","value"]),i=t._theme,ae("label",{className:t._cssClass,onClick:t._onLabelClick},ae("div",{className:"mbsc-stepper-content"},a&&ae("span",{className:"mbsc-stepper-label"+i+(t._disabled?" mbsc-disabled":"")},a),n&&ae("span",{className:"mbsc-description"+i+(t._disabled?" mbsc-disabled":"")},n)),ae("div",{className:"mbsc-stepper-control mbsc-flex"+i+t._rtl},ae(Xs,{className:"mbsc-stepper-minus mbsc-stepper-button",disabled:t._disabledMinus,onClick:t._onMinusClick,theme:e.theme,themeVariant:e.themeVariant},ae("span",{className:"mbsc-stepper-inner"+i},"–")),ae("input",ne({className:"mbsc-stepper-input"+(t._disabled?" mbsc-disabled":"")+" "+(e.inputClass||"")+i,disabled:t._disabled,max:t._max,min:t._min,ref:t._setInput,step:t._step,type:"number"},s)),ae(Xs,{className:"mbsc-stepper-plus mbsc-stepper-button",disabled:t._disabledPlus,onClick:t._onPlusClick,theme:e.theme,themeVariant:e.themeVariant},ae("span",{className:"mbsc-stepper-inner"+i},"+"))));var t,n,a,s,i},t}(function(e){function t(){var a=null!==e&&e.apply(this,arguments)||this;return a._onChange=function(e){var t=a.s,n=a._round(+e.target.value);e.target.value=n+"",t.value===Ee&&a.setState({value:n}),a._change(n),t.onChange&&t.onChange(e)},a._onMinusClick=function(){a._setValue(a._value-a._step)},a._onPlusClick=function(){a._setValue(a._value+a._step)},a._setInput=function(e){a._input=e},a._onLabelClick=function(e){e.preventDefault()},a}return a(t,e),t.prototype._change=function(e){},t.prototype._mounted=function(){F(this._input,Wa,this._onChange)},t.prototype._render=function(e,t){this._max=Q(e.max)?100:+e.max,this._min=Q(e.min)?0:+e.min,this._step=Q(e.step)?1:+e.step;var n=e.disabled===Ee?t.disabled:_(e.disabled),a=e.defaultValue!==Ee?e.defaultValue:this._min||0,s=e.modelValue!==Ee?e.modelValue:e.value,s=s!==Ee?s:t.value!==Ee?t.value:a;this._value=this._round(s),this._changed=this._value!==+s,this._disabled=n,this._disabledMinus=this._value===this._min||n,this._disabledPlus=this._value===this._max||n,this._cssClass="mbsc-stepper mbsc-form-control-wrapper mbsc-font mbsc-"+(e.color||"color-none")+this._theme+this._rtl+this._hb+" mbsc-stepper-"+e.inputPosition+(n?" mbsc-disabled":"")},t.prototype._updated=function(){this._input.value=this._value+"",this._changed&&(ge(this._input,Wa),this._changed=!1)},t.prototype._destroy=function(){z(this._input,Wa,this._onChange)},t.prototype._round=function(e){var t=this._step,n=Math.abs(t)<1?(t+"").split(".")[1].length:0;return+Math.min(this._max,Math.max(Math.round(e/t)*t,this._min)).toFixed(n)},t.prototype._setValue=function(e){var t=+this._input.value,e=this._round(e);t!==e&&(this._input.value=e+"",ge(this._input,Wa))},t.defaults={inputPosition:"center"},t._name="Stepper",t}(t)));var Er={hasChildren:!0,parentClass:"mbsc-form-control-label",readProps:["disabled"],renderToParent:!0,before:function(e,t){t.defaultChecked=e.checked}},t=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="switch",t._selector="[mbsc-switch]",t._renderOpt=Er,t}(function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),Object.defineProperty(t.prototype,"checked",{get:function(){return this._checked},set:function(e){this._checked=e,this.setState({checked:e})},enumerable:!0,configurable:!0}),t.prototype._template=function(e){return t=this,e=e.children,(i=t.props).children,i.className,i.color,i.defaultChecked,n=i.description,a=i.hasChildren,i.inputStyle,s=i.label,i.modelValue,i.onChange,i.position,i.rtl,i.theme,i.themeVariant,i=K(i,["children","className","color","defaultChecked","description","hasChildren","inputStyle","label","modelValue","onChange","position","rtl","theme","themeVariant"]),ae("label",{className:t._cssClass,ref:t._setEl,onClick:t._onLabelClick},ae("input",ne({type:"checkbox",className:"mbsc-form-control-input mbsc-reset",onChange:g,disabled:t._disabled,checked:t._checked,ref:t._setInput},i)),ae("span",{className:t._handleContClass,ref:t._setHandleCont},ae("span",{className:t._handleClass,ref:t._setHandle})),(s||a)&&ae("span",{className:"mbsc-form-control-label"+t._theme+(t._disabled?" mbsc-disabled":"")},s),n&&ae("span",{className:"mbsc-description"+t._theme+(t._disabled?" mbsc-disabled":"")},n),e);var t,n,a,s,i},t}(function(e){function t(){var a=null!==e&&e.apply(this,arguments)||this;return a._onChange=function(e){var t=a.s,n=e.target.checked;e.stopPropagation(),t.checked===Ee&&a.setState({checked:n}),a._change(n),t.onChange&&t.onChange(e)},a._setInput=function(e){a._input=e},a._setHandleCont=function(e){a._handleCont=e},a._setHandle=function(e){a._handle=e},a._onLabelClick=function(e){e.preventDefault()},a}return a(t,e),t.prototype._change=function(e){},t.prototype._setHandleLeft=function(e){this._handle.style.left=e+"%"},t.prototype._mounted=function(){var s,i,n,o,r,l=this;F(this._input,Ua,this._onChange),this._inputUnlisten=zs(this._input,{onBlur:function(){l.setState({hasFocus:!1})},onFocus:function(){l._disabled||l.setState({hasFocus:!0})}}),this._unlisten=zs(this._el,{click:!1,onEnd:function(e){var t;l._disabled||r||(o&&(e=Math.abs(e.deltaX)<3&&Math.abs(e.deltaY)<3,t=300<+new Date-n,(e=e&&!t?!l._checked:50<=l._handleLeft)!==l._checked&&(l._input.click(),l._change(e)),o=!1),l.setState({dragging:!1,isActive:!1}))},onMove:function(e){var t,n=e.domEvent,a=l.state.dragging;!l._disabled&&!r&&o&&s&&(5<Math.abs(e.deltaX)&&l.setState({dragging:a=!0}),a&&(n.cancelable&&n.preventDefault(),t=(e.startX-i)/s*100,t=Math.max(Math.min(t,100),0)+e.deltaX/s*100,t=Math.max(Math.min(t,100),0),l._handleLeft=t,l._setHandleLeft(t))),!a&&!r&&7<Math.abs(e.deltaY)&&n.type===as&&(r=!0,l.setState({isActive:!1}))},onStart:function(e){l._disabled||(r=!1,s=l._handleCont.clientWidth,i=pe(l._handleCont).left,n=+new Date,e.domEvent.target!==l._handleCont&&!l._handleCont.contains(e.domEvent.target)||(o=!0),l.setState({isActive:!0}))}}),this._setHandleLeft(this._handleLeft)},t.prototype._render=function(e,t){var n=e.disabled===Ee?t.disabled:_(e.disabled),a="start"===e.position?e.rtl?"right":"left":e.rtl?"left":"right",s=e.color!==Ee?" mbsc-switch-"+e.color:"",i=e.modelValue!==Ee?e.modelValue:e.checked;this._disabled=n,this._checked=i!==Ee?_(i):t.checked===Ee?_(e.defaultChecked):t.checked,this._cssClass="mbsc-switch mbsc-form-control-wrapper mbsc-font "+this._className+this._theme+this._rtl+this._hb+" mbsc-switch-"+a+(n?" mbsc-disabled":""),t.dragging||((i=this._checked?100:0)!==this._handleLeft&&this._handle&&this._setHandleLeft(i),this._handleLeft=i),this._handleContClass="mbsc-switch-track mbsc-switch-track-"+a+this._theme+s+(this._checked?" mbsc-checked":"")+(n?" mbsc-disabled":"")+(t.hasFocus?" mbsc-focus":"")+(t.isActive?" mbsc-active":""),this._handleClass="mbsc-switch-handle"+this._theme+s+(t.dragging?"":" mbsc-switch-handle-animate")+(this._checked?" mbsc-checked":"")+(this.state.isActive?" mbsc-active":"")+(n?" mbsc-disabled":"")+(this.state.hasFocus?" mbsc-focus":"")},t.prototype._destroy=function(){z(this._input,Ua,this._onChange),this._unlisten&&this._unlisten(),this._inputUnlisten&&this._inputUnlisten()},t.defaults={position:"end"},t._name="Switch",t}(t))),Nr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a(t,e),t._fname="popup",t._renderOpt=ti,t}(ei),Ir=(n(yn),n(Do),n(vo),n(Fo),n(N),n(H),n(ws),n(E),n(Xo),n(qo),n($o),n(Go),n(Zo),n(xr),n(Sr),n(Cr),n(wr),n(ho),n(Mr),n(t),n(Nr),{init:function(c){c.print=function(e){var n,a,s,t,i,o,r,l;p&&(c._print=!0,c.forceUpdate(),n=p.open("","Print","menubar=no,location=no,resizable=no,scrollbars=no,status=no,width=1024,height=1024"),a=n.document,e=(e||{}).baseUrl||p.location.origin,(t=a.createElement("base")).setAttribute("href",e),a.head.appendChild(t),e=oe(s=c._el),a.title=e.title,t=e.querySelectorAll("style,link"),i=new Map,t.forEach(function(e){var t;"link"===e.nodeName.toLowerCase()&&"stylesheet"!==e.getAttribute("rel")||(t=Lr(a,e),i.set(t,!1),t.onload=function(){return i.delete(t)},a.head.appendChild(t))}),a.body.style.setProperty("display","block","important"),(o=a.createElement("div")).innerHTML="Loading...",a.body.appendChild(o),r=0,l=setInterval(function(){var e,t;(!i.size||300<r)&&(clearInterval(l),e=Lr(a,s),a.body.appendChild(e),a.body.removeChild(o),(t=s.querySelector(".mbsc-timeline-grid-scroll"))&&(e.querySelector(".mbsc-timeline-grid-scroll").scrollLeft=t.scrollLeft),(t=s.querySelector(".mbsc-schedule-grid-scroll"))&&(e.querySelector(".mbsc-schedule-grid-scroll").scrollLeft=t.scrollLeft),a.close(),setTimeout(function(){n.focus(),n.print(),n.close(),c._print=!1,c.forceUpdate()},100)),r++},10))}}});function Lr(t,n){var a=null;return 1===n.nodeType?(a=t.createElement(n.nodeName),function(e){for(var t=[],n=e.attributes,a=0;a<n.length;a++)t.push(n[a].name);return t}(n).forEach(function(e){var t=n.getAttribute(e);t&&a.setAttribute(e,t)})):3===n.nodeType&&(a=t.createTextNode(n.nodeValue)),null!=a&&n.childNodes.forEach(function(e){e=Lr(t,e);e&&a.appendChild(e)}),a}var Hr=He?window:Ee,Or=He&&!!Hr.Promise;function Yr(e,t){if(e&&e(t),Or)return new Promise(function(e){e(t)})}function Pr(e,t){var n=document.createElement("script");n.type="text/javascript",n.src=e,n.onload=t,n.src=e,document.head.appendChild(n)}var r,l,Fr,zr,Vr,Rr,Ar,Wr,Ur,Br,jr=["https://www.googleapis.com/discovery/v1/apis/calendar/v3/rest"],Kr="mbsc_google_session";function Xr(){var e=localStorage.getItem(Kr);if(!Rr&&e)try{var t=JSON.parse(e);Vr=t.expiry,t.refresh&&(Wr=t.refresh),Vr>+new Date?l.client.setToken(t.token):"server"===r.auth&&Wr&&Jr(Wr,!0)}catch(e){}sl.isSignedIn()&&r.onSignedIn&&r.onSignedIn(),r.onInit&&r.onInit()}function Jr(e,t){var n=new XMLHttpRequest;n.open("POST",t?r.refreshUrl:r.authUrl,!0),n.setRequestHeader("Content-Type","application/x-www-form-urlencoded"),n.setRequestHeader("X-Requested-With","XmlHttpRequest"),n.onload=function(){var e=JSON.parse(n.responseText);l.client.setToken(e),Gr(e)},n.send((t?"refresh_token=":"code=")+e)}function qr(e){var t;e&&((t=e.error)?Br&&(Br(t),Br=null):"server"===r.auth?Jr(e.code,!1):Gr(e))}function Gr(e){e.refresh_token&&(Wr=e.refresh_token),Vr=+new Date+1e3*e.expires_in,localStorage.setItem(Kr,JSON.stringify({token:e,expiry:Vr,refresh:Wr})),Ur&&(Ur(),Ur=null),!Ar&&r&&r.onSignedIn&&r.onSignedIn(),Ar=!1}function Zr(){var e={callback:qr,client_id:r.clientId,scope:r.scopes||"https://www.googleapis.com/auth/calendar.events.public.readonly https://www.googleapis.com/auth/calendar.readonly https://www.googleapis.com/auth/calendar.events.owned",ux_mode:"popup"};zr="server"===r.auth?Fr.initCodeClient(e):Fr.initTokenClient(e)}function $r(){return new Promise(function(e,t){Vr&&Vr<+new Date?(Ur=e,Br=t,Ar=!0,"server"===r.auth?Jr(Wr,!0):zr.requestAccessToken({prompt:""})):e()})}function Qr(e,t){var n=r.timezone,a=r.timezonePlugin,s=e.start.date,i=e.end.date,o=!!s,s=s||new Date(e.start.dateTime),i=i||new Date(e.end.dateTime);return n&&a&&!o&&(s=Re(e.start.dateTime,n={displayTimezone:n,timezonePlugin:a}).toISOString(),i=Re(e.end.dateTime,n).toISOString()),{allDay:o,end:i,googleCalendarId:t,id:e.id,start:s,title:e.summary}}var el,tl,nl,al,sl={init:function(e){He&&(Rr=!(r=e).clientId,r.gapi?(l=r.gapi,Xr()):Pr("https://apis.google.com/js/api.js",function(){(l=Hr.gapi).load("client",function(){l.client.init({apiKey:r.apiKey,discoveryDocs:jr}).then(function(){Xr()})})}),Rr||(r.gis?(Fr=r.gis.accounts.oauth2,Zr()):Pr("https://accounts.google.com/gsi/client",function(){Fr=Hr.google.accounts.oauth2,Zr()})))},signIn:function(){return new Promise(function(e,t){var n;l&&l.client?(n=l.client.getToken(),"server"===r.auth?null===n?(Ur=e,Br=t,zr.requestCode()):e():(Ur=e,Br=t,null===n?zr.requestAccessToken({prompt:"consent"}):zr.requestAccessToken({prompt:""}))):t()})},signOut:function(){var e=Promise.resolve();return l&&l.client&&(l.client.setToken(""),localStorage.removeItem(Kr)),r&&r.onSignedOut&&r.onSignedOut(),e},isSignedIn:function(){return l&&l.client&&null!==l.client.getToken()},getCalendars:function(t){return $r().then(function(){return l.client.calendar.calendarList.list()}).then(function(e){return Yr(t,e.result.items)})},getEvents:function(s,i,o,d){return(s=ue(s)?s:[s]).length&&l&&l.client&&l.client.calendar?$r().then(function(){for(var e=l.client.newBatch(),t=0,n=s;t<n.length;t++){var a=n[t];e.add(l.client.calendar.events.list({calendarId:a,singleEvents:!0,timeMax:o.toISOString(),timeMin:i.toISOString()}))}return e.add(l.client.calendar.colors.get()),Rr||e.add(l.client.calendar.calendarList.list()),e}).then(function(e){var t=e.result,e=Object.keys(t).map(function(e){return t[e].result}),s=[],i=[],o=[];e.sort(function(e,t){return e.kind>t.kind?1:-1});for(var n=0,a=e;n<a.length;n++){var r=a[n];if("calendar#colors"===r.kind)i=r.event;else if("calendar#calendarList"===r.kind)o=r.items;else if("calendar#events"===r.kind)for(var l=0,c=r.items;l<c.length;l++)!function(e){var t=e.organizer.email,n=o.find(function(e){return e.id===t}),a=e.extendedProperties?e.extendedProperties.shared:Ee;s.push(ne({},a,Qr(e,t),{color:e.colorId?i[e.colorId].background:Rr||!n?"":n.backgroundColor,editable:!(Rr||!n)&&("writer"===n.accessRole||"owner"===n.accessRole),googleEvent:e}))}(c[l])}return Yr(d,s)}):Yr(d,[])},addEvent:function(n,a,t){return $r().then(function(){a.end,a.id,a.start,a.title;var e=a.googleEvent,t=K(a,["end","id","start","title","googleEvent"]),e=ne({},e,{end:{date:a.allDay?Pe(Re(a.end)):Ee,dateTime:a.allDay?Ee:a.end},extendedProperties:{shared:t},start:{date:a.allDay?Pe(Re(a.start)):Ee,dateTime:a.allDay?Ee:a.start},summary:a.title});return l.client.calendar.events.insert({calendarId:n,resource:e})}).then(function(e){return Yr(t,Qr(e.result,n))})},updateEvent:function(n,a,t){return $r().then(function(){a.end,a.id,a.start,a.title;var e=a.googleEvent,t=K(a,["end","id","start","title","googleEvent"]),e=ne({},e,{allDay:a.allDay,end:{date:a.allDay?Pe(Re(a.end)):Ee,dateTime:a.allDay?Ee:a.end},extendedProperties:{shared:t},start:{date:a.allDay?Pe(Re(a.start)):Ee,dateTime:a.allDay?Ee:a.start},summary:a.title});return l.client.calendar.events.update({calendarId:n,eventId:a.id,resource:e})}).then(function(e){return Yr(t,Qr(e.result,n))})},deleteEvent:function(e,t,n){return $r().then(function(){return l.client.calendar.events.delete({calendarId:e,eventId:t.id})}).then(function(){return Yr(n,t)})}},il={scopes:["user.read","mailboxsettings.read","calendars.readwrite"]},ol={preset0:"#e74856",preset1:"#ff8c22",preset10:"#9faeb2",preset11:"#014b60",preset12:"#b1adab",preset13:"#5d5a58",preset14:"#000000",preset15:"#750b1c",preset16:"#ca5015",preset17:"#ab6214",preset18:"#c19c20",preset19:"#004b1c",preset2:"#ffab45",preset20:"#014b50",preset21:"#0b6a0e",preset22:"#001f50",preset23:"#32145a",preset24:"#5c005c",preset3:"#fff134",preset4:"#47d041",preset5:"#2fc5cc",preset6:"#73aa24",preset7:"#00bcf2",preset8:"#8764b8",preset9:"#f495be"};function rl(){return new tl.PublicClientApplication({auth:{clientId:el.clientId,redirectUri:el.redirectUri||"http://localhost:3000"}})}function ll(e,t){e=new Hr.MSGraphAuthCodeMSALBrowserAuthProvider.AuthCodeMSALBrowserAuthenticationProvider(nl,{account:e,interactionType:tl.InteractionType.PopUp,scopes:t});al=Hr.MicrosoftGraph.Client.initWithMiddleware({authProvider:e})}function cl(e,t){var n=el.timezone,a=el.timezonePlugin,s=e.isAllDay,i=s?e.start.dateTime.split(".")[0]:new Date(e.start.dateTime+"Z"),o=s?e.end.dateTime.split(".")[0]:new Date(e.end.dateTime+"Z");return n&&a&&!s&&(i=Re(e.start.dateTime,n={displayTimezone:n,timezonePlugin:a}).toISOString(),o=Re(e.end.dateTime,n).toISOString()),{allDay:s,end:o,id:e.id,outlookCalendarId:t,start:i,title:e.subject}}function dl(){return""}var hl={init:function(e){He&&((el=e).msal&&e.msalClient?(tl=e.msal,nl=e.msalClient||rl()):Pr("https://cdn.jsdelivr.net/npm/@microsoft/microsoft-graph-client@3.0.0/lib/graph-js-sdk.js",function(){Pr("https://alcdn.msauth.net/browser/2.16.1/js/msal-browser.min.js",function(){tl=Hr.msal,Pr("https://cdn.jsdelivr.net/npm/@microsoft/microsoft-graph-client@3.0.0/lib/graph-client-msalBrowserAuthProvider.js",function(){nl=rl(),hl.isSignedIn()&&(ll(nl.getActiveAccount(),il.scopes),e.onSignedIn&&e.onSignedIn()),e.onInit&&e.onInit()})})}))},signIn:function(){return nl.loginPopup(il).then(function(e){nl.setActiveAccount(e.account),ll(e.account,il.scopes),el.onSignedIn&&el.onSignedIn()})},signOut:function(){return nl.logoutPopup(il).then(function(e){el.onSignedOut&&el.onSignedOut()})},isSignedIn:function(){return!(!nl||!nl.getActiveAccount())},getCalendars:function(t){return al.api("/me/calendars").get().then(function(e){return Yr(t,e.value)})},getEvents:function(n,a,s,i){var e,o,r,l,c;return(n=ue(n)?n:[n]).length?(e=Hr.MicrosoftGraph,r=[],l=[],c=[],(o=[]).push({id:"colors",request:new Request("/me/outlook/masterCategories",{method:"GET"})}),n.forEach(function(e,t){o.push({dependsOn:0===t?["colors"]:["events_"+n[t-1]],id:"calendars_"+t,request:new Request("/me/calendars/"+e,{method:"GET"})},{dependsOn:["calendars_"+t],id:"events_"+n[t],request:new Request("/me/calendars/"+e+"/calendarView/?startDateTime="+a.toISOString()+"&endDateTime="+s.toISOString()+"&$top="+(el.pageSize||1e3),{method:"GET"})})}),new e.BatchRequestContent(o).getContent().then(function(e){return al.api("/$batch").post(e)}).then(function(e){for(var t=function(e){var t=e.id,e=e.body;if("colors"===t)c=e.value;else if(t.includes("calendars"))r.push({canEdit:e.canEdit,hexColor:e.hexColor,id:e.id,name:e.name});else if(t.includes("events"))for(var n=t.replace("events_",""),a=r.find(function(e){return e.id===n}),s=0,i=e.value;s<i.length;s++)!function(t){var e=t.categories?c.find(function(e){return e.displayName===t.categories[0]}):Ee;l.push(ne({},cl(t,n),{color:e?ol[e.color]:a.hexColor,editable:a.canEdit,outlookEvent:t}))}(i[s])},n=0,a=e.responses;n<a.length;n++)t(a[n]);return Yr(i,l)})):Yr(i,[])},addEvent:function(t,e,n){var a=e.allDay,s=a?Pe(Re(e.start)):e.start,i=a?Pe(Re(e.end)):e.end,i=ne({},e.outlookEvent,{end:{dateTime:i,timeZone:el.timezone||"UTC"},isAllDay:a,start:{dateTime:s,timeZone:el.timezone||"UTC"},subject:e.title});return al.api("/me/calendars/"+t+"/events").post(i).then(function(e){return Yr(n,cl(e,t))})},updateEvent:function(t,e,n){var a=e.allDay,s=a&&e.start?Pe(Re(e.start)):e.start,a=a&&e.end?Pe(Re(e.end)):e.end,a=ne({},e.outlookEvent,{end:a?{dateTime:a,timezone:el.timezone||"UTC"}:Ee,isAllDay:e.allDay,start:s?{dateTime:s,timezone:el.timezone||"UTC"}:Ee,subject:e.title});return al.api("/me/calendars/"+t+"/events/"+e.id).update(a).then(function(e){return Yr(n,cl(e,t))})},deleteEvent:function(e,t,n){return al.api("/me/calendars/"+e+"/events/"+t.id).delete().then(function(){return Yr(n,t)})}};Mt("ios-gray","ios",!1),Mt("material-blue","material",!1),Mt("material-indigo","material",!1),Mt("windows-yellow","windows",!1);dl._fname="form",dl._renderOpt={},n(dl),e.Button=Xo,e.CalendarNav=N,e.CalendarNext=H,e.CalendarPrev=ws,e.CalendarToday=E,e.Checkbox=qo,e.Datepicker=yn,e.Draggable=Do,e.Dropcontainer=vo,e.Dropdown=Go,e.Eventcalendar=Fo,e.Input=$o,e.Page=xr,e.Popup=Nr,e.Radio=Sr,e.Segmented=Cr,e.SegmentedGroup=wr,e.Select=ho,e.Stepper=Mr,e.Switch=t,e.Textarea=Zo,e.alert=function(e){return ur(fr,e)},e.autoDetect=Ct,e.confirm=function(e){return ur(gr,e)},e.createCustomTheme=Mt,e.enhance=yt,e.formatDate=Xn,e.getAutoTheme=kt,e.getInst=function(e,t){return t?e.__mbscFormInst:e.__mbscInst},e.getJson=to,e.globalChanges=wt,e.googleCalendarSync=sl,e.hijriCalendar=vn,e.jalaliCalendar=Vt,e.locale=gn,e.localeAr=Ht,e.localeBg=s,e.localeCa=Lt,e.localeCs=w,e.localeDa=Nt,e.localeDe=It,e.localeEl=Ot,e.localeEn=fn,e.localeEnGB=Yt,e.localeEs=I,e.localeFa=Rt,e.localeFi=At,e.localeFr=Wt,e.localeHe=Ut,e.localeHi=Bt,e.localeHr=jt,e.localeHu=Kt,e.localeIt=Xt,e.localeJa=Jt,e.localeKo=qt,e.localeLt=Gt,e.localeNl=Zt,e.localeNo=$t,e.localePl=Qt,e.localePtBR=tn,e.localePtPT=en,e.localeRo=nn,e.localeRu=an,e.localeRuUA=sn,e.localeSk=on,e.localeSr=rn,e.localeSv=ln,e.localeTh=cn,e.localeTr=dn,e.localeUa=hn,e.localeVi=un,e.localeZh=mn,e.luxonTimezone=so,e.momentTimezone=ro,e.options=Tt,e.outlookCalendarSync=hl,e.parseDate=Jn,e.platform=L,e.print=Ir,e.prompt=function(e){return ur(yr,e)},e.registerComponent=n,e.remote=Dn,e.setOptions=function(e){for(var t=0,n=Object.keys(e);t<n.length;t++){var a=n[t];Tt[a]=e[a]}wt.next(Tt)},e.snackbar=function(e){return ur(vr,e)},e.themes=St,e.toast=function(e){return ur(pr,e)},e.updateRecurringEvent=function(e,t,n,a,s,i,o){var r,l,c,d,h,u,m,_=ne({},e),p=null,v=n&&n.start,f=n&&n.end,g=t&&t.start,y=ga(e.recurring);switch(s){case"following":a?(a.recurring&&(r=ga(a.recurring)),delete(p=ne({},a)).id):v&&g&&(r=ya(y,v,g),p=ne({},n)),y.until=Pe(Re(g)),y.count&&(m=t&&t.nr||0,r&&(r.count=y.count-m),y.count=m),v&&r&&(r.from=v),p&&r&&(p.recurring=r),_.recurring=y;break;case"all":a?(v=a.start,f=a.end,_=ne({},a)):n&&v&&f&&g&&(_.allDay=n.allDay,_.recurring=ya(y,v,g)),v&&f&&(m=i&&o?{displayTimezone:i,timezonePlugin:o}:Ee,r=_.allDay?Ee:m,m=e.allDay?Ee:m,x=Re(v,r),l=Re(f,r),c=e.start,d=e.end,h=e.allDay&&!_.allDay,u=c&&Re(c,m),m=g&&Re(g,m),b=l-x,u=u&&m?Ve(r,+u+(m?x-m:0)):x,m=Ve(r,+u+b),Un(c)||!c&&h?_.start=Xn("HH:mm",x):c&&(_.start=r?u.toISOString():u),Un(d)||!d&&h?_.end=Xn("HH:mm",l):d&&(_.end=r?m.toISOString():m));break;default:var b=e.recurringException,x=ue(b)?b.slice():b?[b]:[];g&&x.push(g),_.recurringException=x,p=a||n}return{updatedEvent:_,newEvent:p}},e.util=R,Object.defineProperty(e,"__esModule",{value:!0})});;
mobiscroll.remote?(mobiscroll.remote.apiKey="mbscdemo",mobiscroll.remote.apiUrl=MS.trialUrl||"https://trial.mobiscroll.com/"):(mobiscroll.apiKey="mbscdemo",mobiscroll.apiUrl=MS.trialUrl||"https://trial.mobiscroll.com/");