From b134107316d38389e01b85abe0778a19ea769c9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 16 Oct 2020 14:22:47 +0200 Subject: [PATCH 1/3] Fetch quota with files propfind MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- core/src/files/client.js | 7 +++++++ core/src/files/fileinfo.js | 2 ++ 2 files changed, 9 insertions(+) diff --git a/core/src/files/client.js b/core/src/files/client.js index b4bbb5814a..4e606f4f5a 100644 --- a/core/src/files/client.js +++ b/core/src/files/client.js @@ -82,6 +82,7 @@ import escapeHTML from 'escape-html' Client.PROPERTY_GETCONTENTLENGTH = '{' + Client.NS_DAV + '}getcontentlength' Client.PROPERTY_ISENCRYPTED = '{' + Client.NS_DAV + '}is-encrypted' Client.PROPERTY_SHARE_PERMISSIONS = '{' + Client.NS_OCS + '}share-permissions' + Client.PROPERTY_QUOTA_AVAILABLE_BYTES = '{' + Client.NS_DAV + '}quota-available-bytes' Client.PROTOCOL_HTTP = 'http' Client.PROTOCOL_HTTPS = 'https' @@ -120,6 +121,7 @@ import escapeHTML from 'escape-html' * File sizes */ [Client.NS_DAV, 'getcontentlength'], + [Client.NS_DAV, 'quota-available-bytes'], /** * Preview availability */ @@ -397,6 +399,11 @@ import escapeHTML from 'escape-html' data.mountType = mounTypeProp } + const quotaAvailableBytes = props['{' + Client.NS_DAV + '}quota-available-bytes'] + if (!_.isUndefined(quotaAvailableBytes)) { + data.quotaAvailableBytes = quotaAvailableBytes + } + // extend the parsed data using the custom parsers _.each(this._fileInfoParsers, function(parserFunction) { _.extend(data, parserFunction(response, data) || {}) diff --git a/core/src/files/fileinfo.js b/core/src/files/fileinfo.js index cfa8702c0a..19baad5a2d 100644 --- a/core/src/files/fileinfo.js +++ b/core/src/files/fileinfo.js @@ -139,6 +139,8 @@ * @type int */ sharePermissions: null, + + quotaAvailableBytes: -1, } if (!OC.Files) { From 892bb8cae5dd7d91003467d321d604fec7183800 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 13 Nov 2020 12:46:12 +0100 Subject: [PATCH 2/3] Check for target folder available quota when uploading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl Signed-off-by: Christoph Wurst --- apps/files/js/file-upload.js | 13 ++++++++++--- apps/files/js/filelist.js | 2 ++ apps/files/tests/js/filelistSpec.js | 5 +++++ 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 691131293a..3c0ca31922 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -918,7 +918,7 @@ OC.Uploader.prototype = _.extend({ */ add: function(e, data) { self.log('add', e, data); - var that = $(this), freeSpace; + var that = $(this), freeSpace = 0; var upload = new OC.FileUpload(self, data); // can't link directly due to jQuery not liking cyclic deps on its ajax object @@ -989,13 +989,20 @@ OC.Uploader.prototype = _.extend({ } // check free space - freeSpace = $('#free_space').val(); + if (!self.fileList || upload.getTargetFolder() === self.fileList.getCurrentDirectory()) { + // Use global free space if there is no file list to check or the current directory is the target + freeSpace = $('#free_space').val() + } else if (upload.getTargetFolder().indexOf(self.fileList.getCurrentDirectory()) === 0) { + // Check subdirectory free space if file is uploaded there + var targetSubdir = upload._targetFolder.replace(self.fileList.getCurrentDirectory(), '') + freeSpace = parseInt(upload.uploader.fileList.getModelForFile(targetSubdir).get('quotaAvailableBytes')) + } if (freeSpace >= 0 && selection.totalBytes > freeSpace) { data.textStatus = 'notenoughspace'; data.errorThrown = t('files', 'Not enough free space, you are uploading {size1} but only {size2} is left', { 'size1': OC.Util.humanFileSize(selection.totalBytes), - 'size2': OC.Util.humanFileSize($('#free_space').val()) + 'size2': OC.Util.humanFileSize(freeSpace) }); } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e157b91b04..f2ea902ab9 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1236,6 +1236,7 @@ mtime: parseInt($el.attr('data-mtime'), 10), type: $el.attr('data-type'), etag: $el.attr('data-etag'), + quotaAvailableBytes: $el.attr('data-quota'), permissions: parseInt($el.attr('data-permissions'), 10), hasPreview: $el.attr('data-has-preview') === 'true', isEncrypted: $el.attr('data-e2eencrypted') === 'true' @@ -1495,6 +1496,7 @@ "data-mime": mime, "data-mtime": mtime, "data-etag": fileData.etag, + "data-quota": fileData.quotaAvailableBytes, "data-permissions": permissions, "data-has-preview": fileData.hasPreview !== false, "data-e2eencrypted": fileData.isEncrypted === true diff --git a/apps/files/tests/js/filelistSpec.js b/apps/files/tests/js/filelistSpec.js index ee70a1452a..90861faee5 100644 --- a/apps/files/tests/js/filelistSpec.js +++ b/apps/files/tests/js/filelistSpec.js @@ -2232,6 +2232,7 @@ describe('OCA.Files.FileList tests', function() { type: 'file', size: 12, etag: 'abc', + quotaAvailableBytes: '-1', permissions: OC.PERMISSION_ALL, hasPreview: true, isEncrypted: false @@ -2243,6 +2244,7 @@ describe('OCA.Files.FileList tests', function() { mimetype: 'application/pdf', mtime: 234560000, size: 58009, + quotaAvailableBytes: '-1', etag: '123', permissions: OC.PERMISSION_ALL, hasPreview: true, @@ -2255,6 +2257,7 @@ describe('OCA.Files.FileList tests', function() { mimetype: 'httpd/unix-directory', mtime: 134560000, size: 250, + quotaAvailableBytes: '-1', etag: '456', permissions: OC.PERMISSION_ALL, hasPreview: true, @@ -2278,6 +2281,7 @@ describe('OCA.Files.FileList tests', function() { mtime: 123456789, type: 'file', size: 12, + quotaAvailableBytes: '-1', etag: 'abc', permissions: OC.PERMISSION_ALL, hasPreview: true, @@ -2290,6 +2294,7 @@ describe('OCA.Files.FileList tests', function() { mimetype: 'httpd/unix-directory', mtime: 134560000, size: 250, + quotaAvailableBytes: '-1', etag: '456', permissions: OC.PERMISSION_ALL, hasPreview: true, From 8c7030e0bdf1a5e0fc955151318e61bc09f97f17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 17 Nov 2020 19:47:56 +0100 Subject: [PATCH 3/3] Bump bundles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js | 2 -- apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js.map | 1 - .../js/vue-vendors-settings-apps-9cccd48110cd039530d3.js | 2 -- .../js/vue-vendors-settings-apps-9cccd48110cd039530d3.js.map | 1 - core/js/dist/files_client.js | 2 +- core/js/dist/files_client.js.map | 2 +- core/js/dist/files_fileinfo.js | 2 +- core/js/dist/files_fileinfo.js.map | 2 +- 8 files changed, 4 insertions(+), 10 deletions(-) delete mode 100644 apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js delete mode 100644 apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js.map delete mode 100644 apps/settings/js/vue-vendors-settings-apps-9cccd48110cd039530d3.js delete mode 100644 apps/settings/js/vue-vendors-settings-apps-9cccd48110cd039530d3.js.map diff --git a/apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js b/apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js deleted file mode 100644 index 3a2cd15518..0000000000 --- a/apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js +++ /dev/null @@ -1,2 +0,0 @@ -(window.webpackJsonpSettings=window.webpackJsonpSettings||[]).push([[2],{514:function(t,e,a){var i=a(542);"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);(0,a(128).default)("51b62fff",i,!0,{})},515:function(t,e,a){var i=a(548);"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);(0,a(128).default)("6c7ea551",i,!0,{})},516:function(t,e,a){var i=a(550);"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);(0,a(128).default)("e52a404a",i,!0,{})},517:function(t,e,a){var i=a(552);"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);(0,a(128).default)("38e40412",i,!0,{})},541:function(t,e,a){"use strict";var i=a(514);a.n(i).a},542:function(t,e,a){(e=a(127)(!1)).push([t.i,"\n.force[data-v-5a074e36] {\n\tbackground: var(--color-main-background);\n\tborder-color: var(--color-error);\n\tcolor: var(--color-error);\n}\n.force[data-v-5a074e36]:hover,\n.force[data-v-5a074e36]:active {\n\tbackground: var(--color-error);\n\tborder-color: var(--color-error) !important;\n\tcolor: var(--color-main-background);\n}\n",""]),t.exports=e},547:function(t,e,a){"use strict";var i=a(515);a.n(i).a},548:function(t,e,a){(e=a(127)(!1)).push([t.i,".settings-markdown[data-v-8b4e053e] h1,.settings-markdown[data-v-8b4e053e] h2,.settings-markdown[data-v-8b4e053e] h3,.settings-markdown[data-v-8b4e053e] h4,.settings-markdown[data-v-8b4e053e] h5,.settings-markdown[data-v-8b4e053e] h6{font-weight:600;line-height:120%;margin-top:24px;margin-bottom:12px;color:var(--color-main-text)}.settings-markdown[data-v-8b4e053e] h1{font-size:36px;margin-top:48px}.settings-markdown[data-v-8b4e053e] h2{font-size:28px;margin-top:48px}.settings-markdown[data-v-8b4e053e] h3{font-size:24px}.settings-markdown[data-v-8b4e053e] h4{font-size:21px}.settings-markdown[data-v-8b4e053e] h5{font-size:17px}.settings-markdown[data-v-8b4e053e] h6{font-size:14px}.settings-markdown[data-v-8b4e053e] pre{white-space:pre;overflow-x:auto;background-color:var(--color-background-dark);border-radius:var(--border-radius);padding:1em 1.3em;margin-bottom:1em}.settings-markdown[data-v-8b4e053e] p code{background-color:var(--color-background-dark);border-radius:var(--border-radius);padding:.1em .3em}.settings-markdown[data-v-8b4e053e] li{position:relative}.settings-markdown[data-v-8b4e053e] ul,.settings-markdown[data-v-8b4e053e] ol{padding-left:10px;margin-left:10px}.settings-markdown[data-v-8b4e053e] ul li{list-style-type:disc}.settings-markdown[data-v-8b4e053e] ul>li>ul>li{list-style-type:circle}.settings-markdown[data-v-8b4e053e] ul>li>ul>li ul li{list-style-type:square}.settings-markdown[data-v-8b4e053e] blockquote{padding-left:1em;border-left:4px solid var(--color-primary-element);color:var(--color-text-maxcontrast);margin-left:0;margin-right:0}\n",""]),t.exports=e},549:function(t,e,a){"use strict";var i=a(516);a.n(i).a},550:function(t,e,a){(e=a(127)(!1)).push([t.i,".app-details[data-v-e40a53d2]{padding:20px}.app-details__actions-manage[data-v-e40a53d2]{display:flex}.app-details__actions-manage input[data-v-e40a53d2]{flex:0 1 auto;min-width:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.app-details__dependencies[data-v-e40a53d2]{opacity:.7}.app-details__documentation[data-v-e40a53d2]{padding-top:20px}.app-details__description[data-v-e40a53d2]{padding-top:20px}.force[data-v-e40a53d2]{color:var(--color-error);border-color:var(--color-error);background:var(--color-main-background)}.force[data-v-e40a53d2]:hover,.force[data-v-e40a53d2]:active{color:var(--color-main-background);border-color:var(--color-error) !important;background:var(--color-error)}\n",""]),t.exports=e},551:function(t,e,a){"use strict";var i=a(517);a.n(i).a},552:function(t,e,a){(e=a(127)(!1)).push([t.i,".app-sidebar[data-v-5264f008]:not(.app-sidebar--without-background) :not(.app-sidebar-header--compact) .app-sidebar-header__figure{background-size:cover}.app-sidebar[data-v-5264f008]:not(.app-sidebar--without-background) .app-sidebar-header--compact .app-sidebar-header__figure{background-size:32px;filter:invert(1)}.app-sidebar[data-v-5264f008].app-sidebar--without-background .app-sidebar-header__figure{display:flex;align-items:center;justify-content:center}.app-sidebar[data-v-5264f008].app-sidebar--without-background .app-sidebar-header__figure--default-app-icon{width:32px;height:32px;background-size:32px}.app-sidebar[data-v-5264f008] .app-sidebar-header__desc .app-sidebar-header__subtitle{overflow:visible !important;height:auto;white-space:normal !important;line-height:16px}.app-sidebar[data-v-5264f008] .app-sidebar-header__action{margin:0 20px}.app-sidebar[data-v-5264f008] .app-sidebar-header__action input{margin:3px}.app-sidebar-tabs__release h2[data-v-5264f008]{border-bottom:1px solid var(--color-border)}.app-sidebar-tabs__release[data-v-5264f008] h3{font-size:20px}.app-sidebar-tabs__release[data-v-5264f008] h4{font-size:17px}\n",""]),t.exports=e},553:function(e,a,i){"use strict";i.r(a);var n=i(129),s=i(16),r=i(524),o=i.n(r),p=i(518),c=i.n(p),l=i(519),u=i.n(l),d=i(520),h=i.n(d),g=i(521),v=i.n(g),f=i(538),m=i.n(f),b=i(539),_=i.n(b),y=i(540),w=i.n(y),k=i(522),A=i.n(k),C=i(10),x={name:"AppScore",props:["score"],computed:{scoreImage:function(){var t="rating/s"+Math.round(10*this.score)+".svg";return Object(C.imagePath)("core",t)}}},N=i(36),S=Object(N.a)(x,(function(){var t=this.$createElement;return(this._self._c||t)("img",{staticClass:"app-score-image",attrs:{"src":this.scoreImage}})}),[],!1,null,null,null).exports,D={computed:{appGroups:function(){return this.app.groups.map((function(t){return{id:t,name:t}}))},installing:function(){return this.$store.getters.loading("install")},isLoading:function(){return this.app&&this.$store.getters.loading(this.app.id)},enableButtonText:function(){return this.app.needsDownload?t("settings","Download and enable"):t("settings","Enable")},forceEnableButtonText:function(){return this.app.needsDownload,t("settings","Enable untested app")},enableButtonTooltip:function(){return!!this.app.needsDownload&&t("settings","The app will be downloaded from the app store")},forceEnableButtonTooltip:function(){var e=t("settings","This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected.");return this.app.needsDownload?e+" "+t("settings","The app will be downloaded from the app store"):e}},data:function(){return{groupCheckedAppsData:!1}},mounted:function(){this.app&&this.app.groups&&this.app.groups.length>0&&(this.groupCheckedAppsData=!0)},methods:{asyncFindGroup:function(t){return this.$store.dispatch("getGroups",{search:t,limit:5,offset:0})},isLimitedToGroups:function(t){return!(!this.app.groups.length&&!this.groupCheckedAppsData)},setGroupLimit:function(){this.groupCheckedAppsData||this.$store.dispatch("enableApp",{appId:this.app.id,groups:[]})},canLimitToGroups:function(t){return!(t.types&&t.types.includes("filesystem")||t.types.includes("prelogin")||t.types.includes("authentication")||t.types.includes("logging")||t.types.includes("prevent_group_restriction"))},addGroupLimitation:function(t){var e=this.app.groups.concat([]).concat([t.id]);this.$store.dispatch("enableApp",{appId:this.app.id,groups:e})},removeGroupLimitation:function(t){var e=this.app.groups.concat([]),a=e.indexOf(t.id);a>-1&&e.splice(a,1),this.$store.dispatch("enableApp",{appId:this.app.id,groups:e})},forceEnable:function(t){this.$store.dispatch("forceEnableApp",{appId:t,groups:[]}).then((function(t){OC.Settings.Apps.rebuildNavigation()})).catch((function(t){OC.Notification.show(t)}))},enable:function(t){this.$store.dispatch("enableApp",{appId:t,groups:[]}).then((function(t){OC.Settings.Apps.rebuildNavigation()})).catch((function(t){OC.Notification.show(t)}))},disable:function(t){this.$store.dispatch("disableApp",{appId:t}).then((function(t){OC.Settings.Apps.rebuildNavigation()})).catch((function(t){OC.Notification.show(t)}))},remove:function(t){this.$store.dispatch("uninstallApp",{appId:t}).then((function(t){OC.Settings.Apps.rebuildNavigation()})).catch((function(t){OC.Notification.show(t)}))},install:function(t){this.$store.dispatch("enableApp",{appId:t}).then((function(t){OC.Settings.Apps.rebuildNavigation()})).catch((function(t){OC.Notification.show(t)}))},update:function(t){this.$store.dispatch("updateApp",{appId:t}).then((function(t){OC.Settings.Apps.rebuildNavigation()})).catch((function(t){OC.Notification.show(t)}))}}},L={name:"SvgFilterMixin",data:function(){return{filterId:""}},computed:{filterUrl:function(){return"url(#".concat(this.filterId,")")}},mounted:function(){this.filterId="invertIconApps"+Math.floor(100*Math.random())+(new Date).getSeconds()+(new Date).getMilliseconds()}};function I(t,e,a,i,n,s,r){try{var o=t[s](r),p=o.value}catch(t){return void a(t)}o.done?e(p):Promise.resolve(p).then(i,n)}var T={name:"AppItem",components:{AppScore:S},mixins:[D,Object(N.a)(L,void 0,void 0,!1,null,null,null).exports],props:{app:{},category:{},listView:{type:Boolean,default:!0}},data:function(){return{isSelected:!1,scrolled:!1,screenshotLoaded:!1}},computed:{hasRating:function(){return this.app.appstoreData&&this.app.appstoreData.ratingNumOverall>5}},watch:{"$route.params.id":function(t){this.isSelected=this.app.id===t}},mounted:function(){var t=this;if(this.isSelected=this.app.id===this.$route.params.id,this.app.screenshot){var e=new Image;e.onload=function(e){t.screenshotLoaded=!0},e.src=this.app.screenshot}},watchers:{},methods:{showAppDetails:function(t){var e,a=this;return(e=regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if("INPUT"!==t.currentTarget.tagName&&"A"!==t.currentTarget.tagName){e.next=2;break}return e.abrupt("return");case 2:return e.prev=2,e.next=5,a.$router.push({name:"apps-details",params:{category:a.category,id:a.app.id}});case 5:e.next=9;break;case 7:e.prev=7,e.t0=e.catch(2);case 9:case"end":return e.stop()}}),e,null,[[2,7]])})),function(){var t=this,a=arguments;return new Promise((function(i,n){var s=e.apply(t,a);function r(t){I(s,i,n,r,o,"next",t)}function o(t){I(s,i,n,r,o,"throw",t)}r(void 0)}))})()},prefix:function(t,e){return t+"_"+e}}},$=(i(541),Object(N.a)(T,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"section",class:{selected:t.isSelected},on:{"click":t.showAppDetails}},[a("div",{staticClass:"app-image app-image-icon",on:{"click":t.showAppDetails}},[t.listView&&!t.app.preview||!t.listView&&!t.screenshotLoaded?a("div",{staticClass:"icon-settings-dark"}):t.listView&&t.app.preview?a("svg",{attrs:{"width":"32","height":"32","viewBox":"0 0 32 32"}},[a("defs",[a("filter",{attrs:{"id":t.filterId}},[a("feColorMatrix",{attrs:{"in":"SourceGraphic","type":"matrix","values":"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"}})],1)]),t._v(" "),a("image",{staticClass:"app-icon",attrs:{"x":"0","y":"0","width":"32","height":"32","preserveAspectRatio":"xMinYMin meet","filter":t.filterUrl,"xlink:href":t.app.preview}})]):t._e(),t._v(" "),!t.listView&&t.app.screenshot&&t.screenshotLoaded?a("img",{attrs:{"src":t.app.screenshot,"width":"100%"}}):t._e()]),t._v(" "),a("div",{staticClass:"app-name",on:{"click":t.showAppDetails}},[t._v("\n\t\t"+t._s(t.app.name)+"\n\t")]),t._v(" "),t.listView?t._e():a("div",{staticClass:"app-summary"},[t._v("\n\t\t"+t._s(t.app.summary)+"\n\t")]),t._v(" "),t.listView?a("div",{staticClass:"app-version"},[t.app.version?a("span",[t._v(t._s(t.app.version))]):t.app.appstoreData.releases[0].version?a("span",[t._v(t._s(t.app.appstoreData.releases[0].version))]):t._e()]):t._e(),t._v(" "),a("div",{staticClass:"app-level"},[300===t.app.level?a("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.t("settings","This app is supported via your current Nextcloud subscription."),expression:"t('settings', 'This app is supported via your current Nextcloud subscription.')",modifiers:{"auto":!0}}],staticClass:"supported icon-checkmark-color"},[t._v("\n\t\t\t"+t._s(t.t("settings","Supported")))]):t._e(),t._v(" "),200===t.app.level?a("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.t("settings","Featured apps are developed by and within the community. They offer central functionality and are ready for production use."),expression:"t('settings', 'Featured apps are developed by and within the community. They offer central functionality and are ready for production use.')",modifiers:{"auto":!0}}],staticClass:"official icon-checkmark"},[t._v("\n\t\t\t"+t._s(t.t("settings","Featured")))]):t._e(),t._v(" "),t.hasRating&&!t.listView?a("AppScore",{attrs:{"score":t.app.score}}):t._e()],1),t._v(" "),a("div",{staticClass:"actions"},[t.app.error?a("div",{staticClass:"warning"},[t._v("\n\t\t\t"+t._s(t.app.error)+"\n\t\t")]):t._e(),t._v(" "),t.isLoading?a("div",{staticClass:"icon icon-loading-small"}):t._e(),t._v(" "),t.app.update?a("input",{staticClass:"update primary",attrs:{"type":"button","value":t.t("settings","Update to {update}",{update:t.app.update}),"disabled":t.installing||t.isLoading},on:{"click":function(e){return e.stopPropagation(),t.update(t.app.id)}}}):t._e(),t._v(" "),t.app.canUnInstall?a("input",{staticClass:"uninstall",attrs:{"type":"button","value":t.t("settings","Remove"),"disabled":t.installing||t.isLoading},on:{"click":function(e){return e.stopPropagation(),t.remove(t.app.id)}}}):t._e(),t._v(" "),t.app.active?a("input",{staticClass:"enable",attrs:{"type":"button","value":t.t("settings","Disable"),"disabled":t.installing||t.isLoading},on:{"click":function(e){return e.stopPropagation(),t.disable(t.app.id)}}}):t._e(),t._v(" "),t.app.active||!t.app.canInstall&&!t.app.isCompatible?t.app.active?t._e():a("input",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.forceEnableButtonTooltip,expression:"forceEnableButtonTooltip",modifiers:{"auto":!0}}],staticClass:"enable force",attrs:{"type":"button","value":t.forceEnableButtonText,"disabled":t.installing||t.isLoading},on:{"click":function(e){return e.stopPropagation(),t.forceEnable(t.app.id)}}}):a("input",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.enableButtonTooltip,expression:"enableButtonTooltip",modifiers:{"auto":!0}}],staticClass:"enable",attrs:{"type":"button","value":t.enableButtonText,"disabled":!t.app.canInstall||t.installing||t.isLoading},on:{"click":function(e){return e.stopPropagation(),t.enable(t.app.id)}}})])])}),[],!1,null,"5a074e36",null).exports),O={name:"PrefixMixin",methods:{prefix:function(t,e){return t+"_"+e}}},B=Object(N.a)(O,void 0,void 0,!1,null,null,null).exports,E=i(543),U=i.n(E),M={name:"AppList",components:{AppItem:$},mixins:[B],props:["category","app","search"],computed:{counter:function(){return this.apps.filter((function(t){return t.update})).length},loading:function(){return this.$store.getters.loading("list")},hasPendingUpdate:function(){return this.apps.filter((function(t){return t.update})).length>1},showUpdateAll:function(){return this.hasPendingUpdate&&["installed","updates"].includes(this.category)},apps:function(){var t=this,e=this.$store.getters.getAllApps.filter((function(e){return-1!==e.name.toLowerCase().search(t.search.toLowerCase())})).sort((function(t,e){var a=""+(t.active?0:1)+(t.update?0:1)+t.name,i=""+(e.active?0:1)+(e.update?0:1)+e.name;return OC.Util.naturalSortCompare(a,i)}));return"installed"===this.category?e.filter((function(t){return t.installed})):"enabled"===this.category?e.filter((function(t){return t.active&&t.installed})):"disabled"===this.category?e.filter((function(t){return!t.active&&t.installed})):"app-bundles"===this.category?e.filter((function(t){return t.bundles})):"updates"===this.category?e.filter((function(t){return t.update})):"featured"===this.category?e.filter((function(t){return 200===t.level})):e.filter((function(e){return e.appstore&&void 0!==e.category&&(e.category===t.category||e.category.indexOf(t.category)>-1)}))},bundles:function(){var t=this;return this.$store.getters.getServerData.bundles.filter((function(e){return t.bundleApps(e.id).length>0}))},bundleApps:function(){return function(t){return this.$store.getters.getAllApps.filter((function(e){return void 0!==e.bundleIds&&e.bundleIds.includes(t)}))}},searchApps:function(){var t=this;return""===this.search?[]:this.$store.getters.getAllApps.filter((function(e){return-1!==e.name.toLowerCase().search(t.search.toLowerCase())&&!t.apps.find((function(t){return t.id===e.id}))}))},useAppStoreView:function(){return!this.useListView&&!this.useBundleView},useListView:function(){return"installed"===this.category||"enabled"===this.category||"disabled"===this.category||"updates"===this.category||"featured"===this.category},useBundleView:function(){return"app-bundles"===this.category},allBundlesEnabled:function(){var t=this;return function(e){return 0===t.bundleApps(e).filter((function(t){return!t.active})).length}},bundleToggleText:function(){var e=this;return function(a){return e.allBundlesEnabled(a)?t("settings","Disable all"):t("settings","Enable all")}}},methods:{toggleBundle:function(t){return this.allBundlesEnabled(t)?this.disableBundle(t):this.enableBundle(t)},enableBundle:function(t){var e=this.bundleApps(t).map((function(t){return t.id}));this.$store.dispatch("enableApp",{appId:e,groups:[]}).catch((function(t){console.error(t),OC.Notification.show(t)}))},disableBundle:function(t){var e=this.bundleApps(t).map((function(t){return t.id}));this.$store.dispatch("disableApp",{appId:e,groups:[]}).catch((function(t){OC.Notification.show(t)}))},updateAll:function(){var t=this,e=U()(1);this.apps.filter((function(t){return t.update})).map((function(a){return e((function(){return t.$store.dispatch("updateApp",{appId:a.id})}))}))}}},V=Object(N.a)(M,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{attrs:{"id":"app-content-inner"}},[a("div",{staticClass:"apps-list",class:{installed:t.useBundleView||t.useListView,store:t.useAppStoreView},attrs:{"id":"apps-list"}},[t.useListView?[t.showUpdateAll?a("div",{staticClass:"counter"},[t._v("\n\t\t\t\t"+t._s(t.n("settings","%n app has an update available","%n apps have an update available",t.counter))+"\n\t\t\t\t"),t.showUpdateAll?a("button",{staticClass:"primary",attrs:{"id":"app-list-update-all"},on:{"click":t.updateAll}},[t._v("\n\t\t\t\t\t"+t._s(t.t("settings","Update all"))+"\n\t\t\t\t")]):t._e()]):t._e(),t._v(" "),a("transition-group",{staticClass:"apps-list-container",attrs:{"name":"app-list","tag":"div"}},t._l(t.apps,(function(e){return a("AppItem",{key:e.id,attrs:{"app":e,"category":t.category}})})),1)]:t._e(),t._v(" "),t.useBundleView?a("transition-group",{staticClass:"apps-list-container",attrs:{"name":"app-list","tag":"div"}},[t._l(t.bundles,(function(e){return[a("div",{key:e.id,staticClass:"apps-header"},[a("div",{staticClass:"app-image"}),t._v(" "),a("h2",[t._v(t._s(e.name)+" "),a("input",{attrs:{"type":"button","value":t.bundleToggleText(e.id)},on:{"click":function(a){return t.toggleBundle(e.id)}}})]),t._v(" "),a("div",{staticClass:"app-version"}),t._v(" "),a("div",{staticClass:"app-level"}),t._v(" "),a("div",{staticClass:"app-groups"}),t._v(" "),a("div",{staticClass:"actions"},[t._v("\n\t\t\t\t\t\t \n\t\t\t\t\t")])]),t._v(" "),t._l(t.bundleApps(e.id),(function(i){return a("AppItem",{key:e.id+i.id,attrs:{"app":i,"category":t.category}})}))]}))],2):t._e(),t._v(" "),t.useAppStoreView?t._l(t.apps,(function(e){return a("AppItem",{key:e.id,attrs:{"app":e,"category":t.category,"list-view":!1}})})):t._e()],2),t._v(" "),a("div",{staticClass:"apps-list installed",attrs:{"id":"apps-list-search"}},[a("div",{staticClass:"apps-list-container"},[""!==t.search&&t.searchApps.length>0?[a("div",{staticClass:"section"},[a("div"),t._v(" "),a("td",{attrs:{"colspan":"5"}},[a("h2",[t._v(t._s(t.t("settings","Results from other categories")))])])]),t._v(" "),t._l(t.searchApps,(function(e){return a("AppItem",{key:e.id,attrs:{"app":e,"category":t.category,"list-view":!0}})}))]:t._e()],2)]),t._v(" "),""===t.search||t.loading||0!==t.searchApps.length||0!==t.apps.length?t._e():a("div",{staticClass:"emptycontent emptycontent-search",attrs:{"id":"apps-list-empty"}},[a("div",{staticClass:"icon-settings-dark",attrs:{"id":"app-list-empty-icon"}}),t._v(" "),a("h2",[t._v(t._s(t.t("settings","No apps found for your version")))])]),t._v(" "),a("div",{attrs:{"id":"searchresults"}})])}),[],!1,null,null,null).exports,G=i(179),R=i(545),j=i.n(R),z=i(546),P=i.n(z),F={name:"Markdown",props:{text:{type:String,default:""}},computed:{renderMarkdown:function(){var t=new j.a.Renderer;return t.link=function(t,e,a){var i;try{i=decodeURIComponent(unescape(t)).replace(/[^\w:]/g,"").toLowerCase()}catch(t){return""}if(0!==i.indexOf("http:")&&0!==i.indexOf("https:"))return"";var n='"},t.image=function(t,e,a){return a||e},t.blockquote=function(t){return t},P.a.sanitize(j()(this.text.trim(),{renderer:t,gfm:!1,highlight:!1,tables:!1,breaks:!1,pedantic:!1,sanitize:!0,smartLists:!0,smartypants:!1}),{SAFE_FOR_JQUERY:!0,ALLOWED_TAGS:["h1","h2","h3","h4","h5","h6","strong","p","a","ul","ol","li","em","del","blockquote"]})}}},q=(i(547),Object(N.a)(F,(function(){var t=this.$createElement;return(this._self._c||t)("div",{staticClass:"settings-markdown",domProps:{"innerHTML":this._s(this.renderMarkdown)}})}),[],!1,null,"8b4e053e",null).exports),Q={name:"AppDetails",components:{Multiselect:G.Multiselect,Markdown:q},mixins:[D,B],props:{app:{type:Object,required:!0}},data:function(){return{groupCheckedAppsData:!1}},computed:{appstoreUrl:function(){return"https://apps.nextcloud.com/apps/".concat(this.app.id)},licence:function(){return this.app.licence?t("settings","{license}-licensed",{license:(""+this.app.licence).toUpperCase()}):null},author:function(){return"string"==typeof this.app.author?[{"@value":this.app.author}]:this.app.author["@value"]?[this.app.author]:this.app.author},appGroups:function(){return this.app.groups.map((function(t){return{id:t,name:t}}))},groups:function(){return this.$store.getters.getGroups.filter((function(t){return"disabled"!==t.id})).sort((function(t,e){return t.name.localeCompare(e.name)}))}},mounted:function(){this.app.groups.length>0&&(this.groupCheckedAppsData=!0)}},J=(i(549),Object(N.a)(Q,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"app-details"},[a("div",{staticClass:"app-details__actions"},[t.app.active&&t.canLimitToGroups(t.app)?a("div",{staticClass:"app-details__actions-groups"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.groupCheckedAppsData,expression:"groupCheckedAppsData"}],staticClass:"groups-enable__checkbox checkbox",attrs:{"id":t.prefix("groups_enable",t.app.id),"type":"checkbox"},domProps:{"value":t.app.id,"checked":Array.isArray(t.groupCheckedAppsData)?t._i(t.groupCheckedAppsData,t.app.id)>-1:t.groupCheckedAppsData},on:{"change":[function(e){var a=t.groupCheckedAppsData,i=e.target,n=!!i.checked;if(Array.isArray(a)){var s=t.app.id,r=t._i(a,s);i.checked?r<0&&(t.groupCheckedAppsData=a.concat([s])):r>-1&&(t.groupCheckedAppsData=a.slice(0,r).concat(a.slice(r+1)))}else t.groupCheckedAppsData=n},t.setGroupLimit]}}),t._v(" "),a("label",{attrs:{"for":t.prefix("groups_enable",t.app.id)}},[t._v(t._s(t.t("settings","Limit to groups")))]),t._v(" "),a("input",{staticClass:"group_select",attrs:{"type":"hidden","title":t.t("settings","All"),"value":""}}),t._v(" "),t.isLimitedToGroups(t.app)?a("Multiselect",{staticClass:"multiselect-vue",attrs:{"options":t.groups,"value":t.appGroups,"options-limit":5,"placeholder":t.t("settings","Limit app usage to groups"),"label":"name","track-by":"id","multiple":!0,"close-on-select":!1,"tag-width":60},on:{"select":t.addGroupLimitation,"remove":t.removeGroupLimitation,"search-change":t.asyncFindGroup}},[a("span",{attrs:{"slot":"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])]):t._e()],1):t._e(),t._v(" "),a("div",{staticClass:"app-details__actions-manage"},[t.app.update?a("input",{staticClass:"update primary",attrs:{"type":"button","value":t.t("settings","Update to {version}",{version:t.app.update}),"disabled":t.installing||t.isLoading},on:{"click":function(e){return t.update(t.app.id)}}}):t._e(),t._v(" "),t.app.canUnInstall?a("input",{staticClass:"uninstall",attrs:{"type":"button","value":t.t("settings","Remove"),"disabled":t.installing||t.isLoading},on:{"click":function(e){return t.remove(t.app.id)}}}):t._e(),t._v(" "),t.app.active?a("input",{staticClass:"enable",attrs:{"type":"button","value":t.t("settings","Disable"),"disabled":t.installing||t.isLoading},on:{"click":function(e){return t.disable(t.app.id)}}}):t._e(),t._v(" "),t.app.active||!t.app.canInstall&&!t.app.isCompatible?t.app.active||t.app.canInstall?t._e():a("input",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.forceEnableButtonTooltip,expression:"forceEnableButtonTooltip",modifiers:{"auto":!0}}],staticClass:"enable force",attrs:{"type":"button","value":t.forceEnableButtonText,"disabled":t.installing||t.isLoading},on:{"click":function(e){return t.forceEnable(t.app.id)}}}):a("input",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.enableButtonTooltip,expression:"enableButtonTooltip",modifiers:{"auto":!0}}],staticClass:"enable primary",attrs:{"type":"button","value":t.enableButtonText,"disabled":!t.app.canInstall||t.installing||t.isLoading},on:{"click":function(e){return t.enable(t.app.id)}}})])]),t._v(" "),a("ul",{staticClass:"app-details__dependencies"},[t.app.missingMinOwnCloudVersion?a("li",[t._v("\n\t\t\t"+t._s(t.t("settings","This app has no minimum Nextcloud version assigned. This will be an error in the future."))+"\n\t\t")]):t._e(),t._v(" "),t.app.missingMaxOwnCloudVersion?a("li",[t._v("\n\t\t\t"+t._s(t.t("settings","This app has no maximum Nextcloud version assigned. This will be an error in the future."))+"\n\t\t")]):t._e(),t._v(" "),t.app.canInstall?t._e():a("li",[t._v("\n\t\t\t"+t._s(t.t("settings","This app cannot be installed because the following dependencies are not fulfilled:"))+"\n\t\t\t"),a("ul",{staticClass:"missing-dependencies"},t._l(t.app.missingDependencies,(function(e,i){return a("li",{key:i},[t._v("\n\t\t\t\t\t"+t._s(e)+"\n\t\t\t\t")])})),0)])]),t._v(" "),a("p",{staticClass:"app-details__documentation"},[t.app.internal?t._e():a("a",{staticClass:"appslink",attrs:{"href":t.appstoreUrl,"target":"_blank","rel":"noreferrer noopener"}},[t._v(t._s(t.t("settings","View in store"))+" ↗")]),t._v(" "),t.app.website?a("a",{staticClass:"appslink",attrs:{"href":t.app.website,"target":"_blank","rel":"noreferrer noopener"}},[t._v(t._s(t.t("settings","Visit website"))+" ↗")]):t._e(),t._v(" "),t.app.bugs?a("a",{staticClass:"appslink",attrs:{"href":t.app.bugs,"target":"_blank","rel":"noreferrer noopener"}},[t._v(t._s(t.t("settings","Report a bug"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.user?a("a",{staticClass:"appslink",attrs:{"href":t.app.documentation.user,"target":"_blank","rel":"noreferrer noopener"}},[t._v(t._s(t.t("settings","User documentation"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.admin?a("a",{staticClass:"appslink",attrs:{"href":t.app.documentation.admin,"target":"_blank","rel":"noreferrer noopener"}},[t._v(t._s(t.t("settings","Admin documentation"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.developer?a("a",{staticClass:"appslink",attrs:{"href":t.app.documentation.developer,"target":"_blank","rel":"noreferrer noopener"}},[t._v(t._s(t.t("settings","Developer documentation"))+" ↗")]):t._e()]),t._v(" "),a("Markdown",{staticClass:"app-details__description",attrs:{"text":t.app.description}})],1)}),[],!1,null,"e40a53d2",null).exports);s.default.use(o.a);var Y={name:"Apps",components:{AppContent:c.a,AppDetails:J,AppList:V,AppNavigation:u.a,AppNavigationCounter:h.a,AppNavigationItem:v.a,AppNavigationSpacer:m.a,AppScore:S,AppSidebar:_.a,AppSidebarTab:w.a,Content:A.a,Markdown:q},mixins:[D],props:{category:{type:String,default:"installed"},id:{type:String,default:""}},data:function(){return{searchQuery:"",screenshotLoaded:!1}},computed:{loading:function(){return this.$store.getters.loading("categories")},loadingList:function(){return this.$store.getters.loading("list")},app:function(){var t=this;return this.apps.find((function(e){return e.id===t.id}))},categories:function(){return this.$store.getters.getCategories},apps:function(){return this.$store.getters.getAllApps},updateCount:function(){return this.$store.getters.getUpdateCount},settings:function(){return this.$store.getters.getServerData},hasRating:function(){return this.app.appstoreData&&this.app.appstoreData.ratingNumOverall>5},appSidebar:function(){var e=Array.isArray(this.app.author)?this.app.author[0]["@value"]?this.app.author.map((function(t){return t["@value"]})).join(", "):this.app.author.join(", "):this.app.author["@value"]?this.app.author["@value"]:this.app.author,a=t("settings","{license}-licensed",{license:(""+this.app.licence).toUpperCase()});return{subtitle:t("settings","by {author}\n{license}",{author:e,license:a}),background:this.app.screenshot&&this.screenshotLoaded?this.app.screenshot:this.app.preview,compact:!(this.app.screenshot&&this.screenshotLoaded),title:this.app.name}},changelog:function(){return function(t){return t.translations.en.changelog}}},watch:{category:function(){this.searchQuery=""},app:function(){var t=this;if(this.screenshotLoaded=!1,this.app&&this.app.screenshot){var e=new Image;e.onload=function(e){t.screenshotLoaded=!0},e.src=this.app.screenshot}}},beforeMount:function(){this.$store.dispatch("getCategories"),this.$store.dispatch("getAllApps"),this.$store.dispatch("getGroups",{offset:0,limit:5}),this.$store.commit("setUpdateCount",this.$store.getters.getServerData.updateCount)},mounted:function(){Object(n.subscribe)("nextcloud:unified-search.search",this.setSearch),Object(n.subscribe)("nextcloud:unified-search.reset",this.resetSearch)},beforeDestroy:function(){Object(n.unsubscribe)("nextcloud:unified-search.search",this.setSearch),Object(n.unsubscribe)("nextcloud:unified-search.reset",this.resetSearch)},methods:{setSearch:function(t){var e=t.query;this.searchQuery=e},resetSearch:function(){this.searchQuery=""},hideAppDetails:function(){this.$router.push({name:"apps-category",params:{category:this.category}})}}},H=(i(551),Object(N.a)(Y,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("Content",{class:{"with-app-sidebar":t.app},attrs:{"app-name":"settings","content-class":{"icon-loading":t.loadingList},"navigation-class":{"icon-loading":t.loading}}},[a("AppNavigation",{scopedSlots:t._u([{key:"list",fn:function(){return[a("AppNavigationItem",{attrs:{"id":"app-category-your-apps","to":{name:"apps"},"exact":!0,"icon":"icon-category-installed","title":t.t("settings","Your apps")}}),t._v(" "),a("AppNavigationItem",{attrs:{"id":"app-category-enabled","to":{name:"apps-category",params:{category:"enabled"}},"icon":"icon-category-enabled","title":t.t("settings","Active apps")}}),t._v(" "),a("AppNavigationItem",{attrs:{"id":"app-category-disabled","to":{name:"apps-category",params:{category:"disabled"}},"icon":"icon-category-disabled","title":t.t("settings","Disabled apps")}}),t._v(" "),t.updateCount>0?a("AppNavigationItem",{attrs:{"id":"app-category-updates","to":{name:"apps-category",params:{category:"updates"}},"icon":"icon-download","title":t.t("settings","Updates")}},[a("AppNavigationCounter",{attrs:{"slot":"counter"},slot:"counter"},[t._v("\n\t\t\t\t\t"+t._s(t.updateCount)+"\n\t\t\t\t")])],1):t._e(),t._v(" "),a("AppNavigationItem",{attrs:{"id":"app-category-your-bundles","to":{name:"apps-category",params:{category:"app-bundles"}},"icon":"icon-category-app-bundles","title":t.t("settings","App bundles")}}),t._v(" "),a("AppNavigationSpacer"),t._v(" "),t.settings.appstoreEnabled?[a("AppNavigationItem",{attrs:{"id":"app-category-featured","to":{name:"apps-category",params:{category:"featured"}},"icon":"icon-favorite","title":t.t("settings","Featured apps")}}),t._v(" "),t._l(t.categories,(function(t){return a("AppNavigationItem",{key:"icon-category-"+t.ident,attrs:{"icon":"icon-category-"+t.ident,"to":{name:"apps-category",params:{category:t.ident}},"title":t.displayName}})}))]:t._e(),t._v(" "),a("AppNavigationItem",{attrs:{"id":"app-developer-docs","href":"settings.developerDocumentation","title":t.t("settings","Developer documentation")+" ↗"}})]},proxy:!0}])}),t._v(" "),a("AppContent",{staticClass:"app-settings-content",class:{"icon-loading":t.loadingList}},[a("AppList",{attrs:{"category":t.category,"app":t.app,"search":t.searchQuery}})],1),t._v(" "),t.id&&t.app?a("AppSidebar",t._b({class:{"app-sidebar--without-background":!t.appSidebar.background},on:{"close":t.hideAppDetails},scopedSlots:t._u([t.appSidebar.background?null:{key:"header",fn:function(){return[a("div",{staticClass:"app-sidebar-header__figure--default-app-icon icon-settings-dark"})]},proxy:!0},{key:"primary-actions",fn:function(){return[300===t.app.level||200===t.app.level||t.hasRating?a("div",{staticClass:"app-level"},[300===t.app.level?a("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.t("settings","This app is supported via your current Nextcloud subscription."),expression:"t('settings', 'This app is supported via your current Nextcloud subscription.')",modifiers:{"auto":!0}}],staticClass:"supported icon-checkmark-color"},[t._v("\n\t\t\t\t\t"+t._s(t.t("settings","Supported")))]):t._e(),t._v(" "),200===t.app.level?a("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.t("settings","Featured apps are developed by and within the community. They offer central functionality and are ready for production use."),expression:"t('settings', 'Featured apps are developed by and within the community. They offer central functionality and are ready for production use.')",modifiers:{"auto":!0}}],staticClass:"official icon-checkmark"},[t._v("\n\t\t\t\t\t"+t._s(t.t("settings","Featured")))]):t._e(),t._v(" "),t.hasRating?a("AppScore",{attrs:{"score":t.app.appstoreData.ratingOverall}}):t._e()],1):t._e()]},proxy:!0}],null,!0)},"AppSidebar",t.appSidebar,!1),[t._v(" "),t._v(" "),a("AppSidebarTab",{attrs:{"id":"desc","icon":"icon-category-office","name":t.t("settings","Details"),"order":0}},[a("AppDetails",{attrs:{"app":t.app}})],1),t._v(" "),t.app.appstoreData&&t.app.releases[0].translations.en.changelog?a("AppSidebarTab",{attrs:{"id":"desca","icon":"icon-category-organization","name":t.t("settings","Changelog"),"order":1}},t._l(t.app.releases,(function(e){return a("div",{key:e.version,staticClass:"app-sidebar-tabs__release"},[a("h2",[t._v(t._s(e.version))]),t._v(" "),t.changelog(e)?a("Markdown",{attrs:{"text":t.changelog(e)}}):t._e()],1)})),0):t._e()],1):t._e()],1)}),[],!1,null,"5264f008",null));a.default=H.exports}}]); -//# sourceMappingURL=vue-settings-apps-819bd91780a5b5e34199.js.map?v=0ea1f45836c328632c3c \ No newline at end of file diff --git a/apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js.map b/apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js.map deleted file mode 100644 index 7153d7d01f..0000000000 --- a/apps/settings/js/vue-settings-apps-819bd91780a5b5e34199.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["webpack:///./apps/settings/src/components/AppList/AppItem.vue?b52e","webpack:///./apps/settings/src/components/Markdown.vue?b015","webpack:///./apps/settings/src/components/AppDetails.vue?b2c1","webpack:///./apps/settings/src/views/Apps.vue?9b66","webpack:///./apps/settings/src/components/AppList/AppItem.vue?10a4","webpack:///./apps/settings/src/components/AppList/AppItem.vue?9a64","webpack:///./apps/settings/src/components/Markdown.vue?75ef","webpack:///./apps/settings/src/components/Markdown.vue?999c","webpack:///./apps/settings/src/components/AppDetails.vue?a31f","webpack:///./apps/settings/src/components/AppDetails.vue?8c44","webpack:///./apps/settings/src/views/Apps.vue?58f8","webpack:///./apps/settings/src/views/Apps.vue?dc2c","webpack:///./apps/settings/src/views/Apps.vue?53e4","webpack:///./apps/settings/src/components/AppList/AppScore.vue?5862","webpack:///apps/settings/src/components/AppList/AppScore.vue","webpack:///./apps/settings/src/components/AppList/AppScore.vue","webpack:///./apps/settings/src/components/AppList/AppScore.vue?099a","webpack:///./apps/settings/src/mixins/AppManagement.js","webpack:///./apps/settings/src/components/SvgFilterMixin.vue?0fa6","webpack:///apps/settings/src/components/SvgFilterMixin.vue","webpack:///apps/settings/src/components/AppList/AppItem.vue","webpack:///./apps/settings/src/components/AppList/AppItem.vue?6d51","webpack:///./apps/settings/src/components/SvgFilterMixin.vue","webpack:///./apps/settings/src/components/AppList/AppItem.vue","webpack:///./apps/settings/src/components/AppList/AppItem.vue?2c9b","webpack:///./apps/settings/src/components/PrefixMixin.vue?4fe7","webpack:///apps/settings/src/components/PrefixMixin.vue","webpack:///./apps/settings/src/components/PrefixMixin.vue","webpack:///./apps/settings/src/components/AppList.vue?ff65","webpack:///apps/settings/src/components/AppList.vue","webpack:///./apps/settings/src/components/AppList.vue","webpack:///./apps/settings/src/components/AppList.vue?07ac","webpack:///./apps/settings/src/components/Markdown.vue?9ce5","webpack:///apps/settings/src/components/Markdown.vue","webpack:///./apps/settings/src/components/Markdown.vue","webpack:///./apps/settings/src/components/Markdown.vue?86e3","webpack:///./apps/settings/src/components/AppDetails.vue?0b0a","webpack:///apps/settings/src/components/AppDetails.vue","webpack:///./apps/settings/src/components/AppDetails.vue","webpack:///./apps/settings/src/components/AppDetails.vue?a72b","webpack:///apps/settings/src/views/Apps.vue","webpack:///./apps/settings/src/views/Apps.vue?53fc","webpack:///./apps/settings/src/views/Apps.vue"],"names":["content","module","i","locals","exports","add","default","___CSS_LOADER_API_IMPORT___","push","_h","this","$createElement","_self","_c","staticClass","attrs","scoreImage","computed","appGroups","app","groups","map","group","id","name","installing","$store","getters","loading","isLoading","enableButtonText","needsDownload","t","forceEnableButtonText","enableButtonTooltip","forceEnableButtonTooltip","base","data","groupCheckedAppsData","mounted","length","methods","asyncFindGroup","query","dispatch","search","limit","offset","isLimitedToGroups","setGroupLimit","appId","canLimitToGroups","types","includes","addGroupLimitation","concat","removeGroupLimitation","currentGroups","index","indexOf","splice","forceEnable","then","response","OC","Settings","Apps","rebuildNavigation","catch","error","Notification","show","enable","disable","remove","install","update","_vm","class","selected","isSelected","on","showAppDetails","listView","preview","screenshotLoaded","filterId","_v","filterUrl","_e","screenshot","_s","summary","version","appstoreData","releases","level","directives","rawName","value","expression","modifiers","hasRating","score","$event","stopPropagation","active","canInstall","isCompatible","installed","useBundleView","useListView","store","useAppStoreView","n","counter","updateAll","_l","key","category","bundle","bundleToggleText","toggleBundle","bundleApps","searchApps","apps","domProps","renderMarkdown","prefix","Array","isArray","_i","$$a","$$el","target","$$c","checked","$$v","$$i","slice","slot","dep","internal","appstoreUrl","website","bugs","documentation","user","admin","developer","description","loadingList","scopedSlots","_u","fn","params","updateCount","settings","cat","ident","displayName","proxy","searchQuery","_b","appSidebar","background","hideAppDetails","ratingOverall","translations","en","changelog","release"],"mappings":"6FAGA,IAAIA,EAAU,EAAQ,KACA,iBAAZA,IAAsBA,EAAU,CAAC,CAACC,EAAOC,EAAIF,EAAS,MAC7DA,EAAQG,SAAQF,EAAOG,QAAUJ,EAAQG,SAG/BE,EADH,EAAQ,KAAwEC,SACzE,WAAYN,GAAS,EAAM,K,oBCL5C,IAAIA,EAAU,EAAQ,KACA,iBAAZA,IAAsBA,EAAU,CAAC,CAACC,EAAOC,EAAIF,EAAS,MAC7DA,EAAQG,SAAQF,EAAOG,QAAUJ,EAAQG,SAG/BE,EADH,EAAQ,KAAqEC,SACtE,WAAYN,GAAS,EAAM,K,oBCL5C,IAAIA,EAAU,EAAQ,KACA,iBAAZA,IAAsBA,EAAU,CAAC,CAACC,EAAOC,EAAIF,EAAS,MAC7DA,EAAQG,SAAQF,EAAOG,QAAUJ,EAAQG,SAG/BE,EADH,EAAQ,KAAqEC,SACtE,WAAYN,GAAS,EAAM,K,oBCL5C,IAAIA,EAAU,EAAQ,KACA,iBAAZA,IAAsBA,EAAU,CAAC,CAACC,EAAOC,EAAIF,EAAS,MAC7DA,EAAQG,SAAQF,EAAOG,QAAUJ,EAAQG,SAG/BE,EADH,EAAQ,KAAqEC,SACtE,WAAYN,GAAS,EAAM,K,iCCR5C,oBAAqW,G,qBCErWI,EADkC,EAAQ,IAChCG,EAA4B,IAE9BC,KAAK,CAACP,EAAOC,EAAI,mVAAoV,KAE7WD,EAAOG,QAAUA,G,iCCNjB,oBAA4Y,G,qBCE5YA,EADkC,EAAQ,IAChCG,EAA4B,IAE9BC,KAAK,CAACP,EAAOC,EAAI,gjDAAijD,KAE1kDD,EAAOG,QAAUA,G,iCCNjB,oBAA8Y,G,qBCE9YA,EADkC,EAAQ,IAChCG,EAA4B,IAE9BC,KAAK,CAACP,EAAOC,EAAI,ssBAAusB,KAEhuBD,EAAOG,QAAUA,G,iCCNjB,oBAAwY,G,qBCExYA,EADkC,EAAQ,IAChCG,EAA4B,IAE9BC,KAAK,CAACP,EAAOC,EAAI,moCAAooC,KAE7pCD,EAAOG,QAAUA,G,wCCNjB,I,2LCA0M,EC4B1M,CACA,gBACA,gBACA,UACA,WADA,WAEA,IACA,aADA,0BACA,OACA,wC,QCjBe,EAXC,YACd,GCRW,WAAa,IAAiBK,EAATC,KAAgBC,eAAuC,OAAvDD,KAA0CE,MAAMC,IAAIJ,GAAa,MAAM,CAACK,YAAY,kBAAkBC,MAAM,CAAC,MAA7GL,KAAuHM,gBACnI,IDUpB,EACA,KACA,KACA,M,QESa,GACdC,SAAU,CACTC,UADS,WAER,OAAOR,KAAKS,IAAIC,OAAOC,KAAI,SAAAC,GAAW,MAAO,CAAEC,GAAID,EAAOE,KAAMF,OAEjEG,WAJS,WAKR,OAAOf,KAAKgB,OAAOC,QAAQC,QAAQ,YAEpCC,UAPS,WAQR,OAAOnB,KAAKS,KAAOT,KAAKgB,OAAOC,QAAQC,QAAQlB,KAAKS,IAAII,KAEzDO,iBAVS,WAWR,OAAIpB,KAAKS,IAAIY,cACLC,EAAE,WAAY,uBAEfA,EAAE,WAAY,WAEtBC,sBAhBS,WAiBR,OAAIvB,KAAKS,IAAIY,cACLC,EAAE,WAAY,wBAIvBE,oBAtBS,WAuBR,QAAIxB,KAAKS,IAAIY,eACLC,EAAE,WAAY,kDAIvBG,yBA5BS,WA6BR,IAAMC,EAAOJ,EAAE,WAAY,8KAC3B,OAAItB,KAAKS,IAAIY,cACLK,EAAO,IAAMJ,EAAE,WAAY,iDAE5BI,IAITC,KAtCc,WAuCb,MAAO,CACNC,sBAAsB,IAIxBC,QA5Cc,WA6CT7B,KAAKS,KAAOT,KAAKS,IAAIC,QAAUV,KAAKS,IAAIC,OAAOoB,OAAS,IAC3D9B,KAAK4B,sBAAuB,IAI9BG,QAAS,CACRC,eADQ,SACOC,GACd,OAAOjC,KAAKgB,OAAOkB,SAAS,YAAa,CAAEC,OAAQF,EAAOG,MAAO,EAAGC,OAAQ,KAE7EC,kBAJQ,SAIU7B,GACjB,SAAIT,KAAKS,IAAIC,OAAOoB,SAAU9B,KAAK4B,uBAKpCW,cAVQ,WAWFvC,KAAK4B,sBACT5B,KAAKgB,OAAOkB,SAAS,YAAa,CAAEM,MAAOxC,KAAKS,IAAII,GAAIH,OAAQ,MAGlE+B,iBAfQ,SAeShC,GAChB,QAAKA,EAAIiC,OAASjC,EAAIiC,MAAMC,SAAS,eAChClC,EAAIiC,MAAMC,SAAS,aACnBlC,EAAIiC,MAAMC,SAAS,mBACnBlC,EAAIiC,MAAMC,SAAS,YACnBlC,EAAIiC,MAAMC,SAAS,+BAKzBC,mBAzBQ,SAyBWhC,GAClB,IAAMF,EAASV,KAAKS,IAAIC,OAAOmC,OAAO,IAAIA,OAAO,CAACjC,EAAMC,KACxDb,KAAKgB,OAAOkB,SAAS,YAAa,CAAEM,MAAOxC,KAAKS,IAAII,GAAIH,YAEzDoC,sBA7BQ,SA6BclC,GACrB,IAAMmC,EAAgB/C,KAAKS,IAAIC,OAAOmC,OAAO,IACvCG,EAAQD,EAAcE,QAAQrC,EAAMC,IACtCmC,GAAS,GACZD,EAAcG,OAAOF,EAAO,GAE7BhD,KAAKgB,OAAOkB,SAAS,YAAa,CAAEM,MAAOxC,KAAKS,IAAII,GAAIH,OAAQqC,KAEjEI,YArCQ,SAqCIX,GACXxC,KAAKgB,OAAOkB,SAAS,iBAAkB,CAAEM,QAAO9B,OAAQ,KACtD0C,MAAK,SAACC,GAAeC,GAAGC,SAASC,KAAKC,uBACtCC,OAAM,SAACC,GAAYL,GAAGM,aAAaC,KAAKF,OAE3CG,OA1CQ,SA0CDtB,GACNxC,KAAKgB,OAAOkB,SAAS,YAAa,CAAEM,QAAO9B,OAAQ,KACjD0C,MAAK,SAACC,GAAeC,GAAGC,SAASC,KAAKC,uBACtCC,OAAM,SAACC,GAAYL,GAAGM,aAAaC,KAAKF,OAE3CI,QA/CQ,SA+CAvB,GACPxC,KAAKgB,OAAOkB,SAAS,aAAc,CAAEM,UACnCY,MAAK,SAACC,GAAeC,GAAGC,SAASC,KAAKC,uBACtCC,OAAM,SAACC,GAAYL,GAAGM,aAAaC,KAAKF,OAE3CK,OApDQ,SAoDDxB,GACNxC,KAAKgB,OAAOkB,SAAS,eAAgB,CAAEM,UACrCY,MAAK,SAACC,GAAeC,GAAGC,SAASC,KAAKC,uBACtCC,OAAM,SAACC,GAAYL,GAAGM,aAAaC,KAAKF,OAE3CM,QAzDQ,SAyDAzB,GACPxC,KAAKgB,OAAOkB,SAAS,YAAa,CAAEM,UAClCY,MAAK,SAACC,GAAeC,GAAGC,SAASC,KAAKC,uBACtCC,OAAM,SAACC,GAAYL,GAAGM,aAAaC,KAAKF,OAE3CO,OA9DQ,SA8DD1B,GACNxC,KAAKgB,OAAOkB,SAAS,YAAa,CAAEM,UAClCY,MAAK,SAACC,GAAeC,GAAGC,SAASC,KAAKC,uBACtCC,OAAM,SAACC,GAAYL,GAAGM,aAAaC,KAAKF,SC1I6J,ECuB1M,CACA,sBACA,KAFA,WAGA,OACA,cAGA,UACA,UADA,WAEA,0CAGA,QAZA,WAaA,oH,yHC6EA,ICjHyM,EDiHzM,CACA,eACA,YACA,YAEA,UE/GgB,YACd,OARE,OAAQ,GAWV,EACA,KACA,KACA,M,SFyGF,OACA,OACA,YACA,UACA,aACA,aAGA,KAdA,WAeA,OACA,cACA,YACA,sBAGA,UACA,UADA,WAEA,yEAGA,OACA,mBADA,SACA,GACA,kCAGA,QA/BA,WA+BA,WAEA,GADA,oDACA,qBACA,gBACA,qBACA,uBAEA,4BAGA,YAGA,SACA,eADA,SACA,O,EAAA,c,EAAA,yHACA,iEADA,0EAKA,gBACA,oBACA,2CAPA,6G,kLAaA,OAdA,SAcA,KACA,kBGzJe,G,OAXC,YACd,GCTW,WAAa,IAAIQ,EAAInE,KAASD,EAAGoE,EAAIlE,eAAmBE,EAAGgE,EAAIjE,MAAMC,IAAIJ,EAAG,OAAOI,EAAG,MAAM,CAACC,YAAY,UAAUgE,MAAM,CAAEC,SAAUF,EAAIG,YAAaC,GAAG,CAAC,QAAQJ,EAAIK,iBAAiB,CAACrE,EAAG,MAAM,CAACC,YAAY,2BAA2BmE,GAAG,CAAC,QAAQJ,EAAIK,iBAAiB,CAAGL,EAAIM,WAAaN,EAAI1D,IAAIiE,UAAcP,EAAIM,WAAaN,EAAIQ,iBAAmBxE,EAAG,MAAM,CAACC,YAAY,uBAAwB+D,EAAIM,UAAYN,EAAI1D,IAAIiE,QAASvE,EAAG,MAAM,CAACE,MAAM,CAAC,QAAQ,KAAK,SAAS,KAAK,UAAU,cAAc,CAACF,EAAG,OAAO,CAACA,EAAG,SAAS,CAACE,MAAM,CAAC,KAAK8D,EAAIS,WAAW,CAACzE,EAAG,gBAAgB,CAACE,MAAM,CAAC,KAAK,gBAAgB,OAAO,SAAS,SAAS,iDAAiD,KAAK8D,EAAIU,GAAG,KAAK1E,EAAG,QAAQ,CAACC,YAAY,WAAWC,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,QAAQ,KAAK,SAAS,KAAK,sBAAsB,gBAAgB,SAAS8D,EAAIW,UAAU,aAAaX,EAAI1D,IAAIiE,aAAaP,EAAIY,KAAKZ,EAAIU,GAAG,MAAOV,EAAIM,UAAYN,EAAI1D,IAAIuE,YAAcb,EAAIQ,iBAAkBxE,EAAG,MAAM,CAACE,MAAM,CAAC,MAAM8D,EAAI1D,IAAIuE,WAAW,QAAQ,UAAUb,EAAIY,OAAOZ,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,WAAWmE,GAAG,CAAC,QAAQJ,EAAIK,iBAAiB,CAACL,EAAIU,GAAG,SAASV,EAAIc,GAAGd,EAAI1D,IAAIK,MAAM,UAAUqD,EAAIU,GAAG,KAAOV,EAAIM,SAAkGN,EAAIY,KAA5F5E,EAAG,MAAM,CAACC,YAAY,eAAe,CAAC+D,EAAIU,GAAG,SAASV,EAAIc,GAAGd,EAAI1D,IAAIyE,SAAS,UAAmBf,EAAIU,GAAG,KAAMV,EAAY,SAAEhE,EAAG,MAAM,CAACC,YAAY,eAAe,CAAE+D,EAAI1D,IAAW,QAAEN,EAAG,OAAO,CAACgE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI1D,IAAI0E,YAAahB,EAAI1D,IAAI2E,aAAaC,SAAS,GAAU,QAAElF,EAAG,OAAO,CAACgE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI1D,IAAI2E,aAAaC,SAAS,GAAGF,YAAYhB,EAAIY,OAAOZ,EAAIY,KAAKZ,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,aAAa,CAAoB,MAAlB+D,EAAI1D,IAAI6E,MAAenF,EAAG,OAAO,CAACoF,WAAW,CAAC,CAACzE,KAAK,UAAU0E,QAAQ,iBAAiBC,MAAOtB,EAAI7C,EAAE,WAAY,kEAAmEoE,WAAW,kFAAkFC,UAAU,CAAC,QAAO,KAAQvF,YAAY,kCAAkC,CAAC+D,EAAIU,GAAG,WAAWV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,iBAAiB6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAwB,MAAlBV,EAAI1D,IAAI6E,MAAenF,EAAG,OAAO,CAACoF,WAAW,CAAC,CAACzE,KAAK,UAAU0E,QAAQ,iBAAiBC,MAAOtB,EAAI7C,EAAE,WAAY,+HAAgIoE,WAAW,+IAA+IC,UAAU,CAAC,QAAO,KAAQvF,YAAY,2BAA2B,CAAC+D,EAAIU,GAAG,WAAWV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,gBAAgB6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAIyB,YAAczB,EAAIM,SAAUtE,EAAG,WAAW,CAACE,MAAM,CAAC,QAAQ8D,EAAI1D,IAAIoF,SAAS1B,EAAIY,MAAM,GAAGZ,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,WAAW,CAAE+D,EAAI1D,IAAS,MAAEN,EAAG,MAAM,CAACC,YAAY,WAAW,CAAC+D,EAAIU,GAAG,WAAWV,EAAIc,GAAGd,EAAI1D,IAAIkD,OAAO,YAAYQ,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAa,UAAEhE,EAAG,MAAM,CAACC,YAAY,4BAA4B+D,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAU,OAAEN,EAAG,QAAQ,CAACC,YAAY,iBAAiBC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI7C,EAAE,WAAY,qBAAsB,CAAC4C,OAAOC,EAAI1D,IAAIyD,SAAS,WAAWC,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAiC,OAAzBA,EAAOC,kBAAyB5B,EAAID,OAAOC,EAAI1D,IAAII,QAAQsD,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAgB,aAAEN,EAAG,QAAQ,CAACC,YAAY,YAAYC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI7C,EAAE,WAAY,UAAU,WAAW6C,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAiC,OAAzBA,EAAOC,kBAAyB5B,EAAIH,OAAOG,EAAI1D,IAAII,QAAQsD,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAU,OAAEN,EAAG,QAAQ,CAACC,YAAY,SAASC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI7C,EAAE,WAAW,WAAW,WAAW6C,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAiC,OAAzBA,EAAOC,kBAAyB5B,EAAIJ,QAAQI,EAAI1D,IAAII,QAAQsD,EAAIY,KAAKZ,EAAIU,GAAG,KAAOV,EAAI1D,IAAIuF,SAAW7B,EAAI1D,IAAIwF,aAAc9B,EAAI1D,IAAIyF,aAAiZ/B,EAAI1D,IAAIuF,OAA2Y7B,EAAIY,KAAvY5E,EAAG,QAAQ,CAACoF,WAAW,CAAC,CAACzE,KAAK,UAAU0E,QAAQ,iBAAiBC,MAAOtB,EAA4B,yBAAEuB,WAAW,2BAA2BC,UAAU,CAAC,QAAO,KAAQvF,YAAY,eAAeC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI5C,sBAAsB,WAAW4C,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAiC,OAAzBA,EAAOC,kBAAyB5B,EAAIhB,YAAYgB,EAAI1D,IAAII,QAA7wBV,EAAG,QAAQ,CAACoF,WAAW,CAAC,CAACzE,KAAK,UAAU0E,QAAQ,iBAAiBC,MAAOtB,EAAuB,oBAAEuB,WAAW,sBAAsBC,UAAU,CAAC,QAAO,KAAQvF,YAAY,SAASC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI/C,iBAAiB,YAAY+C,EAAI1D,IAAIwF,YAAc9B,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAiC,OAAzBA,EAAOC,kBAAyB5B,EAAIL,OAAOK,EAAI1D,IAAII,cAC5kI,IDWpB,EACA,KACA,WACA,M,SEfqM,ECuBvM,CACA,mBACA,SACA,OADA,SACA,KACA,kBCTe,EAXC,YACd,OARE,OAAQ,GAWV,EACA,KACA,KACA,M,0BCdiM,ECwGnM,CACA,eACA,YACA,WAEA,WACA,kCACA,UACA,QADA,WAEA,gEAEA,QAJA,WAKA,4CAEA,iBAPA,WAQA,kEAEA,cAVA,WAWA,+EAEA,KAbA,WAaA,WACA,iCACA,sFACA,oBACA,8CACA,0CACA,0CAGA,kCACA,4CAEA,0BACA,sDAEA,2BACA,sDAEA,8BACA,0CAEA,0BACA,yCAEA,2BACA,8CAGA,sBACA,yCACA,gEAGA,QA9CA,WA8CA,WACA,4GAEA,WAjDA,WAkDA,mBACA,sCACA,oBACA,0DAIA,WAzDA,WAyDA,WACA,uBACA,GAEA,+BACA,oBACA,iEACA,mDAKA,gBArEA,WAsEA,8CAEA,YAxEA,WAyEA,iJAEA,cA3EA,WA4EA,qCAEA,kBA9EA,WA+EA,WACA,mBACA,2EAGA,iBApFA,WAqFA,WACA,mBACA,8BACA,4BAEA,8BAIA,SACA,aADA,SACA,GACA,iCACA,sBAEA,sBAEA,aAPA,SAOA,GACA,yDACA,sDACA,mBACA,iBACA,4BAGA,cAfA,SAeA,GACA,yDACA,uDACA,mBACA,4BAGA,UAtBA,WAsBA,WACA,SACA,UACA,uCACA,kGCrNe,EAXC,YACd,GCRW,WAAa,IAAIsD,EAAInE,KAASD,EAAGoE,EAAIlE,eAAmBE,EAAGgE,EAAIjE,MAAMC,IAAIJ,EAAG,OAAOI,EAAG,MAAM,CAACE,MAAM,CAAC,KAAK,sBAAsB,CAACF,EAAG,MAAM,CAACC,YAAY,YAAYgE,MAAM,CAAC+B,UAAYhC,EAAIiC,eAAiBjC,EAAIkC,YAAcC,MAAOnC,EAAIoC,iBAAiBlG,MAAM,CAAC,KAAK,cAAc,CAAE8D,EAAe,YAAE,CAAEA,EAAiB,cAAEhE,EAAG,MAAM,CAACC,YAAY,WAAW,CAAC+D,EAAIU,GAAG,aAAaV,EAAIc,GAAGd,EAAIqC,EAAE,WAAY,iCAAkC,mCAAoCrC,EAAIsC,UAAU,cAAetC,EAAiB,cAAEhE,EAAG,SAAS,CAACC,YAAY,UAAUC,MAAM,CAAC,KAAK,uBAAuBkE,GAAG,CAAC,QAAQJ,EAAIuC,YAAY,CAACvC,EAAIU,GAAG,eAAeV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,eAAe,gBAAgB6C,EAAIY,OAAOZ,EAAIY,KAAKZ,EAAIU,GAAG,KAAK1E,EAAG,mBAAmB,CAACC,YAAY,sBAAsBC,MAAM,CAAC,OAAO,WAAW,MAAM,QAAQ8D,EAAIwC,GAAIxC,EAAQ,MAAE,SAAS1D,GAAK,OAAON,EAAG,UAAU,CAACyG,IAAInG,EAAII,GAAGR,MAAM,CAAC,MAAMI,EAAI,WAAW0D,EAAI0C,eAAc,IAAI1C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAiB,cAAEhE,EAAG,mBAAmB,CAACC,YAAY,sBAAsBC,MAAM,CAAC,OAAO,WAAW,MAAM,QAAQ,CAAC8D,EAAIwC,GAAIxC,EAAW,SAAE,SAAS2C,GAAQ,MAAO,CAAC3G,EAAG,MAAM,CAACyG,IAAIE,EAAOjG,GAAGT,YAAY,eAAe,CAACD,EAAG,MAAM,CAACC,YAAY,cAAc+D,EAAIU,GAAG,KAAK1E,EAAG,KAAK,CAACgE,EAAIU,GAAGV,EAAIc,GAAG6B,EAAOhG,MAAM,KAAKX,EAAG,QAAQ,CAACE,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI4C,iBAAiBD,EAAOjG,KAAK0D,GAAG,CAAC,QAAQ,SAASuB,GAAQ,OAAO3B,EAAI6C,aAAaF,EAAOjG,UAAUsD,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,gBAAgB+D,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,cAAc+D,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,eAAe+D,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,WAAW,CAAC+D,EAAIU,GAAG,mCAAmCV,EAAIU,GAAG,KAAKV,EAAIwC,GAAIxC,EAAI8C,WAAWH,EAAOjG,KAAK,SAASJ,GAAK,OAAON,EAAG,UAAU,CAACyG,IAAIE,EAAOjG,GAAKJ,EAAII,GAAGR,MAAM,CAAC,MAAMI,EAAI,WAAW0D,EAAI0C,oBAAkB,GAAG1C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAmB,gBAAEA,EAAIwC,GAAIxC,EAAQ,MAAE,SAAS1D,GAAK,OAAON,EAAG,UAAU,CAACyG,IAAInG,EAAII,GAAGR,MAAM,CAAC,MAAMI,EAAI,WAAW0D,EAAI0C,SAAS,aAAY,QAAW1C,EAAIY,MAAM,GAAGZ,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,sBAAsBC,MAAM,CAAC,KAAK,qBAAqB,CAACF,EAAG,MAAM,CAACC,YAAY,uBAAuB,CAAiB,KAAf+D,EAAIhC,QAAiBgC,EAAI+C,WAAWpF,OAAS,EAAG,CAAC3B,EAAG,MAAM,CAACC,YAAY,WAAW,CAACD,EAAG,OAAOgE,EAAIU,GAAG,KAAK1E,EAAG,KAAK,CAACE,MAAM,CAAC,UAAU,MAAM,CAACF,EAAG,KAAK,CAACgE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,yCAAyC6C,EAAIU,GAAG,KAAKV,EAAIwC,GAAIxC,EAAc,YAAE,SAAS1D,GAAK,OAAON,EAAG,UAAU,CAACyG,IAAInG,EAAII,GAAGR,MAAM,CAAC,MAAMI,EAAI,WAAW0D,EAAI0C,SAAS,aAAY,SAAW1C,EAAIY,MAAM,KAAKZ,EAAIU,GAAG,KAAqB,KAAfV,EAAIhC,QAAkBgC,EAAIjD,SAAqC,IAA1BiD,EAAI+C,WAAWpF,QAAoC,IAApBqC,EAAIgD,KAAKrF,OAAqRqC,EAAIY,KAA3Q5E,EAAG,MAAM,CAACC,YAAY,mCAAmCC,MAAM,CAAC,KAAK,oBAAoB,CAACF,EAAG,MAAM,CAACC,YAAY,qBAAqBC,MAAM,CAAC,KAAK,yBAAyB8D,EAAIU,GAAG,KAAK1E,EAAG,KAAK,CAACgE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,wCAAiD6C,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACE,MAAM,CAAC,KAAK,uBACj1F,IDUpB,EACA,KACA,KACA,M,qDEdkM,EC8BpM,CACA,gBACA,OACA,MACA,YACA,aAGA,UACA,eADA,WAEA,uBA+BA,OA9BA,uBACA,MACA,IACA,kCACA,sBACA,cACA,SACA,SAGA,mDACA,SAGA,kDAKA,OAJA,IACA,qBAEA,iBAGA,wBACA,UAGA,GAEA,yBACA,UAEA,aACA,sBACA,WACA,OACA,aACA,UACA,UACA,YACA,YACA,cACA,iBAEA,CACA,mBACA,cACA,KACA,KACA,KACA,KACA,KACA,KACA,SACA,IACA,IACA,KACA,KACA,KACA,KACA,MACA,mBCjFe,G,OAXC,YACd,GCTW,WAAa,IAAiBN,EAATC,KAAgBC,eAAuC,OAAvDD,KAA0CE,MAAMC,IAAIJ,GAAa,MAAM,CAACK,YAAY,oBAAoBgH,SAAS,CAAC,YAAlHpH,KAAkIiF,GAAlIjF,KAAyIqH,qBACrJ,IDWpB,EACA,KACA,WACA,M,SEfoM,ECwJtM,CACA,kBAEA,YACA,0BACA,YAEA,aAEA,OACA,KACA,YACA,cAIA,KAhBA,WAiBA,OACA,0BAIA,UACA,YADA,WAEA,8DAEA,QAJA,WAKA,wBACA,iFAEA,MAEA,OAVA,WAWA,uCACA,CACA,CACA,2BAIA,0BACA,kBAEA,iBAEA,UAvBA,WAwBA,gEAEA,OA1BA,WA2BA,qCACA,+CACA,6DAGA,QAtDA,WAuDA,2BACA,gCC7Le,G,OAXC,YACd,GCTW,WAAa,IAAIlD,EAAInE,KAASD,EAAGoE,EAAIlE,eAAmBE,EAAGgE,EAAIjE,MAAMC,IAAIJ,EAAG,OAAOI,EAAG,MAAM,CAACC,YAAY,eAAe,CAACD,EAAG,MAAM,CAACC,YAAY,wBAAwB,CAAE+D,EAAI1D,IAAIuF,QAAU7B,EAAI1B,iBAAiB0B,EAAI1D,KAAMN,EAAG,MAAM,CAACC,YAAY,+BAA+B,CAACD,EAAG,QAAQ,CAACoF,WAAW,CAAC,CAACzE,KAAK,QAAQ0E,QAAQ,UAAUC,MAAOtB,EAAwB,qBAAEuB,WAAW,yBAAyBtF,YAAY,mCAAmCC,MAAM,CAAC,KAAK8D,EAAImD,OAAO,gBAAiBnD,EAAI1D,IAAII,IAAI,OAAO,YAAYuG,SAAS,CAAC,QAAQjD,EAAI1D,IAAII,GAAG,UAAU0G,MAAMC,QAAQrD,EAAIvC,sBAAsBuC,EAAIsD,GAAGtD,EAAIvC,qBAAqBuC,EAAI1D,IAAII,KAAK,EAAGsD,EAAwB,sBAAGI,GAAG,CAAC,SAAS,CAAC,SAASuB,GAAQ,IAAI4B,EAAIvD,EAAIvC,qBAAqB+F,EAAK7B,EAAO8B,OAAOC,IAAIF,EAAKG,QAAuB,GAAGP,MAAMC,QAAQE,GAAK,CAAC,IAAIK,EAAI5D,EAAI1D,IAAII,GAAGmH,EAAI7D,EAAIsD,GAAGC,EAAIK,GAAQJ,EAAKG,QAASE,EAAI,IAAI7D,EAAIvC,qBAAqB8F,EAAI7E,OAAO,CAACkF,KAAYC,GAAK,IAAI7D,EAAIvC,qBAAqB8F,EAAIO,MAAM,EAAED,GAAKnF,OAAO6E,EAAIO,MAAMD,EAAI,UAAW7D,EAAIvC,qBAAqBiG,GAAM1D,EAAI5B,kBAAkB4B,EAAIU,GAAG,KAAK1E,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAM8D,EAAImD,OAAO,gBAAiBnD,EAAI1D,IAAII,MAAM,CAACsD,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,uBAAuB6C,EAAIU,GAAG,KAAK1E,EAAG,QAAQ,CAACC,YAAY,eAAeC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI7C,EAAE,WAAY,OAAO,QAAQ,MAAM6C,EAAIU,GAAG,KAAMV,EAAI7B,kBAAkB6B,EAAI1D,KAAMN,EAAG,cAAc,CAACC,YAAY,kBAAkBC,MAAM,CAAC,UAAU8D,EAAIzD,OAAO,QAAQyD,EAAI3D,UAAU,gBAAgB,EAAE,cAAc2D,EAAI7C,EAAE,WAAY,6BAA6B,QAAQ,OAAO,WAAW,KAAK,YAAW,EAAK,mBAAkB,EAAM,YAAY,IAAIiD,GAAG,CAAC,SAASJ,EAAIvB,mBAAmB,SAASuB,EAAIrB,sBAAsB,gBAAgBqB,EAAInC,iBAAiB,CAAC7B,EAAG,OAAO,CAACE,MAAM,CAAC,OAAO,YAAY6H,KAAK,YAAY,CAAC/D,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,oBAAoB6C,EAAIY,MAAM,GAAGZ,EAAIY,KAAKZ,EAAIU,GAAG,KAAK1E,EAAG,MAAM,CAACC,YAAY,+BAA+B,CAAE+D,EAAI1D,IAAU,OAAEN,EAAG,QAAQ,CAACC,YAAY,iBAAiBC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI7C,EAAE,WAAY,sBAAuB,CAAE6D,QAAShB,EAAI1D,IAAIyD,SAAU,WAAWC,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAQ,OAAO3B,EAAID,OAAOC,EAAI1D,IAAII,QAAQsD,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAgB,aAAEN,EAAG,QAAQ,CAACC,YAAY,YAAYC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI7C,EAAE,WAAY,UAAU,WAAW6C,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAQ,OAAO3B,EAAIH,OAAOG,EAAI1D,IAAII,QAAQsD,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAU,OAAEN,EAAG,QAAQ,CAACC,YAAY,SAASC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI7C,EAAE,WAAW,WAAW,WAAW6C,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAQ,OAAO3B,EAAIJ,QAAQI,EAAI1D,IAAII,QAAQsD,EAAIY,KAAKZ,EAAIU,GAAG,KAAOV,EAAI1D,IAAIuF,SAAW7B,EAAI1D,IAAIwF,aAAc9B,EAAI1D,IAAIyF,aAAgY/B,EAAI1D,IAAIuF,QAAW7B,EAAI1D,IAAIwF,WAAsX9B,EAAIY,KAA9W5E,EAAG,QAAQ,CAACoF,WAAW,CAAC,CAACzE,KAAK,UAAU0E,QAAQ,iBAAiBC,MAAOtB,EAA4B,yBAAEuB,WAAW,2BAA2BC,UAAU,CAAC,QAAO,KAAQvF,YAAY,eAAeC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI5C,sBAAsB,WAAW4C,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAQ,OAAO3B,EAAIhB,YAAYgB,EAAI1D,IAAII,QAA1vBV,EAAG,QAAQ,CAACoF,WAAW,CAAC,CAACzE,KAAK,UAAU0E,QAAQ,iBAAiBC,MAAOtB,EAAuB,oBAAEuB,WAAW,sBAAsBC,UAAU,CAAC,QAAO,KAAQvF,YAAY,iBAAiBC,MAAM,CAAC,OAAO,SAAS,QAAQ8D,EAAI/C,iBAAiB,YAAY+C,EAAI1D,IAAIwF,YAAc9B,EAAIpD,YAAcoD,EAAIhD,WAAWoD,GAAG,CAAC,QAAQ,SAASuB,GAAQ,OAAO3B,EAAIL,OAAOK,EAAI1D,IAAII,YAAwasD,EAAIU,GAAG,KAAK1E,EAAG,KAAK,CAACC,YAAY,6BAA6B,CAAE+D,EAAI1D,IAA6B,0BAAEN,EAAG,KAAK,CAACgE,EAAIU,GAAG,WAAWV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,6FAA6F,YAAY6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAA6B,0BAAEN,EAAG,KAAK,CAACgE,EAAIU,GAAG,WAAWV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,6FAA6F,YAAY6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAOV,EAAI1D,IAAIwF,WAA8V9B,EAAIY,KAAtV5E,EAAG,KAAK,CAACgE,EAAIU,GAAG,WAAWV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,uFAAuF,YAAYnB,EAAG,KAAK,CAACC,YAAY,wBAAwB+D,EAAIwC,GAAIxC,EAAI1D,IAAuB,qBAAE,SAAS0H,EAAInF,GAAO,OAAO7C,EAAG,KAAK,CAACyG,IAAI5D,GAAO,CAACmB,EAAIU,GAAG,eAAeV,EAAIc,GAAGkD,GAAK,mBAAkB,OAAgBhE,EAAIU,GAAG,KAAK1E,EAAG,IAAI,CAACC,YAAY,8BAA8B,CAAG+D,EAAI1D,IAAI2H,SAAkLjE,EAAIY,KAA5K5E,EAAG,IAAI,CAACC,YAAY,WAAWC,MAAM,CAAC,OAAO8D,EAAIkE,YAAY,SAAS,SAAS,MAAM,wBAAwB,CAAClE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,kBAAkB,QAAiB6C,EAAIU,GAAG,KAAMV,EAAI1D,IAAW,QAAEN,EAAG,IAAI,CAACC,YAAY,WAAWC,MAAM,CAAC,OAAO8D,EAAI1D,IAAI6H,QAAQ,SAAS,SAAS,MAAM,wBAAwB,CAACnE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,kBAAkB,QAAQ6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAQ,KAAEN,EAAG,IAAI,CAACC,YAAY,WAAWC,MAAM,CAAC,OAAO8D,EAAI1D,IAAI8H,KAAK,SAAS,SAAS,MAAM,wBAAwB,CAACpE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,iBAAiB,QAAQ6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAI+H,eAAiBrE,EAAI1D,IAAI+H,cAAcC,KAAMtI,EAAG,IAAI,CAACC,YAAY,WAAWC,MAAM,CAAC,OAAO8D,EAAI1D,IAAI+H,cAAcC,KAAK,SAAS,SAAS,MAAM,wBAAwB,CAACtE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,uBAAuB,QAAQ6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAI+H,eAAiBrE,EAAI1D,IAAI+H,cAAcE,MAAOvI,EAAG,IAAI,CAACC,YAAY,WAAWC,MAAM,CAAC,OAAO8D,EAAI1D,IAAI+H,cAAcE,MAAM,SAAS,SAAS,MAAM,wBAAwB,CAACvE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,wBAAwB,QAAQ6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAI1D,IAAI+H,eAAiBrE,EAAI1D,IAAI+H,cAAcG,UAAWxI,EAAG,IAAI,CAACC,YAAY,WAAWC,MAAM,CAAC,OAAO8D,EAAI1D,IAAI+H,cAAcG,UAAU,SAAS,SAAS,MAAM,wBAAwB,CAACxE,EAAIU,GAAGV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,4BAA4B,QAAQ6C,EAAIY,OAAOZ,EAAIU,GAAG,KAAK1E,EAAG,WAAW,CAACC,YAAY,2BAA2BC,MAAM,CAAC,OAAO8D,EAAI1D,IAAImI,gBAAgB,KAC90L,IDWpB,EACA,KACA,WACA,M,SEmJF,mBAEA,ICpKgM,EDoKhM,CACA,YAEA,YACA,eACA,aACA,UACA,kBACA,yBACA,sBACA,wBACA,WACA,eACA,kBACA,YACA,YAGA,WAEA,OACA,UACA,YACA,qBAEA,IACA,YACA,aAIA,KA/BA,WAgCA,OACA,eACA,sBAIA,UACA,QADA,WAEA,kDAEA,YAJA,WAKA,4CAEA,IAPA,WAOA,WACA,0DAEA,WAVA,WAWA,0CAEA,KAbA,WAcA,uCAEA,YAhBA,WAiBA,2CAEA,SAnBA,WAoBA,0CAGA,UAvBA,WAwBA,wEAIA,WA5BA,WA6BA,qCACA,6BACA,kEACA,2BACA,0BACA,0BACA,gBACA,mFAIA,OACA,SAHA,4DAIA,sDACA,oBACA,iBACA,sDACA,sBAIA,UAlDA,WAmDA,yDAIA,OACA,SADA,WAEA,qBAGA,IALA,WAKA,WAEA,GADA,yBACA,+BACA,gBACA,qBACA,uBAEA,6BAKA,YA9GA,WA+GA,sCACA,mCACA,qDACA,oFAGA,QArHA,WAsHA,sEACA,wEAEA,cAzHA,WA0HA,wEACA,0EAGA,SACA,UADA,YACA,cACA,oBAEA,YAJA,WAKA,qBAGA,eARA,WASA,mBACA,qBACA,qCErSI,G,OAAY,YACd,G9BTW,WAAa,IAAIzE,EAAInE,KAASD,EAAGoE,EAAIlE,eAAmBE,EAAGgE,EAAIjE,MAAMC,IAAIJ,EAAG,OAAOI,EAAG,UAAU,CAACiE,MAAM,CAAE,mBAAoBD,EAAI1D,KAAKJ,MAAM,CAAC,WAAW,WAAW,gBAAgB,CAAE,eAAgB8D,EAAI0E,aAAc,mBAAmB,CAAE,eAAgB1E,EAAIjD,WAAY,CAACf,EAAG,gBAAgB,CAAC2I,YAAY3E,EAAI4E,GAAG,CAAC,CAACnC,IAAI,OAAOoC,GAAG,WAAW,MAAO,CAAC7I,EAAG,oBAAoB,CAACE,MAAM,CAAC,KAAK,yBAAyB,KAAK,CAAES,KAAM,QAAS,SAAQ,EAAK,OAAO,0BAA0B,QAAQqD,EAAI7C,EAAE,WAAY,gBAAgB6C,EAAIU,GAAG,KAAK1E,EAAG,oBAAoB,CAACE,MAAM,CAAC,KAAK,uBAAuB,KAAK,CAAES,KAAM,gBAAiBmI,OAAQ,CAAEpC,SAAU,YAAc,OAAO,wBAAwB,QAAQ1C,EAAI7C,EAAE,WAAY,kBAAkB6C,EAAIU,GAAG,KAAK1E,EAAG,oBAAoB,CAACE,MAAM,CAAC,KAAK,wBAAwB,KAAK,CAAES,KAAM,gBAAiBmI,OAAQ,CAAEpC,SAAU,aAAe,OAAO,yBAAyB,QAAQ1C,EAAI7C,EAAE,WAAY,oBAAoB6C,EAAIU,GAAG,KAAMV,EAAI+E,YAAc,EAAG/I,EAAG,oBAAoB,CAACE,MAAM,CAAC,KAAK,uBAAuB,KAAK,CAAES,KAAM,gBAAiBmI,OAAQ,CAAEpC,SAAU,YAAc,OAAO,gBAAgB,QAAQ1C,EAAI7C,EAAE,WAAY,aAAa,CAACnB,EAAG,uBAAuB,CAACE,MAAM,CAAC,OAAO,WAAW6H,KAAK,WAAW,CAAC/D,EAAIU,GAAG,eAAeV,EAAIc,GAAGd,EAAI+E,aAAa,iBAAiB,GAAG/E,EAAIY,KAAKZ,EAAIU,GAAG,KAAK1E,EAAG,oBAAoB,CAACE,MAAM,CAAC,KAAK,4BAA4B,KAAK,CAAES,KAAM,gBAAiBmI,OAAQ,CAAEpC,SAAU,gBAAkB,OAAO,4BAA4B,QAAQ1C,EAAI7C,EAAE,WAAY,kBAAkB6C,EAAIU,GAAG,KAAK1E,EAAG,uBAAuBgE,EAAIU,GAAG,KAAMV,EAAIgF,SAAwB,gBAAE,CAAChJ,EAAG,oBAAoB,CAACE,MAAM,CAAC,KAAK,wBAAwB,KAAK,CAAES,KAAM,gBAAiBmI,OAAQ,CAAEpC,SAAU,aAAe,OAAO,gBAAgB,QAAQ1C,EAAI7C,EAAE,WAAY,oBAAoB6C,EAAIU,GAAG,KAAKV,EAAIwC,GAAIxC,EAAc,YAAE,SAASiF,GAAK,OAAOjJ,EAAG,oBAAoB,CAACyG,IAAI,iBAAmBwC,EAAIC,MAAMhJ,MAAM,CAAC,OAAO,iBAAmB+I,EAAIC,MAAM,KAAK,CACn7DvI,KAAM,gBACNmI,OAAQ,CAAEpC,SAAUuC,EAAIC,QACvB,QAAQD,EAAIE,mBAAkBnF,EAAIY,KAAKZ,EAAIU,GAAG,KAAK1E,EAAG,oBAAoB,CAACE,MAAM,CAAC,KAAK,qBAAqB,OAAO,kCAAkC,QAAQ8D,EAAI7C,EAAE,WAAY,2BAA6B,UAAUiI,OAAM,OAAUpF,EAAIU,GAAG,KAAK1E,EAAG,aAAa,CAACC,YAAY,uBAAuBgE,MAAM,CAAE,eAAgBD,EAAI0E,cAAe,CAAC1I,EAAG,UAAU,CAACE,MAAM,CAAC,WAAW8D,EAAI0C,SAAS,MAAM1C,EAAI1D,IAAI,SAAS0D,EAAIqF,gBAAgB,GAAGrF,EAAIU,GAAG,KAAMV,EAAItD,IAAMsD,EAAI1D,IAAKN,EAAG,aAAagE,EAAIsF,GAAG,CAACrF,MAAM,CAAC,mCAAoCD,EAAIuF,WAAWC,YAAYpF,GAAG,CAAC,QAAQJ,EAAIyF,gBAAgBd,YAAY3E,EAAI4E,GAAG,CAAG5E,EAAIuF,WAAWC,WAAwJ,KAA5I,CAAC/C,IAAI,SAASoC,GAAG,WAAW,MAAO,CAAC7I,EAAG,MAAM,CAACC,YAAY,sEAAsEmJ,OAAM,GAAW,CAAC3C,IAAI,kBAAkBoC,GAAG,WAAW,MAAO,CAAoB,MAAlB7E,EAAI1D,IAAI6E,OAAmC,MAAlBnB,EAAI1D,IAAI6E,OAAiBnB,EAAIyB,UAAWzF,EAAG,MAAM,CAACC,YAAY,aAAa,CAAoB,MAAlB+D,EAAI1D,IAAI6E,MAAenF,EAAG,OAAO,CAACoF,WAAW,CAAC,CAACzE,KAAK,UAAU0E,QAAQ,iBAAiBC,MAAOtB,EAAI7C,EAAE,WAAY,kEAAmEoE,WAAW,kFAAkFC,UAAU,CAAC,QAAO,KAAQvF,YAAY,kCAAkC,CAAC+D,EAAIU,GAAG,eAAeV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,iBAAiB6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAwB,MAAlBV,EAAI1D,IAAI6E,MAAenF,EAAG,OAAO,CAACoF,WAAW,CAAC,CAACzE,KAAK,UAAU0E,QAAQ,iBAAiBC,MAAOtB,EAAI7C,EAAE,WAAY,+HAAgIoE,WAAW,+IAA+IC,UAAU,CAAC,QAAO,KAAQvF,YAAY,2BAA2B,CAAC+D,EAAIU,GAAG,eAAeV,EAAIc,GAAGd,EAAI7C,EAAE,WAAY,gBAAgB6C,EAAIY,KAAKZ,EAAIU,GAAG,KAAMV,EAAa,UAAEhE,EAAG,WAAW,CAACE,MAAM,CAAC,QAAQ8D,EAAI1D,IAAI2E,aAAayE,iBAAiB1F,EAAIY,MAAM,GAAGZ,EAAIY,OAAOwE,OAAM,IAAO,MAAK,IAAO,aAAapF,EAAIuF,YAAW,GAAO,CAACvF,EAAIU,GAAG,KAAKV,EAAIU,GAAG,KAAK1E,EAAG,gBAAgB,CAACE,MAAM,CAAC,KAAK,OAAO,OAAO,uBAAuB,OAAO8D,EAAI7C,EAAE,WAAY,WAAW,QAAQ,IAAI,CAACnB,EAAG,aAAa,CAACE,MAAM,CAAC,MAAM8D,EAAI1D,QAAQ,GAAG0D,EAAIU,GAAG,KAAMV,EAAI1D,IAAI2E,cAAgBjB,EAAI1D,IAAI4E,SAAS,GAAGyE,aAAaC,GAAGC,UAAW7J,EAAG,gBAAgB,CAACE,MAAM,CAAC,KAAK,QAAQ,OAAO,6BAA6B,OAAO8D,EAAI7C,EAAE,WAAY,aAAa,QAAQ,IAAI6C,EAAIwC,GAAIxC,EAAI1D,IAAY,UAAE,SAASwJ,GAAS,OAAO9J,EAAG,MAAM,CAACyG,IAAIqD,EAAQ9E,QAAQ/E,YAAY,6BAA6B,CAACD,EAAG,KAAK,CAACgE,EAAIU,GAAGV,EAAIc,GAAGgF,EAAQ9E,YAAYhB,EAAIU,GAAG,KAAMV,EAAI6F,UAAUC,GAAU9J,EAAG,WAAW,CAACE,MAAM,CAAC,OAAO8D,EAAI6F,UAAUC,MAAY9F,EAAIY,MAAM,MAAK,GAAGZ,EAAIY,MAAM,GAAGZ,EAAIY,MAAM,KAClsF,I8BQpB,EACA,KACA,WACA,OAIa,Y","file":"vue-settings-apps-819bd91780a5b5e34199.js?v=0ea1f45836c328632c3c","sourcesContent":["// style-loader: Adds some css to the DOM by adding a \n","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=script&lang=js&\"","var render, staticRenderFns\nimport script from \"./SvgFilterMixin.vue?vue&type=script&lang=js&\"\nexport * from \"./SvgFilterMixin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import { render, staticRenderFns } from \"./AppItem.vue?vue&type=template&id=5a074e36&scoped=true&\"\nimport script from \"./AppItem.vue?vue&type=script&lang=js&\"\nexport * from \"./AppItem.vue?vue&type=script&lang=js&\"\nimport style0 from \"./AppItem.vue?vue&type=style&index=0&id=5a074e36&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"5a074e36\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"section\",class:{ selected: _vm.isSelected },on:{\"click\":_vm.showAppDetails}},[_c('div',{staticClass:\"app-image app-image-icon\",on:{\"click\":_vm.showAppDetails}},[((_vm.listView && !_vm.app.preview) || (!_vm.listView && !_vm.screenshotLoaded))?_c('div',{staticClass:\"icon-settings-dark\"}):(_vm.listView && _vm.app.preview)?_c('svg',{attrs:{\"width\":\"32\",\"height\":\"32\",\"viewBox\":\"0 0 32 32\"}},[_c('defs',[_c('filter',{attrs:{\"id\":_vm.filterId}},[_c('feColorMatrix',{attrs:{\"in\":\"SourceGraphic\",\"type\":\"matrix\",\"values\":\"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"}})],1)]),_vm._v(\" \"),_c('image',{staticClass:\"app-icon\",attrs:{\"x\":\"0\",\"y\":\"0\",\"width\":\"32\",\"height\":\"32\",\"preserveAspectRatio\":\"xMinYMin meet\",\"filter\":_vm.filterUrl,\"xlink:href\":_vm.app.preview}})]):_vm._e(),_vm._v(\" \"),(!_vm.listView && _vm.app.screenshot && _vm.screenshotLoaded)?_c('img',{attrs:{\"src\":_vm.app.screenshot,\"width\":\"100%\"}}):_vm._e()]),_vm._v(\" \"),_c('div',{staticClass:\"app-name\",on:{\"click\":_vm.showAppDetails}},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.app.name)+\"\\n\\t\")]),_vm._v(\" \"),(!_vm.listView)?_c('div',{staticClass:\"app-summary\"},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.app.summary)+\"\\n\\t\")]):_vm._e(),_vm._v(\" \"),(_vm.listView)?_c('div',{staticClass:\"app-version\"},[(_vm.app.version)?_c('span',[_vm._v(_vm._s(_vm.app.version))]):(_vm.app.appstoreData.releases[0].version)?_c('span',[_vm._v(_vm._s(_vm.app.appstoreData.releases[0].version))]):_vm._e()]):_vm._e(),_vm._v(\" \"),_c('div',{staticClass:\"app-level\"},[(_vm.app.level === 300)?_c('span',{directives:[{name:\"tooltip\",rawName:\"v-tooltip.auto\",value:(_vm.t('settings', 'This app is supported via your current Nextcloud subscription.')),expression:\"t('settings', 'This app is supported via your current Nextcloud subscription.')\",modifiers:{\"auto\":true}}],staticClass:\"supported icon-checkmark-color\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('settings', 'Supported')))]):_vm._e(),_vm._v(\" \"),(_vm.app.level === 200)?_c('span',{directives:[{name:\"tooltip\",rawName:\"v-tooltip.auto\",value:(_vm.t('settings', 'Featured apps are developed by and within the community. They offer central functionality and are ready for production use.')),expression:\"t('settings', 'Featured apps are developed by and within the community. They offer central functionality and are ready for production use.')\",modifiers:{\"auto\":true}}],staticClass:\"official icon-checkmark\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('settings', 'Featured')))]):_vm._e(),_vm._v(\" \"),(_vm.hasRating && !_vm.listView)?_c('AppScore',{attrs:{\"score\":_vm.app.score}}):_vm._e()],1),_vm._v(\" \"),_c('div',{staticClass:\"actions\"},[(_vm.app.error)?_c('div',{staticClass:\"warning\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.app.error)+\"\\n\\t\\t\")]):_vm._e(),_vm._v(\" \"),(_vm.isLoading)?_c('div',{staticClass:\"icon icon-loading-small\"}):_vm._e(),_vm._v(\" \"),(_vm.app.update)?_c('input',{staticClass:\"update primary\",attrs:{\"type\":\"button\",\"value\":_vm.t('settings', 'Update to {update}', {update:_vm.app.update}),\"disabled\":_vm.installing || _vm.isLoading},on:{\"click\":function($event){$event.stopPropagation();return _vm.update(_vm.app.id)}}}):_vm._e(),_vm._v(\" \"),(_vm.app.canUnInstall)?_c('input',{staticClass:\"uninstall\",attrs:{\"type\":\"button\",\"value\":_vm.t('settings', 'Remove'),\"disabled\":_vm.installing || _vm.isLoading},on:{\"click\":function($event){$event.stopPropagation();return _vm.remove(_vm.app.id)}}}):_vm._e(),_vm._v(\" \"),(_vm.app.active)?_c('input',{staticClass:\"enable\",attrs:{\"type\":\"button\",\"value\":_vm.t('settings','Disable'),\"disabled\":_vm.installing || _vm.isLoading},on:{\"click\":function($event){$event.stopPropagation();return _vm.disable(_vm.app.id)}}}):_vm._e(),_vm._v(\" \"),(!_vm.app.active && (_vm.app.canInstall || _vm.app.isCompatible))?_c('input',{directives:[{name:\"tooltip\",rawName:\"v-tooltip.auto\",value:(_vm.enableButtonTooltip),expression:\"enableButtonTooltip\",modifiers:{\"auto\":true}}],staticClass:\"enable\",attrs:{\"type\":\"button\",\"value\":_vm.enableButtonText,\"disabled\":!_vm.app.canInstall || _vm.installing || _vm.isLoading},on:{\"click\":function($event){$event.stopPropagation();return _vm.enable(_vm.app.id)}}}):(!_vm.app.active)?_c('input',{directives:[{name:\"tooltip\",rawName:\"v-tooltip.auto\",value:(_vm.forceEnableButtonTooltip),expression:\"forceEnableButtonTooltip\",modifiers:{\"auto\":true}}],staticClass:\"enable force\",attrs:{\"type\":\"button\",\"value\":_vm.forceEnableButtonText,\"disabled\":_vm.installing || _vm.isLoading},on:{\"click\":function($event){$event.stopPropagation();return _vm.forceEnable(_vm.app.id)}}}):_vm._e()])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PrefixMixin.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PrefixMixin.vue?vue&type=script&lang=js&\"","\n\n\n","var render, staticRenderFns\nimport script from \"./PrefixMixin.vue?vue&type=script&lang=js&\"\nexport * from \"./PrefixMixin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppList.vue?vue&type=script&lang=js&\"","\n\n\n\n\n","import { render, staticRenderFns } from \"./AppList.vue?vue&type=template&id=59d31110&\"\nimport script from \"./AppList.vue?vue&type=script&lang=js&\"\nexport * from \"./AppList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app-content-inner\"}},[_c('div',{staticClass:\"apps-list\",class:{installed: (_vm.useBundleView || _vm.useListView), store: _vm.useAppStoreView},attrs:{\"id\":\"apps-list\"}},[(_vm.useListView)?[(_vm.showUpdateAll)?_c('div',{staticClass:\"counter\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.n('settings', '%n app has an update available', '%n apps have an update available', _vm.counter))+\"\\n\\t\\t\\t\\t\"),(_vm.showUpdateAll)?_c('button',{staticClass:\"primary\",attrs:{\"id\":\"app-list-update-all\"},on:{\"click\":_vm.updateAll}},[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('settings', 'Update all'))+\"\\n\\t\\t\\t\\t\")]):_vm._e()]):_vm._e(),_vm._v(\" \"),_c('transition-group',{staticClass:\"apps-list-container\",attrs:{\"name\":\"app-list\",\"tag\":\"div\"}},_vm._l((_vm.apps),function(app){return _c('AppItem',{key:app.id,attrs:{\"app\":app,\"category\":_vm.category}})}),1)]:_vm._e(),_vm._v(\" \"),(_vm.useBundleView)?_c('transition-group',{staticClass:\"apps-list-container\",attrs:{\"name\":\"app-list\",\"tag\":\"div\"}},[_vm._l((_vm.bundles),function(bundle){return [_c('div',{key:bundle.id,staticClass:\"apps-header\"},[_c('div',{staticClass:\"app-image\"}),_vm._v(\" \"),_c('h2',[_vm._v(_vm._s(bundle.name)+\" \"),_c('input',{attrs:{\"type\":\"button\",\"value\":_vm.bundleToggleText(bundle.id)},on:{\"click\":function($event){return _vm.toggleBundle(bundle.id)}}})]),_vm._v(\" \"),_c('div',{staticClass:\"app-version\"}),_vm._v(\" \"),_c('div',{staticClass:\"app-level\"}),_vm._v(\" \"),_c('div',{staticClass:\"app-groups\"}),_vm._v(\" \"),_c('div',{staticClass:\"actions\"},[_vm._v(\"\\n\\t\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\")])]),_vm._v(\" \"),_vm._l((_vm.bundleApps(bundle.id)),function(app){return _c('AppItem',{key:bundle.id + app.id,attrs:{\"app\":app,\"category\":_vm.category}})})]})],2):_vm._e(),_vm._v(\" \"),(_vm.useAppStoreView)?_vm._l((_vm.apps),function(app){return _c('AppItem',{key:app.id,attrs:{\"app\":app,\"category\":_vm.category,\"list-view\":false}})}):_vm._e()],2),_vm._v(\" \"),_c('div',{staticClass:\"apps-list installed\",attrs:{\"id\":\"apps-list-search\"}},[_c('div',{staticClass:\"apps-list-container\"},[(_vm.search !== '' && _vm.searchApps.length > 0)?[_c('div',{staticClass:\"section\"},[_c('div'),_vm._v(\" \"),_c('td',{attrs:{\"colspan\":\"5\"}},[_c('h2',[_vm._v(_vm._s(_vm.t('settings', 'Results from other categories')))])])]),_vm._v(\" \"),_vm._l((_vm.searchApps),function(app){return _c('AppItem',{key:app.id,attrs:{\"app\":app,\"category\":_vm.category,\"list-view\":true}})})]:_vm._e()],2)]),_vm._v(\" \"),(_vm.search !== '' && !_vm.loading && _vm.searchApps.length === 0 && _vm.apps.length === 0)?_c('div',{staticClass:\"emptycontent emptycontent-search\",attrs:{\"id\":\"apps-list-empty\"}},[_c('div',{staticClass:\"icon-settings-dark\",attrs:{\"id\":\"app-list-empty-icon\"}}),_vm._v(\" \"),_c('h2',[_vm._v(_vm._s(_vm.t('settings', 'No apps found for your version')))])]):_vm._e(),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"searchresults\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Markdown.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Markdown.vue?vue&type=script&lang=js&\"","\n\n\n\n\n\n\n","import { render, staticRenderFns } from \"./Markdown.vue?vue&type=template&id=8b4e053e&scoped=true&\"\nimport script from \"./Markdown.vue?vue&type=script&lang=js&\"\nexport * from \"./Markdown.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Markdown.vue?vue&type=style&index=0&id=8b4e053e&scoped=true&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"8b4e053e\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"settings-markdown\",domProps:{\"innerHTML\":_vm._s(_vm.renderMarkdown)}})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=script&lang=js&\"","\n\n\n\n\n\n\n","import { render, staticRenderFns } from \"./AppDetails.vue?vue&type=template&id=e40a53d2&scoped=true&\"\nimport script from \"./AppDetails.vue?vue&type=script&lang=js&\"\nexport * from \"./AppDetails.vue?vue&type=script&lang=js&\"\nimport style0 from \"./AppDetails.vue?vue&type=style&index=0&id=e40a53d2&scoped=true&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"e40a53d2\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"app-details\"},[_c('div',{staticClass:\"app-details__actions\"},[(_vm.app.active && _vm.canLimitToGroups(_vm.app))?_c('div',{staticClass:\"app-details__actions-groups\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.groupCheckedAppsData),expression:\"groupCheckedAppsData\"}],staticClass:\"groups-enable__checkbox checkbox\",attrs:{\"id\":_vm.prefix('groups_enable', _vm.app.id),\"type\":\"checkbox\"},domProps:{\"value\":_vm.app.id,\"checked\":Array.isArray(_vm.groupCheckedAppsData)?_vm._i(_vm.groupCheckedAppsData,_vm.app.id)>-1:(_vm.groupCheckedAppsData)},on:{\"change\":[function($event){var $$a=_vm.groupCheckedAppsData,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=_vm.app.id,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.groupCheckedAppsData=$$a.concat([$$v]))}else{$$i>-1&&(_vm.groupCheckedAppsData=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.groupCheckedAppsData=$$c}},_vm.setGroupLimit]}}),_vm._v(\" \"),_c('label',{attrs:{\"for\":_vm.prefix('groups_enable', _vm.app.id)}},[_vm._v(_vm._s(_vm.t('settings', 'Limit to groups')))]),_vm._v(\" \"),_c('input',{staticClass:\"group_select\",attrs:{\"type\":\"hidden\",\"title\":_vm.t('settings', 'All'),\"value\":\"\"}}),_vm._v(\" \"),(_vm.isLimitedToGroups(_vm.app))?_c('Multiselect',{staticClass:\"multiselect-vue\",attrs:{\"options\":_vm.groups,\"value\":_vm.appGroups,\"options-limit\":5,\"placeholder\":_vm.t('settings', 'Limit app usage to groups'),\"label\":\"name\",\"track-by\":\"id\",\"multiple\":true,\"close-on-select\":false,\"tag-width\":60},on:{\"select\":_vm.addGroupLimitation,\"remove\":_vm.removeGroupLimitation,\"search-change\":_vm.asyncFindGroup}},[_c('span',{attrs:{\"slot\":\"noResult\"},slot:\"noResult\"},[_vm._v(_vm._s(_vm.t('settings', 'No results')))])]):_vm._e()],1):_vm._e(),_vm._v(\" \"),_c('div',{staticClass:\"app-details__actions-manage\"},[(_vm.app.update)?_c('input',{staticClass:\"update primary\",attrs:{\"type\":\"button\",\"value\":_vm.t('settings', 'Update to {version}', { version: _vm.app.update }),\"disabled\":_vm.installing || _vm.isLoading},on:{\"click\":function($event){return _vm.update(_vm.app.id)}}}):_vm._e(),_vm._v(\" \"),(_vm.app.canUnInstall)?_c('input',{staticClass:\"uninstall\",attrs:{\"type\":\"button\",\"value\":_vm.t('settings', 'Remove'),\"disabled\":_vm.installing || _vm.isLoading},on:{\"click\":function($event){return _vm.remove(_vm.app.id)}}}):_vm._e(),_vm._v(\" \"),(_vm.app.active)?_c('input',{staticClass:\"enable\",attrs:{\"type\":\"button\",\"value\":_vm.t('settings','Disable'),\"disabled\":_vm.installing || _vm.isLoading},on:{\"click\":function($event){return _vm.disable(_vm.app.id)}}}):_vm._e(),_vm._v(\" \"),(!_vm.app.active && (_vm.app.canInstall || _vm.app.isCompatible))?_c('input',{directives:[{name:\"tooltip\",rawName:\"v-tooltip.auto\",value:(_vm.enableButtonTooltip),expression:\"enableButtonTooltip\",modifiers:{\"auto\":true}}],staticClass:\"enable primary\",attrs:{\"type\":\"button\",\"value\":_vm.enableButtonText,\"disabled\":!_vm.app.canInstall || _vm.installing || _vm.isLoading},on:{\"click\":function($event){return _vm.enable(_vm.app.id)}}}):(!_vm.app.active && !_vm.app.canInstall)?_c('input',{directives:[{name:\"tooltip\",rawName:\"v-tooltip.auto\",value:(_vm.forceEnableButtonTooltip),expression:\"forceEnableButtonTooltip\",modifiers:{\"auto\":true}}],staticClass:\"enable force\",attrs:{\"type\":\"button\",\"value\":_vm.forceEnableButtonText,\"disabled\":_vm.installing || _vm.isLoading},on:{\"click\":function($event){return _vm.forceEnable(_vm.app.id)}}}):_vm._e()])]),_vm._v(\" \"),_c('ul',{staticClass:\"app-details__dependencies\"},[(_vm.app.missingMinOwnCloudVersion)?_c('li',[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('settings', 'This app has no minimum Nextcloud version assigned. This will be an error in the future.'))+\"\\n\\t\\t\")]):_vm._e(),_vm._v(\" \"),(_vm.app.missingMaxOwnCloudVersion)?_c('li',[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('settings', 'This app has no maximum Nextcloud version assigned. This will be an error in the future.'))+\"\\n\\t\\t\")]):_vm._e(),_vm._v(\" \"),(!_vm.app.canInstall)?_c('li',[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('settings', 'This app cannot be installed because the following dependencies are not fulfilled:'))+\"\\n\\t\\t\\t\"),_c('ul',{staticClass:\"missing-dependencies\"},_vm._l((_vm.app.missingDependencies),function(dep,index){return _c('li',{key:index},[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(dep)+\"\\n\\t\\t\\t\\t\")])}),0)]):_vm._e()]),_vm._v(\" \"),_c('p',{staticClass:\"app-details__documentation\"},[(!_vm.app.internal)?_c('a',{staticClass:\"appslink\",attrs:{\"href\":_vm.appstoreUrl,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(_vm._s(_vm.t('settings', 'View in store'))+\" ↗\")]):_vm._e(),_vm._v(\" \"),(_vm.app.website)?_c('a',{staticClass:\"appslink\",attrs:{\"href\":_vm.app.website,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(_vm._s(_vm.t('settings', 'Visit website'))+\" ↗\")]):_vm._e(),_vm._v(\" \"),(_vm.app.bugs)?_c('a',{staticClass:\"appslink\",attrs:{\"href\":_vm.app.bugs,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(_vm._s(_vm.t('settings', 'Report a bug'))+\" ↗\")]):_vm._e(),_vm._v(\" \"),(_vm.app.documentation && _vm.app.documentation.user)?_c('a',{staticClass:\"appslink\",attrs:{\"href\":_vm.app.documentation.user,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(_vm._s(_vm.t('settings', 'User documentation'))+\" ↗\")]):_vm._e(),_vm._v(\" \"),(_vm.app.documentation && _vm.app.documentation.admin)?_c('a',{staticClass:\"appslink\",attrs:{\"href\":_vm.app.documentation.admin,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(_vm._s(_vm.t('settings', 'Admin documentation'))+\" ↗\")]):_vm._e(),_vm._v(\" \"),(_vm.app.documentation && _vm.app.documentation.developer)?_c('a',{staticClass:\"appslink\",attrs:{\"href\":_vm.app.documentation.developer,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(_vm._s(_vm.t('settings', 'Developer documentation'))+\" ↗\")]):_vm._e()]),_vm._v(\" \"),_c('Markdown',{staticClass:\"app-details__description\",attrs:{\"text\":_vm.app.description}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Apps.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Apps.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Apps.vue?vue&type=template&id=5264f008&scoped=true&\"\nimport script from \"./Apps.vue?vue&type=script&lang=js&\"\nexport * from \"./Apps.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Apps.vue?vue&type=style&index=0&id=5264f008&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"5264f008\",\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""} \ No newline at end of file diff --git a/apps/settings/js/vue-vendors-settings-apps-9cccd48110cd039530d3.js b/apps/settings/js/vue-vendors-settings-apps-9cccd48110cd039530d3.js deleted file mode 100644 index 4ba575fd22..0000000000 --- a/apps/settings/js/vue-vendors-settings-apps-9cccd48110cd039530d3.js +++ /dev/null @@ -1,2 +0,0 @@ -(window.webpackJsonpSettings=window.webpackJsonpSettings||[]).push([[8],{538:function(e,t,s){window,e.exports=function(e){var t={};function s(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,s),r.l=!0,r.exports}return s.m=e,s.c=t,s.d=function(e,t,n){s.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},s.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.t=function(e,t){if(1&t&&(e=s(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(s.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)s.d(n,r,function(t){return e[t]}.bind(null,r));return n},s.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return s.d(t,"a",t),t},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.p="/dist/",s(s.s=200)}({0:function(e,t,s){"use strict";function n(e,t,s,n,r,o,i,a){var c,m="function"==typeof e?e.options:e;if(t&&(m.render=t,m.staticRenderFns=s,m._compiled=!0),n&&(m.functional=!0),o&&(m._scopeId="data-v-"+o),i?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},m._ssrRegister=c):r&&(c=a?function(){r.call(this,(m.functional?this.parent:this).$root.$options.shadowRoot)}:r),c)if(m.functional){m._injectStyles=c;var l=m.render;m.render=function(e,t){return c.call(t),l(e,t)}}else{var A=m.beforeCreate;m.beforeCreate=A?[].concat(A,c):[c]}return{exports:e,options:m}}s.d(t,"a",(function(){return n}))},1:function(e,t,s){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var s=function(e,t){var s,n,r,o=e[1]||"",i=e[3];if(!i)return o;if(t&&"function"==typeof btoa){var a=(s=i,n=btoa(unescape(encodeURIComponent(JSON.stringify(s)))),r="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(n),"/*# ".concat(r," */")),c=i.sources.map((function(e){return"/*# sourceURL=".concat(i.sourceRoot||"").concat(e," */")}));return[o].concat(c).concat([a]).join("\n")}return[o].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(s,"}"):s})).join("")},t.i=function(e,s,n){"string"==typeof e&&(e=[[null,e,""]]);var r={};if(n)for(var o=0;os.parts.length&&(n.parts.length=s.parts.length)}else{var i=[];for(r=0;rs.parts.length&&(n.parts.length=s.parts.length)}else{var i=[];for(r=0;r, 2020","Language-Team":"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)","Content-Type":"text/plain; charset=UTF-8",Language:"br","Plural-Forms":"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nKervoas-Le Nabat Ewen , 2020\n"},msgstr:["Last-Translator: Kervoas-Le Nabat Ewen , 2020\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (diwelus)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (bevennet)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Oberioù"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Oberiantizoù"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Loened & Natur"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Dibab"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Serriñ"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Personelañ"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Bannieloù"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Boued & Evajoù"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Implijet alies"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Da heul"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Emoji ebet kavet"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Disoc'h ebet"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Traoù"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Arsav an diaporama"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Tud & Korf"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Choaz un emoji"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["A-raok"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Klask"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Disoc'hoù an enklask"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Choaz ur c'hlav"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["Arventennoù"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Smileyioù & Fromoù"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Kregiñ an diaporama"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Arouezioù"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Beaj & Lec'hioù"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Dibosupl eo klask ar strollad"]}}}}},{locale:"ca",json:{charset:"utf-8",headers:{"Last-Translator":"Toni Hermoso Pulido , 2020","Language-Team":"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)","Content-Type":"text/plain; charset=UTF-8",Language:"ca","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nCarles Ferrando Garcia , 2020\nMarc Riera , 2020\nToni Hermoso Pulido , 2020\n"},msgstr:["Last-Translator: Toni Hermoso Pulido , 2020\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (invisible)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (restringit)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:254"},msgstr:["Accions"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Activitats"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Animals i natura"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Tria"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Tanca"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Personalitzat"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Marques"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Menjar i begudes"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Utilitzats recentment"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Següent"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["No s'ha trobat cap emoji"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Sense resultats"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Objectes"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Atura la presentació"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Persones i cos"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Trieu un emoji"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Anterior"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Cerca"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Resultats de cerca"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Selecciona una etiqueta"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["Paràmetres"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Cares i emocions"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Inicia la presentació"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Símbols"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Viatges i llocs"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["No es pot cercar el grup"]}}}}},{locale:"cs_CZ",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki , 2020","Language-Team":"Czech (Czech Republic) (https://www.transifex.com/nextcloud/teams/64236/cs_CZ/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs_CZ","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPavel Borecki , 2020\n"},msgstr:["Last-Translator: Pavel Borecki , 2020\nLanguage-Team: Czech (Czech Republic) (https://www.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (neviditelný)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (omezený)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Akce"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Aktivity"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Zvířata a příroda"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Zvolit"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Zavřít"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Uživatelsky určené"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Příznaky"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Jídlo a pití"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Často používané"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Následující"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Nenalezeno žádné emoji"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Žádné výsledky"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Objekty"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pozastavit prezentaci"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Lidé a tělo"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Vyberte emoji"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Předchozí"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Hledat"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Výsledky hledání"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Vybrat štítek"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Nastavení"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Úsměvy a emoce"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Spustit prezentaci"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Symboly"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Cestování a místa"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Nedaří se hledat skupinu"]}}}}},{locale:"da",json:{charset:"utf-8",headers:{"Last-Translator":"Thomas Nielsen , 2020","Language-Team":"Danish (https://www.transifex.com/nextcloud/teams/64236/da/)","Content-Type":"text/plain; charset=UTF-8",Language:"da","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nThomas Nielsen , 2020\n"},msgstr:["Last-Translator: Thomas Nielsen , 2020\nLanguage-Team: Danish (https://www.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (usynlig)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (begrænset)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:247"},msgstr:["Handlinger"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Vælg"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Luk"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Videre"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:172\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Ingen resultater"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Suspender fremvisning"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Forrige"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Vælg et mærke"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Indstillinger"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Start fremvisning"]}}}}},{locale:"de",json:{charset:"utf-8",headers:{"Last-Translator":"Mark Ziegler , 2020","Language-Team":"German (https://www.transifex.com/nextcloud/teams/64236/de/)","Content-Type":"text/plain; charset=UTF-8",Language:"de","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPhilipp Fischbeck , 2020\nAndreas Eitel , 2020\nMario Siegmann , 2020\nJoachim Sokolowski, 2020\nMark Ziegler , 2020\n"},msgstr:["Last-Translator: Mark Ziegler , 2020\nLanguage-Team: German (https://www.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (unsichtbar)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (eingeschränkt)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Aktionen"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Aktivitäten"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Tiere & Natur"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Auswählen"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Schließen"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Benutzerdefiniert"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Flaggen"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Essen & Trinken"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Häufig verwendet"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Weiter"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Kein Emoji gefunden"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Keine Ergebnisse"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Gegenstände"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Diashow pausieren"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Menschen & Körper"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Ein Emoji auswählen"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Vorherige"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Suche"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Suchergebnisse"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Schlagwort auswählen"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["Einstellungen"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Smileys & Emotionen"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Diashow starten"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Symbole"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Reisen & Orte"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Die Gruppe konnte nicht durchsucht werden"]}}}}},{locale:"de_DE",json:{charset:"utf-8",headers:{"Last-Translator":"Mark Ziegler , 2020","Language-Team":"German (Germany) (https://www.transifex.com/nextcloud/teams/64236/de_DE/)","Content-Type":"text/plain; charset=UTF-8",Language:"de_DE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPhilipp Fischbeck , 2020\nProfDrJones , 2020\nMario Siegmann , 2020\nMark Ziegler , 2020\n"},msgstr:["Last-Translator: Mark Ziegler , 2020\nLanguage-Team: German (Germany) (https://www.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (unsichtbar)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (eingeschränkt)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Aktionen"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Aktivitäten"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Tiere & Natur"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Auswählen"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Schließen"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Benutzerdefiniert"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Flaggen"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Essen & Trinken"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Häufig verwendet"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Weiter"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Kein Emoji gefunden"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Keine Ergebnisse"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Gegenstände"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Diashow pausieren"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Menschen & Körper"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Ein Emoji auswählen"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Vorherige"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Suche"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Suchergebnisse"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Schlagwort auswählen"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["Einstellungen"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Smileys & Emotionen"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Diashow starten"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Symbole"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Reisen & Orte"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Die Gruppe kann nicht durchsucht werden"]}}}}},{locale:"el",json:{charset:"utf-8",headers:{"Last-Translator":"Efstathios Iosifidis , 2020","Language-Team":"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)","Content-Type":"text/plain; charset=UTF-8",Language:"el","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\ngeorge k , 2020\nEfstathios Iosifidis , 2020\n"},msgstr:["Last-Translator: Efstathios Iosifidis , 2020\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (αόρατο)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (περιορισμένο)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Ενέργειες"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Δραστηριότητες"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Ζώα & Φύση"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Επιλογή"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Κλείσιμο"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Προσαρμογή"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Σημαίες"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Φαγητό & Ποτό"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Συχνά χρησιμοποιούμενο"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Επόμενο"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Δεν βρέθηκε emoji"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Κανένα αποτέλεσμα"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Αντικείμενα"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Παύση προβολής διαφανειών"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Άνθρωποι & Σώμα"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Επιλέξτε ένα emoji"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Προηγούμενο"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Αναζήτηση"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Αποτελέσματα αναζήτησης"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Επιλογή ετικέτας"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Ρυθμίσεις"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Φατσούλες & Συναίσθημα"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Έναρξη προβολής διαφανειών"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Σύμβολα"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Ταξίδια & Τοποθεσίες"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Δεν είναι δυνατή η αναζήτηση της ομάδας"]}}}}},{locale:"es",json:{charset:"utf-8",headers:{"Last-Translator":"asd fgh , 2020","Language-Team":"Spanish (https://www.transifex.com/nextcloud/teams/64236/es/)","Content-Type":"text/plain; charset=UTF-8",Language:"es","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\njavier san felipe , 2020\nasd fgh , 2020\n"},msgstr:["Last-Translator: asd fgh , 2020\nLanguage-Team: Spanish (https://www.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{etiqueta} (invisible)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{etiqueta} (restringido)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:247"},msgstr:["acciones"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Elige"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Cierra"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Siguiente"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:172\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:[" Ningún resultado"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pausa la presentación "]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Anterior"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Selecciona una etiqueta"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Ajustes"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Comienza la presentación "]}}}}},{locale:"eu",json:{charset:"utf-8",headers:{"Last-Translator":"Asier Iturralde Sarasola , 2020","Language-Team":"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)","Content-Type":"text/plain; charset=UTF-8",Language:"eu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"Translators:\nAsier Iturralde Sarasola , 2020\n"},msgstr:["Last-Translator: Asier Iturralde Sarasola , 2020\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:169"},msgstr:["{tag} (ikusezina)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:172"},msgstr:["{tag} (mugatua)"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Aukeratu"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:109"},msgstr:["Itxi"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:154"},msgstr:["Hurrengoa"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:169\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Emaitzarik ez"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:290"},msgstr:["Pausatu diaporama"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:134"},msgstr:["Aurrekoa"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Hautatu etiketa bat"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Ezarpenak"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:290"},msgstr:["Hasi diaporama"]}}}}},{locale:"fi_FI",json:{charset:"utf-8",headers:{"Last-Translator":"Robin Lahtinen , 2020","Language-Team":"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)","Content-Type":"text/plain; charset=UTF-8",Language:"fi_FI","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRobin Lahtinen , 2020\n"},msgstr:["Last-Translator: Robin Lahtinen , 2020\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (näkymätön)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (rajoitettu)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:247"},msgstr:["Toiminnot"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Valitse"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Sulje"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Seuraava"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Ei tuloksia"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Keskeytä diaesitys"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Edellinen"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Valitse tagi"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Asetukset"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Aloita diaesitys"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Ryhmää ei voi hakea"]}}}}},{locale:"fr",json:{charset:"utf-8",headers:{"Last-Translator":"Julien Veyssier , 2020","Language-Team":"French (https://www.transifex.com/nextcloud/teams/64236/fr/)","Content-Type":"text/plain; charset=UTF-8",Language:"fr","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBrendan Abolivier , 2020\ngud bes , 2020\nGreg Greg , 2020\nLuclu7 , 2020\nJulien Veyssier , 2020\n"},msgstr:["Last-Translator: Julien Veyssier , 2020\nLanguage-Team: French (https://www.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (invisible)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (restreint)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Actions"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Activités"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Animaux & Nature"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Choisir"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Fermer"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Personnalisé"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Drapeaux"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Nourriture & Boissons"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Utilisés fréquemment"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Suivant"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Pas d’émoji trouvé"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Aucun résultat"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Objets"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Mettre le diaporama en pause"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Personnes & Corps"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Choisissez un émoji"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Précédent"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Chercher"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Résultats de recherche"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Sélectionnez une balise"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Paramètres"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Smileys & Émotions"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Démarrer le diaporama"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Symboles"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Voyage & Lieux"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Impossible de chercher le groupe"]}}}}},{locale:"gl",json:{charset:"utf-8",headers:{"Last-Translator":"Miguel Anxo Bouzada , 2020","Language-Team":"Galician (https://www.transifex.com/nextcloud/teams/64236/gl/)","Content-Type":"text/plain; charset=UTF-8",Language:"gl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMiguel Anxo Bouzada , 2020\n"},msgstr:["Last-Translator: Miguel Anxo Bouzada , 2020\nLanguage-Team: Galician (https://www.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (invisíbel)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (restrinxido)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Accións"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Actividades"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Animais e natureza"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Escoller"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Pechar"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Personalizado"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Bandeiras"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Comida e bebida"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Usado con frecuencia"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Seguinte"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Non se atopou ningún «emoji»"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Sen resultados"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Obxectos"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pausar o diaporama"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Persoas e corpo"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Escolla un «emoji»"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Anterir"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Buscar"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Resultados da busca"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Seleccione unha etiqueta"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Axustes"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Sorrisos e emocións"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Iniciar o diaporama"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Símbolos"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Viaxes e lugares"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Non foi posíbel buscar o grupo"]}}}}},{locale:"he",json:{charset:"utf-8",headers:{"Last-Translator":"Yaron Shahrabani , 2020","Language-Team":"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)","Content-Type":"text/plain; charset=UTF-8",Language:"he","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nYaron Shahrabani , 2020\n"},msgstr:["Last-Translator: Yaron Shahrabani , 2020\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (נסתר)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (מוגבל)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["פעולות"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["פעילויות"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["חיות וטבע"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["בחירה"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["סגירה"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["בהתאמה אישית"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["דגלים"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["מזון ומשקאות"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["בשימוש תדיר"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["הבא"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["לא נמצא אמוג׳י"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["אין תוצאות"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["חפצים"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["השהיית מצגת"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["אנשים וגוף"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["נא לבחור אמוג׳י"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["הקודם"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["חיפוש"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["תוצאות חיפוש"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["בחירת תגית"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["הגדרות"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["חייכנים ורגשונים"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["התחלת המצגת"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["סמלים"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["טיולים ומקומות"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["לא ניתן לחפש בקבוצה"]}}}}},{locale:"hu_HU",json:{charset:"utf-8",headers:{"Last-Translator":"asbot10 , 2020","Language-Team":"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu_HU","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"Translators:\nBalázs Meskó , 2020\nasbot10 , 2020\n"},msgstr:["Last-Translator: asbot10 , 2020\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (láthatatlan)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (korlátozott)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:197"},msgstr:["Műveletek"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Válassszon"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Bezárás"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Következő"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:172\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Nincs találat"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Diavetítés szüneteltetése"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Előző"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Válasszon címkét"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Beállítások"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Diavetítés indítása"]}}}}},{locale:"is",json:{charset:"utf-8",headers:{"Last-Translator":"Sveinn í Felli , 2020","Language-Team":"Icelandic (https://www.transifex.com/nextcloud/teams/64236/is/)","Content-Type":"text/plain; charset=UTF-8",Language:"is","Plural-Forms":"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nSveinn í Felli , 2020\n"},msgstr:["Last-Translator: Sveinn í Felli , 2020\nLanguage-Team: Icelandic (https://www.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (ósýnilegt)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (takmarkað)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:254"},msgstr:["Aðgerðir"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Aðgerðir"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Dýr og náttúra"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Velja"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Loka"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Sérsniðið"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Flögg"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Matur og drykkur"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Oftast notað"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Næsta"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Ekkert tjáningartákn fannst"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Engar niðurstöður"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Hlutir"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Gera hlé á skyggnusýningu"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Fólk og líkami"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Veldu tjáningartákn"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Fyrri"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Leita"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Leitarniðurstöður"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Veldu merki"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["Stillingar"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Broskallar og tilfinningar"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Byrja skyggnusýningu"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Tákn"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Staðir og ferðalög"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Get ekki leitað í hópnum"]}}}}},{locale:"it",json:{charset:"utf-8",headers:{"Last-Translator":"Vincenzo Reale , 2020","Language-Team":"Italian (https://www.transifex.com/nextcloud/teams/64236/it/)","Content-Type":"text/plain; charset=UTF-8",Language:"it","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRandom_R, 2020\nVincenzo Reale , 2020\n"},msgstr:["Last-Translator: Vincenzo Reale , 2020\nLanguage-Team: Italian (https://www.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (invisibile)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (limitato)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Azioni"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Attività"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Animali e natura"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Scegli"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Chiudi"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Personalizzato"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Bandiere"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Cibo e bevande"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Usati di frequente"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Successivo"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Nessun emoji trovato"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Nessun risultato"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Oggetti"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Presentazione in pausa"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Persone e corpo"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Scegli un emoji"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Precedente"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Cerca"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Risultati di ricerca"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Seleziona un'etichetta"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["Impostazioni"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Faccine ed emozioni"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Avvia presentazione"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Simboli"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Viaggi e luoghi"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Impossibile cercare il gruppo"]}}}}},{locale:"ja_JP",json:{charset:"utf-8",headers:{"Last-Translator":"YANO Tetsu , 2020","Language-Team":"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)","Content-Type":"text/plain; charset=UTF-8",Language:"ja_JP","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nYANO Tetsu , 2020\n"},msgstr:["Last-Translator: YANO Tetsu , 2020\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{タグ} (不可視)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{タグ} (制限付)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["操作"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["アクティビティ"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["動物と自然"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["選択"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["閉じる"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["カスタム"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["国旗"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["食べ物と飲み物"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["よく使うもの"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["次"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["絵文字が見つかりません"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["なし"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["物"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["スライドショーを一時停止"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["様々な人と体の部位"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["絵文字を選択"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["前"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["検索"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["検索結果"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["タグを選択"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["設定"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["笑顔と気持ち"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["スライドショーを開始"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["記号"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["旅行と場所"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["グループを検索できません"]}}}}},{locale:"lt_LT",json:{charset:"utf-8",headers:{"Last-Translator":"Moo, 2020","Language-Team":"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)","Content-Type":"text/plain; charset=UTF-8",Language:"lt_LT","Plural-Forms":"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMoo, 2020\n"},msgstr:["Last-Translator: Moo, 2020\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (nematoma)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (apribota)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:254"},msgstr:["Veiksmai"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Veiklos"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Gyvūnai ir gamta"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Pasirinkti"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Užverti"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Tinkinti"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Vėliavos"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Maistas ir gėrimai"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Dažniausiai naudoti"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Kitas"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Nerasta jaustukų"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Nėra rezultatų"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Objektai"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pristabdyti skaidrių rodymą"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Žmonės ir kūnas"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Pasirinkti jaustuką"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Ankstesnis"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Ieškoti"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Paieškos rezultatai"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Pasirinkti žymę"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["Nustatymai"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Šypsenos ir emocijos"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pradėti skaidrių rodymą"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Simboliai"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Kelionės ir vietos"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Nepavyko atlikti paiešką grupėje"]}}}}},{locale:"lv",json:{charset:"utf-8",headers:{"Last-Translator":"stendec , 2020","Language-Team":"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)","Content-Type":"text/plain; charset=UTF-8",Language:"lv","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"Translators:\nstendec , 2020\n"},msgstr:["Last-Translator: stendec , 2020\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:169"},msgstr:["{tag} (neredzams)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:172"},msgstr:["{tag} (ierobežots)"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Izvēlēties"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:109"},msgstr:["Aizvērt"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:154"},msgstr:["Nākamais"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:169\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Nav rezultātu"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:290"},msgstr:["Pauzēt slaidrādi"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:134"},msgstr:["Iepriekšējais"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Izvēlēties birku"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Iestatījumi"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:290"},msgstr:["Sākt slaidrādi"]}}}}},{locale:"mk",json:{charset:"utf-8",headers:{"Last-Translator":"Сашко Тодоров, 2020","Language-Team":"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)","Content-Type":"text/plain; charset=UTF-8",Language:"mk","Plural-Forms":"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nСашко Тодоров, 2020\n"},msgstr:["Last-Translator: Сашко Тодоров, 2020\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (невидливо)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (ограничено)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Акции"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Активности"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Животни & Природа"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Избери"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Затвори"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Прилагодени"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Знамиња"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Храна & Пијалоци"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Најчесто користени"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Следно"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Не се пронајдени емотикони"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Нема резултати"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Објекти"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Пузирај слајдшоу"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Луѓе & Тело"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Избери емотикон"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Предходно"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Барај"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Резултати од барувањето"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Избери ознака"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["Параметри"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Смешковци & Емотикони"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Стартувај слајдшоу"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Симболи"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Патувања & Места"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Неможе да се принајде групата"]}}}}},{locale:"nb_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Ole Jakob Brustad , 2020","Language-Team":"Norwegian Bokmål (Norway) (https://www.transifex.com/nextcloud/teams/64236/nb_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nb_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nOle Jakob Brustad , 2020\n"},msgstr:["Last-Translator: Ole Jakob Brustad , 2020\nLanguage-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (usynlig)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (beskyttet)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:247"},msgstr:["Handlinger"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Velg"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Lukk"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Neste"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:172\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Ingen resultat"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pause lysbildefremvisning"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Forrige"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Velg et merke"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Instillinger"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Start lysbildefremvisning"]}}}}},{locale:"nl",json:{charset:"utf-8",headers:{"Last-Translator":"Arjan van S, 2020","Language-Team":"Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)","Content-Type":"text/plain; charset=UTF-8",Language:"nl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"Translators:\nRoeland Jago Douma , 2020\nArjan van S, 2020\n"},msgstr:["Last-Translator: Arjan van S, 2020\nLanguage-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (onzichtbaar)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (beperkt)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:196"},msgstr:["Acties"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Kies"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Sluiten"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Volgende"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:172\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Geen resultaten"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pauzeer diavoorstelling"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Vorige"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Selecteer een label"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Instellingen"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Start diavoorstelling"]}}}}},{locale:"oc",json:{charset:"utf-8",headers:{"Last-Translator":"Quentin PAGÈS, 2020","Language-Team":"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)","Content-Type":"text/plain; charset=UTF-8",Language:"oc","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"Translators:\nQuentin PAGÈS, 2020\n"},msgstr:["Last-Translator: Quentin PAGÈS, 2020\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (invisible)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (limit)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:194"},msgstr:["Accions"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Causir"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Tampar"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Seguent"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:172\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Cap de resultat"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Metre en pausa lo diaporama"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Precedent"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Seleccionar una etiqueta"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Paramètres"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Lançar lo diaporama"]}}}}},{locale:"pl",json:{charset:"utf-8",headers:{"Last-Translator":"Valdnet, 2020","Language-Team":"Polish (https://www.transifex.com/nextcloud/teams/64236/pl/)","Content-Type":"text/plain; charset=UTF-8",Language:"pl","Plural-Forms":"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nValdnet, 2020\n"},msgstr:["Last-Translator: Valdnet, 2020\nLanguage-Team: Polish (https://www.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (niewidoczna)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (ograniczona)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Działania"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Aktywność"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Zwierzęta i natura"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Wybierz"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Zamknij"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Zwyczajne"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Flagi"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Jedzenie i picie"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Często używane"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Następny"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Nie znaleziono emotikonów"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Brak wyników"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Obiekty"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Wstrzymaj pokaz slajdów"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Ludzie i ciało"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Wybierz emoji"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Poprzedni"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Szukaj"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Wyniki wyszukiwania"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Wybierz etykietę"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Ustawienia"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Buźki i emotikony"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Rozpocznij pokaz slajdów"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Symbole"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Podróże i miejsca"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Nie można przeszukać grupy"]}}}}},{locale:"pt_BR",json:{charset:"utf-8",headers:{"Last-Translator":"Paulo Schopf, 2020","Language-Team":"Portuguese (Brazil) (https://www.transifex.com/nextcloud/teams/64236/pt_BR/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_BR","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMaurício Gardini , 2020\nPaulo Schopf, 2020\n"},msgstr:["Last-Translator: Paulo Schopf, 2020\nLanguage-Team: Portuguese (Brazil) (https://www.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (invisível)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (restrito) "]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Ações"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Atividades"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Animais & Natureza"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Escolher"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Fechar"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Personalizado"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Bandeiras"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Comida & Bebida"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Mais usados"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Próximo"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Nenhum emoji encontrado"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Sem resultados"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Objetos"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pausar apresentação de slides"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Pessoas & Corpo"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Escolha um emoji"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Anterior"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Pesquisar"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Resultados da pesquisa"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Selecionar uma tag"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Configurações"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Smiles & Emoções"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Iniciar apresentação de slides"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Símbolo"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Viagem & Lugares"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Não foi possível pesquisar o grupo"]}}}}},{locale:"pt_PT",json:{charset:"utf-8",headers:{"Last-Translator":"Manuela Silva , 2020","Language-Team":"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_PT","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nfpapoila , 2020\nManuela Silva , 2020\n"},msgstr:["Last-Translator: Manuela Silva , 2020\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (invisivel)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (restrito)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Ações"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Escolher"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Fechar"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Seguinte"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Sem resultados"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pausar diaporama"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Anterior"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Selecionar uma etiqueta"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Definições"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Iniciar diaporama"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Não é possível pesquisar o grupo"]}}}}},{locale:"ru",json:{charset:"utf-8",headers:{"Last-Translator":"Alex , 2020","Language-Team":"Russian (https://www.transifex.com/nextcloud/teams/64236/ru/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"Translators:\nAlex , 2020\n"},msgstr:["Last-Translator: Alex , 2020\nLanguage-Team: Russian (https://www.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:169"},msgstr:["{tag} (невидимое)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:172"},msgstr:["{tag} (ограниченное)"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Выберите"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:109"},msgstr:["Закрыть"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:154"},msgstr:["Следующее"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:169\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Результаты отсуствуют"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:290"},msgstr:["Приостановить показ слйдов"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:134"},msgstr:["Предыдущее"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Выберите метку"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Параметры"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:290"},msgstr:["Начать показ слайдов"]}}}}},{locale:"sk_SK",json:{charset:"utf-8",headers:{"Last-Translator":"Anton Kuchár , 2020","Language-Team":"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)","Content-Type":"text/plain; charset=UTF-8",Language:"sk_SK","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nAnton Kuchár , 2020\n"},msgstr:["Last-Translator: Anton Kuchár , 2020\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (neviditeľný)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (obmedzený)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Akcie"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Aktivity"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Zvieratá a príroda"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Vybrať"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Zatvoriť"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Zvyk"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Vlajky"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Jedlo a nápoje"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Často používané"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Ďalší"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Nenašli sa žiadne emodži"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Žiadne výsledky"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Objekty"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pozastaviť prezentáciu"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Ľudia a telo"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Vyberte si emodži"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Predchádzajúci"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Hľadať"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Výsledky vyhľadávania"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Vybrať štítok"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Nastavenia"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Smajlíky a emócie"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Začať prezentáciu"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Symboly"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Cestovanie a miesta"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Skupinu sa nepodarilo nájsť"]}}}}},{locale:"sv",json:{charset:"utf-8",headers:{"Last-Translator":"Jonatan Nyberg, 2020","Language-Team":"Swedish (https://www.transifex.com/nextcloud/teams/64236/sv/)","Content-Type":"text/plain; charset=UTF-8",Language:"sv","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"Translators:\nGabriel Ekström , 2020\nErik Lennartsson, 2020\nJonatan Nyberg, 2020\n"},msgstr:["Last-Translator: Jonatan Nyberg, 2020\nLanguage-Team: Swedish (https://www.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (osynlig)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (begränsad)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:194"},msgstr:["Åtgärder"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Välj"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Stäng"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Nästa"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:172\nsrc/components/MultiselectTags/MultiselectTags.vue:78"},msgstr:["Inga resultat"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Pausa bildspel"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Föregående"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Välj en tag"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Inställningar"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Starta bildspel"]}}}}},{locale:"tr",json:{charset:"utf-8",headers:{"Last-Translator":"Hüseyin Fahri Uzun , 2020","Language-Team":"Turkish (https://www.transifex.com/nextcloud/teams/64236/tr/)","Content-Type":"text/plain; charset=UTF-8",Language:"tr","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nKemal Oktay Aktoğan , 2020\nabc Def , 2020\nHüseyin Fahri Uzun , 2020\n"},msgstr:["Last-Translator: Hüseyin Fahri Uzun , 2020\nLanguage-Team: Turkish (https://www.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (görünmez)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (kısıtlı)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:247"},msgstr:["Eylemler"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Seç"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Kapat"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Sonraki"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Sonuçlar yok"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Slayt gösterisini duraklat"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Önceki"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Bir etiket seçin"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Ayarlar"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Slayt gösterisini başlat"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Grupta arama yapılamıyor"]}}}}},{locale:"uk",json:{charset:"utf-8",headers:{"Last-Translator":"Oleksa Stasevych , 2020","Language-Team":"Ukrainian (https://www.transifex.com/nextcloud/teams/64236/uk/)","Content-Type":"text/plain; charset=UTF-8",Language:"uk","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nOleksa Stasevych , 2020\n"},msgstr:["Last-Translator: Oleksa Stasevych , 2020\nLanguage-Team: Ukrainian (https://www.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (invisible)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (restricted)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:249"},msgstr:["Дії"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["Діяльність"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["Тварини та природа"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["Виберіть"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["Закрити"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["Власне"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["Прапори"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["Їжа та напитки"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["Найчастіші"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["Вперед"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["Емоційки відсутні"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["Відсутні результати"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["Об'єкти"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Пауза у показі слайдів"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["Люди та жести"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["Виберіть емоційку"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["Назад"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["Пошук"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["Результати пошуку"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["Виберіть позначку"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["Налаштування"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["Усміхайлики та емоційки"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["Почати показ слайдів"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["Символи"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["Поїздки та місця"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["Неможливо шукати в групі"]}}}}},{locale:"zh_CN",json:{charset:"utf-8",headers:{"Last-Translator":"Pascal Janus , 2020","Language-Team":"Chinese (China) (https://www.transifex.com/nextcloud/teams/64236/zh_CN/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_CN","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nSleepyJesse , 2020\nJianming Liang , 2020\nPascal Janus , 2020\n"},msgstr:["Last-Translator: Pascal Janus , 2020\nLanguage-Team: Chinese (China) (https://www.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (不可见)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (受限)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:247"},msgstr:["行为"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["选择"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["关闭"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["下一个"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["无结果"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["暂停幻灯片"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["上一个"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["选择一个标签"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:53"},msgstr:["设置"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["开始幻灯片"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["无法搜索分组"]}}}}},{locale:"zh_TW",json:{charset:"utf-8",headers:{"Last-Translator":"Natashia Maxins , 2020","Language-Team":"Chinese (Taiwan) (https://www.transifex.com/nextcloud/teams/64236/zh_TW/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_TW","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nbyStarTW (pan93412) , 2020\nNatashia Maxins , 2020\n"},msgstr:["Last-Translator: Natashia Maxins , 2020\nLanguage-Team: Chinese (Taiwan) (https://www.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n"]},"{tag} (invisible)":{msgid:"{tag} (invisible)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:170"},msgstr:["{tag} (隱藏)"]},"{tag} (restricted)":{msgid:"{tag} (restricted)",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:173"},msgstr:["{tag} (受限)"]},Actions:{msgid:"Actions",comments:{reference:"src/components/Actions/Actions.vue:254"},msgstr:["動作"]},Activities:{msgid:"Activities",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:176"},msgstr:["活動"]},"Animals & Nature":{msgid:"Animals & Nature",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:174"},msgstr:["動物與自然"]},Choose:{msgid:"Choose",comments:{reference:"src/components/ColorPicker/ColorPicker.vue:145"},msgstr:["選擇"]},Close:{msgid:"Close",comments:{reference:"src/components/Modal/Modal.vue:117"},msgstr:["關閉"]},Custom:{msgid:"Custom",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:181"},msgstr:["自定義"]},Flags:{msgid:"Flags",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:180"},msgstr:["旗幟"]},"Food & Drink":{msgid:"Food & Drink",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:175"},msgstr:["食物與飲料"]},"Frequently used":{msgid:"Frequently used",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:171"},msgstr:["最近使用"]},Next:{msgid:"Next",comments:{reference:"src/components/Modal/Modal.vue:166"},msgstr:["下一個"]},"No emoji found":{msgid:"No emoji found",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:168"},msgstr:["未找到表情符號"]},"No results":{msgid:"No results",comments:{reference:"src/components/Multiselect/Multiselect.vue:174\nsrc/components/MultiselectTags/MultiselectTags.vue:78\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38"},msgstr:["無結果"]},Objects:{msgid:"Objects",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:178"},msgstr:["物件"]},"Pause slideshow":{msgid:"Pause slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["暫停幻燈片"]},"People & Body":{msgid:"People & Body",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:173"},msgstr:["人物"]},"Pick an emoji":{msgid:"Pick an emoji",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:153"},msgstr:["選擇表情符號"]},Previous:{msgid:"Previous",comments:{reference:"src/components/Modal/Modal.vue:144"},msgstr:["上一個"]},Search:{msgid:"Search",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:167"},msgstr:["搜尋"]},"Search results":{msgid:"Search results",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:170"},msgstr:["搜尋結果"]},"Select a tag":{msgid:"Select a tag",comments:{reference:"src/components/MultiselectTags/MultiselectTags.vue:100"},msgstr:["選擇標籤"]},Settings:{msgid:"Settings",comments:{reference:"src/components/AppNavigationSettings/AppNavigationSettings.vue:57"},msgstr:["設定"]},"Smileys & Emotion":{msgid:"Smileys & Emotion",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:172"},msgstr:["表情"]},"Start slideshow":{msgid:"Start slideshow",comments:{reference:"src/components/Modal/Modal.vue:302"},msgstr:["開始幻燈片"]},Symbols:{msgid:"Symbols",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:179"},msgstr:["標誌"]},"Travel & Places":{msgid:"Travel & Places",comments:{reference:"src/components/EmojiPicker/EmojiPicker.vue:177"},msgstr:["旅遊與景點"]},"Unable to search the group":{msgid:"Unable to search the group",comments:{reference:"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143"},msgstr:["無法搜尋群組"]}}}}}].map((function(e){return r.addTranslation(e.locale,e.json)}));var o=r.build(),i=o.ngettext.bind(o),a=o.gettext.bind(o)},function(e,t){e.exports=s(183)},function(e,t){e.exports=s(46)},function(e,t){e.exports=s(72)},function(e,t){e.exports=s(94)},function(e,t){e.exports=s(187)},function(e,t){e.exports=s(80)},function(e,t,s){"use strict";e.exports=function(e,t){return t||(t={}),"string"!=typeof(e=e&&e.__esModule?e.default:e)?e:(/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e)}},function(e,t,s){"use strict";s.r(t),t.default="data:application/vnd.ms-fontobject;base64,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"},function(e,t,s){"use strict";s.r(t),t.default="data:font/woff;base64,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PAE55eh8gAAAAQAAAAEAAPIqMj9fDzz1AAsTiAAAAADboxh0AAAAANtSPHX/4AAAE5MTiAAAAAgAAgAAAAAAAAABAAATiAAAAAATiP/g//UTkwABAAAAAAAAAAAAAAAAAAAABwAAAAATiAAAE4gAABOIAAATiAAABjYAABOIAAAAAP//AAAAAAAAAAAAAAAA/+AAAAAAAAAAAAAAACIANgBYAGwAgACUALQBDgF8AZoCEAImAjQCQgKoAyIDpgP+AAEAAAATAEsAAwAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAAAQAMYAAQAAAAAAAQAUAAAAAQAAAAAAAgAHABQAAQAAAAAAAwAUABsAAQAAAAAABAAUAC8AAQAAAAAABQALAEMAAQAAAAAABgAUAE4AAQAAAAAACgArAGIAAQAAAAAACwATAI0AAwABBAkAAQAoAKAAAwABBAkAAgAOAMgAAwABBAkAAwAoANYAAwABBAkABAAoAP4AAwABBAkABQAWASYAAwABBAkABgAoATwAAwABBAkACgBWAWQAAwABBAkACwAmAbppY29uZm9udC12dWUtOWE5OGRlMlJlZ3VsYXJpY29uZm9udC12dWUtOWE5OGRlMmljb25mb250LXZ1ZS05YTk4ZGUyVmVyc2lvbiAxLjBpY29uZm9udC12dWUtOWE5OGRlMkdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBSAGUAZwB1AGwAYQByAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBpAGMAbwBuAGYAbwBuAHQALQB2AHUAZQAtADkAYQA5ADgAZABlADIAVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAACAAAAAAAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAATABMAAAECAQMBBAEFAQYBBwEIAQkBCgELAQwBDQEOAQ8BEAERARIBExFhcnJvdy1sZWZ0LWRvdWJsZQphcnJvdy1sZWZ0EmFycm93LXJpZ2h0LWRvdWJsZQthcnJvdy1yaWdodApicmVhZGNydW1iCWNoZWNrbWFyawVjbG9zZQdjb25maXJtBGluZm8EbWVudQRtb3JlBXBhdXNlBHBsYXkKdHJpYW5nbGUtcxB1c2VyLXN0YXR1cy1hd2F5D3VzZXItc3RhdHVzLWRuZBV1c2VyLXN0YXR1cy1pbnZpc2libGUSdXNlci1zdGF0dXMtb25saW5lAAA="},function(e,t,s){"use strict";s.r(t),t.default="data:font/ttf;base64,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AAATiP/g//UTkwABAAAAAAAAAAAAAAAAAAAABwAAAAATiAAAE4gAABOIAAATiAAABjYAABOIAAAAAP//AAAAAAAAAAAAAAAA/+AAAAAAAAAAAAAAACIANgBYAGwAgACUALQBDgF8AZoCEAImAjQCQgKoAyIDpgP+AAEAAAATAEsAAwAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAAAQAMYAAQAAAAAAAQAUAAAAAQAAAAAAAgAHABQAAQAAAAAAAwAUABsAAQAAAAAABAAUAC8AAQAAAAAABQALAEMAAQAAAAAABgAUAE4AAQAAAAAACgArAGIAAQAAAAAACwATAI0AAwABBAkAAQAoAKAAAwABBAkAAgAOAMgAAwABBAkAAwAoANYAAwABBAkABAAoAP4AAwABBAkABQAWASYAAwABBAkABgAoATwAAwABBAkACgBWAWQAAwABBAkACwAmAbppY29uZm9udC12dWUtOWE5OGRlMlJlZ3VsYXJpY29uZm9udC12dWUtOWE5OGRlMmljb25mb250LXZ1ZS05YTk4ZGUyVmVyc2lvbiAxLjBpY29uZm9udC12dWUtOWE5OGRlMkdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBSAGUAZwB1AGwAYQByAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBpAGMAbwBuAGYAbwBuAHQALQB2AHUAZQAtADkAYQA5ADgAZABlADIAVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAACAAAAAAAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAATABMAAAECAQMBBAEFAQYBBwEIAQkBCgELAQwBDQEOAQ8BEAERARIBExFhcnJvdy1sZWZ0LWRvdWJsZQphcnJvdy1sZWZ0EmFycm93LXJpZ2h0LWRvdWJsZQthcnJvdy1yaWdodApicmVhZGNydW1iCWNoZWNrbWFyawVjbG9zZQdjb25maXJtBGluZm8EbWVudQRtb3JlBXBhdXNlBHBsYXkKdHJpYW5nbGUtcxB1c2VyLXN0YXR1cy1hd2F5D3VzZXItc3RhdHVzLWRuZBV1c2VyLXN0YXR1cy1pbnZpc2libGUSdXNlci1zdGF0dXMtb25saW5lAAA="},function(e,t,s){"use strict";s.r(t),t.default="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCIgPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48bWV0YWRhdGE+PC9tZXRhZGF0YT48ZGVmcz48Zm9udCBpZD0iaWNvbmZvbnQtdnVlLTlhOThkZTIiIGhvcml6LWFkdi14PSI1MDAwIj48Zm9udC1mYWNlIGZvbnQtZmFtaWx5PSJpY29uZm9udC12dWUtOWE5OGRlMiIgZm9udC13ZWlnaHQ9IjQwMCIgZm9udC1zdHJldGNoPSJub3JtYWwiIHVuaXRzLXBlci1lbT0iNTAwMCIgcGFub3NlLTE9IjIgMCA1IDMgMCAwIDAgMCAwIDAiIGFzY2VudD0iNTAwMCIgZGVzY2VudD0iMCIgeC1oZWlnaHQ9IjAiIGJib3g9Ii0zMiAwIDUwMTEgNTAwMCIgdW5kZXJsaW5lLXRoaWNrbmVzcz0iMCIgdW5kZXJsaW5lLXBvc2l0aW9uPSI1MCIgdW5pY29kZS1yYW5nZT0iVStlYTAxLWVhMTIiIC8+PG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjAiICAvPjxnbHlwaCBnbHlwaC1uYW1lPSJhcnJvdy1sZWZ0LWRvdWJsZSIgdW5pY29kZT0iJiN4ZWEwMTsiIGQ9Ik0zNzUwIDM5MDYgbC0xNDA2IC0xNDA2IGwxNDA2IC0xNDA2IGwwIDMxMiBsLTEwOTQgMTA5NCBsMTA5NCAxMDk0IGwwIDMxMiBaTTIzNDQgMzkwNiBsLTE0MDYgLTE0MDYgbDE0MDYgLTE0MDYgbDAgMzEyIGwtMTA5NCAxMDk0IGwxMDk0IDEwOTQgbDAgMzEyIFoiIC8+PGdseXBoIGdseXBoLW5hbWU9ImFycm93LWxlZnQiIHVuaWNvZGU9IiYjeGVhMDI7IiBkPSJNMTU2MyAyNTAwIGwxODc1IC0xODc1IGwwIC0zMTIgbC0yMTg4IDIxODcgbDIxODggMjE4OCBsMCAtMzEzIGwtMTg3NSAtMTg3NSBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJhcnJvdy1yaWdodC1kb3VibGUiIHVuaWNvZGU9IiYjeGVhMDM7IiBkPSJNMTI1MCAxMDk0IGwxNDA2IDE0MDYgbC0xNDA2IDE0MDYgbDAgLTMxMiBsMTA5NCAtMTA5NCBsLTEwOTQgLTEwOTQgbDAgLTMxMiBaTTI2NTYgMTA5NCBsMTQwNyAxNDA2IGwtMTQwNyAxNDA2IGwwIC0zMTIgbDEwOTQgLTEwOTQgbC0xMDk0IC0xMDk0IGwwIC0zMTIgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0iYXJyb3ctcmlnaHQiIHVuaWNvZGU9IiYjeGVhMDQ7IiBkPSJNMzQzOCAyNTAwIGwtMTg3NSAxODc1IGwwIDMxMyBsMjE4NyAtMjE4OCBsLTIxODcgLTIxODcgbDAgMzEyIGwxODc1IDE4NzUgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0iYnJlYWRjcnVtYiIgdW5pY29kZT0iJiN4ZWEwNTsiIGQ9Ik0xNDggNTAwMCBsLTE0OCAtODUgbDEzOTQgLTI0MTUgbC0xMzk0IC0yNDE1IGwxNDggLTg1IGwxNDQzIDI1MDAgbC0xNDQzIDI1MDAgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0iY2hlY2ttYXJrIiB1bmljb2RlPSImI3hlYTA2OyIgZD0iTTQwNDUgMzk3MSBsLTIwNjEgLTIwNjEgbC0xMDI5IDEwMjkgbC00NDIgLTQ0MSBsMTQ3MSAtMTQ3MSBsMjUwMyAyNTAyIGwtNDQyIDQ0MiBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJjbG9zZSIgdW5pY29kZT0iJiN4ZWEwNzsiIGQ9Ik00Mzc1IDExNTYgbC01MzEgLTUzMSBsLTEzNDQgMTM0NCBsLTEzNDQgLTEzNDQgbC01MzEgNTMxIGwxMzQ0IDEzNDQgbC0xMzQ0IDEzNDQgbDUzMSA1MzEgbDEzNDQgLTEzNDQgbDEzNDQgMTM0NCBsNTMxIC01MzEgbC0xMzQ0IC0xMzQ0IGwxMzQ0IC0xMzQ0IFoiIC8+PGdseXBoIGdseXBoLW5hbWU9ImNvbmZpcm0iIHVuaWNvZGU9IiYjeGVhMDg7IiBkPSJNMjY1NiA0ODQ0IHEtMTAxIDAgLTE4MCAtNTcgcS03NCAtNTIgLTEwOSAtMTM4IHEtMzUgLTg2IC0xOSAtMTc1IHExOCAtOTYgOTAgLTE2NyBsMTQ5NSAtMTQ5NCBsLTM2MTYgMCBxLTc3IDEgLTEzOSAtMjYgcS01OCAtMjQgLTk5IC03MCBxLTM5IC00NCAtNTkgLTEwMSBxLTIwIC01NiAtMjAgLTExNiBxMCAtNjAgMjAgLTExNiBxMjAgLTU3IDU5IC0xMDEgcTQxIC00NiA5OSAtNzAgcTYyIC0yNyAxMzkgLTI1IGwzNjE2IDAgbC0xNDk1IC0xNDk1IHEtNTUgLTUzIC04MSAtMTE2IHEtMjQgLTU5IC0yMSAtMTIxIHEzIC01OCAzMCAtMTEzIHEyNSAtNTQgNjggLTk3IHE0MyAtNDMgOTYgLTY4IHE1NSAtMjYgMTE0IC0yOSBxNjIgLTMgMTIwIDIxIHE2MyAyNSAxMTYgODEgbDIwMjkgMjAyOCBxNTkgNjAgODAgMTQxIHEyMSA4MCAxIDE1OSBxLTIxIDgyIC04MSAxNDIgbC0yMDI5IDIwMjggcS00NCA0NSAtMTAyIDcwIHEtNTggMjUgLTEyMiAyNSBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJpbmZvIiB1bmljb2RlPSImI3hlYTA5OyIgZD0iTTI0MjIgNDY4OCBxLTExMSAwIC0yMTMgLTQzIHEtOTggLTQyIC0xNzQgLTExNy41IHEtNzYgLTc1LjUgLTExNyAtMTc0LjUgcS00MyAtMTAxIC00MyAtMjEyLjUgcTAgLTExMS41IDQzIC0yMTIuNSBxNDEgLTk4IDExNyAtMTc0IHE3NiAtNzYgMTc0IC0xMTcgcTEwMiAtNDMgMjEzIC00MyBxMTExIDAgMjEzIDQzIHE5OCA0MSAxNzMuNSAxMTcgcTc1LjUgNzYgMTE3LjUgMTc0IHE0MyAxMDEgNDMgMjEyLjUgcTAgMTExLjUgLTQzIDIxMi41IHEtNDIgOTkgLTExNy41IDE3NC41IHEtNzUuNSA3NS41IC0xNzMuNSAxMTcuNSBxLTEwMiA0MyAtMjEzIDQzIFpNMTU2MyAzMTI1IHEtODYgMCAtMTU4IC00MyBxLTcxIC00MSAtMTEyIC0xMTIgcS00MyAtNzIgLTQzIC0xNTcuNSBxMCAtODUuNSA0MyAtMTU3LjUgcTQxIC03MSAxMTIgLTExMiBxNzIgLTQzIDE1OCAtNDMgbDYyNSAwIGwwIC0xNTYyIGwtNjI1IDAgcS04NiAwIC0xNTggLTQzIHEtNzEgLTQxIC0xMTIgLTExMiBxLTQzIC03MyAtNDMgLTE1OCBxMCAtODUgNDMgLTE1OCBxNDEgLTcxIDExMiAtMTEyIHE3MiAtNDMgMTU4IC00MiBsMTg3NSAwIHE4NSAwIDE1NyA0MiBxNzEgNDEgMTEyIDExMiBxNDMgNzMgNDMgMTU4IHEwIDg1IC00MyAxNTggcS00MSA3MSAtMTEyIDExMiBxLTcyIDQzIC0xNTcgNDMgbC02MjUgMCBsMCAxODc1IHEwIDg1IC00MyAxNTcgcS00MSA3MSAtMTEyIDExMiBxLTczIDQzIC0xNTggNDMgbC05MzcgMCBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJtZW51IiB1bmljb2RlPSImI3hlYTBhOyIgZD0iTTYyNSA0Mzc1IGwwIC02MjUgbDM3NTAgMCBsMCA2MjUgbC0zNzUwIDAgWk02MjUgMjgxMyBsMCAtNjI1IGwzNzUwIDAgbDAgNjI1IGwtMzc1MCAwIFpNNjI1IDEyNTAgbDAgLTYyNSBsMzc1MCAwIGwwIDYyNSBsLTM3NTAgMCBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJtb3JlIiB1bmljb2RlPSImI3hlYTBiOyIgZD0iTTc4MSAzMDQ3IHExMTIgMCAyMTMgLTQzIHE5OCAtNDIgMTc0IC0xMTcuNSBxNzYgLTc1LjUgMTE3IC0xNzMuNSBxNDMgLTEwMiA0MyAtMjEzIHEwIC0xMTEgLTQzIC0yMTMgcS00MSAtOTggLTExNyAtMTczLjUgcS03NiAtNzUuNSAtMTc0IC0xMTcuNSBxLTEwMSAtNDMgLTIxMi41IC00MyBxLTExMS41IDAgLTIxMy41IDQzIHEtOTggNDIgLTE3My41IDExNy41IHEtNzUuNSA3NS41IC0xMTcuNSAxNzMuNSBxLTQzIDEwMiAtNDMgMjEzIHEwIDExMSA0MyAyMTMgcTQyIDk4IDExNy41IDE3My41IHE3NS41IDc1LjUgMTczLjUgMTE3LjUgcTEwMiA0MyAyMTMgNDMgWk0yNTAwIDMwNDcgcTExMSAwIDIxMyAtNDMgcTk4IC00MiAxNzMuNSAtMTE3LjUgcTc1LjUgLTc1LjUgMTE3LjUgLTE3My41IHE0MyAtMTAyIDQzIC0yMTMgcTAgLTExMSAtNDMgLTIxMyBxLTQyIC05OCAtMTE3LjUgLTE3My41IHEtNzUuNSAtNzUuNSAtMTczLjUgLTExNy41IHEtMTAyIC00MyAtMjEzIC00MyBxLTExMSAwIC0yMTMgNDMgcS05OCA0MiAtMTczLjUgMTE3LjUgcS03NS41IDc1LjUgLTExNy41IDE3My41IHEtNDMgMTAyIC00MyAyMTMgcTAgMTExIDQzIDIxMyBxNDIgOTggMTE3LjUgMTczLjUgcTc1LjUgNzUuNSAxNzMuNSAxMTcuNSBxMTAyIDQzIDIxMyA0MyBaTTQyMTkgMzA0NyBxMTExIDAgMjEzIC00MyBxOTggLTQyIDE3My41IC0xMTcuNSBxNzUuNSAtNzUuNSAxMTcuNSAtMTczLjUgcTQzIC0xMDIgNDMgLTIxMyBxMCAtMTExIC00MyAtMjEzIHEtNDIgLTk4IC0xMTcuNSAtMTczLjUgcS03NS41IC03NS41IC0xNzMuNSAtMTE3LjUgcS0xMDIgLTQzIC0yMTMuNSAtNDMgcS0xMTEuNSAwIC0yMTIuNSA0MyBxLTk4IDQyIC0xNzQgMTE3LjUgcS03NiA3NS41IC0xMTcgMTczLjUgcS00MyAxMDIgLTQzIDIxMyBxMCAxMTEgNDMgMjEzIHE0MSA5OCAxMTcgMTczLjUgcTc2IDc1LjUgMTc0IDExNy41IHExMDEgNDMgMjEzIDQzIFoiIC8+PGdseXBoIGdseXBoLW5hbWU9InBhdXNlIiB1bmljb2RlPSImI3hlYTBjOyIgZD0iTTkzOCA0MDYzIGwwIC0zMTI1IGwxMjUwIDAgbDAgMzEyNSBsLTEyNTAgMCBaTTI4MTMgNDA2MyBsMCAtMzEyNSBsMTI1MCAwIGwwIDMxMjUgbC0xMjUwIDAgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0icGxheSIgdW5pY29kZT0iJiN4ZWEwZDsiIGQ9Ik02MjUgNDM3NSBsMzc1MCAtMTg3NSBsLTM3NTAgLTE4NzUgbDAgMzc1MCBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJ0cmlhbmdsZS1zIiB1bmljb2RlPSImI3hlYTBlOyIgZD0iTTEyNTAgMzEyNSBsMTI1MCAtMTI1MCBsMTI1MCAxMjQ4IGwtMjUwMCAyIFoiIC8+PGdseXBoIGdseXBoLW5hbWU9InVzZXItc3RhdHVzLWF3YXkiIHVuaWNvZGU9IiYjeGVhMGY7IiBkPSJNMjE1NiA0OTY5IHEtMzYwIC00NiAtNjk1IC0xOTcgcS0zMjYgLTE0NyAtNjAxIC0zODAgcS0yNzQgLTIzMSAtNDcyIC01MjggcS0yMDIgLTMwMSAtMzA5IC02NDIgcS0xMTAgLTM1MyAtMTEwIC03MjIgcTAgLTQwNiAxMjggLTc4OCBxMTIzIC0zNzAgMzU2IC02ODYgcTIyOSAtMzEzIDU0MiAtNTQyIHEzMTYgLTIzMiA2ODYgLTM1NiBxMzgyIC0xMjggNzg4IC0xMjggcTM2OSAwIDcyMiAxMDcgcTM0MiAxMDQgNjQ0IDMwMSBxMjk4IDE5NCA1MzMgNDYzIHEyMzYgMjcwIDM4OSA1OTMgcTE1NiAzMzEgMjEyIDY5MiBxLTE4OCAtMjA0IC00MjMuNSAtMzUxIHEtMjM1LjUgLTE0NyAtNDk4LjUgLTIyNSBxLTI2OSAtODAgLTU0NyAtODAgcS0zMjIgMCAtNjI4IDEwMyBxLTI5NSA5OSAtNTQ4IDI4NiBxLTI1MSAxODQgLTQzNSA0MzUgcS0xODcgMjUzIC0yODYgNTQ4IHEtMTAzIDMwNiAtMTAzIDYyOCBxMCAyOTMgODAgNTY4IHE3OCAyNjkgMjI1LjUgNDk4LjUgcTE0Ny41IDIyOS41IDM1MC41IDQwMi41IFoiIC8+PGdseXBoIGdseXBoLW5hbWU9InVzZXItc3RhdHVzLWRuZCIgdW5pY29kZT0iJiN4ZWExMDsiIGQ9Ik0yNTAwIDUwMDAgcS00MDYgMCAtNzg4IC0xMjggcS0zNzAgLTEyNCAtNjg2IC0zNTYgcS0zMTMgLTIyOSAtNTQyIC01NDIgcS0yMzIgLTMxNiAtMzU2IC02ODYgcS0xMjggLTM4MiAtMTI4IC03ODggcTAgLTQwNiAxMjggLTc4OCBxMTI0IC0zNzAgMzU2IC02ODYgcTIyOSAtMzEzIDU0MiAtNTQyIHEzMTYgLTIzMiA2ODYgLTM1NiBxMzgyIC0xMjggNzg4IC0xMjggcTQwNiAwIDc4OCAxMjggcTM3MCAxMjQgNjg2IDM1NiBxMzEzIDIyOSA1NDIgNTQyIHEyMzIgMzE2IDM1NiA2ODYgcTEyOCAzODIgMTI4IDc4OCBxMCA0MDYgLTEyOCA3ODggcS0xMjQgMzcwIC0zNTYgNjg2IHEtMjI5IDMxMyAtNTQyIDU0MiBxLTMxNiAyMzIgLTY4NiAzNTYgcS0zODIgMTI4IC03ODggMTI4IFpNMTU2MyAyOTY5IGwxODc1IDAgcTkxIDAgMTc4IC0zOCBxODQgLTM3IDE1MCAtMTAzIHE2NiAtNjYgMTAyIC0xNDkgcTM4IC04NyAzOCAtMTc5IHEwIC05MiAtMzggLTE3OSBxLTM2IC04MyAtMTAyIC0xNDkgcS02NiAtNjYgLTE1MCAtMTAzIHEtODcgLTM4IC0xNzggLTM4IGwtMTg3NSAwIHEtOTIgMCAtMTc5IDM4IHEtODQgMzcgLTE1MCAxMDMgcS02NiA2NiAtMTAyIDE0OSBxLTM4IDg3IC0zOCAxNzkgcTAgOTIgMzggMTc5IHEzNiA4MyAxMDIgMTQ5IHE2NiA2NiAxNTAgMTAzIHE4NyAzOCAxNzkgMzggWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0idXNlci1zdGF0dXMtaW52aXNpYmxlIiB1bmljb2RlPSImI3hlYTExOyIgZD0iTTI1MDAgNTAwMCBxLTQwNiAwIC03ODggLTEyOCBxLTM3MCAtMTI0IC02ODYgLTM1NiBxLTMxMyAtMjI5IC01NDIgLTU0MiBxLTIzMiAtMzE2IC0zNTYgLTY4NiBxLTEyOCAtMzgyIC0xMjggLTc4OCBxMCAtNDA2IDEyOCAtNzg4IHExMjQgLTM3MCAzNTYgLTY4NiBxMjI5IC0zMTMgNTQyIC01NDIgcTMxNiAtMjMyIDY4NiAtMzU2IHEzODIgLTEyOCA3ODggLTEyOCBxNDA2IDAgNzg4IDEyOCBxMzcwIDEyNCA2ODYgMzU2IHEzMTMgMjI5IDU0MiA1NDIgcTIzMiAzMTYgMzU2IDY4NiBxMTI4IDM4MiAxMjggNzg4IHEwIDQwNiAtMTI4IDc4OCBxLTEyNCAzNzAgLTM1NiA2ODYgcS0yMjkgMzEzIC01NDIgNTQyIHEtMzE2IDIzMiAtNjg2IDM1NiBxLTM4MiAxMjggLTc4OCAxMjggWk0yNTAwIDQwMDAgcTMxMSAwIDU5MCAtMTE2IHEyNzEgLTExMiA0NzYuNSAtMzE3LjUgcTIwNS41IC0yMDUuNSAzMTcuNSAtNDc2LjUgcTExNiAtMjc5IDExNiAtNTkwIHEwIC0zMTEgLTExNiAtNTkwIHEtMTEyIC0yNzEgLTMxNy41IC00NzYuNSBxLTIwNS41IC0yMDUuNSAtNDc2LjUgLTMxNy41IHEtMjc5IC0xMTYgLTU5MCAtMTE2IHEtMzExIDAgLTU5MCAxMTYgcS0yNzEgMTEyIC00NzYuNSAzMTcuNSBxLTIwNS41IDIwNS41IC0zMTcuNSA0NzYuNSBxLTExNiAyNzkgLTExNiA1OTAgcTAgMzExIDExNiA1OTAgcTExMiAyNzEgMzE3LjUgNDc2LjUgcTIwNS41IDIwNS41IDQ3Ni41IDMxNy41IHEyNzkgMTE2IDU5MCAxMTYgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0idXNlci1zdGF0dXMtb25saW5lIiB1bmljb2RlPSImI3hlYTEyOyIgZD0iTTE1MDAgMTUwMCBsMjAwMCAwIGwwIDIwMDAgbC0yMDAwIDAgbDAgLTIwMDAgWk0yNTAwIDUwMDAgcS00MDYgMCAtNzg4IC0xMjggcS0zNzAgLTEyNCAtNjg2IC0zNTYgcS0zMTMgLTIyOSAtNTQyIC01NDIgcS0yMzIgLTMxNiAtMzU2IC02ODYgcS0xMjggLTM4MiAtMTI4IC03ODggcTAgLTQwNiAxMjggLTc4OCBxMTI0IC0zNzAgMzU2IC02ODYgcTIyOSAtMzEzIDU0MiAtNTQyIHEzMTYgLTIzMiA2ODYgLTM1NiBxMzgyIC0xMjggNzg4IC0xMjggcTQwNiAwIDc4OCAxMjggcTM3MCAxMjQgNjg2IDM1NiBxMzEzIDIyOSA1NDIgNTQyIHEyMzIgMzE2IDM1NiA2ODYgcTEyOCAzODIgMTI4IDc4OCBxMCA0MDYgLTEyOCA3ODggcS0xMjQgMzcwIC0zNTYgNjg2IHEtMjI5IDMxMyAtNTQyIDU0MiBxLTMxNiAyMzIgLTY4NiAzNTYgcS0zODIgMTI4IC03ODggMTI4IFoiIC8+PC9mb250PjwvZGVmcz48L3N2Zz4="},function(e,t,s){var n=s(67);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),(0,s(2).default)("7a7fb996",n,!0,{})},function(e,t,s){"use strict";s.r(t);var n=s(4);s(56),n.VTooltip.options.defaultTemplate=''),n.VTooltip.options.defaultHtml=!1,t.default=n.VTooltip},function(e,t){e.exports=s(118)},,function(e,t){e.exports=s(39)},function(e,t,s){"use strict";s(3),s(22),s(12),s(38),t.a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,"").substr(0,e||5)}},,function(e,t){},function(e,t){e.exports=s(188)},function(e,t){e.exports=s(61)},function(e,t){e.exports=s(189)},,,function(e,t){e.exports=s(194)},,,,function(e,t,s){"use strict";s.r(t);var n={name:"Popover",components:{VPopover:s(4).VPopover}},r=(s(66),s(0)),o=s(25),i=s.n(o),a=Object(r.a)(n,(function(){var e=this.$createElement,t=this._self._c||e;return t("VPopover",this._g(this._b({attrs:{"popover-base-class":"popover","popover-wrapper-class":"popover__wrapper","popover-arrow-class":"popover__arrow","popover-inner-class":"popover__inner"}},"VPopover",this.$attrs,!1),this.$listeners),[this._t("trigger"),this._v(" "),t("template",{slot:"popover"},[this._t("default")],2)],2)}),[],!1,null,null,null);"function"==typeof i.a&&i()(a);var c=a.exports;t.default=c},function(e,t,s){"use strict";var n=s(6);t.a={methods:{n:n.a,t:n.b}}},,function(e,t){e.exports=s(55)},function(e,t){e.exports=s(190)},function(e,t){e.exports=s(191)},function(e,t,s){var n=s(95);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),(0,s(2).default)("7d4b1d60",n,!0,{})},,,,function(e,t,s){"use strict";s(27),s(20),s(93),s(7);var n=s(5),r=s.n(n);t.a=function(e,t,s){if(void 0!==e)for(var n=e.length-1;n>=0;n--){var o=e[n],i=!o.componentOptions&&o.tag&&-1===t.indexOf(o.tag),a=!!o.componentOptions&&"string"==typeof o.componentOptions.tag,c=a&&-1===t.indexOf(o.componentOptions.tag);(i||!a||c)&&((i||c)&&r.a.util.warn("".concat(i?o.tag:o.componentOptions.tag," is not allowed inside the ").concat(s.$options.name," component"),s),e.splice(n,1))}}},function(e,t){e.exports=s(192)},,function(e,t){e.exports=s(240)},,,function(e,t){e.exports=s(119)},function(e,t){e.exports=s(193)},function(e,t){},,function(e,t,s){"use strict";s.r(t);var n=s(64);t.default=n.a},function(e,t,s){var n=s(57);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),(0,s(2).default)("941c791e",n,!0,{})},function(e,t,s){(t=s(1)(!1)).push([e.i,".vue-tooltip[data-v-9a98de2]{position:absolute;z-index:100000;right:auto;left:auto;display:block;margin:0;margin-top:-3px;padding:10px 0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.vue-tooltip[data-v-9a98de2][x-placement^='top'] .tooltip-arrow{bottom:0;margin-top:0;margin-bottom:0;border-width:10px 10px 0 10px;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.vue-tooltip[data-v-9a98de2][x-placement^='bottom'] .tooltip-arrow{top:0;margin-top:0;margin-bottom:0;border-width:0 10px 10px 10px;border-top-color:transparent;border-right-color:transparent;border-left-color:transparent}.vue-tooltip[data-v-9a98de2][x-placement^='right'] .tooltip-arrow{right:100%;margin-right:0;margin-left:0;border-width:10px 10px 10px 0;border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.vue-tooltip[data-v-9a98de2][x-placement^='left'] .tooltip-arrow{left:100%;margin-right:0;margin-left:0;border-width:10px 0 10px 10px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent}.vue-tooltip[data-v-9a98de2][aria-hidden='true']{visibility:hidden;transition:opacity .15s, visibility .15s;opacity:0}.vue-tooltip[data-v-9a98de2][aria-hidden='false']{visibility:visible;transition:opacity .15s;opacity:1}.vue-tooltip[data-v-9a98de2] .tooltip-inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.vue-tooltip[data-v-9a98de2] .tooltip-arrow{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:var(--color-main-background)}\n",""]),e.exports=t},,,,,,,function(e,t,s){"use strict";s(26),s(39),s(46),s(27),s(51),s(52),s(20),s(8),s(40),s(7),s(3),s(12),s(9),s(10);var n=s(19),r=s(23),o=s(45),i=s(6),a=s(35);function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var s=0,n=new Array(t);s1},isValidSingleAction:function(){return 1===this.actions.length&&null!==this.firstActionElement},firstActionVNode:function(){return this.actions[0]},firstAction:function(){return this.children[0]?this.children[0]:{}},firstActionBinding:function(){if(this.firstActionVNode&&this.firstActionVNode.componentOptions){var e=this.firstActionVNode.componentOptions.tag;if("ActionLink"===e)return{is:"a",href:this.firstAction.href,target:this.firstAction.target,"aria-label":this.firstAction.ariaLabel};if("ActionRouter"===e)return{is:"router-link",to:this.firstAction.to,exact:this.firstAction.exact,"aria-label":this.firstAction.ariaLabel};if("ActionButton"===e)return{is:"button","aria-label":this.firstAction.ariaLabel}}return null},firstActionEvent:function(){return this.firstActionVNode&&this.firstActionVNode.componentOptions&&this.firstActionVNode.componentOptions.listeners&&this.firstActionVNode.componentOptions.listeners.click},firstActionEventBinding:function(){return this.firstActionEvent?"click":null},firstActionClass:function(){var e=this.firstActionVNode&&this.firstActionVNode.data.staticClass,t=this.firstActionVNode&&this.firstActionVNode.data.class;return"".concat(e," ").concat(t)}},watch:{open:function(e){e!==this.opened&&(this.opened=e)}},beforeMount:function(){this.initActions(),Object(o.a)(this.$slots.default,m,this)},beforeUpdate:function(){this.initActions(),Object(o.a)(this.$slots.default,m,this)},methods:{openMenu:function(e){this.opened||(this.opened=!0,this.$emit("update:open",!0),this.$emit("open"),this.onOpen(e))},closeMenu:function(e){this.opened&&(this.opened=!1,this.$emit("update:open",!1),this.$emit("close"),this.opened=!1,this.focusIndex=0,this.$refs.menuButton.focus())},onOpen:function(e){var t=this;this.$nextTick((function(){t.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var t=e.target.closest("li");if(t){var s=t.querySelector(".focusable");if(s){var n=function(e){return function(e){if(Array.isArray(e))return c(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return c(e,t);var s=Object.prototype.toString.call(e).slice(8,-1);return"Object"===s&&e.constructor&&(s=e.constructor.name),"Map"===s||"Set"===s?Array.from(e):"Arguments"===s||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(s)?c(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(this.$refs.menu.querySelectorAll(".focusable")).indexOf(s);n>-1&&(this.focusIndex=n,this.focusAction())}}}},removeCurrentActive:function(){var e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(".focusable")[this.focusIndex];if(e){this.removeCurrentActive();var t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var t=this.$refs.menu.querySelectorAll(".focusable").length-1;this.focusIndex===t?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$el.querySelectorAll(".focusable").length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},execFirstAction:function(e){this.firstActionEvent&&this.firstActionEvent(e)},initActions:function(){this.actions=(this.$slots.default||[]).filter((function(e){return!!e&&!!e.componentOptions}))}}},A=(s(94),s(0)),g=s(53),u=s.n(g),d=Object(A.a)(l,(function(){var e,t=this,s=t.$createElement,n=t._self._c||s;return t.isValidSingleAction&&!t.forceMenu?n("element",t._b({directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.firstAction.text,expression:"firstAction.text",modifiers:{auto:!0}}],staticClass:"action-item action-item--single",class:[t.firstAction.icon,t.firstActionClass],attrs:{rel:"noreferrer noopener"},on:t._d({},[t.firstActionEventBinding,t.execFirstAction])},"element",t.firstActionBinding,!1),[n("span",{attrs:{"aria-hidden":!0,hidden:""}},[t._t("default")],2)]):n("div",{directives:[{name:"show",rawName:"v-show",value:t.hasMultipleActions||t.forceMenu,expression:"hasMultipleActions || forceMenu"}],staticClass:"action-item",class:{"action-item--open":t.opened}},[n("Popover",{attrs:{delay:0,"handle-resize":!0,open:t.opened,placement:t.placement,"boundaries-element":t.boundariesElement,container:t.container},on:{"update:open":function(e){t.opened=e},show:t.openMenu,"apply-show":t.onOpen,hide:t.closeMenu}},[n("button",{ref:"menuButton",staticClass:"icon action-item__menutoggle",class:(e={},e[t.defaultIcon]=!0,e["action-item__menutoggle--with-title"]=t.menuTitle,e["action-item__menutoggle--primary"]=t.primary,e),attrs:{slot:"trigger","aria-label":t.ariaLabel,"aria-haspopup":"true","aria-controls":t.randomId,"aria-expanded":t.opened},slot:"trigger"},[t._v("\n\t\t\t"+t._s(t.menuTitle)+"\n\t\t")]),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:t.opened,expression:"opened"}],ref:"menu",class:{open:t.opened},attrs:{tabindex:"-1"},on:{keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.focusPreviousAction(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.focusNextAction(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"tab",9,e.key,"Tab")||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.focusNextAction(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"tab",9,e.key,"Tab")?null:e.shiftKey?e.ctrlKey||e.altKey||e.metaKey?null:t.focusPreviousAction(e):null},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"page-up",void 0,e.key,void 0)||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.focusFirstAction(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"page-down",void 0,e.key,void 0)||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.focusLastAction(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:(e.preventDefault(),t.closeMenu(e))}],mousemove:t.onMouseFocusAction}},[n("ul",{attrs:{id:t.randomId,tabindex:"-1"}},[t.opened?[t._t("default")]:t._e()],2)])])],1)}),[],!1,null,"69f4d5ed",null);"function"==typeof u.a&&u()(d),t.a=d.exports},,function(e,t,s){"use strict";var n=s(18);s.n(n).a},function(e,t,s){(t=s(1)(!1)).push([e.i,".popover{z-index:100000;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.popover__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius);background:var(--color-main-background)}.popover__arrow{position:absolute;z-index:1;width:0;height:0;margin:10px;border-style:solid;border-color:var(--color-main-background)}.popover[x-placement^='top']{margin-bottom:10px}.popover[x-placement^='top'] .popover__arrow{bottom:-10px;left:calc(50% - $arrow-width);margin-top:0;margin-bottom:0;border-width:10px 10px 0 10px;border-right-color:transparent !important;border-bottom-color:transparent !important;border-left-color:transparent !important}.popover[x-placement^='bottom']{margin-top:10px}.popover[x-placement^='bottom'] .popover__arrow{top:-10px;left:calc(50% - $arrow-width);margin-top:0;margin-bottom:0;border-width:0 10px 10px 10px;border-top-color:transparent !important;border-right-color:transparent !important;border-left-color:transparent !important}.popover[x-placement^='right']{margin-left:10px}.popover[x-placement^='right'] .popover__arrow{top:calc(50% - $arrow-width);left:-10px;margin-right:0;margin-left:0;border-width:10px 10px 10px 0;border-top-color:transparent !important;border-bottom-color:transparent !important;border-left-color:transparent !important}.popover[x-placement^='left']{margin-right:10px}.popover[x-placement^='left'] .popover__arrow{top:calc(50% - $arrow-width);right:-10px;margin-right:0;margin-left:0;border-width:10px 0 10px 10px;border-top-color:transparent !important;border-right-color:transparent !important;border-bottom-color:transparent !important}.popover[aria-hidden='true']{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.popover[aria-hidden='false']{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\n",""]),e.exports=t},,,,,,,,,,,,function(e,t){e.exports=s(245)},,,,,,,,,,,function(e,t,s){var n=s(187);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),(0,s(2).default)("1c311b69",n,!0,{})},,,function(e,t){e.exports=s(196)},function(e,t,s){"use strict";var n=s(41);s.n(n).a},function(e,t,s){var n=s(1),r=s(13),o=s(14),i=s(15),a=s(16),c=s(17);t=n(!1);var m=r(o),l=r(i),A=r(a),g=r(c);t.push([e.i,'@font-face{font-family:"iconfont-vue-9a98de2";src:url('+m+");src:url("+m+') format("embedded-opentype"),url('+l+') format("woff"),url('+A+') format("truetype"),url('+g+') format("svg")}.icon[data-v-69f4d5ed]{font-style:normal;font-weight:400}.icon.arrow-left-double[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.arrow-left[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.arrow-right-double[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.arrow-right[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.breadcrumb[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.checkmark[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.close[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.confirm[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.info[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.menu[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.more[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.pause[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.play[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.triangle-s[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.user-status-away[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.user-status-dnd[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.user-status-invisible[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.icon.user-status-online[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";content:""}.action-item[data-v-69f4d5ed]{position:relative;display:inline-block}.action-item--single[data-v-69f4d5ed]:hover,.action-item--single[data-v-69f4d5ed]:focus,.action-item--single[data-v-69f4d5ed]:active,.action-item__menutoggle[data-v-69f4d5ed]:hover,.action-item__menutoggle[data-v-69f4d5ed]:focus,.action-item__menutoggle[data-v-69f4d5ed]:active{opacity:1;background-color:rgba(127,127,127,0.25)}.action-item.action-item--open .action-item__menutoggle[data-v-69f4d5ed]{opacity:1;background-color:rgba(127,127,127,0.25)}.action-item--single[data-v-69f4d5ed],.action-item__menutoggle[data-v-69f4d5ed]{box-sizing:border-box;width:auto;min-width:44px;height:44px;margin:0;padding:14px;cursor:pointer;border:none;border-radius:22px;background-color:transparent}.action-item__menutoggle[data-v-69f4d5ed]{display:flex;align-items:center;justify-content:center;opacity:.7;font-weight:bold;line-height:16px}.action-item__menutoggle[data-v-69f4d5ed]:before{content:\'\'}.action-item__menutoggle--default-icon[data-v-69f4d5ed]:before{font-family:"iconfont-vue-9a98de2";font-style:normal;font-weight:400;content:""}.action-item__menutoggle--default-icon[data-v-69f4d5ed]::before{font-size:16px}.action-item__menutoggle--with-title[data-v-69f4d5ed]{position:relative;padding-left:44px;white-space:nowrap;opacity:1;border:1px solid var(--color-border-dark);background-color:var(--color-background-dark);background-position:14px center;font-size:inherit}.action-item__menutoggle--with-title[data-v-69f4d5ed]:before{position:absolute;top:14px;left:14px}.action-item__menutoggle--primary[data-v-69f4d5ed]{opacity:1;color:var(--color-primary-text);border:none;background-color:var(--color-primary-element)}.action-item--open .action-item__menutoggle--primary[data-v-69f4d5ed],.action-item__menutoggle--primary[data-v-69f4d5ed]:hover,.action-item__menutoggle--primary[data-v-69f4d5ed]:focus,.action-item__menutoggle--primary[data-v-69f4d5ed]:active{color:var(--color-primary-text) !important;background-color:var(--color-primary-element-light) !important}.action-item--single[data-v-69f4d5ed]{opacity:.7}.action-item--single[data-v-69f4d5ed]:hover,.action-item--single[data-v-69f4d5ed]:focus,.action-item--single[data-v-69f4d5ed]:active{opacity:1}.action-item--single>[hidden][data-v-69f4d5ed]{display:none}.ie .action-item__menu[data-v-69f4d5ed],.ie .action-item__menu .action-item__menu_arrow[data-v-69f4d5ed],.edge .action-item__menu[data-v-69f4d5ed],.edge .action-item__menu .action-item__menu_arrow[data-v-69f4d5ed]{border:1px solid var(--color-border)}\n',""]),e.exports=t},,,,,,,,,,,,,,,,function(e,t){},,,,,function(e,t,s){"use strict";var n={name:"EmptyContent",props:{icon:{type:String,required:!0}}},r=(s(186),s(0)),o=s(111),i=s.n(o),a=Object(r.a)(n,(function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"empty-content",attrs:{role:"note"}},[t("div",{staticClass:"empty-content__icon",class:this.icon,attrs:{role:"img"}}),this._v(" "),t("h2",{staticClass:"empty-content__title"},[this._t("default")],2),this._v(" "),t("p",{directives:[{name:"show",rawName:"v-show",value:this.$slots.desc,expression:"$slots.desc"}]},[this._t("desc")],2)])}),[],!1,null,null,null);"function"==typeof i.a&&i()(a),t.a=a.exports},,,,,,,,,,,,,,,,,,function(e,t,s){"use strict";s.r(t),s.d(t,"directive",(function(){return n}));var n={inserted:function(e){e.focus()}};t.default=n},function(e,t,s){"use strict";s.r(t),s.d(t,"directive",(function(){return o}));var n=s(154),r=s.n(n),o=function(e,t){var s;!0===(null===(s=t.value)||void 0===s?void 0:s.linkify)&&(e.innerHTML=r()(t.value.text,{defaultProtocol:"https"}))};t.default=o},function(e,t,s){var n=s(258);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),(0,s(2).default)("2070882a",n,!0,{})},function(e,t,s){var n=s(260);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),(0,s(2).default)("3431dc5a",n,!0,{})},function(e,t,s){var n=s(262);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),(0,s(2).default)("4dd3631b",n,!0,{})},,,,,,,,,,,,,,,,function(e,t){e.exports=s(256)},,,,,,,,,,,,,,,,function(e,t){},,,,,,,,,,,,,,,,function(e,t,s){"use strict";var n=s(90);s.n(n).a},function(e,t,s){(t=s(1)(!1)).push([e.i,".empty-content{margin-top:20vh;display:flex;flex-direction:column;align-items:center}.empty-content__icon{width:64px;height:64px;margin:0 auto 15px;opacity:.4;background-size:64px;background-repeat:no-repeat;background-position:center}.empty-content__title{margin-bottom:10px}\n",""]),e.exports=t},,,,,,,,,function(e,t,s){"use strict";s.r(t);var n=s(55),r=s(134),o=s(135),i=s(36),a=(s(51),s(256),s(20),s(11),s(79),s(7),s(31),s(5)),c=s.n(a),m=function(e){return e&&"string"==typeof e&&""!==e.trim()&&-1===e.indexOf(" ")},l={name:"AppSidebarTabs",props:{active:{type:String,default:""}},data:function(){return{tabs:[],activeTab:"",children:[]}},computed:{hasMultipleTabs:function(){return this.tabs.length>1},currentTabIndex:function(){var e=this;return this.tabs.findIndex((function(t){return t.id===e.activeTab}))}},watch:{active:function(e){e!==this.activeTab&&this.updateActive()},children:function(){this.updateTabs()}},mounted:function(){this.updateTabs(),this.children=this.$children},methods:{setActive:function(e){var t=e.target.closest("a").dataset.id;this.activeTab=t,this.$emit("update:active",this.activeTab)},focusPreviousTab:function(){this.currentTabIndex>0&&(this.activeTab=this.tabs[this.currentTabIndex-1].id,this.$emit("update:active",this.activeTab)),this.focusActiveTab()},focusNextTab:function(){this.currentTabIndex0?this.tabs[0].id:""},updateTabs:function(){if(this.$slots.default){var e=this.$slots.default.filter((function(e){return e.tag||e.text.trim()})),t=[],s=e.reduce((function(e,s){var n,r=s.componentInstance;return(n=null==r?void 0:r.name)&&"string"==typeof n&&""!==n.trim()&&m(null==r?void 0:r.id)&&m(null==r?void 0:r.icon)?e.push(r):t.push(s),e}),[]);0!==s.length&&s.length!==e.length&&(c.a.util.warn("Mixing tabs and non-tab-content is not possible."),t.map((function(e){return console.debug("Ignoring invalid tab",e)}))),this.tabs=s.sort((function(e,t){var s=e.order||0,n=t.order||0;return s===n?OC.Util.naturalSortCompare(e.name,t.name):s-n})),this.tabs.length>0&&this.updateActive()}else this.tabs=[]}}},A=(s(257),s(0)),g=Object(A.a)(l,(function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"app-sidebar-tabs"},[e.hasMultipleTabs?s("nav",{staticClass:"app-sidebar-tabs__nav",on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPreviousTab(t))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNextTab(t))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusActiveTabContent(t))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"page-up",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusFirstTab(t))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"page-down",void 0,t.key,void 0)||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusLastTab(t))}]}},[s("ul",e._l(e.tabs,(function(t){return s("li",{key:t.id,staticClass:"app-sidebar-tabs__tab"},[s("a",{class:{active:e.activeTab===t.id},attrs:{id:t.id,"aria-controls":"tab-"+t.id,"aria-selected":e.activeTab===t.id,"data-id":t.id,href:"#tab-"+t.id,tabindex:e.activeTab===t.id?null:-1,role:"tab"},on:{click:function(t){return t.preventDefault(),e.setActive(t)}}},[s("span",{staticClass:"app-sidebar-tabs__tab-icon",class:t.icon}),e._v("\n\t\t\t\t\t"+e._s(t.name)+"\n\t\t\t\t")])])})),0)]):e._e(),e._v(" "),s("div",{staticClass:"app-sidebar-tabs__content",class:{"app-sidebar-tabs__content--multiple":e.hasMultipleTabs}},[e._t("default")],2)])}),[],!1,null,"605d66b9",null).exports,u=s(116),d=s(48),p={name:"AppSidebar",components:{Actions:n.default,AppSidebarTabs:g,EmptyContent:u.a},directives:{focus:r.default,linkify:o.default,ClickOutside:d.directive},mixins:[i.a],props:{active:{type:String,default:""},title:{type:String,default:"",required:!0},titleEditable:{type:Boolean,default:!1},titlePlaceholder:{type:String,default:""},subtitle:{type:String,default:""},background:{type:String,default:""},starred:{type:Boolean,default:null},starLoading:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},compact:{type:Boolean,default:!1},empty:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},linkifyTitle:{type:Boolean,default:!1}},data:function(){return{isStarred:this.starred}},computed:{canStar:function(){return null!==this.isStarred},hasFigure:function(){return this.$slots.header||this.background},hasFigureClickListener:function(){return this.$listeners["figure-click"]}},watch:{starred:function(){this.isStarred=this.starred}},methods:{closeSidebar:function(e){this.$emit("close",e)},onFigureClick:function(e){this.$emit("figure-click",e)},toggleStarred:function(){this.isStarred=!this.isStarred,this.$emit("update:starred",this.isStarred)},editTitle:function(){var e=this;this.$emit("update:titleEditable",!0),this.titleEditable&&this.$nextTick((function(){return e.$refs.titleInput.focus()}))},onTitleInput:function(e){this.$emit("update:title",e.target.value)},onSubmitTitle:function(e){this.$emit("update:titleEditable",!1),this.$emit("submit-title",e)},onDismissEditing:function(){this.$emit("update:titleEditable",!1),this.$emit("dismiss-editing")},onUpdateActive:function(e){this.$emit("update:active",e)}}},f=(s(259),s(261),s(170)),h=s.n(f),v=Object(A.a)(p,(function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("transition",{attrs:{name:"slide-right",appear:""}},[s("aside",{staticClass:"app-sidebar",attrs:{id:"app-sidebar-vue"}},[s("header",{staticClass:"app-sidebar-header",class:{"app-sidebar-header--with-figure":e.hasFigure,"app-sidebar-header--compact":e.compact}},[s("a",{staticClass:"app-sidebar__close icon-close",attrs:{href:"#",title:e.t("close")},on:{click:function(t){return t.preventDefault(),e.closeSidebar(t)}}}),e._v(" "),s("div",{staticClass:"app-sidebar-header__info"},[e.hasFigure&&!e.empty?s("div",{staticClass:"app-sidebar-header__figure",class:{"app-sidebar-header__figure--with-action":e.hasFigureClickListener},style:{backgroundImage:"url("+e.background+")"},on:{click:e.onFigureClick}},[e._t("header")],2):e._e(),e._v(" "),e.empty?e._e():s("div",{staticClass:"app-sidebar-header__desc",class:{"app-sidebar-header__desc--with-tertiary-action":e.canStar||e.$slots["tertiary-actions"],"app-sidebar-header__desc--editable":e.titleEditable&&!e.subtitle,"app-sidebar-header__desc--with-subtitle--editable":e.titleEditable&&e.subtitle,"app-sidebar-header__desc--without-menu":!e.$slots["primary-actions"]}},[e.canStar||e.$slots["tertiary-actions"]?s("div",{staticClass:"app-sidebar-header__tertiary-actions"},[e._t("tertiary-actions",[e.canStar?s("a",{staticClass:"app-sidebar-header__star",class:{"icon-starred":e.isStarred&&!e.starLoading,"icon-star":!e.isStarred&&!e.starLoading,"icon-loading-small":e.starLoading},on:{click:function(t){return t.preventDefault(),e.toggleStarred(t)}}}):e._e()])],2):e._e(),e._v(" "),s("div",{staticClass:"app-sidebar-header__title-container"},[s("h2",{directives:[{name:"show",rawName:"v-show",value:!e.titleEditable,expression:"!titleEditable"},{name:"linkify",rawName:"v-linkify",value:{text:e.title,linkify:e.linkifyTitle},expression:"{text: title, linkify: linkifyTitle}"}],staticClass:"app-sidebar-header__maintitle",on:{click:function(t){return t.target!==t.currentTarget?null:e.editTitle(t)}}},[e._v("\n\t\t\t\t\t\t\t"+e._s(e.title)+"\n\t\t\t\t\t\t")]),e._v(" "),e.titleEditable?[s("form",{directives:[{name:"click-outside",rawName:"v-click-outside",value:function(){return e.onSubmitTitle()},expression:"() => onSubmitTitle()"}],staticClass:"app-sidebar-header__maintitle-form",on:{submit:function(t){return t.preventDefault(),e.onSubmitTitle(t)}}},[s("input",{directives:[{name:"focus",rawName:"v-focus"}],ref:"titleInput",staticClass:"app-sidebar-header__maintitle-input",attrs:{type:"text",placeholder:e.titlePlaceholder},domProps:{value:e.title},on:{keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:e.onDismissEditing(t)},input:e.onTitleInput}}),e._v(" "),s("button",{staticClass:"icon-confirm",attrs:{type:"submit"}})])]:e._e(),e._v(" "),""!==e.subtitle.trim()?s("p",{staticClass:"app-sidebar-header__subtitle"},[e._v("\n\t\t\t\t\t\t\t"+e._s(e.subtitle)+"\n\t\t\t\t\t\t")]):e._e()],2),e._v(" "),e.$slots["secondary-actions"]?s("Actions",{staticClass:"app-sidebar-header__menu",attrs:{"force-menu":e.forceMenu}},[e._t("secondary-actions")],2):e._e()],1)]),e._v(" "),e.$slots["primary-actions"]&&!e.empty?s("div",{staticClass:"app-sidebar-header__action"},[e._t("primary-actions")],2):e._e()]),e._v(" "),s("AppSidebarTabs",{directives:[{name:"show",rawName:"v-show",value:!e.loading,expression:"!loading"}],ref:"tabs",attrs:{active:e.active},on:{"update:active":e.onUpdateActive}},[e._t("default")],2),e._v(" "),e.loading?s("EmptyContent",{attrs:{icon:"icon-loading"}}):e._e()],1)])}),[],!1,null,"1513e394",null);"function"==typeof h.a&&h()(v);var M=v.exports;t.default=M},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){e.exports=s(258)},function(e,t,s){"use strict";var n=s(136);s.n(n).a},function(e,t,s){(t=s(1)(!1)).push([e.i,".app-sidebar-tabs[data-v-605d66b9]{flex:1 1 auto;display:flex;flex-direction:column}.app-sidebar-tabs__nav[data-v-605d66b9]{margin-top:10px}.app-sidebar-tabs__nav ul[data-v-605d66b9]{display:flex;justify-content:stretch}.app-sidebar-tabs__tab[data-v-605d66b9]{display:block;flex:1 1;min-width:0;text-align:center}.app-sidebar-tabs__tab a[data-v-605d66b9]{position:relative;display:block;overflow:hidden;padding:25px 5px 5px 5px;transition:color var(--animation-quick),opacity var(--animation-quick),border-color var(--animation-quick);text-align:center;white-space:nowrap;text-overflow:ellipsis;opacity:.7;color:var(--color-main-text);border-bottom:1px solid var(--color-border)}.app-sidebar-tabs__tab a[data-v-605d66b9]:hover,.app-sidebar-tabs__tab a[data-v-605d66b9]:focus,.app-sidebar-tabs__tab a[data-v-605d66b9]:active,.app-sidebar-tabs__tab a.active[data-v-605d66b9]{opacity:1}.app-sidebar-tabs__tab a:hover .app-sidebar-tabs__tab-icon[data-v-605d66b9],.app-sidebar-tabs__tab a:focus .app-sidebar-tabs__tab-icon[data-v-605d66b9],.app-sidebar-tabs__tab a:active .app-sidebar-tabs__tab-icon[data-v-605d66b9],.app-sidebar-tabs__tab a.active .app-sidebar-tabs__tab-icon[data-v-605d66b9]{opacity:1}.app-sidebar-tabs__tab a[data-v-605d66b9]:not(.active):hover,.app-sidebar-tabs__tab a[data-v-605d66b9]:not(.active):focus{border-bottom-color:var(--color-background-darker);box-shadow:inset 0 -1px 0 var(--color-background-darker)}.app-sidebar-tabs__tab a.active[data-v-605d66b9]{color:var(--color-text-light);border-bottom-color:var(--color-text-light);box-shadow:inset 0 -1px 0 var(--color-text-light);font-weight:bold}.app-sidebar-tabs__tab a[data-v-605d66b9]:focus{border-bottom-color:var(--color-primary-element);box-shadow:inset 0 -1px 0 var(--color-primary-element)}.app-sidebar-tabs__tab-icon[data-v-605d66b9]{position:absolute;top:0;left:0;width:100%;height:25px;transition:opacity var(--animation-quick);opacity:.7;background-position:center 8px;background-size:16px}.app-sidebar-tabs__content[data-v-605d66b9]{position:relative;flex:1 1 100%}.app-sidebar-tabs__content--multiple[data-v-605d66b9]>:not(section){display:none}\n",""]),e.exports=t},function(e,t,s){"use strict";var n=s(137);s.n(n).a},function(e,t,s){(t=s(1)(!1)).push([e.i,".app-sidebar[data-v-1513e394]{position:-webkit-sticky;position:sticky;z-index:1500;top:50px;right:0;display:flex;overflow-x:hidden;overflow-y:auto;flex-direction:column;flex-shrink:0;width:27vw;min-width:300px;max-width:500px;height:calc(100vh - 50px);border-left:1px solid var(--color-border);background:var(--color-main-background)}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1513e394]{position:absolute;z-index:100;top:6px;right:6px;width:44px;height:44px;opacity:.7;border-radius:22px}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1513e394]:hover,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1513e394]:active,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1513e394]:focus{opacity:1;background-color:rgba(127,127,127,0.25)}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info[data-v-1513e394]{flex-direction:row}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__figure[data-v-1513e394]{z-index:2;width:70px;height:70px;margin:9px;border-radius:3px;flex:0 0 auto}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc[data-v-1513e394]{height:52px;padding-left:0;flex:1 1 auto;min-width:0;padding-right:94px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1513e394]{z-index:3;position:absolute;top:9px;left:-44px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__menu[data-v-1513e394]{top:6px;right:50px;background-color:transparent;position:absolute}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__menu[data-v-1513e394]{position:absolute;top:6px;right:50px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc[data-v-1513e394]{padding-right:94px}.app-sidebar .app-sidebar-header .app-sidebar-header__info[data-v-1513e394]{display:flex;flex-direction:column}.app-sidebar .app-sidebar-header__figure[data-v-1513e394]{width:100%;height:250px;max-height:250px;background-repeat:no-repeat;background-position:center;background-size:contain}.app-sidebar .app-sidebar-header__figure--with-action[data-v-1513e394]{cursor:pointer}.app-sidebar .app-sidebar-header__desc[data-v-1513e394]{position:relative;display:flex;flex-direction:row;justify-content:center;box-sizing:content-box;padding:18px 0 18px 9px}.app-sidebar .app-sidebar-header__desc--with-tertiary-action[data-v-1513e394]{padding-left:0}.app-sidebar .app-sidebar-header__desc--editable .app-sidebar-header__maintitle-form[data-v-1513e394]{margin-top:-2px;margin-bottom:-2px}.app-sidebar .app-sidebar-header__desc--with-subtitle--editable .app-sidebar-header__subtitle[data-v-1513e394]{margin-top:-2px}.app-sidebar .app-sidebar-header__desc--without-menu[data-v-1513e394]{padding-right:6px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1513e394]{display:flex;height:44px;width:44px;justify-content:center;flex:0 0 auto}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container[data-v-1513e394]{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;min-width:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle[data-v-1513e394]{padding:0;min-height:30px;font-size:20px;line-height:30px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle[data-v-1513e394] .linkified{cursor:pointer;text-decoration:underline}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle[data-v-1513e394],.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__subtitle[data-v-1513e394]{overflow:hidden;width:100%;margin:0;white-space:nowrap;text-overflow:ellipsis}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__subtitle[data-v-1513e394]{padding:0;opacity:.7;font-size:14px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle-form[data-v-1513e394]{display:flex;margin-left:-7.5px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle-form .icon-confirm[data-v-1513e394]{margin:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle-form input.app-sidebar-header__maintitle-input[data-v-1513e394]{flex:1 1 auto;margin:0;padding:7px;font-size:20px;font-weight:bold}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__star[data-v-1513e394]{display:block;width:44px;height:44px;padding:14px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__menu[data-v-1513e394]{height:44px;width:44px;border-radius:22px;background-color:rgba(127,127,127,0.25)}.app-sidebar .app-sidebar-header__action[data-v-1513e394]{display:flex;align-items:center;max-height:50px;margin:0 10px}.slide-right-leave-active[data-v-1513e394],.slide-right-enter-active[data-v-1513e394]{transition-duration:var(--animation-quick);transition-property:max-width, min-width}.slide-right-enter-to[data-v-1513e394],.slide-right-leave[data-v-1513e394]{min-width:300px;max-width:500px}.slide-right-enter[data-v-1513e394],.slide-right-leave-to[data-v-1513e394]{min-width:0 !important;max-width:0 !important}.fade-leave-active[data-v-1513e394],.fade-enter-active[data-v-1513e394]{position:absolute;top:0;left:0;width:100%;transition-duration:var(--animation-quick);transition-property:opacity;opacity:1}.fade-enter[data-v-1513e394],.fade-leave-to[data-v-1513e394]{opacity:0}\n",""]),e.exports=t},function(e,t,s){"use strict";var n=s(138);s.n(n).a},function(e,t,s){(t=s(1)(!1)).push([e.i,".app-sidebar-header__action button,.app-sidebar-header__action .button,.app-sidebar-header__action input[type='button'],.app-sidebar-header__action input[type='submit'],.app-sidebar-header__action input[type='reset']{padding:6px 22px}\n",""]),e.exports=t}])},540:function(e,t,s){window,e.exports=function(e){var t={};function s(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,s),r.l=!0,r.exports}return s.m=e,s.c=t,s.d=function(e,t,n){s.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},s.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.t=function(e,t){if(1&t&&(e=s(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(s.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)s.d(n,r,function(t){return e[t]}.bind(null,r));return n},s.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return s.d(t,"a",t),t},s.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},s.p="/dist/",s(s.s=206)}({0:function(e,t,s){"use strict";function n(e,t,s,n,r,o,i,a){var c,m="function"==typeof e?e.options:e;if(t&&(m.render=t,m.staticRenderFns=s,m._compiled=!0),n&&(m.functional=!0),o&&(m._scopeId="data-v-"+o),i?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},m._ssrRegister=c):r&&(c=a?function(){r.call(this,(m.functional?this.parent:this).$root.$options.shadowRoot)}:r),c)if(m.functional){m._injectStyles=c;var l=m.render;m.render=function(e,t){return c.call(t),l(e,t)}}else{var A=m.beforeCreate;m.beforeCreate=A?[].concat(A,c):[c]}return{exports:e,options:m}}s.d(t,"a",(function(){return n}))},1:function(e,t,s){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var s=function(e,t){var s,n,r,o=e[1]||"",i=e[3];if(!i)return o;if(t&&"function"==typeof btoa){var a=(s=i,n=btoa(unescape(encodeURIComponent(JSON.stringify(s)))),r="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(n),"/*# ".concat(r," */")),c=i.sources.map((function(e){return"/*# sourceURL=".concat(i.sourceRoot||"").concat(e," */")}));return[o].concat(c).concat([a]).join("\n")}return[o].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(s,"}"):s})).join("")},t.i=function(e,s,n){"string"==typeof e&&(e=[[null,e,""]]);var r={};if(n)for(var o=0;os.parts.length&&(n.parts.length=s.parts.length)}else{var i=[];for(r=0;r0))throw new TypeError("Expected `concurrency` to be a number from 1 and up");var t=[],s=0,n=function(){s--,t.length>0&&t.shift()()},i=function(){var e=r(regeneratorRuntime.mark((function e(t,r){var i,a,c,m,l=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:for(s++,i=l.length,a=new Array(i>2?i-2:0),c=2;c2?a-2:0),m=2;m0&&t.shift()();case 3:case"end":return n.stop()}}),n)})))()},c=function(e){for(var t=arguments.length,s=new Array(t>1?t-1:0),n=1;n1?t-1:0),n=1;ne.length)&&(t=e.length);for(var s=0,n=new Array(t);s=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}var n=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e){function t(){return{baseUrl:null,breaks:!1,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartLists:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1}}e.exports={defaults:{baseUrl:null,breaks:!1,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartLists:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1},getDefaults:t,changeDefaults:function(t){e.exports.defaults=t}}})),r=(n.defaults,n.getDefaults,n.changeDefaults,/[&<>"']/),o=/[&<>"']/g,i=/[<>"']|&(?!#?\w+;)/,a=/[<>"']|&(?!#?\w+;)/g,c={"&":"&","<":"<",">":">",'"':""","'":"'"},m=function(e){return c[e]},l=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/gi;function A(e){return e.replace(l,(function(e,t){return"colon"===(t=t.toLowerCase())?":":"#"===t.charAt(0)?"x"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):""}))}var g=/(^|[^\[])\^/g,u=/[^\w:]/g,d=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i,p={},f=/^[^:]+:\/*[^/]*$/,h=/^([^:]+:)[\s\S]*$/,v=/^([^:]+:\/*[^/]*)[\s\S]*$/;function M(e,t){p[" "+e]||(f.test(e)?p[" "+e]=e+"/":p[" "+e]=k(e,"/",!0));var s=-1===(e=p[" "+e]).indexOf(":");return"//"===t.substring(0,2)?s?t:e.replace(h,"$1")+t:"/"===t.charAt(0)?s?t:e.replace(v,"$1")+t:e+t}function k(e,t,s){var n=e.length;if(0===n)return"";for(var r=0;r=0&&"\\"===s[r];)n=!n;return n?"|":" |"})).split(/ \|/),n=0;if(s.length>t)s.splice(t);else for(;s.length1?{type:"space",raw:t[0]}:{raw:"\n"}},t.code=function(e,t){var s=this.rules.block.code.exec(e);if(s){var n=t[t.length-1];if(n&&"paragraph"===n.type)return{raw:s[0],text:s[0].trimRight()};var r=s[0].replace(/^ {4}/gm,"");return{type:"code",raw:s[0],codeBlockStyle:"indented",text:this.options.pedantic?r:N(r,"\n")}}},t.fences=function(e){var t=this.rules.block.fences.exec(e);if(t){var s=t[0],n=function(e,t){var s=e.match(/^(\s+)(?:```)/);if(null===s)return t;var n=s[1];return t.split("\n").map((function(e){var t=e.match(/^\s+/);return null===t?e:t[0].length>=n.length?e.slice(n.length):e})).join("\n")}(s,t[3]||"");return{type:"code",raw:s,lang:t[2]?t[2].trim():t[2],text:n}}},t.heading=function(e){var t=this.rules.block.heading.exec(e);if(t)return{type:"heading",raw:t[0],depth:t[1].length,text:t[2]}},t.nptable=function(e){var t=this.rules.block.nptable.exec(e);if(t){var s={type:"table",header:B(t[1].replace(/^ *| *\| *$/g,"")),align:t[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:t[3]?t[3].replace(/\n$/,"").split("\n"):[],raw:t[0]};if(s.header.length===s.align.length){var n,r=s.align.length;for(n=0;n ?/gm,"");return{type:"blockquote",raw:t[0],text:s}}},t.list=function(e){var t=this.rules.block.list.exec(e);if(t){for(var s,n,r,o,i,a,c,m=t[0],l=t[2],A=l.length>1,g=")"===l[l.length-1],u={type:"list",raw:m,ordered:A,start:A?+l.slice(0,-1):"",loose:!1,items:[]},d=t[0].match(this.rules.block.item),p=!1,f=d.length,h=0;h1||this.options.smartLists&&r!==l)&&(o=d.slice(h+1).join("\n"),u.raw=u.raw.substring(0,u.raw.length-o.length),h=f-1)),i=p||/\n\n(?!\s*$)/.test(s),h!==f-1&&(p="\n"===s.charAt(s.length-1),i||(i=p)),i&&(u.loose=!0),c=void 0,(a=/^\[[ xX]\] /.test(s))&&(c=" "!==s[1],s=s.replace(/^\[[ xX]\] +/,"")),u.items.push({type:"list_item",raw:m,task:a,checked:c,loose:i,text:s});return u}},t.html=function(e){var t=this.rules.block.html.exec(e);if(t)return{type:this.options.sanitize?"paragraph":"html",raw:t[0],pre:!this.options.sanitizer&&("pre"===t[1]||"script"===t[1]||"style"===t[1]),text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(t[0]):_(t[0]):t[0]}},t.def=function(e){var t=this.rules.block.def.exec(e);if(t)return t[3]&&(t[3]=t[3].substring(1,t[3].length-1)),{tag:t[1].toLowerCase().replace(/\s+/g," "),raw:t[0],href:t[2],title:t[3]}},t.table=function(e){var t=this.rules.block.table.exec(e);if(t){var s={type:"table",header:B(t[1].replace(/^ *| *\| *$/g,"")),align:t[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:t[3]?t[3].replace(/\n$/,"").split("\n"):[]};if(s.header.length===s.align.length){s.raw=t[0];var n,r=s.align.length;for(n=0;n/i.test(n[0])&&(t=!1),!s&&/^<(pre|code|kbd|script)(\s|>)/i.test(n[0])?s=!0:s&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(n[0])&&(s=!1),{type:this.options.sanitize?"text":"html",raw:n[0],inLink:t,inRawBlock:s,text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(n[0]):_(n[0]):n[0]}},t.link=function(e){var t=this.rules.inline.link.exec(e);if(t){var s=D(t[2],"()");if(s>-1){var n=(0===t[0].indexOf("!")?5:4)+t[1].length+s;t[2]=t[2].substring(0,s),t[0]=t[0].substring(0,n).trim(),t[3]=""}var r=t[2],o="";if(this.options.pedantic){var i=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(r);i?(r=i[1],o=i[3]):o=""}else o=t[3]?t[3].slice(1,-1):"";return L(t,{href:(r=r.trim().replace(/^<([\s\S]*)>$/,"$1"))?r.replace(this.rules.inline._escapes,"$1"):r,title:o?o.replace(this.rules.inline._escapes,"$1"):o},t[0])}},t.reflink=function(e,t){var s;if((s=this.rules.inline.reflink.exec(e))||(s=this.rules.inline.nolink.exec(e))){var n=(s[2]||s[1]).replace(/\s+/g," ");if(!(n=t[n.toLowerCase()])||!n.href){var r=s[0].charAt(0);return{type:"text",raw:r,text:r}}return L(s,n,s[0])}},t.strong=function(e,t,s){void 0===s&&(s="");var n=this.rules.inline.strong.start.exec(e);if(n&&(!n[1]||n[1]&&(""===s||this.rules.inline.punctuation.exec(s)))){t=t.slice(-1*e.length);var r,o="**"===n[0]?this.rules.inline.strong.endAst:this.rules.inline.strong.endUnd;for(o.lastIndex=0;null!=(n=o.exec(t));)if(r=this.rules.inline.strong.middle.exec(t.slice(0,n.index+3)))return{type:"strong",raw:e.slice(0,r[0].length),text:e.slice(2,r[0].length-2)}}},t.em=function(e,t,s){void 0===s&&(s="");var n=this.rules.inline.em.start.exec(e);if(n&&(!n[1]||n[1]&&(""===s||this.rules.inline.punctuation.exec(s)))){t=t.slice(-1*e.length);var r,o="*"===n[0]?this.rules.inline.em.endAst:this.rules.inline.em.endUnd;for(o.lastIndex=0;null!=(n=o.exec(t));)if(r=this.rules.inline.em.middle.exec(t.slice(0,n.index+2)))return{type:"em",raw:e.slice(0,r[0].length),text:e.slice(1,r[0].length-1)}}},t.codespan=function(e){var t=this.rules.inline.code.exec(e);if(t){var s=t[2].replace(/\n/g," "),n=/[^ ]/.test(s),r=s.startsWith(" ")&&s.endsWith(" ");return n&&r&&(s=s.substring(1,s.length-1)),s=_(s,!0),{type:"codespan",raw:t[0],text:s}}},t.br=function(e){var t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}},t.del=function(e){var t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[1]}},t.autolink=function(e,t){var s,n,r=this.rules.inline.autolink.exec(e);if(r)return n="@"===r[2]?"mailto:"+(s=_(this.options.mangle?t(r[1]):r[1])):s=_(r[1]),{type:"link",raw:r[0],text:s,href:n,tokens:[{type:"text",raw:s,text:s}]}},t.url=function(e,t){var s;if(s=this.rules.inline.url.exec(e)){var n,r;if("@"===s[2])r="mailto:"+(n=_(this.options.mangle?t(s[0]):s[0]));else{var o;do{o=s[0],s[0]=this.rules.inline._backpedal.exec(s[0])[0]}while(o!==s[0]);n=_(s[0]),r="www."===s[1]?"http://"+n:n}return{type:"link",raw:s[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}},t.inlineText=function(e,t,s){var n,r=this.rules.inline.text.exec(e);if(r)return n=t?this.options.sanitize?this.options.sanitizer?this.options.sanitizer(r[0]):_(r[0]):r[0]:_(this.options.smartypants?s(r[0]):r[0]),{type:"text",raw:r[0],text:n}},e}(),F=x,O=E,Q=S,U={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:/^ {0,3}(`{3,}(?=[^`\n]*\n)|~{3,})([^\n]*)\n(?:|([\s\S]*?)\n)(?: {0,3}\1[~`]* *(?:\n+|$)|$)/,hr:/^ {0,3}((?:- *){3,}|(?:_ *){3,}|(?:\* *){3,})(?:\n+|$)/,heading:/^ {0,3}(#{1,6}) +([^\n]*?)(?: +#+)? *(?:\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( {0,3})(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:"^ {0,3}(?:<(script|pre|style)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?\\?>\\n*|\\n*|\\n*|)[\\s\\S]*?(?:\\n{2,}|$)|<(?!script|pre|style)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:\\n{2,}|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:\\n{2,}|$))",def:/^ {0,3}\[(label)\]: *\n? *]+)>?(?:(?: +\n? *| *\n *)(title))? *(?:\n+|$)/,nptable:F,table:F,lheading:/^([^\n]+)\n {0,3}(=+|-+) *(?:\n+|$)/,_paragraph:/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html)[^\n]+)*)/,text:/^[^\n]+/,_label:/(?!\s*\])(?:\\[\[\]]|[^\[\]])+/,_title:/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/};U.def=O(U.def).replace("label",U._label).replace("title",U._title).getRegex(),U.bullet=/(?:[*+-]|\d{1,9}[.)])/,U.item=/^( *)(bull) ?[^\n]*(?:\n(?!\1bull ?)[^\n]*)*/,U.item=O(U.item,"gm").replace(/bull/g,U.bullet).getRegex(),U.list=O(U.list).replace(/bull/g,U.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+U.def.source+")").getRegex(),U._tag="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",U._comment=//,U.html=O(U.html,"i").replace("comment",U._comment).replace("tag",U._tag).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),U.paragraph=O(U._paragraph).replace("hr",U.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|!--)").replace("tag",U._tag).getRegex(),U.blockquote=O(U.blockquote).replace("paragraph",U.paragraph).getRegex(),U.normal=Q({},U),U.gfm=Q({},U.normal,{nptable:"^ *([^|\\n ].*\\|.*)\\n *([-:]+ *\\|[-| :]*)(?:\\n((?:(?!\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)",table:"^ *\\|(.+)\\n *\\|?( *[-:]+[-| :]*)(?:\\n *((?:(?!\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)"}),U.gfm.nptable=O(U.gfm.nptable).replace("hr",U.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|!--)").replace("tag",U._tag).getRegex(),U.gfm.table=O(U.gfm.table).replace("hr",U.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|!--)").replace("tag",U._tag).getRegex(),U.pedantic=Q({},U.normal,{html:O("^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))").replace("comment",U._comment).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *(?:#+ *)?(?:\n+|$)/,fences:F,paragraph:O(U.normal._paragraph).replace("hr",U.hr).replace("heading"," *#{1,6} *[^\n]").replace("lheading",U.lheading).replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").getRegex()});var G={escape:/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:F,tag:"^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^",link:/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/,reflink:/^!?\[(label)\]\[(?!\s*\])((?:\\[\[\]]?|[^\[\]\\])+)\]/,nolink:/^!?\[(?!\s*\])((?:\[[^\[\]]*\]|\\[\[\]]|[^\[\]])*)\](?:\[\])?/,reflinkSearch:"reflink|nolink(?!\\()",strong:{start:/^(?:(\*\*(?=[*punctuation]))|\*\*)(?![\s])|__/,middle:/^\*\*(?:(?:(?!overlapSkip)(?:[^*]|\\\*)|overlapSkip)|\*(?:(?!overlapSkip)(?:[^*]|\\\*)|overlapSkip)*?\*)+?\*\*$|^__(?![\s])((?:(?:(?!overlapSkip)(?:[^_]|\\_)|overlapSkip)|_(?:(?!overlapSkip)(?:[^_]|\\_)|overlapSkip)*?_)+?)__$/,endAst:/[^punctuation\s]\*\*(?!\*)|[punctuation]\*\*(?!\*)(?:(?=[punctuation\s]|$))/,endUnd:/[^\s]__(?!_)(?:(?=[punctuation\s])|$)/},em:{start:/^(?:(\*(?=[punctuation]))|\*)(?![*\s])|_/,middle:/^\*(?:(?:(?!overlapSkip)(?:[^*]|\\\*)|overlapSkip)|\*(?:(?!overlapSkip)(?:[^*]|\\\*)|overlapSkip)*?\*)+?\*$|^_(?![_\s])(?:(?:(?!overlapSkip)(?:[^_]|\\_)|overlapSkip)|_(?:(?!overlapSkip)(?:[^_]|\\_)|overlapSkip)*?_)+?_$/,endAst:/[^punctuation\s]\*(?!\*)|[punctuation]\*(?!\*)(?:(?=[punctuation\s]|$))/,endUnd:/[^\s]_(?!_)(?:(?=[punctuation\s])|$)/},code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,br:/^( {2,}|\\)\n(?!\s*$)/,del:F,text:/^(`+|[^`])(?:[\s\S]*?(?:(?=[\\?@\\[\\]`^{|}~"};G.punctuation=O(G.punctuation).replace(/punctuation/g,G._punctuation).getRegex(),G._blockSkip="\\[[^\\]]*?\\]\\([^\\)]*?\\)|`[^`]*?`|<[^>]*?>",G._overlapSkip="__[^_]*?__|\\*\\*\\[^\\*\\]*?\\*\\*",G.em.start=O(G.em.start).replace(/punctuation/g,G._punctuation).getRegex(),G.em.middle=O(G.em.middle).replace(/punctuation/g,G._punctuation).replace(/overlapSkip/g,G._overlapSkip).getRegex(),G.em.endAst=O(G.em.endAst,"g").replace(/punctuation/g,G._punctuation).getRegex(),G.em.endUnd=O(G.em.endUnd,"g").replace(/punctuation/g,G._punctuation).getRegex(),G.strong.start=O(G.strong.start).replace(/punctuation/g,G._punctuation).getRegex(),G.strong.middle=O(G.strong.middle).replace(/punctuation/g,G._punctuation).replace(/blockSkip/g,G._blockSkip).getRegex(),G.strong.endAst=O(G.strong.endAst,"g").replace(/punctuation/g,G._punctuation).getRegex(),G.strong.endUnd=O(G.strong.endUnd,"g").replace(/punctuation/g,G._punctuation).getRegex(),G.blockSkip=O(G._blockSkip,"g").getRegex(),G.overlapSkip=O(G._overlapSkip,"g").getRegex(),G._escapes=/\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/g,G._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/,G._email=/[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])?)+(?![-_])/,G.autolink=O(G.autolink).replace("scheme",G._scheme).replace("email",G._email).getRegex(),G._attribute=/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/,G.tag=O(G.tag).replace("comment",U._comment).replace("attribute",G._attribute).getRegex(),G._label=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,G._href=/<(?:\\[<>]?|[^\s<>\\])*>|[^\s\x00-\x1f]*/,G._title=/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/,G.link=O(G.link).replace("label",G._label).replace("href",G._href).replace("title",G._title).getRegex(),G.reflink=O(G.reflink).replace("label",G._label).getRegex(),G.reflinkSearch=O(G.reflinkSearch,"g").replace("reflink",G.reflink).replace("nolink",G.nolink).getRegex(),G.normal=Q({},G),G.pedantic=Q({},G.normal,{strong:{start:/^__|\*\*/,middle:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,endAst:/\*\*(?!\*)/g,endUnd:/__(?!_)/g},em:{start:/^_|\*/,middle:/^()\*(?=\S)([\s\S]*?\S)\*(?!\*)|^_(?=\S)([\s\S]*?\S)_(?!_)/,endAst:/\*(?!\*)/g,endUnd:/_(?!_)/g},link:O(/^!?\[(label)\]\((.*?)\)/).replace("label",G._label).getRegex(),reflink:O(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",G._label).getRegex()}),G.gfm=Q({},G.normal,{escape:O(G.escape).replace("])","~|])").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_~)]+(?!$))+/,del:/^~+(?=\S)([\s\S]*?\S)~+/,text:/^(`+|[^`])(?:[\s\S]*?(?:(?=[\\.5&&(s="x"+s.toString(16)),n+="&#"+s+";";return n}var K=function(){function t(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||Y,this.options.tokenizer=this.options.tokenizer||new z,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options;var t={block:H.normal,inline:Z.normal};this.options.pedantic?(t.block=H.pedantic,t.inline=Z.pedantic):this.options.gfm&&(t.block=H.gfm,this.options.breaks?t.inline=Z.breaks:t.inline=Z.gfm),this.tokenizer.rules=t}t.lex=function(e,s){return new t(s).lex(e)};var s,n,r,o=t.prototype;return o.lex=function(e){return e=e.replace(/\r\n|\r/g,"\n").replace(/\t/g," "),this.blockTokens(e,this.tokens,!0),this.inline(this.tokens),this.tokens},o.blockTokens=function(e,t,s){var n,r,o,i;for(void 0===t&&(t=[]),void 0===s&&(s=!0),e=e.replace(/^ +$/gm,"");e;)if(n=this.tokenizer.space(e))e=e.substring(n.raw.length),n.type&&t.push(n);else if(n=this.tokenizer.code(e,t))e=e.substring(n.raw.length),n.type?t.push(n):((i=t[t.length-1]).raw+="\n"+n.raw,i.text+="\n"+n.text);else if(n=this.tokenizer.fences(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.heading(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.nptable(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.hr(e))e=e.substring(n.raw.length),t.push(n);else if(n=this.tokenizer.blockquote(e))e=e.substring(n.raw.length),n.tokens=this.blockTokens(n.text,[],s),t.push(n);else if(n=this.tokenizer.list(e)){for(e=e.substring(n.raw.length),o=n.items.length,r=0;r0)for(;null!=(i=this.tokenizer.rules.inline.reflinkSearch.exec(a));)c.includes(i[0].slice(i[0].lastIndexOf("[")+1,-1))&&(a=a.slice(0,i.index)+"["+"a".repeat(i[0].length-2)+"]"+a.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;null!=(i=this.tokenizer.rules.inline.blockSkip.exec(a));)a=a.slice(0,i.index)+"["+"a".repeat(i[0].length-2)+"]"+a.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;e;)if(o=this.tokenizer.escape(e))e=e.substring(o.raw.length),t.push(o);else if(o=this.tokenizer.tag(e,s,n))e=e.substring(o.raw.length),s=o.inLink,n=o.inRawBlock,t.push(o);else if(o=this.tokenizer.link(e))e=e.substring(o.raw.length),"link"===o.type&&(o.tokens=this.inlineTokens(o.text,[],!0,n)),t.push(o);else if(o=this.tokenizer.reflink(e,this.tokens.links))e=e.substring(o.raw.length),"link"===o.type&&(o.tokens=this.inlineTokens(o.text,[],!0,n)),t.push(o);else if(o=this.tokenizer.strong(e,a,r))e=e.substring(o.raw.length),o.tokens=this.inlineTokens(o.text,[],s,n),t.push(o);else if(o=this.tokenizer.em(e,a,r))e=e.substring(o.raw.length),o.tokens=this.inlineTokens(o.text,[],s,n),t.push(o);else if(o=this.tokenizer.codespan(e))e=e.substring(o.raw.length),t.push(o);else if(o=this.tokenizer.br(e))e=e.substring(o.raw.length),t.push(o);else if(o=this.tokenizer.del(e))e=e.substring(o.raw.length),o.tokens=this.inlineTokens(o.text,[],s,n),t.push(o);else if(o=this.tokenizer.autolink(e,X))e=e.substring(o.raw.length),t.push(o);else if(s||!(o=this.tokenizer.url(e,X))){if(o=this.tokenizer.inlineText(e,n,J))e=e.substring(o.raw.length),r=o.raw.slice(-1),t.push(o);else if(e){var m="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(m);break}throw new Error(m)}}else e=e.substring(o.raw.length),t.push(o);return t},s=t,r=[{key:"rules",get:function(){return{block:H,inline:Z}}}],(n=null)&&e(s.prototype,n),r&&e(s,r),t}(),V=n.defaults,W=y,q=b,$=function(){function e(e){this.options=e||V}var t=e.prototype;return t.code=function(e,t,s){var n=(t||"").match(/\S*/)[0];if(this.options.highlight){var r=this.options.highlight(e,n);null!=r&&r!==e&&(s=!0,e=r)}return n?'
'+(s?e:q(e,!0))+"
\n":"
"+(s?e:q(e,!0))+"
\n"},t.blockquote=function(e){return"
\n"+e+"
\n"},t.html=function(e){return e},t.heading=function(e,t,s,n){return this.options.headerIds?"'+e+"\n":""+e+"\n"},t.hr=function(){return this.options.xhtml?"
\n":"
\n"},t.list=function(e,t,s){var n=t?"ol":"ul";return"<"+n+(t&&1!==s?' start="'+s+'"':"")+">\n"+e+"\n"},t.listitem=function(e){return"
  • "+e+"
  • \n"},t.checkbox=function(e){return" "},t.paragraph=function(e){return"

    "+e+"

    \n"},t.table=function(e,t){return t&&(t=""+t+""),"\n\n"+e+"\n"+t+"
    \n"},t.tablerow=function(e){return"\n"+e+"\n"},t.tablecell=function(e,t){var s=t.header?"th":"td";return(t.align?"<"+s+' align="'+t.align+'">':"<"+s+">")+e+"\n"},t.strong=function(e){return""+e+""},t.em=function(e){return""+e+""},t.codespan=function(e){return""+e+""},t.br=function(){return this.options.xhtml?"
    ":"
    "},t.del=function(e){return""+e+""},t.link=function(e,t,s){if(null===(e=W(this.options.sanitize,this.options.baseUrl,e)))return s;var n='
    "},t.image=function(e,t,s){if(null===(e=W(this.options.sanitize,this.options.baseUrl,e)))return s;var n=''+s+'":">"},t.text=function(e){return e},e}(),ee=function(){function e(){}var t=e.prototype;return t.strong=function(e){return e},t.em=function(e){return e},t.codespan=function(e){return e},t.del=function(e){return e},t.html=function(e){return e},t.text=function(e){return e},t.link=function(e,t,s){return""+s},t.image=function(e,t,s){return""+s},t.br=function(){return""},e}(),te=function(){function e(){this.seen={}}return e.prototype.slug=function(e){var t=e.toLowerCase().trim().replace(/<[!\/a-z].*?>/gi,"").replace(/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&()*+,./:;<=>?@[\]^`{|}~]/g,"").replace(/\s/g,"-");if(this.seen.hasOwnProperty(t)){var s=t;do{this.seen[s]++,t=s+"-"+this.seen[s]}while(this.seen.hasOwnProperty(t))}return this.seen[t]=0,t},e}(),se=n.defaults,ne=T,re=function(){function e(e){this.options=e||se,this.options.renderer=this.options.renderer||new $,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new ee,this.slugger=new te}e.parse=function(t,s){return new e(s).parse(t)};var t=e.prototype;return t.parse=function(e,t){void 0===t&&(t=!0);var s,n,r,o,i,a,c,m,l,A,g,u,d,p,f,h,v,M,k="",b=e.length;for(s=0;s0&&"text"===f.tokens[0].type?(f.tokens[0].text=M+" "+f.tokens[0].text,f.tokens[0].tokens&&f.tokens[0].tokens.length>0&&"text"===f.tokens[0].tokens[0].type&&(f.tokens[0].tokens[0].text=M+" "+f.tokens[0].tokens[0].text)):f.tokens.unshift({type:"text",text:M}):p+=M),p+=this.parse(f.tokens,d),l+=this.renderer.listitem(p,v,h);k+=this.renderer.list(l,g,u);continue;case"html":k+=this.renderer.html(A.text);continue;case"paragraph":k+=this.renderer.paragraph(this.parseInline(A.tokens));continue;case"text":for(l=A.tokens?this.parseInline(A.tokens):A.text;s+1An error occurred:

    "+ae(e.message+"",!0)+"
    ";throw e}}return Ae.options=Ae.setOptions=function(e){return oe(Ae.defaults,e),me(Ae.defaults),Ae},Ae.getDefaults=ce,Ae.defaults=le,Ae.use=function(e){var t=oe({},e);if(e.renderer&&function(){var s=Ae.defaults.renderer||new $,n=function(t){var n=s[t];s[t]=function(){for(var r=arguments.length,o=new Array(r),i=0;i1?s-1:0),r=1;r/gm),O=o(/^data-[\-\w.\u00B7-\uFFFF]/),Q=o(/^aria-[\-\w]+$/),U=o(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),G=o(/^(?:\w+script|data):/i),R=o(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function H(e){if(Array.isArray(e)){for(var t=0,s=Array(e.length);t0&&void 0!==arguments[0]?arguments[0]:Z(),s=function(t){return e(t)};if(s.version="2.0.15",s.removed=[],!t||!t.document||9!==t.document.nodeType)return s.isSupported=!1,s;var o=t.document,i=!1,a=t.document,c=t.DocumentFragment,m=t.HTMLTemplateElement,y=t.Node,x=t.NodeFilter,X=t.NamedNodeMap,K=void 0===X?t.NamedNodeMap||t.MozNamedAttrMap:X,V=t.Text,W=t.Comment,q=t.DOMParser,$=t.trustedTypes;if("function"==typeof m){var ee=a.createElement("template");ee.content&&ee.content.ownerDocument&&(a=ee.content.ownerDocument)}var te=J($,o),se=te&&De?te.createHTML(""):"",ne=a,re=ne.implementation,oe=ne.createNodeIterator,ie=ne.getElementsByTagName,ae=ne.createDocumentFragment,ce=o.importNode,me=w(a).documentMode?a.documentMode:{},le={};s.isSupported=re&&void 0!==re.createHTMLDocument&&9!==me;var Ae=z,ge=F,ue=O,de=Q,pe=G,fe=R,he=U,ve=null,Me=S({},[].concat(H(P),H(j),H(C),H(I),H(N))),ke=null,be=S({},[].concat(H(B),H(_),H(D),H(L))),Te=null,Ee=null,ye=!0,xe=!0,Se=!1,we=!1,Pe=!1,je=!1,Ce=!1,Ie=!1,Ne=!1,Be=!1,_e=!1,De=!1,Le=!0,ze=!0,Fe=!1,Oe={},Qe=S({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","plaintext","script","style","svg","template","thead","title","video","xmp"]),Ue=null,Ge=S({},["audio","video","img","source","image","track"]),Re=null,Ye=S({},["alt","class","for","id","label","name","pattern","placeholder","summary","title","value","style","xmlns"]),He=null,Ze=a.createElement("form"),Je=function(e){He&&He===e||(e&&"object"===(void 0===e?"undefined":Y(e))||(e={}),e=w(e),ve="ALLOWED_TAGS"in e?S({},e.ALLOWED_TAGS):Me,ke="ALLOWED_ATTR"in e?S({},e.ALLOWED_ATTR):be,Re="ADD_URI_SAFE_ATTR"in e?S(w(Ye),e.ADD_URI_SAFE_ATTR):Ye,Ue="ADD_DATA_URI_TAGS"in e?S(w(Ge),e.ADD_DATA_URI_TAGS):Ge,Te="FORBID_TAGS"in e?S({},e.FORBID_TAGS):{},Ee="FORBID_ATTR"in e?S({},e.FORBID_ATTR):{},Oe="USE_PROFILES"in e&&e.USE_PROFILES,ye=!1!==e.ALLOW_ARIA_ATTR,xe=!1!==e.ALLOW_DATA_ATTR,Se=e.ALLOW_UNKNOWN_PROTOCOLS||!1,we=e.SAFE_FOR_JQUERY||!1,Pe=e.SAFE_FOR_TEMPLATES||!1,je=e.WHOLE_DOCUMENT||!1,Ne=e.RETURN_DOM||!1,Be=e.RETURN_DOM_FRAGMENT||!1,_e=e.RETURN_DOM_IMPORT||!1,De=e.RETURN_TRUSTED_TYPE||!1,Ie=e.FORCE_BODY||!1,Le=!1!==e.SANITIZE_DOM,ze=!1!==e.KEEP_CONTENT,Fe=e.IN_PLACE||!1,he=e.ALLOWED_URI_REGEXP||he,Pe&&(xe=!1),Be&&(Ne=!0),Oe&&(ve=S({},[].concat(H(N))),ke=[],!0===Oe.html&&(S(ve,P),S(ke,B)),!0===Oe.svg&&(S(ve,j),S(ke,_),S(ke,L)),!0===Oe.svgFilters&&(S(ve,C),S(ke,_),S(ke,L)),!0===Oe.mathMl&&(S(ve,I),S(ke,D),S(ke,L))),e.ADD_TAGS&&(ve===Me&&(ve=w(ve)),S(ve,e.ADD_TAGS)),e.ADD_ATTR&&(ke===be&&(ke=w(ke)),S(ke,e.ADD_ATTR)),e.ADD_URI_SAFE_ATTR&&S(Re,e.ADD_URI_SAFE_ATTR),ze&&(ve["#text"]=!0),je&&S(ve,["html","head","body"]),ve.table&&(S(ve,["tbody"]),delete Te.tbody),r&&r(e),He=e)},Xe=function(e){d(s.removed,{element:e});try{e.parentNode.removeChild(e)}catch(t){e.outerHTML=se}},Ke=function(e,t){try{d(s.removed,{attribute:t.getAttributeNode(e),from:t})}catch(e){d(s.removed,{attribute:null,from:t})}t.removeAttribute(e)},Ve=function(e){var t=void 0,s=void 0;if(Ie)e=""+e;else{var n=h(e,/^[\r\n\t ]+/);s=n&&n[0]}var r=te?te.createHTML(e):e;try{t=(new q).parseFromString(r,"text/html")}catch(e){}if(i&&S(Te,["title"]),!t||!t.documentElement){var o=(t=re.createHTMLDocument("")).body;o.parentNode.removeChild(o.parentNode.firstElementChild),o.outerHTML=r}return e&&s&&t.body.insertBefore(a.createTextNode(s),t.body.childNodes[0]||null),ie.call(t,je?"html":"body")[0]};s.isSupported&&function(){try{var e=Ve("</title><img>");b(/<\/title/,e.querySelector("title").innerHTML)&&(i=!0)}catch(e){}}();var We=function(e){return oe.call(e.ownerDocument||e,e,x.SHOW_ELEMENT|x.SHOW_COMMENT|x.SHOW_TEXT,(function(){return x.FILTER_ACCEPT}),!1)},qe=function(e){return!(e instanceof V||e instanceof W||"string"==typeof e.nodeName&&"string"==typeof e.textContent&&"function"==typeof e.removeChild&&e.attributes instanceof K&&"function"==typeof e.removeAttribute&&"function"==typeof e.setAttribute&&"string"==typeof e.namespaceURI)},$e=function(e){return"object"===(void 0===y?"undefined":Y(y))?e instanceof y:e&&"object"===(void 0===e?"undefined":Y(e))&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName},et=function(e,t,n){le[e]&&l(le[e],(function(e){e.call(s,t,n,He)}))},tt=function(e){var t=void 0;if(et("beforeSanitizeElements",e,null),qe(e))return Xe(e),!0;if(h(e.nodeName,/[\u0080-\uFFFF]/))return Xe(e),!0;var n=f(e.nodeName);if(et("uponSanitizeElement",e,{tagName:n,allowedTags:ve}),("svg"===n||"math"===n)&&0!==e.querySelectorAll("p, br").length)return Xe(e),!0;if(!ve[n]||Te[n]){if(ze&&!Qe[n]&&"function"==typeof e.insertAdjacentHTML)try{var r=e.innerHTML;e.insertAdjacentHTML("AfterEnd",te?te.createHTML(r):r)}catch(e){}return Xe(e),!0}return"noscript"===n&&b(/<\/noscript/i,e.innerHTML)||"noembed"===n&&b(/<\/noembed/i,e.innerHTML)?(Xe(e),!0):(!we||$e(e.firstElementChild)||$e(e.content)&&$e(e.content.firstElementChild)||!b(/</g,e.textContent)||(d(s.removed,{element:e.cloneNode()}),e.innerHTML?e.innerHTML=v(e.innerHTML,/</g,"<"):e.innerHTML=v(e.textContent,/</g,"<")),Pe&&3===e.nodeType&&(t=e.textContent,t=v(t,Ae," "),t=v(t,ge," "),e.textContent!==t&&(d(s.removed,{element:e.cloneNode()}),e.textContent=t)),et("afterSanitizeElements",e,null),!1)},st=function(e,t,s){if(Le&&("id"===t||"name"===t)&&(s in a||s in Ze))return!1;if(xe&&b(ue,t));else if(ye&&b(de,t));else{if(!ke[t]||Ee[t])return!1;if(Re[t]);else if(b(he,v(s,fe,"")));else if("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==M(s,"data:")||!Ue[e])if(Se&&!b(pe,v(s,fe,"")));else if(s)return!1}return!0},nt=function(e){var t=void 0,r=void 0,o=void 0,i=void 0,a=void 0;et("beforeSanitizeAttributes",e,null);var c=e.attributes;if(c){var m={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:ke};for(a=c.length;a--;){var l=t=c[a],d=l.name,h=l.namespaceURI;if(r=k(t.value),o=f(d),m.attrName=o,m.attrValue=r,m.keepAttr=!0,m.forceKeepAttr=void 0,et("uponSanitizeAttribute",e,m),r=m.attrValue,!m.forceKeepAttr){if("name"===o&&"IMG"===e.nodeName&&c.id)i=c.id,c=p(c,[]),Ke("id",e),Ke(d,e),A(c,i)>a&&e.setAttribute("id",i.value);else{if("INPUT"===e.nodeName&&"type"===o&&"file"===r&&m.keepAttr&&(ke[o]||!Ee[o]))continue;"id"===d&&e.setAttribute(d,""),Ke(d,e)}if(m.keepAttr)if(we&&b(/\/>/i,r))Ke(d,e);else if(b(/svg|math/i,e.namespaceURI)&&b(T("</("+g(n(Qe),"|")+")","i"),r))Ke(d,e);else{Pe&&(r=v(r,Ae," "),r=v(r,ge," "));var M=e.nodeName.toLowerCase();if(st(M,o,r))try{h?e.setAttributeNS(h,d,r):e.setAttribute(d,r),u(s.removed)}catch(e){}}}}et("afterSanitizeAttributes",e,null)}},rt=function e(t){var s=void 0,n=We(t);for(et("beforeSanitizeShadowDOM",t,null);s=n.nextNode();)et("uponSanitizeShadowNode",s,null),tt(s)||(s.content instanceof c&&e(s.content),nt(s));et("afterSanitizeShadowDOM",t,null)};return s.sanitize=function(e,n){var r=void 0,i=void 0,a=void 0,m=void 0,l=void 0;if(e||(e="\x3c!--\x3e"),"string"!=typeof e&&!$e(e)){if("function"!=typeof e.toString)throw E("toString is not a function");if("string"!=typeof(e=e.toString()))throw E("dirty is not a string, aborting")}if(!s.isSupported){if("object"===Y(t.toStaticHTML)||"function"==typeof t.toStaticHTML){if("string"==typeof e)return t.toStaticHTML(e);if($e(e))return t.toStaticHTML(e.outerHTML)}return e}if(Ce||Je(n),s.removed=[],"string"==typeof e&&(Fe=!1),Fe);else if(e instanceof y)1===(i=(r=Ve("\x3c!--\x3e")).ownerDocument.importNode(e,!0)).nodeType&&"BODY"===i.nodeName||"HTML"===i.nodeName?r=i:r.appendChild(i);else{if(!Ne&&!Pe&&!je&&-1===e.indexOf("<"))return te&&De?te.createHTML(e):e;if(!(r=Ve(e)))return Ne?null:se}r&&Ie&&Xe(r.firstChild);for(var A=We(Fe?e:r);a=A.nextNode();)3===a.nodeType&&a===m||tt(a)||(a.content instanceof c&&rt(a.content),nt(a),m=a);if(m=null,Fe)return e;if(Ne){if(Be)for(l=ae.call(r.ownerDocument);r.firstChild;)l.appendChild(r.firstChild);else l=r;return _e&&(l=ce.call(o,l,!0)),l}var g=je?r.outerHTML:r.innerHTML;return Pe&&(g=v(g,Ae," "),g=v(g,ge," ")),te&&De?te.createHTML(g):g},s.setConfig=function(e){Je(e),Ce=!0},s.clearConfig=function(){He=null,Ce=!1},s.isValidAttribute=function(e,t,s){He||Je({});var n=f(e),r=f(t);return st(n,r,s)},s.addHook=function(e,t){"function"==typeof t&&(le[e]=le[e]||[],d(le[e],t))},s.removeHook=function(e){le[e]&&u(le[e])},s.removeHooks=function(e){le[e]&&(le[e]=[])},s.removeAllHooks=function(){le={}},s}()}()}}]); -//# sourceMappingURL=vue-vendors-settings-apps-9cccd48110cd039530d3.js.map?v=84ad02d8e0b9bfd0bdc1 \ No newline at end of file diff --git a/apps/settings/js/vue-vendors-settings-apps-9cccd48110cd039530d3.js.map b/apps/settings/js/vue-vendors-settings-apps-9cccd48110cd039530d3.js.map deleted file mode 100644 index 61712da2d7..0000000000 --- a/apps/settings/js/vue-vendors-settings-apps-9cccd48110cd039530d3.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["webpack:///./node_modules/@nextcloud/vue/dist/Components/AppNavigationSpacer.js","webpack:///./node_modules/@nextcloud/vue/dist/Components/AppSidebar.js","webpack:///./node_modules/@nextcloud/vue/dist/Components/AppSidebarTab.js","webpack:///./node_modules/p-limit/index.js","webpack:///./node_modules/p-try/index.js","webpack:///./node_modules/marked/lib/marked.js","webpack:///./node_modules/dompurify/dist/purify.js"],"names":["window","module","exports","e","t","n","r","o","i","l","call","m","c","d","Object","defineProperty","enumerable","get","Symbol","toStringTag","value","__esModule","create","bind","default","prototype","hasOwnProperty","p","s","0","a","u","options","render","staticRenderFns","_compiled","functional","_scopeId","this","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","$root","$options","shadowRoot","_injectStyles","f","beforeCreate","concat","1","toString","map","btoa","unescape","encodeURIComponent","JSON","stringify","sources","sourceRoot","join","length","push","133","locals","2","id","css","media","sourceMap","parts","document","DEBUG","Error","head","getElementsByTagName","navigator","test","userAgent","toLowerCase","v","refs","g","h","createElement","type","appendChild","querySelector","parentNode","removeChild","b","x","y","filter","Boolean","styleSheet","cssText","createTextNode","childNodes","insertBefore","setAttribute","ssrId","firstChild","200","name","$createElement","_self","_c","staticClass","254","255","A","E","M","getGettextBuilder","detectLocale","locale","json","charset","headers","Language","translations","msgid","comments","translator","msgstr","reference","Actions","Activities","Choose","Close","Custom","Flags","Next","Objects","Previous","Search","Settings","Symbols","addTranslation","build","ngettext","gettext","slice","hash","needQuotes","replace","VTooltip","defaultTemplate","defaultHtml","Math","random","substr","components","VPopover","_g","_b","attrs","$attrs","$listeners","_t","_v","slot","methods","componentOptions","tag","indexOf","util","warn","splice","Array","directives","tooltip","Popover","props","open","forceMenu","menuTitle","String","primary","defaultIcon","ariaLabel","placement","boundariesElement","Element","container","data","actions","opened","focusIndex","randomId","children","$children","computed","hasMultipleActions","isValidSingleAction","firstActionElement","firstActionVNode","firstAction","firstActionBinding","is","href","target","to","exact","firstActionEvent","listeners","click","firstActionEventBinding","firstActionClass","class","watch","beforeMount","initActions","$slots","beforeUpdate","openMenu","$emit","onOpen","closeMenu","$refs","menuButton","focus","$nextTick","focusFirstAction","onMouseFocusAction","activeElement","closest","isArray","iterator","from","constructor","TypeError","menu","querySelectorAll","focusAction","removeCurrentActive","classList","remove","focusPreviousAction","preventIfEvent","focusNextAction","focusLastAction","$el","preventDefault","stopPropagation","execFirstAction","rawName","text","expression","modifiers","auto","icon","rel","on","_d","hidden","delay","show","hide","ref","_s","tabindex","keydown","_k","keyCode","key","ctrlKey","shiftKey","altKey","metaKey","mousemove","_e","required","role","desc","inserted","linkify","innerHTML","defaultProtocol","trim","active","tabs","activeTab","hasMultipleTabs","currentTabIndex","findIndex","updateActive","updateTabs","mounted","setActive","dataset","focusPreviousTab","focusActiveTab","focusNextTab","focusFirstTab","focusLastTab","focusActiveTabContent","reduce","componentInstance","console","debug","sort","order","OC","Util","naturalSortCompare","button","_l","AppSidebarTabs","EmptyContent","ClickOutside","directive","mixins","title","titleEditable","titlePlaceholder","subtitle","background","starred","starLoading","loading","compact","empty","linkifyTitle","isStarred","canStar","hasFigure","header","hasFigureClickListener","closeSidebar","onFigureClick","toggleStarred","editTitle","titleInput","onTitleInput","onSubmitTitle","onDismissEditing","onUpdateActive","appear","style","backgroundImage","currentTarget","submit","placeholder","domProps","input","139","_","206","Number","isActive","$parent","263","264","30","pTry","require","concurrency","isInteger","Infinity","queue","activeCount","next","shift","run","fn","resolve","args","result","enqueue","Promise","generator","defineProperties","pendingCount","clearQueue","arguments_","_defineProperties","descriptor","configurable","writable","_arrayLikeToArray","arr","len","arr2","_createForOfIteratorHelperLoose","allowArrayLike","it","minLen","_unsupportedIterableToArray","done","defaults","createCommonjsModule","getDefaults","baseUrl","breaks","gfm","headerIds","headerPrefix","highlight","langPrefix","mangle","pedantic","renderer","sanitize","sanitizer","silent","smartLists","smartypants","tokenizer","walkTokens","xhtml","changeDefaults","newDefaults","escapeTest","escapeReplace","escapeTestNoEncode","escapeReplaceNoEncode","escapeReplacements","getEscapeReplacement","ch","unescapeTest","html","charAt","fromCharCode","parseInt","substring","caret","nonWordAndColonTest","originIndependentUrl","baseUrls","justDomain","protocol","domain","resolveUrl","base","rtrim","relativeBase","str","invert","suffLen","currChar","helpers","encode","regex","opt","source","obj","val","getRegex","RegExp","prot","decodeURIComponent","encodeURI","exec","arguments","tableRow","count","cells","match","offset","escaped","curr","split","level","defaults$1","rtrim$1","splitCells$1","_escape","findClosingBracket$1","outputLink","cap","link","raw","Tokenizer_1","Tokenizer","_proto","space","src","rules","block","newline","code","tokens","lastToken","trimRight","codeBlockStyle","fences","matchIndentToCode","indentToCode","node","matchIndentInNode","indentCodeCompensation","lang","heading","depth","nptable","item","align","hr","blockquote","list","addBack","loose","istask","ischecked","bull","isordered","isparen","ordered","start","items","itemMatch","bullet","undefined","task","checked","pre","def","table","lheading","paragraph","escape","inline","inLink","inRawBlock","lastParenIndex","linkLen","_escapes","reflink","links","nolink","strong","maskedSrc","prevChar","punctuation","endReg","endAst","endUnd","lastIndex","middle","index","em","codespan","hasNonSpaceChars","hasSpaceCharsOnBothEnds","startsWith","endsWith","br","del","autolink","url","prevCapZero","_backpedal","inlineText","noopTest$1","edit$1","merge$1","_paragraph","_label","_title","_tag","_comment","normal","reflinkSearch","_punctuation","_blockSkip","_overlapSkip","blockSkip","overlapSkip","_scheme","_email","_attribute","_href","_extended_email","defaults$2","block$1","inline$1","out","charCodeAt","Lexer_1","Lexer","lex","Constructor","protoProps","staticProps","blockTokens","top","token","errMsg","error","j","k","l2","row","inlineTokens","keys","includes","lastIndexOf","repeat","defaults$3","cleanUrl$1","escape$1","Renderer_1","Renderer","_code","infostring","quote","_html","slugger","slug","body","listitem","checkbox","tablerow","content","tablecell","flags","image","_text","TextRenderer_1","TextRenderer","Slugger_1","Slugger","seen","originalSlug","defaults$4","unescape$1","Parser_1","Parser","textRenderer","parse","l3","cell","itemBody","parseInline","unshift","merge$2","checkSanitizeDeprecation$1","escape$2","defaults$5","marked","callback","err","pending","setTimeout","_tokens","message","setOptions","use","extension","opts","_loop","prop","prevRenderer","_len","_key","ret","apply","_loop2","prevTokenizer","_len2","_key2","_step","_iterator","_step2","_iterator2","_step3","_iterator3","_step4","_iterator4","_cell","parser","lexer","factory","setPrototypeOf","isFrozen","objectKeys","freeze","seal","_ref","Reflect","construct","fun","thisValue","Func","Function","_toConsumableArray","arrayForEach","unapply","forEach","arrayIndexOf","arrayJoin","arrayPop","pop","arrayPush","arraySlice","stringToLowerCase","stringMatch","stringReplace","stringIndexOf","stringTrim","regExpTest","regExpCreate","unconstruct","typeErrorCreate","func","thisArg","addToSet","set","array","element","lcElement","clone","object","newObject","property","svg","svgFilters","mathMl","html$1","svg$1","mathMl$1","xml","MUSTACHE_EXPR","ERB_EXPR","DATA_ATTR","ARIA_ATTR","IS_ALLOWED_URI","IS_SCRIPT_OR_DATA","ATTR_WHITESPACE","_typeof","_toConsumableArray$1","getGlobal","_createTrustedTypesPolicy","trustedTypes","createPolicy","suffix","currentScript","hasAttribute","getAttribute","policyName","createHTML","html$$1","createDOMPurify","DOMPurify","root","version","removed","nodeType","isSupported","originalDocument","removeTitle","DocumentFragment","HTMLTemplateElement","Node","NodeFilter","_window$NamedNodeMap","NamedNodeMap","MozNamedAttrMap","Text","Comment","DOMParser","template","ownerDocument","trustedTypesPolicy","emptyHTML","RETURN_TRUSTED_TYPE","_document","implementation","createNodeIterator","createDocumentFragment","importNode","documentMode","hooks","createHTMLDocument","MUSTACHE_EXPR$$1","ERB_EXPR$$1","DATA_ATTR$$1","ARIA_ATTR$$1","IS_SCRIPT_OR_DATA$$1","ATTR_WHITESPACE$$1","IS_ALLOWED_URI$$1","ALLOWED_TAGS","DEFAULT_ALLOWED_TAGS","ALLOWED_ATTR","DEFAULT_ALLOWED_ATTR","FORBID_TAGS","FORBID_ATTR","ALLOW_ARIA_ATTR","ALLOW_DATA_ATTR","ALLOW_UNKNOWN_PROTOCOLS","SAFE_FOR_JQUERY","SAFE_FOR_TEMPLATES","WHOLE_DOCUMENT","SET_CONFIG","FORCE_BODY","RETURN_DOM","RETURN_DOM_FRAGMENT","RETURN_DOM_IMPORT","SANITIZE_DOM","KEEP_CONTENT","IN_PLACE","USE_PROFILES","FORBID_CONTENTS","DATA_URI_TAGS","DEFAULT_DATA_URI_TAGS","URI_SAFE_ATTRIBUTES","DEFAULT_URI_SAFE_ATTRIBUTES","CONFIG","formElement","_parseConfig","cfg","ADD_URI_SAFE_ATTR","ADD_DATA_URI_TAGS","ALLOWED_URI_REGEXP","ADD_TAGS","ADD_ATTR","tbody","_forceRemove","outerHTML","_removeAttribute","attribute","getAttributeNode","removeAttribute","_initDocument","dirty","doc","leadingWhitespace","matches","dirtyPayload","parseFromString","documentElement","firstElementChild","_createIterator","SHOW_ELEMENT","SHOW_COMMENT","SHOW_TEXT","FILTER_ACCEPT","_isClobbered","elm","nodeName","textContent","attributes","namespaceURI","_isNode","_executeHook","entryPoint","currentNode","hook","_sanitizeElements","tagName","allowedTags","insertAdjacentHTML","htmlToInsert","cloneNode","_isValidAttribute","lcTag","lcName","_sanitizeAttributes","attr","idAttr","hookEvent","attrName","attrValue","keepAttr","allowedAttributes","_attr","forceKeepAttr","setAttributeNS","_sanitizeShadowDOM","fragment","shadowNode","shadowIterator","nextNode","importedNode","oldNode","returnNode","toStaticHTML","nodeIterator","serializedHTML","setConfig","clearConfig","isValidAttribute","addHook","hookFunction","removeHook","removeHooks","removeAllHooks"],"mappings":"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","file":"vue-vendors-settings-apps-9cccd48110cd039530d3.js?v=84ad02d8e0b9bfd0bdc1","sourcesContent":["!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"Components/AppNavigationSpacer\",[],t):\"object\"==typeof exports?exports[\"Components/AppNavigationSpacer\"]=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/AppNavigationSpacer\"]=t())}(window,(function(){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=200)}({0:function(e,t,n){\"use strict\";function r(e,t,n,r,o,i,a,s){var c,u=\"function\"==typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId=\"data-v-\"+i),a?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},u._ssrRegister=c):o&&(c=s?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(u.functional){u._injectStyles=c;var f=u.render;u.render=function(e,t){return c.call(t),f(e,t)}}else{var p=u.beforeCreate;u.beforeCreate=p?[].concat(p,c):[c]}return{exports:e,options:u}}n.d(t,\"a\",(function(){return r}))},1:function(e,t,n){\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n=e[1]||\"\",r=e[3];if(!r)return n;if(t&&\"function\"==typeof btoa){var o=(a=r,s=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),c=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(s),\"/*# \".concat(c,\" */\")),i=r.sources.map((function(e){return\"/*# sourceURL=\".concat(r.sourceRoot||\"\").concat(e,\" */\")}));return[n].concat(i).concat([o]).join(\"\\n\")}var a,s,c;return[n].join(\"\\n\")}(t,e);return t[2]?\"@media \".concat(t[2],\" {\").concat(n,\"}\"):n})).join(\"\")},t.i=function(e,n,r){\"string\"==typeof e&&(e=[[null,e,\"\"]]);var o={};if(r)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var s=0;s<e.length;s++){var c=[].concat(e[s]);r&&o[c[0]]||(n&&(c[2]?c[2]=\"\".concat(n,\" and \").concat(c[2]):c[2]=n),t.push(c))}},t}},133:function(e,t,n){var r=n(255);\"string\"==typeof r&&(r=[[e.i,r,\"\"]]),r.locals&&(e.exports=r.locals);(0,n(2).default)(\"1e3ece15\",r,!0,{})},2:function(e,t,n){\"use strict\";function r(e,t){for(var n=[],r={},o=0;o<t.length;o++){var i=t[o],a=i[0],s={id:e+\":\"+o,css:i[1],media:i[2],sourceMap:i[3]};r[a]?r[a].parts.push(s):n.push(r[a]={id:a,parts:[s]})}return n}n.r(t),n.d(t,\"default\",(function(){return l}));var o=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!o)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var i={},a=o&&(document.head||document.getElementsByTagName(\"head\")[0]),s=null,c=0,u=!1,f=function(){},p=null,d=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());function l(e,t,n,o){u=n,p=o||{};var a=r(e,t);return v(a),function(t){for(var n=[],o=0;o<a.length;o++){var s=a[o];(c=i[s.id]).refs--,n.push(c)}t?v(a=r(e,t)):a=[];for(o=0;o<n.length;o++){var c;if(0===(c=n[o]).refs){for(var u=0;u<c.parts.length;u++)c.parts[u]();delete i[c.id]}}}}function v(e){for(var t=0;t<e.length;t++){var n=e[t],r=i[n.id];if(r){r.refs++;for(var o=0;o<r.parts.length;o++)r.parts[o](n.parts[o]);for(;o<n.parts.length;o++)r.parts.push(g(n.parts[o]));r.parts.length>n.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(o=0;o<n.parts.length;o++)a.push(g(n.parts[o]));i[n.id]={id:n.id,refs:1,parts:a}}}}function h(){var e=document.createElement(\"style\");return e.type=\"text/css\",a.appendChild(e),e}function g(e){var t,n,r=document.querySelector('style[data-vue-ssr-id~=\"'+e.id+'\"]');if(r){if(u)return f;r.parentNode.removeChild(r)}if(d){var o=c++;r=s||(s=h()),t=b.bind(null,r,o,!1),n=b.bind(null,r,o,!0)}else r=h(),t=x.bind(null,r),n=function(){r.parentNode.removeChild(r)};return t(e),function(r){if(r){if(r.css===e.css&&r.media===e.media&&r.sourceMap===e.sourceMap)return;t(e=r)}else n()}}var m,y=(m=[],function(e,t){return m[e]=t,m.filter(Boolean).join(\"\\n\")});function b(e,t,n,r){var o=n?\"\":r.css;if(e.styleSheet)e.styleSheet.cssText=y(t,o);else{var i=document.createTextNode(o),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(i,a[t]):e.appendChild(i)}}function x(e,t){var n=t.css,r=t.media,o=t.sourceMap;if(r&&e.setAttribute(\"media\",r),p.ssrId&&e.setAttribute(\"data-vue-ssr-id\",t.id),o&&(n+=\"\\n/*# sourceURL=\"+o.sources[0]+\" */\",n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+\" */\"),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}},200:function(e,t,n){\"use strict\";n.r(t);var r={name:\"AppNavigationSpacer\"},o=(n(254),n(0)),i=Object(o.a)(r,(function(){var e=this.$createElement;return(this._self._c||e)(\"li\",{staticClass:\"app-navigation-spacer\"})}),[],!1,null,\"42195cc8\",null).exports;t.default=i},254:function(e,t,n){\"use strict\";var r=n(133);n.n(r).a},255:function(e,t,n){(t=n(1)(!1)).push([e.i,\"\\n.app-navigation-spacer[data-v-42195cc8] {\\n\\tflex-shrink: 0;\\n\\torder: 1;\\n\\theight: 22px;\\n}\\n\\n\",\"\"]),e.exports=t}})}));\n//# sourceMappingURL=AppNavigationSpacer.js.map","!function(e,s){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=s():\"function\"==typeof define&&define.amd?define(\"Components/AppSidebar\",[],s):\"object\"==typeof exports?exports[\"Components/AppSidebar\"]=s():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/AppSidebar\"]=s())}(window,(function(){return function(e){var s={};function t(o){if(s[o])return s[o].exports;var n=s[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,t),n.l=!0,n.exports}return t.m=e,t.c=s,t.d=function(e,s,o){t.o(e,s)||Object.defineProperty(e,s,{enumerable:!0,get:o})},t.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},t.t=function(e,s){if(1&s&&(e=t(e)),8&s)return e;if(4&s&&\"object\"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,\"default\",{enumerable:!0,value:e}),2&s&&\"string\"!=typeof e)for(var n in e)t.d(o,n,function(s){return e[s]}.bind(null,n));return o},t.n=function(e){var s=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(s,\"a\",s),s},t.o=function(e,s){return Object.prototype.hasOwnProperty.call(e,s)},t.p=\"/dist/\",t(t.s=196)}([function(e,s,t){\"use strict\";function o(e,s,t,o,n,r,i,c){var a,m=\"function\"==typeof e?e.options:e;if(s&&(m.render=s,m.staticRenderFns=t,m._compiled=!0),o&&(m.functional=!0),r&&(m._scopeId=\"data-v-\"+r),i?(a=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},m._ssrRegister=a):n&&(a=c?function(){n.call(this,(m.functional?this.parent:this).$root.$options.shadowRoot)}:n),a)if(m.functional){m._injectStyles=a;var A=m.render;m.render=function(e,s){return a.call(s),A(e,s)}}else{var l=m.beforeCreate;m.beforeCreate=l?[].concat(l,a):[a]}return{exports:e,options:m}}t.d(s,\"a\",(function(){return o}))},function(e,s,t){\"use strict\";e.exports=function(e){var s=[];return s.toString=function(){return this.map((function(s){var t=function(e,s){var t=e[1]||\"\",o=e[3];if(!o)return t;if(s&&\"function\"==typeof btoa){var n=(i=o,c=btoa(unescape(encodeURIComponent(JSON.stringify(i)))),a=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(c),\"/*# \".concat(a,\" */\")),r=o.sources.map((function(e){return\"/*# sourceURL=\".concat(o.sourceRoot||\"\").concat(e,\" */\")}));return[t].concat(r).concat([n]).join(\"\\n\")}var i,c,a;return[t].join(\"\\n\")}(s,e);return s[2]?\"@media \".concat(s[2],\" {\").concat(t,\"}\"):t})).join(\"\")},s.i=function(e,t,o){\"string\"==typeof e&&(e=[[null,e,\"\"]]);var n={};if(o)for(var r=0;r<this.length;r++){var i=this[r][0];null!=i&&(n[i]=!0)}for(var c=0;c<e.length;c++){var a=[].concat(e[c]);o&&n[a[0]]||(t&&(a[2]?a[2]=\"\".concat(t,\" and \").concat(a[2]):a[2]=t),s.push(a))}},s}},function(e,s,t){\"use strict\";function o(e,s){for(var t=[],o={},n=0;n<s.length;n++){var r=s[n],i=r[0],c={id:e+\":\"+n,css:r[1],media:r[2],sourceMap:r[3]};o[i]?o[i].parts.push(c):t.push(o[i]={id:i,parts:[c]})}return t}t.r(s),t.d(s,\"default\",(function(){return u}));var n=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!n)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var r={},i=n&&(document.head||document.getElementsByTagName(\"head\")[0]),c=null,a=0,m=!1,A=function(){},l=null,g=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());function u(e,s,t,n){m=t,l=n||{};var i=o(e,s);return d(i),function(s){for(var t=[],n=0;n<i.length;n++){var c=i[n];(a=r[c.id]).refs--,t.push(a)}s?d(i=o(e,s)):i=[];for(n=0;n<t.length;n++){var a;if(0===(a=t[n]).refs){for(var m=0;m<a.parts.length;m++)a.parts[m]();delete r[a.id]}}}}function d(e){for(var s=0;s<e.length;s++){var t=e[s],o=r[t.id];if(o){o.refs++;for(var n=0;n<o.parts.length;n++)o.parts[n](t.parts[n]);for(;n<t.parts.length;n++)o.parts.push(v(t.parts[n]));o.parts.length>t.parts.length&&(o.parts.length=t.parts.length)}else{var i=[];for(n=0;n<t.parts.length;n++)i.push(v(t.parts[n]));r[t.id]={id:t.id,refs:1,parts:i}}}}function p(){var e=document.createElement(\"style\");return e.type=\"text/css\",i.appendChild(e),e}function v(e){var s,t,o=document.querySelector('style[data-vue-ssr-id~=\"'+e.id+'\"]');if(o){if(m)return A;o.parentNode.removeChild(o)}if(g){var n=a++;o=c||(c=p()),s=h.bind(null,o,n,!1),t=h.bind(null,o,n,!0)}else o=p(),s=E.bind(null,o),t=function(){o.parentNode.removeChild(o)};return s(e),function(o){if(o){if(o.css===e.css&&o.media===e.media&&o.sourceMap===e.sourceMap)return;s(e=o)}else t()}}var f,M=(f=[],function(e,s){return f[e]=s,f.filter(Boolean).join(\"\\n\")});function h(e,s,t,o){var n=t?\"\":o.css;if(e.styleSheet)e.styleSheet.cssText=M(s,n);else{var r=document.createTextNode(n),i=e.childNodes;i[s]&&e.removeChild(i[s]),i.length?e.insertBefore(r,i[s]):e.appendChild(r)}}function E(e,s){var t=s.css,o=s.media,n=s.sourceMap;if(o&&e.setAttribute(\"media\",o),l.ssrId&&e.setAttribute(\"data-vue-ssr-id\",s.id),n&&(t+=\"\\n/*# sourceURL=\"+n.sources[0]+\" */\",t+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(n))))+\" */\"),e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},function(e,s){e.exports=require(\"core-js/modules/es.object.to-string\")},function(e,s){e.exports=require(\"v-tooltip\")},function(e,s){e.exports=require(\"vue\")},function(e,s,t){\"use strict\";t.d(s,\"b\",(function(){return c})),t.d(s,\"a\",(function(){return i}));t(11);var o=t(28),n=Object(o.getGettextBuilder)().detectLocale();[{locale:\"br\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Kervoas-Le Nabat Ewen <ewenkervoas@free.fr>, 2020\",\"Language-Team\":\"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"br\",\"Plural-Forms\":\"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nKervoas-Le Nabat Ewen <ewenkervoas@free.fr>, 2020\\n\"},msgstr:[\"Last-Translator: Kervoas-Le Nabat Ewen <ewenkervoas@free.fr>, 2020\\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: br\\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (diwelus)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (bevennet)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Oberioù\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Oberiantizoù\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Loened & Natur\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Dibab\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Serriñ\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Personelañ\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Bannieloù\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Boued & Evajoù\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Implijet alies\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Da heul\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Emoji ebet kavet\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Disoc'h ebet\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Traoù\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Arsav an diaporama\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Tud & Korf\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Choaz un emoji\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"A-raok\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Klask\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Disoc'hoù an enklask\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Choaz ur c'hlav\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"Arventennoù\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Smileyioù & Fromoù\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Kregiñ an diaporama\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Arouezioù\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Beaj & Lec'hioù\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Dibosupl eo klask ar strollad\"]}}}}},{locale:\"ca\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Toni Hermoso Pulido <toniher@softcatala.cat>, 2020\",\"Language-Team\":\"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"ca\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nCarles Ferrando Garcia <carles.ferrando@gnuescultura.eu>, 2020\\nMarc Riera <marcriera@softcatala.org>, 2020\\nToni Hermoso Pulido <toniher@softcatala.cat>, 2020\\n\"},msgstr:[\"Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2020\\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ca\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (invisible)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (restringit)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:254\"},msgstr:[\"Accions\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Activitats\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Animals i natura\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Tria\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Tanca\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Personalitzat\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Marques\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Menjar i begudes\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Utilitzats recentment\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Següent\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"No s'ha trobat cap emoji\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Sense resultats\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Objectes\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Atura la presentació\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Persones i cos\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Trieu un emoji\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Anterior\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Cerca\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Resultats de cerca\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Selecciona una etiqueta\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"Paràmetres\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Cares i emocions\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Inicia la presentació\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Símbols\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Viatges i llocs\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"No es pot cercar el grup\"]}}}}},{locale:\"cs_CZ\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Pavel Borecki <pavel.borecki@gmail.com>, 2020\",\"Language-Team\":\"Czech (Czech Republic) (https://www.transifex.com/nextcloud/teams/64236/cs_CZ/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"cs_CZ\",\"Plural-Forms\":\"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nPavel Borecki <pavel.borecki@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2020\\nLanguage-Team: Czech (Czech Republic) (https://www.transifex.com/nextcloud/teams/64236/cs_CZ/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: cs_CZ\\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (neviditelný)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (omezený)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Akce\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Aktivity\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Zvířata a příroda\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Zvolit\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Zavřít\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Uživatelsky určené\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Příznaky\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Jídlo a pití\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Často používané\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Následující\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Nenalezeno žádné emoji\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Žádné výsledky\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Objekty\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pozastavit prezentaci\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Lidé a tělo\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Vyberte emoji\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Předchozí\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Hledat\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Výsledky hledání\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Vybrat štítek\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Nastavení\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Úsměvy a emoce\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Spustit prezentaci\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Symboly\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Cestování a místa\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Nedaří se hledat skupinu\"]}}}}},{locale:\"da\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Thomas Nielsen <thsnielsen@gmail.com>, 2020\",\"Language-Team\":\"Danish (https://www.transifex.com/nextcloud/teams/64236/da/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"da\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nThomas Nielsen <thsnielsen@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Thomas Nielsen <thsnielsen@gmail.com>, 2020\\nLanguage-Team: Danish (https://www.transifex.com/nextcloud/teams/64236/da/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: da\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (usynlig)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (begrænset)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:247\"},msgstr:[\"Handlinger\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Vælg\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Luk\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Videre\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:172\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Ingen resultater\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Suspender fremvisning\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Forrige\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Vælg et mærke\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Indstillinger\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Start fremvisning\"]}}}}},{locale:\"de\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Mark Ziegler <mark.ziegler@rakekniven.de>, 2020\",\"Language-Team\":\"German (https://www.transifex.com/nextcloud/teams/64236/de/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"de\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nPhilipp Fischbeck <pfischbeck@googlemail.com>, 2020\\nAndreas Eitel <github-aneitel@online.de>, 2020\\nMario Siegmann <mario_siegmann@web.de>, 2020\\nJoachim Sokolowski, 2020\\nMark Ziegler <mark.ziegler@rakekniven.de>, 2020\\n\"},msgstr:[\"Last-Translator: Mark Ziegler <mark.ziegler@rakekniven.de>, 2020\\nLanguage-Team: German (https://www.transifex.com/nextcloud/teams/64236/de/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: de\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (unsichtbar)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (eingeschränkt)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Aktionen\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Aktivitäten\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Tiere & Natur\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Auswählen\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Schließen\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Benutzerdefiniert\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Flaggen\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Essen & Trinken\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Häufig verwendet\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Weiter\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Kein Emoji gefunden\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Keine Ergebnisse\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Gegenstände\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Diashow pausieren\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Menschen & Körper\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Ein Emoji auswählen\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Vorherige\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Suche\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Suchergebnisse\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Schlagwort auswählen\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"Einstellungen\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Smileys & Emotionen\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Diashow starten\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Symbole\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Reisen & Orte\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Die Gruppe konnte nicht durchsucht werden\"]}}}}},{locale:\"de_DE\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Mark Ziegler <mark.ziegler@rakekniven.de>, 2020\",\"Language-Team\":\"German (Germany) (https://www.transifex.com/nextcloud/teams/64236/de_DE/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"de_DE\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nPhilipp Fischbeck <pfischbeck@googlemail.com>, 2020\\nProfDrJones <jones@fs.cs.hm.edu>, 2020\\nMario Siegmann <mario_siegmann@web.de>, 2020\\nMark Ziegler <mark.ziegler@rakekniven.de>, 2020\\n\"},msgstr:[\"Last-Translator: Mark Ziegler <mark.ziegler@rakekniven.de>, 2020\\nLanguage-Team: German (Germany) (https://www.transifex.com/nextcloud/teams/64236/de_DE/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: de_DE\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (unsichtbar)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (eingeschränkt)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Aktionen\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Aktivitäten\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Tiere & Natur\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Auswählen\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Schließen\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Benutzerdefiniert\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Flaggen\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Essen & Trinken\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Häufig verwendet\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Weiter\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Kein Emoji gefunden\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Keine Ergebnisse\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Gegenstände\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Diashow pausieren\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Menschen & Körper\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Ein Emoji auswählen\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Vorherige\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Suche\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Suchergebnisse\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Schlagwort auswählen\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"Einstellungen\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Smileys & Emotionen\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Diashow starten\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Symbole\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Reisen & Orte\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Die Gruppe kann nicht durchsucht werden\"]}}}}},{locale:\"el\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Efstathios Iosifidis <iefstathios@gmail.com>, 2020\",\"Language-Team\":\"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"el\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\ngeorge k <norhorn@gmail.com>, 2020\\nEfstathios Iosifidis <iefstathios@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2020\\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: el\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (αόρατο)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (περιορισμένο)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Ενέργειες\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Δραστηριότητες\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Ζώα & Φύση\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Επιλογή\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Κλείσιμο\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Προσαρμογή\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Σημαίες\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Φαγητό & Ποτό\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Συχνά χρησιμοποιούμενο\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Επόμενο\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Δεν βρέθηκε emoji\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Κανένα αποτέλεσμα\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Αντικείμενα\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Παύση προβολής διαφανειών\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Άνθρωποι & Σώμα\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Επιλέξτε ένα emoji\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Προηγούμενο\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Αναζήτηση\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Αποτελέσματα αναζήτησης\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Επιλογή ετικέτας\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Ρυθμίσεις\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Φατσούλες & Συναίσθημα\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Έναρξη προβολής διαφανειών\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Σύμβολα\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Ταξίδια & Τοποθεσίες\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Δεν είναι δυνατή η αναζήτηση της ομάδας\"]}}}}},{locale:\"es\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"asd fgh <c1@cgps.xyz>, 2020\",\"Language-Team\":\"Spanish (https://www.transifex.com/nextcloud/teams/64236/es/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"es\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\njavier san felipe <jsanfe@gmail.com>, 2020\\nasd fgh <c1@cgps.xyz>, 2020\\n\"},msgstr:[\"Last-Translator: asd fgh <c1@cgps.xyz>, 2020\\nLanguage-Team: Spanish (https://www.transifex.com/nextcloud/teams/64236/es/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: es\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{etiqueta} (invisible)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{etiqueta} (restringido)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:247\"},msgstr:[\"acciones\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Elige\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Cierra\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Siguiente\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:172\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\" Ningún resultado\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pausa la presentación \"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Anterior\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Selecciona una etiqueta\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Ajustes\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Comienza la presentación \"]}}}}},{locale:\"eu\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 2020\",\"Language-Team\":\"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"eu\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"Translators:\\nAsier Iturralde Sarasola <asier.iturralde@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 2020\\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: eu\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:169\"},msgstr:[\"{tag} (ikusezina)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:172\"},msgstr:[\"{tag} (mugatua)\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Aukeratu\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:109\"},msgstr:[\"Itxi\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:154\"},msgstr:[\"Hurrengoa\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:169\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Emaitzarik ez\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:290\"},msgstr:[\"Pausatu diaporama\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:134\"},msgstr:[\"Aurrekoa\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Hautatu etiketa bat\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Ezarpenak\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:290\"},msgstr:[\"Hasi diaporama\"]}}}}},{locale:\"fi_FI\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Robin Lahtinen <robin.lahtinen@gmail.com>, 2020\",\"Language-Team\":\"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"fi_FI\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nRobin Lahtinen <robin.lahtinen@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Robin Lahtinen <robin.lahtinen@gmail.com>, 2020\\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fi_FI\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (näkymätön)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (rajoitettu)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:247\"},msgstr:[\"Toiminnot\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Valitse\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Sulje\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Seuraava\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Ei tuloksia\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Keskeytä diaesitys\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Edellinen\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Valitse tagi\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Asetukset\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Aloita diaesitys\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Ryhmää ei voi hakea\"]}}}}},{locale:\"fr\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Julien Veyssier <eneiluj@gmx.fr>, 2020\",\"Language-Team\":\"French (https://www.transifex.com/nextcloud/teams/64236/fr/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"fr\",\"Plural-Forms\":\"nplurals=2; plural=(n > 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nBrendan Abolivier <transifex@brendanabolivier.com>, 2020\\ngud bes <gudbes@protonmail.com>, 2020\\nGreg Greg <grena@grenabox.fr>, 2020\\nLuclu7 <theluc7andcompagnie@gmail.com>, 2020\\nJulien Veyssier <eneiluj@gmx.fr>, 2020\\n\"},msgstr:[\"Last-Translator: Julien Veyssier <eneiluj@gmx.fr>, 2020\\nLanguage-Team: French (https://www.transifex.com/nextcloud/teams/64236/fr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: fr\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (invisible)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (restreint)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Actions\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Activités\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Animaux & Nature\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Choisir\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Fermer\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Personnalisé\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Drapeaux\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Nourriture & Boissons\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Utilisés fréquemment\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Suivant\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Pas d’émoji trouvé\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Aucun résultat\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Objets\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Mettre le diaporama en pause\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Personnes & Corps\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Choisissez un émoji\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Précédent\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Chercher\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Résultats de recherche\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Sélectionnez une balise\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Paramètres\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Smileys & Émotions\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Démarrer le diaporama\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Symboles\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Voyage & Lieux\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Impossible de chercher le groupe\"]}}}}},{locale:\"gl\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2020\",\"Language-Team\":\"Galician (https://www.transifex.com/nextcloud/teams/64236/gl/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"gl\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2020\\nLanguage-Team: Galician (https://www.transifex.com/nextcloud/teams/64236/gl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: gl\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (invisíbel)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (restrinxido)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Accións\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Actividades\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Animais e natureza\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Escoller\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Pechar\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Personalizado\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Bandeiras\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Comida e bebida\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Usado con frecuencia\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Seguinte\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Non se atopou ningún «emoji»\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Sen resultados\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Obxectos\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pausar o diaporama\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Persoas e corpo\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Escolla un «emoji»\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Anterir\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Buscar\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Resultados da busca\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Seleccione unha etiqueta\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Axustes\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Sorrisos e emocións\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Iniciar o diaporama\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Símbolos\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Viaxes e lugares\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Non foi posíbel buscar o grupo\"]}}}}},{locale:\"he\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Yaron Shahrabani <sh.yaron@gmail.com>, 2020\",\"Language-Team\":\"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"he\",\"Plural-Forms\":\"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nYaron Shahrabani <sh.yaron@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>, 2020\\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: he\\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (נסתר)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (מוגבל)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"פעולות\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"פעילויות\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"חיות וטבע\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"בחירה\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"סגירה\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"בהתאמה אישית\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"דגלים\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"מזון ומשקאות\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"בשימוש תדיר\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"הבא\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"לא נמצא אמוג׳י\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"אין תוצאות\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"חפצים\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"השהיית מצגת\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"אנשים וגוף\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"נא לבחור אמוג׳י\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"הקודם\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"חיפוש\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"תוצאות חיפוש\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"בחירת תגית\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"הגדרות\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"חייכנים ורגשונים\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"התחלת המצגת\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"סמלים\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"טיולים ומקומות\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"לא ניתן לחפש בקבוצה\"]}}}}},{locale:\"hu_HU\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"asbot10 <asbot000@gmail.com>, 2020\",\"Language-Team\":\"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"hu_HU\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"Translators:\\nBalázs Meskó <mesko.balazs@fsf.hu>, 2020\\nasbot10 <asbot000@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: asbot10 <asbot000@gmail.com>, 2020\\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: hu_HU\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (láthatatlan)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (korlátozott)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:197\"},msgstr:[\"Műveletek\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Válassszon\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Bezárás\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Következő\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:172\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Nincs találat\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Diavetítés szüneteltetése\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Előző\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Válasszon címkét\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Beállítások\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Diavetítés indítása\"]}}}}},{locale:\"is\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Sveinn í Felli <sv1@fellsnet.is>, 2020\",\"Language-Team\":\"Icelandic (https://www.transifex.com/nextcloud/teams/64236/is/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"is\",\"Plural-Forms\":\"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nSveinn í Felli <sv1@fellsnet.is>, 2020\\n\"},msgstr:[\"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2020\\nLanguage-Team: Icelandic (https://www.transifex.com/nextcloud/teams/64236/is/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: is\\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (ósýnilegt)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (takmarkað)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:254\"},msgstr:[\"Aðgerðir\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Aðgerðir\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Dýr og náttúra\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Velja\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Loka\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Sérsniðið\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Flögg\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Matur og drykkur\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Oftast notað\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Næsta\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Ekkert tjáningartákn fannst\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Engar niðurstöður\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Hlutir\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Gera hlé á skyggnusýningu\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Fólk og líkami\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Veldu tjáningartákn\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Fyrri\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Leita\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Leitarniðurstöður\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Veldu merki\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"Stillingar\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Broskallar og tilfinningar\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Byrja skyggnusýningu\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Tákn\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Staðir og ferðalög\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Get ekki leitað í hópnum\"]}}}}},{locale:\"it\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Vincenzo Reale <vinx.reale@gmail.com>, 2020\",\"Language-Team\":\"Italian (https://www.transifex.com/nextcloud/teams/64236/it/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"it\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nRandom_R, 2020\\nVincenzo Reale <vinx.reale@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>, 2020\\nLanguage-Team: Italian (https://www.transifex.com/nextcloud/teams/64236/it/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: it\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (invisibile)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (limitato)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Azioni\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Attività\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Animali e natura\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Scegli\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Chiudi\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Personalizzato\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Bandiere\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Cibo e bevande\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Usati di frequente\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Successivo\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Nessun emoji trovato\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Nessun risultato\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Oggetti\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Presentazione in pausa\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Persone e corpo\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Scegli un emoji\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Precedente\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Cerca\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Risultati di ricerca\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Seleziona un'etichetta\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"Impostazioni\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Faccine ed emozioni\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Avvia presentazione\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Simboli\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Viaggi e luoghi\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Impossibile cercare il gruppo\"]}}}}},{locale:\"ja_JP\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"YANO Tetsu <tetuyano+transi@gmail.com>, 2020\",\"Language-Team\":\"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"ja_JP\",\"Plural-Forms\":\"nplurals=1; plural=0;\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nYANO Tetsu <tetuyano+transi@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: YANO Tetsu <tetuyano+transi@gmail.com>, 2020\\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ja_JP\\nPlural-Forms: nplurals=1; plural=0;\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{タグ} (不可視)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{タグ} (制限付)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"操作\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"アクティビティ\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"動物と自然\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"選択\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"閉じる\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"カスタム\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"国旗\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"食べ物と飲み物\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"よく使うもの\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"次\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"絵文字が見つかりません\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"なし\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"物\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"スライドショーを一時停止\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"様々な人と体の部位\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"絵文字を選択\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"前\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"検索\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"検索結果\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"タグを選択\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"設定\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"笑顔と気持ち\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"スライドショーを開始\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"記号\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"旅行と場所\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"グループを検索できません\"]}}}}},{locale:\"lt_LT\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Moo, 2020\",\"Language-Team\":\"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"lt_LT\",\"Plural-Forms\":\"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nMoo, 2020\\n\"},msgstr:[\"Last-Translator: Moo, 2020\\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lt_LT\\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (nematoma)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (apribota)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:254\"},msgstr:[\"Veiksmai\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Veiklos\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Gyvūnai ir gamta\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Pasirinkti\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Užverti\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Tinkinti\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Vėliavos\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Maistas ir gėrimai\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Dažniausiai naudoti\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Kitas\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Nerasta jaustukų\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Nėra rezultatų\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Objektai\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pristabdyti skaidrių rodymą\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Žmonės ir kūnas\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Pasirinkti jaustuką\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Ankstesnis\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Ieškoti\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Paieškos rezultatai\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Pasirinkti žymę\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"Nustatymai\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Šypsenos ir emocijos\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pradėti skaidrių rodymą\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Simboliai\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Kelionės ir vietos\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Nepavyko atlikti paiešką grupėje\"]}}}}},{locale:\"lv\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"stendec <stendec@inbox.lv>, 2020\",\"Language-Team\":\"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"lv\",\"Plural-Forms\":\"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"Translators:\\nstendec <stendec@inbox.lv>, 2020\\n\"},msgstr:[\"Last-Translator: stendec <stendec@inbox.lv>, 2020\\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: lv\\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:169\"},msgstr:[\"{tag} (neredzams)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:172\"},msgstr:[\"{tag} (ierobežots)\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Izvēlēties\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:109\"},msgstr:[\"Aizvērt\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:154\"},msgstr:[\"Nākamais\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:169\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Nav rezultātu\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:290\"},msgstr:[\"Pauzēt slaidrādi\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:134\"},msgstr:[\"Iepriekšējais\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Izvēlēties birku\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Iestatījumi\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:290\"},msgstr:[\"Sākt slaidrādi\"]}}}}},{locale:\"mk\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Сашко Тодоров, 2020\",\"Language-Team\":\"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"mk\",\"Plural-Forms\":\"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nСашко Тодоров, 2020\\n\"},msgstr:[\"Last-Translator: Сашко Тодоров, 2020\\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: mk\\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (невидливо)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (ограничено)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Акции\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Активности\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Животни & Природа\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Избери\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Затвори\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Прилагодени\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Знамиња\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Храна & Пијалоци\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Најчесто користени\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Следно\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Не се пронајдени емотикони\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Нема резултати\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Објекти\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Пузирај слајдшоу\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Луѓе & Тело\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Избери емотикон\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Предходно\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Барај\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Резултати од барувањето\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Избери ознака\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"Параметри\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Смешковци & Емотикони\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Стартувај слајдшоу\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Симболи\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Патувања & Места\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Неможе да се принајде групата\"]}}}}},{locale:\"nb_NO\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Ole Jakob Brustad <ole.jakob@brustadbuss.no>, 2020\",\"Language-Team\":\"Norwegian Bokmål (Norway) (https://www.transifex.com/nextcloud/teams/64236/nb_NO/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"nb_NO\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nOle Jakob Brustad <ole.jakob@brustadbuss.no>, 2020\\n\"},msgstr:[\"Last-Translator: Ole Jakob Brustad <ole.jakob@brustadbuss.no>, 2020\\nLanguage-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/nextcloud/teams/64236/nb_NO/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: nb_NO\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (usynlig)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (beskyttet)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:247\"},msgstr:[\"Handlinger\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Velg\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Lukk\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Neste\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:172\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Ingen resultat\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pause lysbildefremvisning\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Forrige\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Velg et merke\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Instillinger\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Start lysbildefremvisning\"]}}}}},{locale:\"nl\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Arjan van S, 2020\",\"Language-Team\":\"Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"nl\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"Translators:\\nRoeland Jago Douma <roeland@famdouma.nl>, 2020\\nArjan van S, 2020\\n\"},msgstr:[\"Last-Translator: Arjan van S, 2020\\nLanguage-Team: Dutch (https://www.transifex.com/nextcloud/teams/64236/nl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: nl\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (onzichtbaar)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (beperkt)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:196\"},msgstr:[\"Acties\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Kies\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Sluiten\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Volgende\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:172\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Geen resultaten\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pauzeer diavoorstelling\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Vorige\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Selecteer een label\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Instellingen\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Start diavoorstelling\"]}}}}},{locale:\"oc\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Quentin PAGÈS, 2020\",\"Language-Team\":\"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"oc\",\"Plural-Forms\":\"nplurals=2; plural=(n > 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"Translators:\\nQuentin PAGÈS, 2020\\n\"},msgstr:[\"Last-Translator: Quentin PAGÈS, 2020\\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: oc\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (invisible)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (limit)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:194\"},msgstr:[\"Accions\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Causir\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Tampar\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Seguent\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:172\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Cap de resultat\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Metre en pausa lo diaporama\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Precedent\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Seleccionar una etiqueta\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Paramètres\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Lançar lo diaporama\"]}}}}},{locale:\"pl\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Valdnet, 2020\",\"Language-Team\":\"Polish (https://www.transifex.com/nextcloud/teams/64236/pl/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"pl\",\"Plural-Forms\":\"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nValdnet, 2020\\n\"},msgstr:[\"Last-Translator: Valdnet, 2020\\nLanguage-Team: Polish (https://www.transifex.com/nextcloud/teams/64236/pl/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pl\\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (niewidoczna)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (ograniczona)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Działania\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Aktywność\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Zwierzęta i natura\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Wybierz\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Zamknij\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Zwyczajne\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Flagi\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Jedzenie i picie\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Często używane\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Następny\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Nie znaleziono emotikonów\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Brak wyników\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Obiekty\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Wstrzymaj pokaz slajdów\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Ludzie i ciało\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Wybierz emoji\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Poprzedni\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Szukaj\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Wyniki wyszukiwania\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Wybierz etykietę\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Ustawienia\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Buźki i emotikony\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Rozpocznij pokaz slajdów\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Symbole\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Podróże i miejsca\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Nie można przeszukać grupy\"]}}}}},{locale:\"pt_BR\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Paulo Schopf, 2020\",\"Language-Team\":\"Portuguese (Brazil) (https://www.transifex.com/nextcloud/teams/64236/pt_BR/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"pt_BR\",\"Plural-Forms\":\"nplurals=2; plural=(n > 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nMaurício Gardini <accounts@mauriciogardini.com>, 2020\\nPaulo Schopf, 2020\\n\"},msgstr:[\"Last-Translator: Paulo Schopf, 2020\\nLanguage-Team: Portuguese (Brazil) (https://www.transifex.com/nextcloud/teams/64236/pt_BR/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pt_BR\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (invisível)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (restrito) \"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Ações\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Atividades\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Animais & Natureza\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Escolher\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Fechar\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Personalizado\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Bandeiras\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Comida & Bebida\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Mais usados\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Próximo\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Nenhum emoji encontrado\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Sem resultados\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Objetos\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pausar apresentação de slides\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Pessoas & Corpo\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Escolha um emoji\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Anterior\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Pesquisar\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Resultados da pesquisa\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Selecionar uma tag\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Configurações\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Smiles & Emoções\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Iniciar apresentação de slides\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Símbolo\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Viagem & Lugares\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Não foi possível pesquisar o grupo\"]}}}}},{locale:\"pt_PT\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Manuela Silva <manuelarodsilva@gmail.com>, 2020\",\"Language-Team\":\"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"pt_PT\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nfpapoila <fpapoila@gmail.com>, 2020\\nManuela Silva <manuelarodsilva@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Manuela Silva <manuelarodsilva@gmail.com>, 2020\\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: pt_PT\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (invisivel)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (restrito)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Ações\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Escolher\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Fechar\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Seguinte\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Sem resultados\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pausar diaporama\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Anterior\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Selecionar uma etiqueta\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Definições\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Iniciar diaporama\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Não é possível pesquisar o grupo\"]}}}}},{locale:\"ru\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Alex <kekcuha@gmail.com>, 2020\",\"Language-Team\":\"Russian (https://www.transifex.com/nextcloud/teams/64236/ru/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"ru\",\"Plural-Forms\":\"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"Translators:\\nAlex <kekcuha@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Alex <kekcuha@gmail.com>, 2020\\nLanguage-Team: Russian (https://www.transifex.com/nextcloud/teams/64236/ru/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: ru\\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:169\"},msgstr:[\"{tag} (невидимое)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:172\"},msgstr:[\"{tag} (ограниченное)\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Выберите\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:109\"},msgstr:[\"Закрыть\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:154\"},msgstr:[\"Следующее\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:169\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Результаты отсуствуют\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:290\"},msgstr:[\"Приостановить показ слйдов\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:134\"},msgstr:[\"Предыдущее\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Выберите метку\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Параметры\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:290\"},msgstr:[\"Начать показ слайдов\"]}}}}},{locale:\"sk_SK\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Anton Kuchár <tonokuc@pobox.sk>, 2020\",\"Language-Team\":\"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"sk_SK\",\"Plural-Forms\":\"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nAnton Kuchár <tonokuc@pobox.sk>, 2020\\n\"},msgstr:[\"Last-Translator: Anton Kuchár <tonokuc@pobox.sk>, 2020\\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sk_SK\\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (neviditeľný)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (obmedzený)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Akcie\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Aktivity\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Zvieratá a príroda\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Vybrať\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Zatvoriť\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Zvyk\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Vlajky\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Jedlo a nápoje\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Často používané\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Ďalší\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Nenašli sa žiadne emodži\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Žiadne výsledky\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Objekty\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pozastaviť prezentáciu\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Ľudia a telo\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Vyberte si emodži\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Predchádzajúci\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Hľadať\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Výsledky vyhľadávania\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Vybrať štítok\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Nastavenia\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Smajlíky a emócie\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Začať prezentáciu\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Symboly\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Cestovanie a miesta\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Skupinu sa nepodarilo nájsť\"]}}}}},{locale:\"sv\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Jonatan Nyberg, 2020\",\"Language-Team\":\"Swedish (https://www.transifex.com/nextcloud/teams/64236/sv/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"sv\",\"Plural-Forms\":\"nplurals=2; plural=(n != 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"Translators:\\nGabriel Ekström <gabriel.ekstrom06@gmail.com>, 2020\\nErik Lennartsson, 2020\\nJonatan Nyberg, 2020\\n\"},msgstr:[\"Last-Translator: Jonatan Nyberg, 2020\\nLanguage-Team: Swedish (https://www.transifex.com/nextcloud/teams/64236/sv/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: sv\\nPlural-Forms: nplurals=2; plural=(n != 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (osynlig)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (begränsad)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:194\"},msgstr:[\"Åtgärder\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Välj\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Stäng\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Nästa\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:172\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\"},msgstr:[\"Inga resultat\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Pausa bildspel\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Föregående\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Välj en tag\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Inställningar\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Starta bildspel\"]}}}}},{locale:\"tr\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Hüseyin Fahri Uzun <mail@fahriuzun.com>, 2020\",\"Language-Team\":\"Turkish (https://www.transifex.com/nextcloud/teams/64236/tr/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"tr\",\"Plural-Forms\":\"nplurals=2; plural=(n > 1);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nKemal Oktay Aktoğan <oktayaktogan@gmail.com>, 2020\\nabc Def <hdogan1974@gmail.com>, 2020\\nHüseyin Fahri Uzun <mail@fahriuzun.com>, 2020\\n\"},msgstr:[\"Last-Translator: Hüseyin Fahri Uzun <mail@fahriuzun.com>, 2020\\nLanguage-Team: Turkish (https://www.transifex.com/nextcloud/teams/64236/tr/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: tr\\nPlural-Forms: nplurals=2; plural=(n > 1);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (görünmez)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (kısıtlı)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:247\"},msgstr:[\"Eylemler\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Seç\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Kapat\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Sonraki\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Sonuçlar yok\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Slayt gösterisini duraklat\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Önceki\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Bir etiket seçin\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Ayarlar\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Slayt gösterisini başlat\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Grupta arama yapılamıyor\"]}}}}},{locale:\"uk\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Oleksa Stasevych <oleksiy.stasevych@gmail.com>, 2020\",\"Language-Team\":\"Ukrainian (https://www.transifex.com/nextcloud/teams/64236/uk/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"uk\",\"Plural-Forms\":\"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nOleksa Stasevych <oleksiy.stasevych@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Oleksa Stasevych <oleksiy.stasevych@gmail.com>, 2020\\nLanguage-Team: Ukrainian (https://www.transifex.com/nextcloud/teams/64236/uk/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: uk\\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (invisible)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (restricted)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:249\"},msgstr:[\"Дії\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"Діяльність\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"Тварини та природа\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"Виберіть\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"Закрити\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"Власне\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"Прапори\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"Їжа та напитки\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"Найчастіші\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"Вперед\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"Емоційки відсутні\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"Відсутні результати\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"Об'єкти\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Пауза у показі слайдів\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"Люди та жести\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"Виберіть емоційку\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"Назад\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"Пошук\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"Результати пошуку\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"Виберіть позначку\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"Налаштування\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"Усміхайлики та емоційки\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"Почати показ слайдів\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"Символи\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"Поїздки та місця\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"Неможливо шукати в групі\"]}}}}},{locale:\"zh_CN\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Pascal Janus <pascal_janus@163.com>, 2020\",\"Language-Team\":\"Chinese (China) (https://www.transifex.com/nextcloud/teams/64236/zh_CN/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"zh_CN\",\"Plural-Forms\":\"nplurals=1; plural=0;\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nSleepyJesse <Jesse_Xu@live.com>, 2020\\nJianming Liang <fuufuukun@163.com>, 2020\\nPascal Janus <pascal_janus@163.com>, 2020\\n\"},msgstr:[\"Last-Translator: Pascal Janus <pascal_janus@163.com>, 2020\\nLanguage-Team: Chinese (China) (https://www.transifex.com/nextcloud/teams/64236/zh_CN/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zh_CN\\nPlural-Forms: nplurals=1; plural=0;\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (不可见)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (受限)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:247\"},msgstr:[\"行为\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"选择\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"关闭\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"下一个\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"无结果\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"暂停幻灯片\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"上一个\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"选择一个标签\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:53\"},msgstr:[\"设置\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"开始幻灯片\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"无法搜索分组\"]}}}}},{locale:\"zh_TW\",json:{charset:\"utf-8\",headers:{\"Last-Translator\":\"Natashia Maxins <railroad1987@gmail.com>, 2020\",\"Language-Team\":\"Chinese (Taiwan) (https://www.transifex.com/nextcloud/teams/64236/zh_TW/)\",\"Content-Type\":\"text/plain; charset=UTF-8\",Language:\"zh_TW\",\"Plural-Forms\":\"nplurals=1; plural=0;\"},translations:{\"\":{\"\":{msgid:\"\",comments:{translator:\"\\nTranslators:\\nbyStarTW (pan93412) <pan93412@gmail.com>, 2020\\nNatashia Maxins <railroad1987@gmail.com>, 2020\\n\"},msgstr:[\"Last-Translator: Natashia Maxins <railroad1987@gmail.com>, 2020\\nLanguage-Team: Chinese (Taiwan) (https://www.transifex.com/nextcloud/teams/64236/zh_TW/)\\nContent-Type: text/plain; charset=UTF-8\\nLanguage: zh_TW\\nPlural-Forms: nplurals=1; plural=0;\\n\"]},\"{tag} (invisible)\":{msgid:\"{tag} (invisible)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:170\"},msgstr:[\"{tag} (隱藏)\"]},\"{tag} (restricted)\":{msgid:\"{tag} (restricted)\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:173\"},msgstr:[\"{tag} (受限)\"]},Actions:{msgid:\"Actions\",comments:{reference:\"src/components/Actions/Actions.vue:254\"},msgstr:[\"動作\"]},Activities:{msgid:\"Activities\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:176\"},msgstr:[\"活動\"]},\"Animals & Nature\":{msgid:\"Animals & Nature\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:174\"},msgstr:[\"動物與自然\"]},Choose:{msgid:\"Choose\",comments:{reference:\"src/components/ColorPicker/ColorPicker.vue:145\"},msgstr:[\"選擇\"]},Close:{msgid:\"Close\",comments:{reference:\"src/components/Modal/Modal.vue:117\"},msgstr:[\"關閉\"]},Custom:{msgid:\"Custom\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:181\"},msgstr:[\"自定義\"]},Flags:{msgid:\"Flags\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:180\"},msgstr:[\"旗幟\"]},\"Food & Drink\":{msgid:\"Food & Drink\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:175\"},msgstr:[\"食物與飲料\"]},\"Frequently used\":{msgid:\"Frequently used\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:171\"},msgstr:[\"最近使用\"]},Next:{msgid:\"Next\",comments:{reference:\"src/components/Modal/Modal.vue:166\"},msgstr:[\"下一個\"]},\"No emoji found\":{msgid:\"No emoji found\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:168\"},msgstr:[\"未找到表情符號\"]},\"No results\":{msgid:\"No results\",comments:{reference:\"src/components/Multiselect/Multiselect.vue:174\\nsrc/components/MultiselectTags/MultiselectTags.vue:78\\nsrc/components/SettingsSelectGroup/SettingsSelectGroup.vue:38\"},msgstr:[\"無結果\"]},Objects:{msgid:\"Objects\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:178\"},msgstr:[\"物件\"]},\"Pause slideshow\":{msgid:\"Pause slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"暫停幻燈片\"]},\"People & Body\":{msgid:\"People & Body\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:173\"},msgstr:[\"人物\"]},\"Pick an emoji\":{msgid:\"Pick an emoji\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:153\"},msgstr:[\"選擇表情符號\"]},Previous:{msgid:\"Previous\",comments:{reference:\"src/components/Modal/Modal.vue:144\"},msgstr:[\"上一個\"]},Search:{msgid:\"Search\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:167\"},msgstr:[\"搜尋\"]},\"Search results\":{msgid:\"Search results\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:170\"},msgstr:[\"搜尋結果\"]},\"Select a tag\":{msgid:\"Select a tag\",comments:{reference:\"src/components/MultiselectTags/MultiselectTags.vue:100\"},msgstr:[\"選擇標籤\"]},Settings:{msgid:\"Settings\",comments:{reference:\"src/components/AppNavigationSettings/AppNavigationSettings.vue:57\"},msgstr:[\"設定\"]},\"Smileys & Emotion\":{msgid:\"Smileys & Emotion\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:172\"},msgstr:[\"表情\"]},\"Start slideshow\":{msgid:\"Start slideshow\",comments:{reference:\"src/components/Modal/Modal.vue:302\"},msgstr:[\"開始幻燈片\"]},Symbols:{msgid:\"Symbols\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:179\"},msgstr:[\"標誌\"]},\"Travel & Places\":{msgid:\"Travel & Places\",comments:{reference:\"src/components/EmojiPicker/EmojiPicker.vue:177\"},msgstr:[\"旅遊與景點\"]},\"Unable to search the group\":{msgid:\"Unable to search the group\",comments:{reference:\"src/components/SettingsSelectGroup/SettingsSelectGroup.vue:143\"},msgstr:[\"無法搜尋群組\"]}}}}}].map((function(e){return n.addTranslation(e.locale,e.json)}));var r=n.build(),i=r.ngettext.bind(r),c=r.gettext.bind(r)},function(e,s){e.exports=require(\"core-js/modules/es.function.name\")},function(e,s){e.exports=require(\"core-js/modules/es.array.iterator\")},function(e,s){e.exports=require(\"core-js/modules/es.string.iterator\")},function(e,s){e.exports=require(\"core-js/modules/web.dom-collections.iterator\")},function(e,s){e.exports=require(\"core-js/modules/es.array.map\")},function(e,s){e.exports=require(\"core-js/modules/es.regexp.to-string\")},function(e,s,t){\"use strict\";e.exports=function(e,s){return s||(s={}),\"string\"!=typeof(e=e&&e.__esModule?e.default:e)?e:(/^['\"].*['\"]$/.test(e)&&(e=e.slice(1,-1)),s.hash&&(e+=s.hash),/[\"'() \\t\\n]/.test(e)||s.needQuotes?'\"'.concat(e.replace(/\"/g,'\\\\\"').replace(/\\n/g,\"\\\\n\"),'\"'):e)}},function(e,s,t){\"use strict\";t.r(s),s.default=\"data:application/vnd.ms-fontobject;base64,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\"},function(e,s,t){\"use strict\";t.r(s),s.default=\"data:font/woff;base64,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PAE55eh8gAAAAQAAAAEAAPIqMj9fDzz1AAsTiAAAAADboxh0AAAAANtSPHX/4AAAE5MTiAAAAAgAAgAAAAAAAAABAAATiAAAAAATiP/g//UTkwABAAAAAAAAAAAAAAAAAAAABwAAAAATiAAAE4gAABOIAAATiAAABjYAABOIAAAAAP//AAAAAAAAAAAAAAAA/+AAAAAAAAAAAAAAACIANgBYAGwAgACUALQBDgF8AZoCEAImAjQCQgKoAyIDpgP+AAEAAAATAEsAAwAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAAAQAMYAAQAAAAAAAQAUAAAAAQAAAAAAAgAHABQAAQAAAAAAAwAUABsAAQAAAAAABAAUAC8AAQAAAAAABQALAEMAAQAAAAAABgAUAE4AAQAAAAAACgArAGIAAQAAAAAACwATAI0AAwABBAkAAQAoAKAAAwABBAkAAgAOAMgAAwABBAkAAwAoANYAAwABBAkABAAoAP4AAwABBAkABQAWASYAAwABBAkABgAoATwAAwABBAkACgBWAWQAAwABBAkACwAmAbppY29uZm9udC12dWUtOWE5OGRlMlJlZ3VsYXJpY29uZm9udC12dWUtOWE5OGRlMmljb25mb250LXZ1ZS05YTk4ZGUyVmVyc2lvbiAxLjBpY29uZm9udC12dWUtOWE5OGRlMkdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBSAGUAZwB1AGwAYQByAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBpAGMAbwBuAGYAbwBuAHQALQB2AHUAZQAtADkAYQA5ADgAZABlADIAVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAACAAAAAAAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAATABMAAAECAQMBBAEFAQYBBwEIAQkBCgELAQwBDQEOAQ8BEAERARIBExFhcnJvdy1sZWZ0LWRvdWJsZQphcnJvdy1sZWZ0EmFycm93LXJpZ2h0LWRvdWJsZQthcnJvdy1yaWdodApicmVhZGNydW1iCWNoZWNrbWFyawVjbG9zZQdjb25maXJtBGluZm8EbWVudQRtb3JlBXBhdXNlBHBsYXkKdHJpYW5nbGUtcxB1c2VyLXN0YXR1cy1hd2F5D3VzZXItc3RhdHVzLWRuZBV1c2VyLXN0YXR1cy1pbnZpc2libGUSdXNlci1zdGF0dXMtb25saW5lAAA=\"},function(e,s,t){\"use strict\";t.r(s),s.default=\"data:font/ttf;base64,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AAATiP/g//UTkwABAAAAAAAAAAAAAAAAAAAABwAAAAATiAAAE4gAABOIAAATiAAABjYAABOIAAAAAP//AAAAAAAAAAAAAAAA/+AAAAAAAAAAAAAAACIANgBYAGwAgACUALQBDgF8AZoCEAImAjQCQgKoAyIDpgP+AAEAAAATAEsAAwAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAAAQAMYAAQAAAAAAAQAUAAAAAQAAAAAAAgAHABQAAQAAAAAAAwAUABsAAQAAAAAABAAUAC8AAQAAAAAABQALAEMAAQAAAAAABgAUAE4AAQAAAAAACgArAGIAAQAAAAAACwATAI0AAwABBAkAAQAoAKAAAwABBAkAAgAOAMgAAwABBAkAAwAoANYAAwABBAkABAAoAP4AAwABBAkABQAWASYAAwABBAkABgAoATwAAwABBAkACgBWAWQAAwABBAkACwAmAbppY29uZm9udC12dWUtOWE5OGRlMlJlZ3VsYXJpY29uZm9udC12dWUtOWE5OGRlMmljb25mb250LXZ1ZS05YTk4ZGUyVmVyc2lvbiAxLjBpY29uZm9udC12dWUtOWE5OGRlMkdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBSAGUAZwB1AGwAYQByAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBpAGMAbwBuAGYAbwBuAHQALQB2AHUAZQAtADkAYQA5ADgAZABlADIAVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG4AZgBvAG4AdAAtAHYAdQBlAC0AOQBhADkAOABkAGUAMgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAACAAAAAAAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAATABMAAAECAQMBBAEFAQYBBwEIAQkBCgELAQwBDQEOAQ8BEAERARIBExFhcnJvdy1sZWZ0LWRvdWJsZQphcnJvdy1sZWZ0EmFycm93LXJpZ2h0LWRvdWJsZQthcnJvdy1yaWdodApicmVhZGNydW1iCWNoZWNrbWFyawVjbG9zZQdjb25maXJtBGluZm8EbWVudQRtb3JlBXBhdXNlBHBsYXkKdHJpYW5nbGUtcxB1c2VyLXN0YXR1cy1hd2F5D3VzZXItc3RhdHVzLWRuZBV1c2VyLXN0YXR1cy1pbnZpc2libGUSdXNlci1zdGF0dXMtb25saW5lAAA=\"},function(e,s,t){\"use strict\";t.r(s),s.default=\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCIgPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48bWV0YWRhdGE+PC9tZXRhZGF0YT48ZGVmcz48Zm9udCBpZD0iaWNvbmZvbnQtdnVlLTlhOThkZTIiIGhvcml6LWFkdi14PSI1MDAwIj48Zm9udC1mYWNlIGZvbnQtZmFtaWx5PSJpY29uZm9udC12dWUtOWE5OGRlMiIgZm9udC13ZWlnaHQ9IjQwMCIgZm9udC1zdHJldGNoPSJub3JtYWwiIHVuaXRzLXBlci1lbT0iNTAwMCIgcGFub3NlLTE9IjIgMCA1IDMgMCAwIDAgMCAwIDAiIGFzY2VudD0iNTAwMCIgZGVzY2VudD0iMCIgeC1oZWlnaHQ9IjAiIGJib3g9Ii0zMiAwIDUwMTEgNTAwMCIgdW5kZXJsaW5lLXRoaWNrbmVzcz0iMCIgdW5kZXJsaW5lLXBvc2l0aW9uPSI1MCIgdW5pY29kZS1yYW5nZT0iVStlYTAxLWVhMTIiIC8+PG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjAiICAvPjxnbHlwaCBnbHlwaC1uYW1lPSJhcnJvdy1sZWZ0LWRvdWJsZSIgdW5pY29kZT0iJiN4ZWEwMTsiIGQ9Ik0zNzUwIDM5MDYgbC0xNDA2IC0xNDA2IGwxNDA2IC0xNDA2IGwwIDMxMiBsLTEwOTQgMTA5NCBsMTA5NCAxMDk0IGwwIDMxMiBaTTIzNDQgMzkwNiBsLTE0MDYgLTE0MDYgbDE0MDYgLTE0MDYgbDAgMzEyIGwtMTA5NCAxMDk0IGwxMDk0IDEwOTQgbDAgMzEyIFoiIC8+PGdseXBoIGdseXBoLW5hbWU9ImFycm93LWxlZnQiIHVuaWNvZGU9IiYjeGVhMDI7IiBkPSJNMTU2MyAyNTAwIGwxODc1IC0xODc1IGwwIC0zMTIgbC0yMTg4IDIxODcgbDIxODggMjE4OCBsMCAtMzEzIGwtMTg3NSAtMTg3NSBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJhcnJvdy1yaWdodC1kb3VibGUiIHVuaWNvZGU9IiYjeGVhMDM7IiBkPSJNMTI1MCAxMDk0IGwxNDA2IDE0MDYgbC0xNDA2IDE0MDYgbDAgLTMxMiBsMTA5NCAtMTA5NCBsLTEwOTQgLTEwOTQgbDAgLTMxMiBaTTI2NTYgMTA5NCBsMTQwNyAxNDA2IGwtMTQwNyAxNDA2IGwwIC0zMTIgbDEwOTQgLTEwOTQgbC0xMDk0IC0xMDk0IGwwIC0zMTIgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0iYXJyb3ctcmlnaHQiIHVuaWNvZGU9IiYjeGVhMDQ7IiBkPSJNMzQzOCAyNTAwIGwtMTg3NSAxODc1IGwwIDMxMyBsMjE4NyAtMjE4OCBsLTIxODcgLTIxODcgbDAgMzEyIGwxODc1IDE4NzUgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0iYnJlYWRjcnVtYiIgdW5pY29kZT0iJiN4ZWEwNTsiIGQ9Ik0xNDggNTAwMCBsLTE0OCAtODUgbDEzOTQgLTI0MTUgbC0xMzk0IC0yNDE1IGwxNDggLTg1IGwxNDQzIDI1MDAgbC0xNDQzIDI1MDAgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0iY2hlY2ttYXJrIiB1bmljb2RlPSImI3hlYTA2OyIgZD0iTTQwNDUgMzk3MSBsLTIwNjEgLTIwNjEgbC0xMDI5IDEwMjkgbC00NDIgLTQ0MSBsMTQ3MSAtMTQ3MSBsMjUwMyAyNTAyIGwtNDQyIDQ0MiBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJjbG9zZSIgdW5pY29kZT0iJiN4ZWEwNzsiIGQ9Ik00Mzc1IDExNTYgbC01MzEgLTUzMSBsLTEzNDQgMTM0NCBsLTEzNDQgLTEzNDQgbC01MzEgNTMxIGwxMzQ0IDEzNDQgbC0xMzQ0IDEzNDQgbDUzMSA1MzEgbDEzNDQgLTEzNDQgbDEzNDQgMTM0NCBsNTMxIC01MzEgbC0xMzQ0IC0xMzQ0IGwxMzQ0IC0xMzQ0IFoiIC8+PGdseXBoIGdseXBoLW5hbWU9ImNvbmZpcm0iIHVuaWNvZGU9IiYjeGVhMDg7IiBkPSJNMjY1NiA0ODQ0IHEtMTAxIDAgLTE4MCAtNTcgcS03NCAtNTIgLTEwOSAtMTM4IHEtMzUgLTg2IC0xOSAtMTc1IHExOCAtOTYgOTAgLTE2NyBsMTQ5NSAtMTQ5NCBsLTM2MTYgMCBxLTc3IDEgLTEzOSAtMjYgcS01OCAtMjQgLTk5IC03MCBxLTM5IC00NCAtNTkgLTEwMSBxLTIwIC01NiAtMjAgLTExNiBxMCAtNjAgMjAgLTExNiBxMjAgLTU3IDU5IC0xMDEgcTQxIC00NiA5OSAtNzAgcTYyIC0yNyAxMzkgLTI1IGwzNjE2IDAgbC0xNDk1IC0xNDk1IHEtNTUgLTUzIC04MSAtMTE2IHEtMjQgLTU5IC0yMSAtMTIxIHEzIC01OCAzMCAtMTEzIHEyNSAtNTQgNjggLTk3IHE0MyAtNDMgOTYgLTY4IHE1NSAtMjYgMTE0IC0yOSBxNjIgLTMgMTIwIDIxIHE2MyAyNSAxMTYgODEgbDIwMjkgMjAyOCBxNTkgNjAgODAgMTQxIHEyMSA4MCAxIDE1OSBxLTIxIDgyIC04MSAxNDIgbC0yMDI5IDIwMjggcS00NCA0NSAtMTAyIDcwIHEtNTggMjUgLTEyMiAyNSBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJpbmZvIiB1bmljb2RlPSImI3hlYTA5OyIgZD0iTTI0MjIgNDY4OCBxLTExMSAwIC0yMTMgLTQzIHEtOTggLTQyIC0xNzQgLTExNy41IHEtNzYgLTc1LjUgLTExNyAtMTc0LjUgcS00MyAtMTAxIC00MyAtMjEyLjUgcTAgLTExMS41IDQzIC0yMTIuNSBxNDEgLTk4IDExNyAtMTc0IHE3NiAtNzYgMTc0IC0xMTcgcTEwMiAtNDMgMjEzIC00MyBxMTExIDAgMjEzIDQzIHE5OCA0MSAxNzMuNSAxMTcgcTc1LjUgNzYgMTE3LjUgMTc0IHE0MyAxMDEgNDMgMjEyLjUgcTAgMTExLjUgLTQzIDIxMi41IHEtNDIgOTkgLTExNy41IDE3NC41IHEtNzUuNSA3NS41IC0xNzMuNSAxMTcuNSBxLTEwMiA0MyAtMjEzIDQzIFpNMTU2MyAzMTI1IHEtODYgMCAtMTU4IC00MyBxLTcxIC00MSAtMTEyIC0xMTIgcS00MyAtNzIgLTQzIC0xNTcuNSBxMCAtODUuNSA0MyAtMTU3LjUgcTQxIC03MSAxMTIgLTExMiBxNzIgLTQzIDE1OCAtNDMgbDYyNSAwIGwwIC0xNTYyIGwtNjI1IDAgcS04NiAwIC0xNTggLTQzIHEtNzEgLTQxIC0xMTIgLTExMiBxLTQzIC03MyAtNDMgLTE1OCBxMCAtODUgNDMgLTE1OCBxNDEgLTcxIDExMiAtMTEyIHE3MiAtNDMgMTU4IC00MiBsMTg3NSAwIHE4NSAwIDE1NyA0MiBxNzEgNDEgMTEyIDExMiBxNDMgNzMgNDMgMTU4IHEwIDg1IC00MyAxNTggcS00MSA3MSAtMTEyIDExMiBxLTcyIDQzIC0xNTcgNDMgbC02MjUgMCBsMCAxODc1IHEwIDg1IC00MyAxNTcgcS00MSA3MSAtMTEyIDExMiBxLTczIDQzIC0xNTggNDMgbC05MzcgMCBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJtZW51IiB1bmljb2RlPSImI3hlYTBhOyIgZD0iTTYyNSA0Mzc1IGwwIC02MjUgbDM3NTAgMCBsMCA2MjUgbC0zNzUwIDAgWk02MjUgMjgxMyBsMCAtNjI1IGwzNzUwIDAgbDAgNjI1IGwtMzc1MCAwIFpNNjI1IDEyNTAgbDAgLTYyNSBsMzc1MCAwIGwwIDYyNSBsLTM3NTAgMCBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJtb3JlIiB1bmljb2RlPSImI3hlYTBiOyIgZD0iTTc4MSAzMDQ3IHExMTIgMCAyMTMgLTQzIHE5OCAtNDIgMTc0IC0xMTcuNSBxNzYgLTc1LjUgMTE3IC0xNzMuNSBxNDMgLTEwMiA0MyAtMjEzIHEwIC0xMTEgLTQzIC0yMTMgcS00MSAtOTggLTExNyAtMTczLjUgcS03NiAtNzUuNSAtMTc0IC0xMTcuNSBxLTEwMSAtNDMgLTIxMi41IC00MyBxLTExMS41IDAgLTIxMy41IDQzIHEtOTggNDIgLTE3My41IDExNy41IHEtNzUuNSA3NS41IC0xMTcuNSAxNzMuNSBxLTQzIDEwMiAtNDMgMjEzIHEwIDExMSA0MyAyMTMgcTQyIDk4IDExNy41IDE3My41IHE3NS41IDc1LjUgMTczLjUgMTE3LjUgcTEwMiA0MyAyMTMgNDMgWk0yNTAwIDMwNDcgcTExMSAwIDIxMyAtNDMgcTk4IC00MiAxNzMuNSAtMTE3LjUgcTc1LjUgLTc1LjUgMTE3LjUgLTE3My41IHE0MyAtMTAyIDQzIC0yMTMgcTAgLTExMSAtNDMgLTIxMyBxLTQyIC05OCAtMTE3LjUgLTE3My41IHEtNzUuNSAtNzUuNSAtMTczLjUgLTExNy41IHEtMTAyIC00MyAtMjEzIC00MyBxLTExMSAwIC0yMTMgNDMgcS05OCA0MiAtMTczLjUgMTE3LjUgcS03NS41IDc1LjUgLTExNy41IDE3My41IHEtNDMgMTAyIC00MyAyMTMgcTAgMTExIDQzIDIxMyBxNDIgOTggMTE3LjUgMTczLjUgcTc1LjUgNzUuNSAxNzMuNSAxMTcuNSBxMTAyIDQzIDIxMyA0MyBaTTQyMTkgMzA0NyBxMTExIDAgMjEzIC00MyBxOTggLTQyIDE3My41IC0xMTcuNSBxNzUuNSAtNzUuNSAxMTcuNSAtMTczLjUgcTQzIC0xMDIgNDMgLTIxMyBxMCAtMTExIC00MyAtMjEzIHEtNDIgLTk4IC0xMTcuNSAtMTczLjUgcS03NS41IC03NS41IC0xNzMuNSAtMTE3LjUgcS0xMDIgLTQzIC0yMTMuNSAtNDMgcS0xMTEuNSAwIC0yMTIuNSA0MyBxLTk4IDQyIC0xNzQgMTE3LjUgcS03NiA3NS41IC0xMTcgMTczLjUgcS00MyAxMDIgLTQzIDIxMyBxMCAxMTEgNDMgMjEzIHE0MSA5OCAxMTcgMTczLjUgcTc2IDc1LjUgMTc0IDExNy41IHExMDEgNDMgMjEzIDQzIFoiIC8+PGdseXBoIGdseXBoLW5hbWU9InBhdXNlIiB1bmljb2RlPSImI3hlYTBjOyIgZD0iTTkzOCA0MDYzIGwwIC0zMTI1IGwxMjUwIDAgbDAgMzEyNSBsLTEyNTAgMCBaTTI4MTMgNDA2MyBsMCAtMzEyNSBsMTI1MCAwIGwwIDMxMjUgbC0xMjUwIDAgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0icGxheSIgdW5pY29kZT0iJiN4ZWEwZDsiIGQ9Ik02MjUgNDM3NSBsMzc1MCAtMTg3NSBsLTM3NTAgLTE4NzUgbDAgMzc1MCBaIiAvPjxnbHlwaCBnbHlwaC1uYW1lPSJ0cmlhbmdsZS1zIiB1bmljb2RlPSImI3hlYTBlOyIgZD0iTTEyNTAgMzEyNSBsMTI1MCAtMTI1MCBsMTI1MCAxMjQ4IGwtMjUwMCAyIFoiIC8+PGdseXBoIGdseXBoLW5hbWU9InVzZXItc3RhdHVzLWF3YXkiIHVuaWNvZGU9IiYjeGVhMGY7IiBkPSJNMjE1NiA0OTY5IHEtMzYwIC00NiAtNjk1IC0xOTcgcS0zMjYgLTE0NyAtNjAxIC0zODAgcS0yNzQgLTIzMSAtNDcyIC01MjggcS0yMDIgLTMwMSAtMzA5IC02NDIgcS0xMTAgLTM1MyAtMTEwIC03MjIgcTAgLTQwNiAxMjggLTc4OCBxMTIzIC0zNzAgMzU2IC02ODYgcTIyOSAtMzEzIDU0MiAtNTQyIHEzMTYgLTIzMiA2ODYgLTM1NiBxMzgyIC0xMjggNzg4IC0xMjggcTM2OSAwIDcyMiAxMDcgcTM0MiAxMDQgNjQ0IDMwMSBxMjk4IDE5NCA1MzMgNDYzIHEyMzYgMjcwIDM4OSA1OTMgcTE1NiAzMzEgMjEyIDY5MiBxLTE4OCAtMjA0IC00MjMuNSAtMzUxIHEtMjM1LjUgLTE0NyAtNDk4LjUgLTIyNSBxLTI2OSAtODAgLTU0NyAtODAgcS0zMjIgMCAtNjI4IDEwMyBxLTI5NSA5OSAtNTQ4IDI4NiBxLTI1MSAxODQgLTQzNSA0MzUgcS0xODcgMjUzIC0yODYgNTQ4IHEtMTAzIDMwNiAtMTAzIDYyOCBxMCAyOTMgODAgNTY4IHE3OCAyNjkgMjI1LjUgNDk4LjUgcTE0Ny41IDIyOS41IDM1MC41IDQwMi41IFoiIC8+PGdseXBoIGdseXBoLW5hbWU9InVzZXItc3RhdHVzLWRuZCIgdW5pY29kZT0iJiN4ZWExMDsiIGQ9Ik0yNTAwIDUwMDAgcS00MDYgMCAtNzg4IC0xMjggcS0zNzAgLTEyNCAtNjg2IC0zNTYgcS0zMTMgLTIyOSAtNTQyIC01NDIgcS0yMzIgLTMxNiAtMzU2IC02ODYgcS0xMjggLTM4MiAtMTI4IC03ODggcTAgLTQwNiAxMjggLTc4OCBxMTI0IC0zNzAgMzU2IC02ODYgcTIyOSAtMzEzIDU0MiAtNTQyIHEzMTYgLTIzMiA2ODYgLTM1NiBxMzgyIC0xMjggNzg4IC0xMjggcTQwNiAwIDc4OCAxMjggcTM3MCAxMjQgNjg2IDM1NiBxMzEzIDIyOSA1NDIgNTQyIHEyMzIgMzE2IDM1NiA2ODYgcTEyOCAzODIgMTI4IDc4OCBxMCA0MDYgLTEyOCA3ODggcS0xMjQgMzcwIC0zNTYgNjg2IHEtMjI5IDMxMyAtNTQyIDU0MiBxLTMxNiAyMzIgLTY4NiAzNTYgcS0zODIgMTI4IC03ODggMTI4IFpNMTU2MyAyOTY5IGwxODc1IDAgcTkxIDAgMTc4IC0zOCBxODQgLTM3IDE1MCAtMTAzIHE2NiAtNjYgMTAyIC0xNDkgcTM4IC04NyAzOCAtMTc5IHEwIC05MiAtMzggLTE3OSBxLTM2IC04MyAtMTAyIC0xNDkgcS02NiAtNjYgLTE1MCAtMTAzIHEtODcgLTM4IC0xNzggLTM4IGwtMTg3NSAwIHEtOTIgMCAtMTc5IDM4IHEtODQgMzcgLTE1MCAxMDMgcS02NiA2NiAtMTAyIDE0OSBxLTM4IDg3IC0zOCAxNzkgcTAgOTIgMzggMTc5IHEzNiA4MyAxMDIgMTQ5IHE2NiA2NiAxNTAgMTAzIHE4NyAzOCAxNzkgMzggWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0idXNlci1zdGF0dXMtaW52aXNpYmxlIiB1bmljb2RlPSImI3hlYTExOyIgZD0iTTI1MDAgNTAwMCBxLTQwNiAwIC03ODggLTEyOCBxLTM3MCAtMTI0IC02ODYgLTM1NiBxLTMxMyAtMjI5IC01NDIgLTU0MiBxLTIzMiAtMzE2IC0zNTYgLTY4NiBxLTEyOCAtMzgyIC0xMjggLTc4OCBxMCAtNDA2IDEyOCAtNzg4IHExMjQgLTM3MCAzNTYgLTY4NiBxMjI5IC0zMTMgNTQyIC01NDIgcTMxNiAtMjMyIDY4NiAtMzU2IHEzODIgLTEyOCA3ODggLTEyOCBxNDA2IDAgNzg4IDEyOCBxMzcwIDEyNCA2ODYgMzU2IHEzMTMgMjI5IDU0MiA1NDIgcTIzMiAzMTYgMzU2IDY4NiBxMTI4IDM4MiAxMjggNzg4IHEwIDQwNiAtMTI4IDc4OCBxLTEyNCAzNzAgLTM1NiA2ODYgcS0yMjkgMzEzIC01NDIgNTQyIHEtMzE2IDIzMiAtNjg2IDM1NiBxLTM4MiAxMjggLTc4OCAxMjggWk0yNTAwIDQwMDAgcTMxMSAwIDU5MCAtMTE2IHEyNzEgLTExMiA0NzYuNSAtMzE3LjUgcTIwNS41IC0yMDUuNSAzMTcuNSAtNDc2LjUgcTExNiAtMjc5IDExNiAtNTkwIHEwIC0zMTEgLTExNiAtNTkwIHEtMTEyIC0yNzEgLTMxNy41IC00NzYuNSBxLTIwNS41IC0yMDUuNSAtNDc2LjUgLTMxNy41IHEtMjc5IC0xMTYgLTU5MCAtMTE2IHEtMzExIDAgLTU5MCAxMTYgcS0yNzEgMTEyIC00NzYuNSAzMTcuNSBxLTIwNS41IDIwNS41IC0zMTcuNSA0NzYuNSBxLTExNiAyNzkgLTExNiA1OTAgcTAgMzExIDExNiA1OTAgcTExMiAyNzEgMzE3LjUgNDc2LjUgcTIwNS41IDIwNS41IDQ3Ni41IDMxNy41IHEyNzkgMTE2IDU5MCAxMTYgWiIgLz48Z2x5cGggZ2x5cGgtbmFtZT0idXNlci1zdGF0dXMtb25saW5lIiB1bmljb2RlPSImI3hlYTEyOyIgZD0iTTE1MDAgMTUwMCBsMjAwMCAwIGwwIDIwMDAgbC0yMDAwIDAgbDAgLTIwMDAgWk0yNTAwIDUwMDAgcS00MDYgMCAtNzg4IC0xMjggcS0zNzAgLTEyNCAtNjg2IC0zNTYgcS0zMTMgLTIyOSAtNTQyIC01NDIgcS0yMzIgLTMxNiAtMzU2IC02ODYgcS0xMjggLTM4MiAtMTI4IC03ODggcTAgLTQwNiAxMjggLTc4OCBxMTI0IC0zNzAgMzU2IC02ODYgcTIyOSAtMzEzIDU0MiAtNTQyIHEzMTYgLTIzMiA2ODYgLTM1NiBxMzgyIC0xMjggNzg4IC0xMjggcTQwNiAwIDc4OCAxMjggcTM3MCAxMjQgNjg2IDM1NiBxMzEzIDIyOSA1NDIgNTQyIHEyMzIgMzE2IDM1NiA2ODYgcTEyOCAzODIgMTI4IDc4OCBxMCA0MDYgLTEyOCA3ODggcS0xMjQgMzcwIC0zNTYgNjg2IHEtMjI5IDMxMyAtNTQyIDU0MiBxLTMxNiAyMzIgLTY4NiAzNTYgcS0zODIgMTI4IC03ODggMTI4IFoiIC8+PC9mb250PjwvZGVmcz48L3N2Zz4=\"},function(e,s,t){var o=t(67);\"string\"==typeof o&&(o=[[e.i,o,\"\"]]),o.locals&&(e.exports=o.locals);(0,t(2).default)(\"7a7fb996\",o,!0,{})},function(e,s,t){\"use strict\";t.r(s);var o=t(4);t(56);\n/**\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\no.VTooltip.options.defaultTemplate='<div class=\"vue-tooltip\" role=\"tooltip\" data-v-'.concat(\"9a98de2\",'><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>'),o.VTooltip.options.defaultHtml=!1,s.default=o.VTooltip},function(e,s){e.exports=require(\"core-js/modules/es.array.index-of\")},,function(e,s){e.exports=require(\"core-js/modules/es.regexp.exec\")},function(e,s,t){\"use strict\";t(3),t(22),t(12),t(38);s.a=function(e){return Math.random().toString(36).replace(/[^a-z]+/g,\"\").substr(0,e||5)}},,function(e,s){},function(e,s){e.exports=require(\"core-js/modules/es.symbol\")},function(e,s){e.exports=require(\"core-js/modules/es.array.concat\")},function(e,s){e.exports=require(\"@nextcloud/l10n/dist/gettext\")},,,function(e,s){e.exports=require(\"core-js/modules/es.string.trim\")},,,,function(e,s,t){\"use strict\";t.r(s);var o={name:\"Popover\",components:{VPopover:t(4).VPopover}},n=(t(66),t(0)),r=t(25),i=t.n(r),c=Object(n.a)(o,(function(){var e=this.$createElement,s=this._self._c||e;return s(\"VPopover\",this._g(this._b({attrs:{\"popover-base-class\":\"popover\",\"popover-wrapper-class\":\"popover__wrapper\",\"popover-arrow-class\":\"popover__arrow\",\"popover-inner-class\":\"popover__inner\"}},\"VPopover\",this.$attrs,!1),this.$listeners),[this._t(\"trigger\"),this._v(\" \"),s(\"template\",{slot:\"popover\"},[this._t(\"default\")],2)],2)}),[],!1,null,null,null);\"function\"==typeof i.a&&i()(c);var a=c.exports;\n/**\n * @copyright Copyright (c) 2019 Marco Ambrosini <marcoambrosini@pm.me>\n *\n * @author Marco Ambrosini <marcoambrosini@pm.me>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */s.default=a},function(e,s,t){\"use strict\";var o=t(6);s.a={methods:{n:o.a,t:o.b}}},,function(e,s){e.exports=require(\"core-js/modules/es.string.replace\")},function(e,s){e.exports=require(\"core-js/modules/es.symbol.description\")},function(e,s){e.exports=require(\"core-js/modules/es.array.slice\")},function(e,s,t){var o=t(95);\"string\"==typeof o&&(o=[[e.i,o,\"\"]]),o.locals&&(e.exports=o.locals);(0,t(2).default)(\"7d4b1d60\",o,!0,{})},,,,function(e,s,t){\"use strict\";t(27),t(20),t(93),t(7);var o=t(5),n=t.n(o);s.a=function(e,s,t){if(void 0!==e)for(var o=e.length-1;o>=0;o--){var r=e[o],i=!r.componentOptions&&r.tag&&-1===s.indexOf(r.tag),c=!!r.componentOptions&&\"string\"==typeof r.componentOptions.tag,a=c&&-1===s.indexOf(r.componentOptions.tag);(i||!c||a)&&((i||a)&&n.a.util.warn(\"\".concat(i?r.tag:r.componentOptions.tag,\" is not allowed inside the \").concat(t.$options.name,\" component\"),t),e.splice(o,1))}}},function(e,s){e.exports=require(\"core-js/modules/es.symbol.iterator\")},,function(e,s){e.exports=require(\"v-click-outside\")},,,function(e,s){e.exports=require(\"core-js/modules/es.array.filter\")},function(e,s){e.exports=require(\"core-js/modules/es.array.from\")},function(e,s){},,function(e,s,t){\"use strict\";t.r(s);var o=t(64);\n/**\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */s.default=o.a},function(e,s,t){var o=t(57);\"string\"==typeof o&&(o=[[e.i,o,\"\"]]),o.locals&&(e.exports=o.locals);(0,t(2).default)(\"941c791e\",o,!0,{})},function(e,s,t){(s=t(1)(!1)).push([e.i,\".vue-tooltip[data-v-9a98de2]{position:absolute;z-index:100000;right:auto;left:auto;display:block;margin:0;margin-top:-3px;padding:10px 0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.vue-tooltip[data-v-9a98de2][x-placement^='top'] .tooltip-arrow{bottom:0;margin-top:0;margin-bottom:0;border-width:10px 10px 0 10px;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.vue-tooltip[data-v-9a98de2][x-placement^='bottom'] .tooltip-arrow{top:0;margin-top:0;margin-bottom:0;border-width:0 10px 10px 10px;border-top-color:transparent;border-right-color:transparent;border-left-color:transparent}.vue-tooltip[data-v-9a98de2][x-placement^='right'] .tooltip-arrow{right:100%;margin-right:0;margin-left:0;border-width:10px 10px 10px 0;border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.vue-tooltip[data-v-9a98de2][x-placement^='left'] .tooltip-arrow{left:100%;margin-right:0;margin-left:0;border-width:10px 0 10px 10px;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent}.vue-tooltip[data-v-9a98de2][aria-hidden='true']{visibility:hidden;transition:opacity .15s, visibility .15s;opacity:0}.vue-tooltip[data-v-9a98de2][aria-hidden='false']{visibility:visible;transition:opacity .15s;opacity:1}.vue-tooltip[data-v-9a98de2] .tooltip-inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.vue-tooltip[data-v-9a98de2] .tooltip-arrow{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:var(--color-main-background)}\\n\",\"\"]),e.exports=s},,,,,,,function(e,s,t){\"use strict\";t(26),t(39),t(46),t(27),t(51),t(52),t(20),t(8),t(40),t(7),t(3),t(12),t(9),t(10);var o=t(19),n=t(23),r=t(45),i=t(6),c=t(35);function a(e){return function(e){if(Array.isArray(e))return m(e)}(e)||function(e){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,s){if(!e)return;if(\"string\"==typeof e)return m(e,s);var t=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===t&&e.constructor&&(t=e.constructor.name);if(\"Map\"===t||\"Set\"===t)return Array.from(e);if(\"Arguments\"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return m(e,s)}(e)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function m(e,s){(null==s||s>e.length)&&(s=e.length);for(var t=0,o=new Array(s);t<s;t++)o[t]=e[t];return o}var A=[\"ActionButton\",\"ActionCheckbox\",\"ActionInput\",\"ActionLink\",\"ActionRadio\",\"ActionRouter\",\"ActionSeparator\",\"ActionText\",\"ActionTextEditable\"],l={name:\"Actions\",directives:{tooltip:o.default},components:{Popover:c.default},props:{open:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},menuTitle:{type:String,default:null},primary:{type:Boolean,default:!1},defaultIcon:{type:String,default:\"action-item__menutoggle--default-icon\"},ariaLabel:{type:String,default:Object(i.b)(\"Actions\")},placement:{type:String,default:\"bottom\"},boundariesElement:{type:Element,default:function(){return document.querySelector(\"body\")}},container:{type:String,default:\"body\"}},data:function(){return{actions:[],opened:this.open,focusIndex:0,randomId:\"menu-\"+Object(n.a)(),children:this.$children}},computed:{hasMultipleActions:function(){return this.actions.length>1},isValidSingleAction:function(){return 1===this.actions.length&&null!==this.firstActionElement},firstActionVNode:function(){return this.actions[0]},firstAction:function(){return this.children[0]?this.children[0]:{}},firstActionBinding:function(){if(this.firstActionVNode&&this.firstActionVNode.componentOptions){var e=this.firstActionVNode.componentOptions.tag;if(\"ActionLink\"===e)return{is:\"a\",href:this.firstAction.href,target:this.firstAction.target,\"aria-label\":this.firstAction.ariaLabel};if(\"ActionRouter\"===e)return{is:\"router-link\",to:this.firstAction.to,exact:this.firstAction.exact,\"aria-label\":this.firstAction.ariaLabel};if(\"ActionButton\"===e)return{is:\"button\",\"aria-label\":this.firstAction.ariaLabel}}return null},firstActionEvent:function(){return this.firstActionVNode&&this.firstActionVNode.componentOptions&&this.firstActionVNode.componentOptions.listeners&&this.firstActionVNode.componentOptions.listeners.click},firstActionEventBinding:function(){return this.firstActionEvent?\"click\":null},firstActionClass:function(){var e=this.firstActionVNode&&this.firstActionVNode.data.staticClass,s=this.firstActionVNode&&this.firstActionVNode.data.class;return\"\".concat(e,\" \").concat(s)}},watch:{open:function(e){e!==this.opened&&(this.opened=e)}},beforeMount:function(){this.initActions(),Object(r.a)(this.$slots.default,A,this)},beforeUpdate:function(){this.initActions(),Object(r.a)(this.$slots.default,A,this)},methods:{openMenu:function(e){this.opened||(this.opened=!0,this.$emit(\"update:open\",!0),this.$emit(\"open\"),this.onOpen(e))},closeMenu:function(e){this.opened&&(this.opened=!1,this.$emit(\"update:open\",!1),this.$emit(\"close\"),this.opened=!1,this.focusIndex=0,this.$refs.menuButton.focus())},onOpen:function(e){var s=this;this.$nextTick((function(){s.focusFirstAction(e)}))},onMouseFocusAction:function(e){if(document.activeElement!==e.target){var s=e.target.closest(\"li\");if(s){var t=s.querySelector(\".focusable\");if(t){var o=a(this.$refs.menu.querySelectorAll(\".focusable\")).indexOf(t);o>-1&&(this.focusIndex=o,this.focusAction())}}}},removeCurrentActive:function(){var e=this.$refs.menu.querySelector(\"li.active\");e&&e.classList.remove(\"active\")},focusAction:function(){var e=this.$refs.menu.querySelectorAll(\".focusable\")[this.focusIndex];if(e){this.removeCurrentActive();var s=e.closest(\"li.action\");e.focus(),s&&s.classList.add(\"active\")}},focusPreviousAction:function(e){this.opened&&(0===this.focusIndex?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction:function(e){if(this.opened){var s=this.$refs.menu.querySelectorAll(\".focusable\").length-1;this.focusIndex===s?this.closeMenu():(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=0,this.focusAction())},focusLastAction:function(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.$el.querySelectorAll(\".focusable\").length-1,this.focusAction())},preventIfEvent:function(e){e&&(e.preventDefault(),e.stopPropagation())},execFirstAction:function(e){this.firstActionEvent&&this.firstActionEvent(e)},initActions:function(){this.actions=(this.$slots.default||[]).filter((function(e){return!!e&&!!e.componentOptions}))}}},g=(t(94),t(0)),u=t(53),d=t.n(u),p=Object(g.a)(l,(function(){var e,s=this,t=s.$createElement,o=s._self._c||t;return s.isValidSingleAction&&!s.forceMenu?o(\"element\",s._b({directives:[{name:\"tooltip\",rawName:\"v-tooltip.auto\",value:s.firstAction.text,expression:\"firstAction.text\",modifiers:{auto:!0}}],staticClass:\"action-item action-item--single\",class:[s.firstAction.icon,s.firstActionClass],attrs:{rel:\"noreferrer noopener\"},on:s._d({},[s.firstActionEventBinding,s.execFirstAction])},\"element\",s.firstActionBinding,!1),[o(\"span\",{attrs:{\"aria-hidden\":!0,hidden:\"\"}},[s._t(\"default\")],2)]):o(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:s.hasMultipleActions||s.forceMenu,expression:\"hasMultipleActions || forceMenu\"}],staticClass:\"action-item\",class:{\"action-item--open\":s.opened}},[o(\"Popover\",{attrs:{delay:0,\"handle-resize\":!0,open:s.opened,placement:s.placement,\"boundaries-element\":s.boundariesElement,container:s.container},on:{\"update:open\":function(e){s.opened=e},show:s.openMenu,\"apply-show\":s.onOpen,hide:s.closeMenu}},[o(\"button\",{ref:\"menuButton\",staticClass:\"icon action-item__menutoggle\",class:(e={},e[s.defaultIcon]=!0,e[\"action-item__menutoggle--with-title\"]=s.menuTitle,e[\"action-item__menutoggle--primary\"]=s.primary,e),attrs:{slot:\"trigger\",\"aria-label\":s.ariaLabel,\"aria-haspopup\":\"true\",\"aria-controls\":s.randomId,\"aria-expanded\":s.opened},slot:\"trigger\"},[s._v(\"\\n\\t\\t\\t\"+s._s(s.menuTitle)+\"\\n\\t\\t\")]),s._v(\" \"),o(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:s.opened,expression:\"opened\"}],ref:\"menu\",class:{open:s.opened},attrs:{tabindex:\"-1\"},on:{keydown:[function(e){return!e.type.indexOf(\"key\")&&s._k(e.keyCode,\"up\",38,e.key,[\"Up\",\"ArrowUp\"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:s.focusPreviousAction(e)},function(e){return!e.type.indexOf(\"key\")&&s._k(e.keyCode,\"down\",40,e.key,[\"Down\",\"ArrowDown\"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:s.focusNextAction(e)},function(e){return!e.type.indexOf(\"key\")&&s._k(e.keyCode,\"tab\",9,e.key,\"Tab\")||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:s.focusNextAction(e)},function(e){return!e.type.indexOf(\"key\")&&s._k(e.keyCode,\"tab\",9,e.key,\"Tab\")?null:e.shiftKey?e.ctrlKey||e.altKey||e.metaKey?null:s.focusPreviousAction(e):null},function(e){return!e.type.indexOf(\"key\")&&s._k(e.keyCode,\"page-up\",void 0,e.key,void 0)||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:s.focusFirstAction(e)},function(e){return!e.type.indexOf(\"key\")&&s._k(e.keyCode,\"page-down\",void 0,e.key,void 0)||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:s.focusLastAction(e)},function(e){return!e.type.indexOf(\"key\")&&s._k(e.keyCode,\"esc\",27,e.key,[\"Esc\",\"Escape\"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:(e.preventDefault(),s.closeMenu(e))}],mousemove:s.onMouseFocusAction}},[o(\"ul\",{attrs:{id:s.randomId,tabindex:\"-1\"}},[s.opened?[s._t(\"default\")]:s._e()],2)])])],1)}),[],!1,null,\"69f4d5ed\",null);\"function\"==typeof d.a&&d()(p);s.a=p.exports},,function(e,s,t){\"use strict\";var o=t(18);t.n(o).a},function(e,s,t){(s=t(1)(!1)).push([e.i,\".popover{z-index:100000;display:block !important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.popover__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius);background:var(--color-main-background)}.popover__arrow{position:absolute;z-index:1;width:0;height:0;margin:10px;border-style:solid;border-color:var(--color-main-background)}.popover[x-placement^='top']{margin-bottom:10px}.popover[x-placement^='top'] .popover__arrow{bottom:-10px;left:calc(50% - $arrow-width);margin-top:0;margin-bottom:0;border-width:10px 10px 0 10px;border-right-color:transparent !important;border-bottom-color:transparent !important;border-left-color:transparent !important}.popover[x-placement^='bottom']{margin-top:10px}.popover[x-placement^='bottom'] .popover__arrow{top:-10px;left:calc(50% - $arrow-width);margin-top:0;margin-bottom:0;border-width:0 10px 10px 10px;border-top-color:transparent !important;border-right-color:transparent !important;border-left-color:transparent !important}.popover[x-placement^='right']{margin-left:10px}.popover[x-placement^='right'] .popover__arrow{top:calc(50% - $arrow-width);left:-10px;margin-right:0;margin-left:0;border-width:10px 10px 10px 0;border-top-color:transparent !important;border-bottom-color:transparent !important;border-left-color:transparent !important}.popover[x-placement^='left']{margin-right:10px}.popover[x-placement^='left'] .popover__arrow{top:calc(50% - $arrow-width);right:-10px;margin-right:0;margin-left:0;border-width:10px 0 10px 10px;border-top-color:transparent !important;border-right-color:transparent !important;border-bottom-color:transparent !important}.popover[aria-hidden='true']{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.popover[aria-hidden='false']{visibility:visible;transition:opacity var(--animation-quick);opacity:1}\\n\",\"\"]),e.exports=s},,,,,,,,,,,,function(e,s){e.exports=require(\"core-js/modules/es.array.reduce\")},,,,,,,,,,,function(e,s,t){var o=t(187);\"string\"==typeof o&&(o=[[e.i,o,\"\"]]),o.locals&&(e.exports=o.locals);(0,t(2).default)(\"1c311b69\",o,!0,{})},,,function(e,s){e.exports=require(\"core-js/modules/es.array.splice\")},function(e,s,t){\"use strict\";var o=t(41);t.n(o).a},function(e,s,t){var o=t(1),n=t(13),r=t(14),i=t(15),c=t(16),a=t(17);s=o(!1);var m=n(r),A=n(i),l=n(c),g=n(a);s.push([e.i,'@font-face{font-family:\"iconfont-vue-9a98de2\";src:url('+m+\");src:url(\"+m+') format(\"embedded-opentype\"),url('+A+') format(\"woff\"),url('+l+') format(\"truetype\"),url('+g+') format(\"svg\")}.icon[data-v-69f4d5ed]{font-style:normal;font-weight:400}.icon.arrow-left-double[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.arrow-left[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.arrow-right-double[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.arrow-right[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.breadcrumb[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.checkmark[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.close[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.confirm[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.info[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.menu[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.more[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.pause[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.play[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.triangle-s[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.user-status-away[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.user-status-dnd[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.user-status-invisible[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.icon.user-status-online[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";content:\"\"}.action-item[data-v-69f4d5ed]{position:relative;display:inline-block}.action-item--single[data-v-69f4d5ed]:hover,.action-item--single[data-v-69f4d5ed]:focus,.action-item--single[data-v-69f4d5ed]:active,.action-item__menutoggle[data-v-69f4d5ed]:hover,.action-item__menutoggle[data-v-69f4d5ed]:focus,.action-item__menutoggle[data-v-69f4d5ed]:active{opacity:1;background-color:rgba(127,127,127,0.25)}.action-item.action-item--open .action-item__menutoggle[data-v-69f4d5ed]{opacity:1;background-color:rgba(127,127,127,0.25)}.action-item--single[data-v-69f4d5ed],.action-item__menutoggle[data-v-69f4d5ed]{box-sizing:border-box;width:auto;min-width:44px;height:44px;margin:0;padding:14px;cursor:pointer;border:none;border-radius:22px;background-color:transparent}.action-item__menutoggle[data-v-69f4d5ed]{display:flex;align-items:center;justify-content:center;opacity:.7;font-weight:bold;line-height:16px}.action-item__menutoggle[data-v-69f4d5ed]:before{content:\\'\\'}.action-item__menutoggle--default-icon[data-v-69f4d5ed]:before{font-family:\"iconfont-vue-9a98de2\";font-style:normal;font-weight:400;content:\"\"}.action-item__menutoggle--default-icon[data-v-69f4d5ed]::before{font-size:16px}.action-item__menutoggle--with-title[data-v-69f4d5ed]{position:relative;padding-left:44px;white-space:nowrap;opacity:1;border:1px solid var(--color-border-dark);background-color:var(--color-background-dark);background-position:14px center;font-size:inherit}.action-item__menutoggle--with-title[data-v-69f4d5ed]:before{position:absolute;top:14px;left:14px}.action-item__menutoggle--primary[data-v-69f4d5ed]{opacity:1;color:var(--color-primary-text);border:none;background-color:var(--color-primary-element)}.action-item--open .action-item__menutoggle--primary[data-v-69f4d5ed],.action-item__menutoggle--primary[data-v-69f4d5ed]:hover,.action-item__menutoggle--primary[data-v-69f4d5ed]:focus,.action-item__menutoggle--primary[data-v-69f4d5ed]:active{color:var(--color-primary-text) !important;background-color:var(--color-primary-element-light) !important}.action-item--single[data-v-69f4d5ed]{opacity:.7}.action-item--single[data-v-69f4d5ed]:hover,.action-item--single[data-v-69f4d5ed]:focus,.action-item--single[data-v-69f4d5ed]:active{opacity:1}.action-item--single>[hidden][data-v-69f4d5ed]{display:none}.ie .action-item__menu[data-v-69f4d5ed],.ie .action-item__menu .action-item__menu_arrow[data-v-69f4d5ed],.edge .action-item__menu[data-v-69f4d5ed],.edge .action-item__menu .action-item__menu_arrow[data-v-69f4d5ed]{border:1px solid var(--color-border)}\\n',\"\"]),e.exports=s},,,,,,,,,,,,,,,,function(e,s){},,,,,function(e,s,t){\"use strict\";var o={name:\"EmptyContent\",props:{icon:{type:String,required:!0}}},n=(t(186),t(0)),r=t(111),i=t.n(r),c=Object(n.a)(o,(function(){var e=this.$createElement,s=this._self._c||e;return s(\"div\",{staticClass:\"empty-content\",attrs:{role:\"note\"}},[s(\"div\",{staticClass:\"empty-content__icon\",class:this.icon,attrs:{role:\"img\"}}),this._v(\" \"),s(\"h2\",{staticClass:\"empty-content__title\"},[this._t(\"default\")],2),this._v(\" \"),s(\"p\",{directives:[{name:\"show\",rawName:\"v-show\",value:this.$slots.desc,expression:\"$slots.desc\"}]},[this._t(\"desc\")],2)])}),[],!1,null,null,null);\"function\"==typeof i.a&&i()(c);s.a=c.exports},,,,,,,,,,,,,,,,,,function(e,s,t){\"use strict\";t.r(s),t.d(s,\"directive\",(function(){return o}));\n/**\n * @copyright Copyright (c) 2019 Georg Ehrke\n *\n * @author Georg Ehrke <oc.list@georgehrke.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar o={inserted:function(e){e.focus()}};s.default=o},function(e,s,t){\"use strict\";t.r(s),t.d(s,\"directive\",(function(){return r}));var o=t(154),n=t.n(o),r=function(e,s){var t;!0===(null===(t=s.value)||void 0===t?void 0:t.linkify)&&(e.innerHTML=n()(s.value.text,{defaultProtocol:\"https\"}))};s.default=r},function(e,s,t){var o=t(258);\"string\"==typeof o&&(o=[[e.i,o,\"\"]]),o.locals&&(e.exports=o.locals);(0,t(2).default)(\"2070882a\",o,!0,{})},function(e,s,t){var o=t(260);\"string\"==typeof o&&(o=[[e.i,o,\"\"]]),o.locals&&(e.exports=o.locals);(0,t(2).default)(\"3431dc5a\",o,!0,{})},function(e,s,t){var o=t(262);\"string\"==typeof o&&(o=[[e.i,o,\"\"]]),o.locals&&(e.exports=o.locals);(0,t(2).default)(\"4dd3631b\",o,!0,{})},,,,,,,,,,,,,,,,function(e,s){e.exports=require(\"linkifyjs/string\")},,,,,,,,,,,,,,,,function(e,s){},,,,,,,,,,,,,,,,function(e,s,t){\"use strict\";var o=t(90);t.n(o).a},function(e,s,t){(s=t(1)(!1)).push([e.i,\".empty-content{margin-top:20vh;display:flex;flex-direction:column;align-items:center}.empty-content__icon{width:64px;height:64px;margin:0 auto 15px;opacity:.4;background-size:64px;background-repeat:no-repeat;background-position:center}.empty-content__title{margin-bottom:10px}\\n\",\"\"]),e.exports=s},,,,,,,,,function(e,s,t){\"use strict\";t.r(s);var o=t(55),n=t(134),r=t(135),i=t(36),c=(t(51),t(256),t(20),t(11),t(79),t(7),t(31),t(5)),a=t.n(c),m=function(e){return e&&\"string\"==typeof e&&\"\"!==e.trim()&&-1===e.indexOf(\" \")},A={name:\"AppSidebarTabs\",props:{active:{type:String,default:\"\"}},data:function(){return{tabs:[],activeTab:\"\",children:[]}},computed:{hasMultipleTabs:function(){return this.tabs.length>1},currentTabIndex:function(){var e=this;return this.tabs.findIndex((function(s){return s.id===e.activeTab}))}},watch:{active:function(e){e!==this.activeTab&&this.updateActive()},children:function(){this.updateTabs()}},mounted:function(){this.updateTabs(),this.children=this.$children},methods:{setActive:function(e){var s=e.target.closest(\"a\").dataset.id;this.activeTab=s,this.$emit(\"update:active\",this.activeTab)},focusPreviousTab:function(){this.currentTabIndex>0&&(this.activeTab=this.tabs[this.currentTabIndex-1].id,this.$emit(\"update:active\",this.activeTab)),this.focusActiveTab()},focusNextTab:function(){this.currentTabIndex<this.tabs.length-1&&(this.activeTab=this.tabs[this.currentTabIndex+1].id,this.$emit(\"update:active\",this.activeTab)),this.focusActiveTab()},focusFirstTab:function(){this.activeTab=this.tabs[0].id,this.$emit(\"update:active\",this.activeTab),this.focusActiveTab()},focusLastTab:function(){this.activeTab=this.tabs[this.tabs.length-1].id,this.$emit(\"update:active\",this.activeTab),this.focusActiveTab()},focusActiveTab:function(){this.$el.querySelector(\"#\"+this.activeTab).focus()},focusActiveTabContent:function(){this.$el.querySelector(\"#tab-\"+this.activeTab).focus()},updateActive:function(){var e=this;this.activeTab=this.active&&-1!==this.tabs.findIndex((function(s){return s.id===e.active}))?this.active:this.tabs.length>0?this.tabs[0].id:\"\"},updateTabs:function(){if(this.$slots.default){var e=this.$slots.default.filter((function(e){return e.tag||e.text.trim()})),s=[],t=e.reduce((function(e,t){var o,n=t.componentInstance;return(o=null==n?void 0:n.name)&&\"string\"==typeof o&&\"\"!==o.trim()&&m(null==n?void 0:n.id)&&m(null==n?void 0:n.icon)?e.push(n):s.push(t),e}),[]);0!==t.length&&t.length!==e.length&&(a.a.util.warn(\"Mixing tabs and non-tab-content is not possible.\"),s.map((function(e){return console.debug(\"Ignoring invalid tab\",e)}))),this.tabs=t.sort((function(e,s){var t=e.order||0,o=s.order||0;return t===o?OC.Util.naturalSortCompare(e.name,s.name):t-o})),this.tabs.length>0&&this.updateActive()}else this.tabs=[]}}},l=(t(257),t(0)),g=Object(l.a)(A,(function(){var e=this,s=e.$createElement,t=e._self._c||s;return t(\"div\",{staticClass:\"app-sidebar-tabs\"},[e.hasMultipleTabs?t(\"nav\",{staticClass:\"app-sidebar-tabs__nav\",on:{keydown:[function(s){return!s.type.indexOf(\"key\")&&e._k(s.keyCode,\"left\",37,s.key,[\"Left\",\"ArrowLeft\"])||\"button\"in s&&0!==s.button||s.ctrlKey||s.shiftKey||s.altKey||s.metaKey?null:(s.preventDefault(),e.focusPreviousTab(s))},function(s){return!s.type.indexOf(\"key\")&&e._k(s.keyCode,\"right\",39,s.key,[\"Right\",\"ArrowRight\"])||\"button\"in s&&2!==s.button||s.ctrlKey||s.shiftKey||s.altKey||s.metaKey?null:(s.preventDefault(),e.focusNextTab(s))},function(s){return!s.type.indexOf(\"key\")&&e._k(s.keyCode,\"tab\",9,s.key,\"Tab\")||s.ctrlKey||s.shiftKey||s.altKey||s.metaKey?null:(s.preventDefault(),e.focusActiveTabContent(s))},function(s){return!s.type.indexOf(\"key\")&&e._k(s.keyCode,\"page-up\",void 0,s.key,void 0)||s.ctrlKey||s.shiftKey||s.altKey||s.metaKey?null:(s.preventDefault(),e.focusFirstTab(s))},function(s){return!s.type.indexOf(\"key\")&&e._k(s.keyCode,\"page-down\",void 0,s.key,void 0)||s.ctrlKey||s.shiftKey||s.altKey||s.metaKey?null:(s.preventDefault(),e.focusLastTab(s))}]}},[t(\"ul\",e._l(e.tabs,(function(s){return t(\"li\",{key:s.id,staticClass:\"app-sidebar-tabs__tab\"},[t(\"a\",{class:{active:e.activeTab===s.id},attrs:{id:s.id,\"aria-controls\":\"tab-\"+s.id,\"aria-selected\":e.activeTab===s.id,\"data-id\":s.id,href:\"#tab-\"+s.id,tabindex:e.activeTab===s.id?null:-1,role:\"tab\"},on:{click:function(s){return s.preventDefault(),e.setActive(s)}}},[t(\"span\",{staticClass:\"app-sidebar-tabs__tab-icon\",class:s.icon}),e._v(\"\\n\\t\\t\\t\\t\\t\"+e._s(s.name)+\"\\n\\t\\t\\t\\t\")])])})),0)]):e._e(),e._v(\" \"),t(\"div\",{staticClass:\"app-sidebar-tabs__content\",class:{\"app-sidebar-tabs__content--multiple\":e.hasMultipleTabs}},[e._t(\"default\")],2)])}),[],!1,null,\"605d66b9\",null).exports,u=t(116),d=t(48),p={name:\"AppSidebar\",components:{Actions:o.default,AppSidebarTabs:g,EmptyContent:u.a},directives:{focus:n.default,linkify:r.default,ClickOutside:d.directive},mixins:[i.a],props:{active:{type:String,default:\"\"},title:{type:String,default:\"\",required:!0},titleEditable:{type:Boolean,default:!1},titlePlaceholder:{type:String,default:\"\"},subtitle:{type:String,default:\"\"},background:{type:String,default:\"\"},starred:{type:Boolean,default:null},starLoading:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},compact:{type:Boolean,default:!1},empty:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},linkifyTitle:{type:Boolean,default:!1}},data:function(){return{isStarred:this.starred}},computed:{canStar:function(){return null!==this.isStarred},hasFigure:function(){return this.$slots.header||this.background},hasFigureClickListener:function(){return this.$listeners[\"figure-click\"]}},watch:{starred:function(){this.isStarred=this.starred}},methods:{closeSidebar:function(e){this.$emit(\"close\",e)},onFigureClick:function(e){this.$emit(\"figure-click\",e)},toggleStarred:function(){this.isStarred=!this.isStarred,this.$emit(\"update:starred\",this.isStarred)},editTitle:function(){var e=this;this.$emit(\"update:titleEditable\",!0),this.titleEditable&&this.$nextTick((function(){return e.$refs.titleInput.focus()}))},onTitleInput:function(e){this.$emit(\"update:title\",e.target.value)},onSubmitTitle:function(e){this.$emit(\"update:titleEditable\",!1),this.$emit(\"submit-title\",e)},onDismissEditing:function(){this.$emit(\"update:titleEditable\",!1),this.$emit(\"dismiss-editing\")},onUpdateActive:function(e){this.$emit(\"update:active\",e)}}},v=(t(259),t(261),t(170)),f=t.n(v),M=Object(l.a)(p,(function(){var e=this,s=e.$createElement,t=e._self._c||s;return t(\"transition\",{attrs:{name:\"slide-right\",appear:\"\"}},[t(\"aside\",{staticClass:\"app-sidebar\",attrs:{id:\"app-sidebar-vue\"}},[t(\"header\",{staticClass:\"app-sidebar-header\",class:{\"app-sidebar-header--with-figure\":e.hasFigure,\"app-sidebar-header--compact\":e.compact}},[t(\"a\",{staticClass:\"app-sidebar__close icon-close\",attrs:{href:\"#\",title:e.t(\"close\")},on:{click:function(s){return s.preventDefault(),e.closeSidebar(s)}}}),e._v(\" \"),t(\"div\",{staticClass:\"app-sidebar-header__info\"},[e.hasFigure&&!e.empty?t(\"div\",{staticClass:\"app-sidebar-header__figure\",class:{\"app-sidebar-header__figure--with-action\":e.hasFigureClickListener},style:{backgroundImage:\"url(\"+e.background+\")\"},on:{click:e.onFigureClick}},[e._t(\"header\")],2):e._e(),e._v(\" \"),e.empty?e._e():t(\"div\",{staticClass:\"app-sidebar-header__desc\",class:{\"app-sidebar-header__desc--with-tertiary-action\":e.canStar||e.$slots[\"tertiary-actions\"],\"app-sidebar-header__desc--editable\":e.titleEditable&&!e.subtitle,\"app-sidebar-header__desc--with-subtitle--editable\":e.titleEditable&&e.subtitle,\"app-sidebar-header__desc--without-menu\":!e.$slots[\"primary-actions\"]}},[e.canStar||e.$slots[\"tertiary-actions\"]?t(\"div\",{staticClass:\"app-sidebar-header__tertiary-actions\"},[e._t(\"tertiary-actions\",[e.canStar?t(\"a\",{staticClass:\"app-sidebar-header__star\",class:{\"icon-starred\":e.isStarred&&!e.starLoading,\"icon-star\":!e.isStarred&&!e.starLoading,\"icon-loading-small\":e.starLoading},on:{click:function(s){return s.preventDefault(),e.toggleStarred(s)}}}):e._e()])],2):e._e(),e._v(\" \"),t(\"div\",{staticClass:\"app-sidebar-header__title-container\"},[t(\"h2\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.titleEditable,expression:\"!titleEditable\"},{name:\"linkify\",rawName:\"v-linkify\",value:{text:e.title,linkify:e.linkifyTitle},expression:\"{text: title, linkify: linkifyTitle}\"}],staticClass:\"app-sidebar-header__maintitle\",on:{click:function(s){return s.target!==s.currentTarget?null:e.editTitle(s)}}},[e._v(\"\\n\\t\\t\\t\\t\\t\\t\\t\"+e._s(e.title)+\"\\n\\t\\t\\t\\t\\t\\t\")]),e._v(\" \"),e.titleEditable?[t(\"form\",{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:function(){return e.onSubmitTitle()},expression:\"() => onSubmitTitle()\"}],staticClass:\"app-sidebar-header__maintitle-form\",on:{submit:function(s){return s.preventDefault(),e.onSubmitTitle(s)}}},[t(\"input\",{directives:[{name:\"focus\",rawName:\"v-focus\"}],ref:\"titleInput\",staticClass:\"app-sidebar-header__maintitle-input\",attrs:{type:\"text\",placeholder:e.titlePlaceholder},domProps:{value:e.title},on:{keydown:function(s){return!s.type.indexOf(\"key\")&&e._k(s.keyCode,\"esc\",27,s.key,[\"Esc\",\"Escape\"])?null:e.onDismissEditing(s)},input:e.onTitleInput}}),e._v(\" \"),t(\"button\",{staticClass:\"icon-confirm\",attrs:{type:\"submit\"}})])]:e._e(),e._v(\" \"),\"\"!==e.subtitle.trim()?t(\"p\",{staticClass:\"app-sidebar-header__subtitle\"},[e._v(\"\\n\\t\\t\\t\\t\\t\\t\\t\"+e._s(e.subtitle)+\"\\n\\t\\t\\t\\t\\t\\t\")]):e._e()],2),e._v(\" \"),e.$slots[\"secondary-actions\"]?t(\"Actions\",{staticClass:\"app-sidebar-header__menu\",attrs:{\"force-menu\":e.forceMenu}},[e._t(\"secondary-actions\")],2):e._e()],1)]),e._v(\" \"),e.$slots[\"primary-actions\"]&&!e.empty?t(\"div\",{staticClass:\"app-sidebar-header__action\"},[e._t(\"primary-actions\")],2):e._e()]),e._v(\" \"),t(\"AppSidebarTabs\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.loading,expression:\"!loading\"}],ref:\"tabs\",attrs:{active:e.active},on:{\"update:active\":e.onUpdateActive}},[e._t(\"default\")],2),e._v(\" \"),e.loading?t(\"EmptyContent\",{attrs:{icon:\"icon-loading\"}}):e._e()],1)])}),[],!1,null,\"1513e394\",null);\"function\"==typeof f.a&&f()(M);var h=M.exports;\n/*\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */s.default=h},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,s){e.exports=require(\"core-js/modules/es.array.find-index\")},function(e,s,t){\"use strict\";var o=t(136);t.n(o).a},function(e,s,t){(s=t(1)(!1)).push([e.i,\".app-sidebar-tabs[data-v-605d66b9]{flex:1 1 auto;display:flex;flex-direction:column}.app-sidebar-tabs__nav[data-v-605d66b9]{margin-top:10px}.app-sidebar-tabs__nav ul[data-v-605d66b9]{display:flex;justify-content:stretch}.app-sidebar-tabs__tab[data-v-605d66b9]{display:block;flex:1 1;min-width:0;text-align:center}.app-sidebar-tabs__tab a[data-v-605d66b9]{position:relative;display:block;overflow:hidden;padding:25px 5px 5px 5px;transition:color var(--animation-quick),opacity var(--animation-quick),border-color var(--animation-quick);text-align:center;white-space:nowrap;text-overflow:ellipsis;opacity:.7;color:var(--color-main-text);border-bottom:1px solid var(--color-border)}.app-sidebar-tabs__tab a[data-v-605d66b9]:hover,.app-sidebar-tabs__tab a[data-v-605d66b9]:focus,.app-sidebar-tabs__tab a[data-v-605d66b9]:active,.app-sidebar-tabs__tab a.active[data-v-605d66b9]{opacity:1}.app-sidebar-tabs__tab a:hover .app-sidebar-tabs__tab-icon[data-v-605d66b9],.app-sidebar-tabs__tab a:focus .app-sidebar-tabs__tab-icon[data-v-605d66b9],.app-sidebar-tabs__tab a:active .app-sidebar-tabs__tab-icon[data-v-605d66b9],.app-sidebar-tabs__tab a.active .app-sidebar-tabs__tab-icon[data-v-605d66b9]{opacity:1}.app-sidebar-tabs__tab a[data-v-605d66b9]:not(.active):hover,.app-sidebar-tabs__tab a[data-v-605d66b9]:not(.active):focus{border-bottom-color:var(--color-background-darker);box-shadow:inset 0 -1px 0 var(--color-background-darker)}.app-sidebar-tabs__tab a.active[data-v-605d66b9]{color:var(--color-text-light);border-bottom-color:var(--color-text-light);box-shadow:inset 0 -1px 0 var(--color-text-light);font-weight:bold}.app-sidebar-tabs__tab a[data-v-605d66b9]:focus{border-bottom-color:var(--color-primary-element);box-shadow:inset 0 -1px 0 var(--color-primary-element)}.app-sidebar-tabs__tab-icon[data-v-605d66b9]{position:absolute;top:0;left:0;width:100%;height:25px;transition:opacity var(--animation-quick);opacity:.7;background-position:center 8px;background-size:16px}.app-sidebar-tabs__content[data-v-605d66b9]{position:relative;flex:1 1 100%}.app-sidebar-tabs__content--multiple[data-v-605d66b9]>:not(section){display:none}\\n\",\"\"]),e.exports=s},function(e,s,t){\"use strict\";var o=t(137);t.n(o).a},function(e,s,t){(s=t(1)(!1)).push([e.i,\".app-sidebar[data-v-1513e394]{position:-webkit-sticky;position:sticky;z-index:1500;top:50px;right:0;display:flex;overflow-x:hidden;overflow-y:auto;flex-direction:column;flex-shrink:0;width:27vw;min-width:300px;max-width:500px;height:calc(100vh - 50px);border-left:1px solid var(--color-border);background:var(--color-main-background)}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1513e394]{position:absolute;z-index:100;top:6px;right:6px;width:44px;height:44px;opacity:.7;border-radius:22px}.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1513e394]:hover,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1513e394]:active,.app-sidebar .app-sidebar-header>.app-sidebar__close[data-v-1513e394]:focus{opacity:1;background-color:rgba(127,127,127,0.25)}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info[data-v-1513e394]{flex-direction:row}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__figure[data-v-1513e394]{z-index:2;width:70px;height:70px;margin:9px;border-radius:3px;flex:0 0 auto}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc[data-v-1513e394]{height:52px;padding-left:0;flex:1 1 auto;min-width:0;padding-right:94px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1513e394]{z-index:3;position:absolute;top:9px;left:-44px}.app-sidebar .app-sidebar-header--compact.app-sidebar-header--with-figure .app-sidebar-header__info .app-sidebar-header__desc .app-sidebar-header__menu[data-v-1513e394]{top:6px;right:50px;background-color:transparent;position:absolute}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__menu[data-v-1513e394]{position:absolute;top:6px;right:50px}.app-sidebar .app-sidebar-header:not(.app-sidebar-header--with-figure) .app-sidebar-header__desc[data-v-1513e394]{padding-right:94px}.app-sidebar .app-sidebar-header .app-sidebar-header__info[data-v-1513e394]{display:flex;flex-direction:column}.app-sidebar .app-sidebar-header__figure[data-v-1513e394]{width:100%;height:250px;max-height:250px;background-repeat:no-repeat;background-position:center;background-size:contain}.app-sidebar .app-sidebar-header__figure--with-action[data-v-1513e394]{cursor:pointer}.app-sidebar .app-sidebar-header__desc[data-v-1513e394]{position:relative;display:flex;flex-direction:row;justify-content:center;box-sizing:content-box;padding:18px 0 18px 9px}.app-sidebar .app-sidebar-header__desc--with-tertiary-action[data-v-1513e394]{padding-left:0}.app-sidebar .app-sidebar-header__desc--editable .app-sidebar-header__maintitle-form[data-v-1513e394]{margin-top:-2px;margin-bottom:-2px}.app-sidebar .app-sidebar-header__desc--with-subtitle--editable .app-sidebar-header__subtitle[data-v-1513e394]{margin-top:-2px}.app-sidebar .app-sidebar-header__desc--without-menu[data-v-1513e394]{padding-right:6px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__tertiary-actions[data-v-1513e394]{display:flex;height:44px;width:44px;justify-content:center;flex:0 0 auto}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container[data-v-1513e394]{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;min-width:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle[data-v-1513e394]{padding:0;min-height:30px;font-size:20px;line-height:30px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle[data-v-1513e394] .linkified{cursor:pointer;text-decoration:underline}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle[data-v-1513e394],.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__subtitle[data-v-1513e394]{overflow:hidden;width:100%;margin:0;white-space:nowrap;text-overflow:ellipsis}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__subtitle[data-v-1513e394]{padding:0;opacity:.7;font-size:14px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle-form[data-v-1513e394]{display:flex;margin-left:-7.5px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle-form .icon-confirm[data-v-1513e394]{margin:0}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__title-container .app-sidebar-header__maintitle-form input.app-sidebar-header__maintitle-input[data-v-1513e394]{flex:1 1 auto;margin:0;padding:7px;font-size:20px;font-weight:bold}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__star[data-v-1513e394]{display:block;width:44px;height:44px;padding:14px}.app-sidebar .app-sidebar-header__desc .app-sidebar-header__menu[data-v-1513e394]{height:44px;width:44px;border-radius:22px;background-color:rgba(127,127,127,0.25)}.app-sidebar .app-sidebar-header__action[data-v-1513e394]{display:flex;align-items:center;max-height:50px;margin:0 10px}.slide-right-leave-active[data-v-1513e394],.slide-right-enter-active[data-v-1513e394]{transition-duration:var(--animation-quick);transition-property:max-width, min-width}.slide-right-enter-to[data-v-1513e394],.slide-right-leave[data-v-1513e394]{min-width:300px;max-width:500px}.slide-right-enter[data-v-1513e394],.slide-right-leave-to[data-v-1513e394]{min-width:0 !important;max-width:0 !important}.fade-leave-active[data-v-1513e394],.fade-enter-active[data-v-1513e394]{position:absolute;top:0;left:0;width:100%;transition-duration:var(--animation-quick);transition-property:opacity;opacity:1}.fade-enter[data-v-1513e394],.fade-leave-to[data-v-1513e394]{opacity:0}\\n\",\"\"]),e.exports=s},function(e,s,t){\"use strict\";var o=t(138);t.n(o).a},function(e,s,t){(s=t(1)(!1)).push([e.i,\".app-sidebar-header__action button,.app-sidebar-header__action .button,.app-sidebar-header__action input[type='button'],.app-sidebar-header__action input[type='submit'],.app-sidebar-header__action input[type='reset']{padding:6px 22px}\\n\",\"\"]),e.exports=s}])}));\n//# sourceMappingURL=AppSidebar.js.map","!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(\"Components/AppSidebarTab\",[],t):\"object\"==typeof exports?exports[\"Components/AppSidebarTab\"]=t():(e.NextcloudVue=e.NextcloudVue||{},e.NextcloudVue[\"Components/AppSidebarTab\"]=t())}(window,(function(){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=206)}({0:function(e,t,n){\"use strict\";function r(e,t,n,r,o,i,a,s){var u,c=\"function\"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),i&&(c._scopeId=\"data-v-\"+i),a?(u=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},c._ssrRegister=u):o&&(u=s?function(){o.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:o),u)if(c.functional){c._injectStyles=u;var d=c.render;c.render=function(e,t){return u.call(t),d(e,t)}}else{var p=c.beforeCreate;c.beforeCreate=p?[].concat(p,u):[u]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return r}))},1:function(e,t,n){\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n=e[1]||\"\",r=e[3];if(!r)return n;if(t&&\"function\"==typeof btoa){var o=(a=r,s=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),u=\"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(s),\"/*# \".concat(u,\" */\")),i=r.sources.map((function(e){return\"/*# sourceURL=\".concat(r.sourceRoot||\"\").concat(e,\" */\")}));return[n].concat(i).concat([o]).join(\"\\n\")}var a,s,u;return[n].join(\"\\n\")}(t,e);return t[2]?\"@media \".concat(t[2],\" {\").concat(n,\"}\"):n})).join(\"\")},t.i=function(e,n,r){\"string\"==typeof e&&(e=[[null,e,\"\"]]);var o={};if(r)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var s=0;s<e.length;s++){var u=[].concat(e[s]);r&&o[u[0]]||(n&&(u[2]?u[2]=\"\".concat(n,\" and \").concat(u[2]):u[2]=n),t.push(u))}},t}},139:function(e,t,n){var r=n(264);\"string\"==typeof r&&(r=[[e.i,r,\"\"]]),r.locals&&(e.exports=r.locals);(0,n(2).default)(\"7a7c904f\",r,!0,{})},2:function(e,t,n){\"use strict\";function r(e,t){for(var n=[],r={},o=0;o<t.length;o++){var i=t[o],a=i[0],s={id:e+\":\"+o,css:i[1],media:i[2],sourceMap:i[3]};r[a]?r[a].parts.push(s):n.push(r[a]={id:a,parts:[s]})}return n}n.r(t),n.d(t,\"default\",(function(){return l}));var o=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!o)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var i={},a=o&&(document.head||document.getElementsByTagName(\"head\")[0]),s=null,u=0,c=!1,d=function(){},p=null,f=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());function l(e,t,n,o){c=n,p=o||{};var a=r(e,t);return v(a),function(t){for(var n=[],o=0;o<a.length;o++){var s=a[o];(u=i[s.id]).refs--,n.push(u)}t?v(a=r(e,t)):a=[];for(o=0;o<n.length;o++){var u;if(0===(u=n[o]).refs){for(var c=0;c<u.parts.length;c++)u.parts[c]();delete i[u.id]}}}}function v(e){for(var t=0;t<e.length;t++){var n=e[t],r=i[n.id];if(r){r.refs++;for(var o=0;o<r.parts.length;o++)r.parts[o](n.parts[o]);for(;o<n.parts.length;o++)r.parts.push(b(n.parts[o]));r.parts.length>n.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(o=0;o<n.parts.length;o++)a.push(b(n.parts[o]));i[n.id]={id:n.id,refs:1,parts:a}}}}function h(){var e=document.createElement(\"style\");return e.type=\"text/css\",a.appendChild(e),e}function b(e){var t,n,r=document.querySelector('style[data-vue-ssr-id~=\"'+e.id+'\"]');if(r){if(c)return d;r.parentNode.removeChild(r)}if(f){var o=u++;r=s||(s=h()),t=g.bind(null,r,o,!1),n=g.bind(null,r,o,!0)}else r=h(),t=_.bind(null,r),n=function(){r.parentNode.removeChild(r)};return t(e),function(r){if(r){if(r.css===e.css&&r.media===e.media&&r.sourceMap===e.sourceMap)return;t(e=r)}else n()}}var m,y=(m=[],function(e,t){return m[e]=t,m.filter(Boolean).join(\"\\n\")});function g(e,t,n,r){var o=n?\"\":r.css;if(e.styleSheet)e.styleSheet.cssText=y(t,o);else{var i=document.createTextNode(o),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(i,a[t]):e.appendChild(i)}}function _(e,t){var n=t.css,r=t.media,o=t.sourceMap;if(r&&e.setAttribute(\"media\",r),p.ssrId&&e.setAttribute(\"data-vue-ssr-id\",t.id),o&&(n+=\"\\n/*# sourceURL=\"+o.sources[0]+\" */\",n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+\" */\"),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}},206:function(e,t,n){\"use strict\";n.r(t);n(30);var r={name:\"AppSidebarTab\",props:{id:{type:String,required:!0},name:{type:String,required:!0},icon:{type:String,required:!0},order:{type:Number,default:0}},computed:{isActive:function(){return this.$parent.activeTab===this.id}}},o=(n(263),n(0)),i=Object(o.a)(r,(function(){var e=this.$createElement;return(this._self._c||e)(\"section\",{staticClass:\"app-sidebar__tab\",class:{\"app-sidebar__tab--active\":this.isActive},attrs:{id:\"tab-\"+this.id,\"aria-hidden\":!this.isActive,\"aria-labelledby\":this.name,tabindex:\"0\",role:\"tabpanel\"}},[this._t(\"default\")],2)}),[],!1,null,\"7d373bc6\",null).exports;t.default=i},263:function(e,t,n){\"use strict\";var r=n(139);n.n(r).a},264:function(e,t,n){(t=n(1)(!1)).push([e.i,\".app-sidebar__tab[data-v-7d373bc6]{display:none;padding:10px;min-height:100%}.app-sidebar__tab[data-v-7d373bc6]:focus{border-color:var(--color-primary);box-shadow:0 0 0.2em var(--color-primary);outline:0}.app-sidebar__tab--active[data-v-7d373bc6]{display:block}\\n\",\"\"]),e.exports=t},30:function(e,t){e.exports=require(\"core-js/modules/es.number.constructor\")}})}));\n//# sourceMappingURL=AppSidebarTab.js.map","'use strict';\nconst pTry = require('p-try');\n\nconst pLimit = concurrency => {\n\tif (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {\n\t\tthrow new TypeError('Expected `concurrency` to be a number from 1 and up');\n\t}\n\n\tconst queue = [];\n\tlet activeCount = 0;\n\n\tconst next = () => {\n\t\tactiveCount--;\n\n\t\tif (queue.length > 0) {\n\t\t\tqueue.shift()();\n\t\t}\n\t};\n\n\tconst run = async (fn, resolve, ...args) => {\n\t\tactiveCount++;\n\n\t\t// TODO: Get rid of `pTry`. It's not needed anymore.\n\t\tconst result = pTry(fn, ...args);\n\n\t\tresolve(result);\n\n\t\ttry {\n\t\t\tawait result;\n\t\t} catch {}\n\n\t\tnext();\n\t};\n\n\tconst enqueue = (fn, resolve, ...args) => {\n\t\tqueue.push(run.bind(null, fn, resolve, ...args));\n\n\t\t(async () => {\n\t\t\t// This function needs to wait until the next microtask before comparing\n\t\t\t// `activeCount` to `concurrency`, because `activeCount` is updated asynchronously\n\t\t\t// when the run function is dequeued and called. The comparison in the if-statement\n\t\t\t// needs to happen asynchronously as well to get an up-to-date value for `activeCount`.\n\t\t\tawait Promise.resolve();\n\n\t\t\tif (activeCount < concurrency && queue.length > 0) {\n\t\t\t\tqueue.shift()();\n\t\t\t}\n\t\t})();\n\t};\n\n\tconst generator = (fn, ...args) => new Promise(resolve => enqueue(fn, resolve, ...args));\n\tObject.defineProperties(generator, {\n\t\tactiveCount: {\n\t\t\tget: () => activeCount\n\t\t},\n\t\tpendingCount: {\n\t\t\tget: () => queue.length\n\t\t},\n\t\tclearQueue: {\n\t\t\tvalue: () => {\n\t\t\t\tqueue.length = 0;\n\t\t\t}\n\t\t}\n\t});\n\n\treturn generator;\n};\n\nmodule.exports = pLimit;\n","'use strict';\n\nconst pTry = (fn, ...arguments_) => new Promise(resolve => {\n\tresolve(fn(...arguments_));\n});\n\nmodule.exports = pTry;\n// TODO: remove this in the next major version\nmodule.exports.default = pTry;\n","/**\n * marked - a markdown parser\n * Copyright (c) 2011-2020, Christopher Jeffrey. (MIT Licensed)\n * https://github.com/markedjs/marked\n */\n\n/**\n * DO NOT EDIT THIS FILE\n * The code in this file is generated from files in ./src/\n */\n\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (global = global || self, global.marked = factory());\n}(this, (function () { 'use strict';\n\n function _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n function _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n }\n\n function _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return _arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\n }\n\n function _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];\n\n return arr2;\n }\n\n function _createForOfIteratorHelperLoose(o, allowArrayLike) {\n var it;\n\n if (typeof Symbol === \"undefined\" || o[Symbol.iterator] == null) {\n if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") {\n if (it) o = it;\n var i = 0;\n return function () {\n if (i >= o.length) return {\n done: true\n };\n return {\n done: false,\n value: o[i++]\n };\n };\n }\n\n throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n }\n\n it = o[Symbol.iterator]();\n return it.next.bind(it);\n }\n\n function createCommonjsModule(fn, module) {\n \treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n }\n\n var defaults = createCommonjsModule(function (module) {\n function getDefaults() {\n return {\n baseUrl: null,\n breaks: false,\n gfm: true,\n headerIds: true,\n headerPrefix: '',\n highlight: null,\n langPrefix: 'language-',\n mangle: true,\n pedantic: false,\n renderer: null,\n sanitize: false,\n sanitizer: null,\n silent: false,\n smartLists: false,\n smartypants: false,\n tokenizer: null,\n walkTokens: null,\n xhtml: false\n };\n }\n\n function changeDefaults(newDefaults) {\n module.exports.defaults = newDefaults;\n }\n\n module.exports = {\n defaults: getDefaults(),\n getDefaults: getDefaults,\n changeDefaults: changeDefaults\n };\n });\n var defaults_1 = defaults.defaults;\n var defaults_2 = defaults.getDefaults;\n var defaults_3 = defaults.changeDefaults;\n\n /**\n * Helpers\n */\n var escapeTest = /[&<>\"']/;\n var escapeReplace = /[&<>\"']/g;\n var escapeTestNoEncode = /[<>\"']|&(?!#?\\w+;)/;\n var escapeReplaceNoEncode = /[<>\"']|&(?!#?\\w+;)/g;\n var escapeReplacements = {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n \"'\": '''\n };\n\n var getEscapeReplacement = function getEscapeReplacement(ch) {\n return escapeReplacements[ch];\n };\n\n function escape(html, encode) {\n if (encode) {\n if (escapeTest.test(html)) {\n return html.replace(escapeReplace, getEscapeReplacement);\n }\n } else {\n if (escapeTestNoEncode.test(html)) {\n return html.replace(escapeReplaceNoEncode, getEscapeReplacement);\n }\n }\n\n return html;\n }\n\n var unescapeTest = /&(#(?:\\d+)|(?:#x[0-9A-Fa-f]+)|(?:\\w+));?/ig;\n\n function unescape(html) {\n // explicitly match decimal, hex, and named HTML entities\n return html.replace(unescapeTest, function (_, n) {\n n = n.toLowerCase();\n if (n === 'colon') return ':';\n\n if (n.charAt(0) === '#') {\n return n.charAt(1) === 'x' ? String.fromCharCode(parseInt(n.substring(2), 16)) : String.fromCharCode(+n.substring(1));\n }\n\n return '';\n });\n }\n\n var caret = /(^|[^\\[])\\^/g;\n\n function edit(regex, opt) {\n regex = regex.source || regex;\n opt = opt || '';\n var obj = {\n replace: function replace(name, val) {\n val = val.source || val;\n val = val.replace(caret, '$1');\n regex = regex.replace(name, val);\n return obj;\n },\n getRegex: function getRegex() {\n return new RegExp(regex, opt);\n }\n };\n return obj;\n }\n\n var nonWordAndColonTest = /[^\\w:]/g;\n var originIndependentUrl = /^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;\n\n function cleanUrl(sanitize, base, href) {\n if (sanitize) {\n var prot;\n\n try {\n prot = decodeURIComponent(unescape(href)).replace(nonWordAndColonTest, '').toLowerCase();\n } catch (e) {\n return null;\n }\n\n if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0 || prot.indexOf('data:') === 0) {\n return null;\n }\n }\n\n if (base && !originIndependentUrl.test(href)) {\n href = resolveUrl(base, href);\n }\n\n try {\n href = encodeURI(href).replace(/%25/g, '%');\n } catch (e) {\n return null;\n }\n\n return href;\n }\n\n var baseUrls = {};\n var justDomain = /^[^:]+:\\/*[^/]*$/;\n var protocol = /^([^:]+:)[\\s\\S]*$/;\n var domain = /^([^:]+:\\/*[^/]*)[\\s\\S]*$/;\n\n function resolveUrl(base, href) {\n if (!baseUrls[' ' + base]) {\n // we can ignore everything in base after the last slash of its path component,\n // but we might need to add _that_\n // https://tools.ietf.org/html/rfc3986#section-3\n if (justDomain.test(base)) {\n baseUrls[' ' + base] = base + '/';\n } else {\n baseUrls[' ' + base] = rtrim(base, '/', true);\n }\n }\n\n base = baseUrls[' ' + base];\n var relativeBase = base.indexOf(':') === -1;\n\n if (href.substring(0, 2) === '//') {\n if (relativeBase) {\n return href;\n }\n\n return base.replace(protocol, '$1') + href;\n } else if (href.charAt(0) === '/') {\n if (relativeBase) {\n return href;\n }\n\n return base.replace(domain, '$1') + href;\n } else {\n return base + href;\n }\n }\n\n var noopTest = {\n exec: function noopTest() {}\n };\n\n function merge(obj) {\n var i = 1,\n target,\n key;\n\n for (; i < arguments.length; i++) {\n target = arguments[i];\n\n for (key in target) {\n if (Object.prototype.hasOwnProperty.call(target, key)) {\n obj[key] = target[key];\n }\n }\n }\n\n return obj;\n }\n\n function splitCells(tableRow, count) {\n // ensure that every cell-delimiting pipe has a space\n // before it to distinguish it from an escaped pipe\n var row = tableRow.replace(/\\|/g, function (match, offset, str) {\n var escaped = false,\n curr = offset;\n\n while (--curr >= 0 && str[curr] === '\\\\') {\n escaped = !escaped;\n }\n\n if (escaped) {\n // odd number of slashes means | is escaped\n // so we leave it alone\n return '|';\n } else {\n // add space before unescaped |\n return ' |';\n }\n }),\n cells = row.split(/ \\|/);\n var i = 0;\n\n if (cells.length > count) {\n cells.splice(count);\n } else {\n while (cells.length < count) {\n cells.push('');\n }\n }\n\n for (; i < cells.length; i++) {\n // leading or trailing whitespace is ignored per the gfm spec\n cells[i] = cells[i].trim().replace(/\\\\\\|/g, '|');\n }\n\n return cells;\n } // Remove trailing 'c's. Equivalent to str.replace(/c*$/, '').\n // /c*$/ is vulnerable to REDOS.\n // invert: Remove suffix of non-c chars instead. Default falsey.\n\n\n function rtrim(str, c, invert) {\n var l = str.length;\n\n if (l === 0) {\n return '';\n } // Length of suffix matching the invert condition.\n\n\n var suffLen = 0; // Step left until we fail to match the invert condition.\n\n while (suffLen < l) {\n var currChar = str.charAt(l - suffLen - 1);\n\n if (currChar === c && !invert) {\n suffLen++;\n } else if (currChar !== c && invert) {\n suffLen++;\n } else {\n break;\n }\n }\n\n return str.substr(0, l - suffLen);\n }\n\n function findClosingBracket(str, b) {\n if (str.indexOf(b[1]) === -1) {\n return -1;\n }\n\n var l = str.length;\n var level = 0,\n i = 0;\n\n for (; i < l; i++) {\n if (str[i] === '\\\\') {\n i++;\n } else if (str[i] === b[0]) {\n level++;\n } else if (str[i] === b[1]) {\n level--;\n\n if (level < 0) {\n return i;\n }\n }\n }\n\n return -1;\n }\n\n function checkSanitizeDeprecation(opt) {\n if (opt && opt.sanitize && !opt.silent) {\n console.warn('marked(): sanitize and sanitizer parameters are deprecated since version 0.7.0, should not be used and will be removed in the future. Read more here: https://marked.js.org/#/USING_ADVANCED.md#options');\n }\n }\n\n var helpers = {\n escape: escape,\n unescape: unescape,\n edit: edit,\n cleanUrl: cleanUrl,\n resolveUrl: resolveUrl,\n noopTest: noopTest,\n merge: merge,\n splitCells: splitCells,\n rtrim: rtrim,\n findClosingBracket: findClosingBracket,\n checkSanitizeDeprecation: checkSanitizeDeprecation\n };\n\n var defaults$1 = defaults.defaults;\n var rtrim$1 = helpers.rtrim,\n splitCells$1 = helpers.splitCells,\n _escape = helpers.escape,\n findClosingBracket$1 = helpers.findClosingBracket;\n\n function outputLink(cap, link, raw) {\n var href = link.href;\n var title = link.title ? _escape(link.title) : null;\n var text = cap[1].replace(/\\\\([\\[\\]])/g, '$1');\n\n if (cap[0].charAt(0) !== '!') {\n return {\n type: 'link',\n raw: raw,\n href: href,\n title: title,\n text: text\n };\n } else {\n return {\n type: 'image',\n raw: raw,\n href: href,\n title: title,\n text: _escape(text)\n };\n }\n }\n\n function indentCodeCompensation(raw, text) {\n var matchIndentToCode = raw.match(/^(\\s+)(?:```)/);\n\n if (matchIndentToCode === null) {\n return text;\n }\n\n var indentToCode = matchIndentToCode[1];\n return text.split('\\n').map(function (node) {\n var matchIndentInNode = node.match(/^\\s+/);\n\n if (matchIndentInNode === null) {\n return node;\n }\n\n var indentInNode = matchIndentInNode[0];\n\n if (indentInNode.length >= indentToCode.length) {\n return node.slice(indentToCode.length);\n }\n\n return node;\n }).join('\\n');\n }\n /**\n * Tokenizer\n */\n\n\n var Tokenizer_1 = /*#__PURE__*/function () {\n function Tokenizer(options) {\n this.options = options || defaults$1;\n }\n\n var _proto = Tokenizer.prototype;\n\n _proto.space = function space(src) {\n var cap = this.rules.block.newline.exec(src);\n\n if (cap) {\n if (cap[0].length > 1) {\n return {\n type: 'space',\n raw: cap[0]\n };\n }\n\n return {\n raw: '\\n'\n };\n }\n };\n\n _proto.code = function code(src, tokens) {\n var cap = this.rules.block.code.exec(src);\n\n if (cap) {\n var lastToken = tokens[tokens.length - 1]; // An indented code block cannot interrupt a paragraph.\n\n if (lastToken && lastToken.type === 'paragraph') {\n return {\n raw: cap[0],\n text: cap[0].trimRight()\n };\n }\n\n var text = cap[0].replace(/^ {4}/gm, '');\n return {\n type: 'code',\n raw: cap[0],\n codeBlockStyle: 'indented',\n text: !this.options.pedantic ? rtrim$1(text, '\\n') : text\n };\n }\n };\n\n _proto.fences = function fences(src) {\n var cap = this.rules.block.fences.exec(src);\n\n if (cap) {\n var raw = cap[0];\n var text = indentCodeCompensation(raw, cap[3] || '');\n return {\n type: 'code',\n raw: raw,\n lang: cap[2] ? cap[2].trim() : cap[2],\n text: text\n };\n }\n };\n\n _proto.heading = function heading(src) {\n var cap = this.rules.block.heading.exec(src);\n\n if (cap) {\n return {\n type: 'heading',\n raw: cap[0],\n depth: cap[1].length,\n text: cap[2]\n };\n }\n };\n\n _proto.nptable = function nptable(src) {\n var cap = this.rules.block.nptable.exec(src);\n\n if (cap) {\n var item = {\n type: 'table',\n header: splitCells$1(cap[1].replace(/^ *| *\\| *$/g, '')),\n align: cap[2].replace(/^ *|\\| *$/g, '').split(/ *\\| */),\n cells: cap[3] ? cap[3].replace(/\\n$/, '').split('\\n') : [],\n raw: cap[0]\n };\n\n if (item.header.length === item.align.length) {\n var l = item.align.length;\n var i;\n\n for (i = 0; i < l; i++) {\n if (/^ *-+: *$/.test(item.align[i])) {\n item.align[i] = 'right';\n } else if (/^ *:-+: *$/.test(item.align[i])) {\n item.align[i] = 'center';\n } else if (/^ *:-+ *$/.test(item.align[i])) {\n item.align[i] = 'left';\n } else {\n item.align[i] = null;\n }\n }\n\n l = item.cells.length;\n\n for (i = 0; i < l; i++) {\n item.cells[i] = splitCells$1(item.cells[i], item.header.length);\n }\n\n return item;\n }\n }\n };\n\n _proto.hr = function hr(src) {\n var cap = this.rules.block.hr.exec(src);\n\n if (cap) {\n return {\n type: 'hr',\n raw: cap[0]\n };\n }\n };\n\n _proto.blockquote = function blockquote(src) {\n var cap = this.rules.block.blockquote.exec(src);\n\n if (cap) {\n var text = cap[0].replace(/^ *> ?/gm, '');\n return {\n type: 'blockquote',\n raw: cap[0],\n text: text\n };\n }\n };\n\n _proto.list = function list(src) {\n var cap = this.rules.block.list.exec(src);\n\n if (cap) {\n var raw = cap[0];\n var bull = cap[2];\n var isordered = bull.length > 1;\n var isparen = bull[bull.length - 1] === ')';\n var list = {\n type: 'list',\n raw: raw,\n ordered: isordered,\n start: isordered ? +bull.slice(0, -1) : '',\n loose: false,\n items: []\n }; // Get each top-level item.\n\n var itemMatch = cap[0].match(this.rules.block.item);\n var next = false,\n item,\n space,\n b,\n addBack,\n loose,\n istask,\n ischecked;\n var l = itemMatch.length;\n\n for (var i = 0; i < l; i++) {\n item = itemMatch[i];\n raw = item; // Remove the list item's bullet\n // so it is seen as the next token.\n\n space = item.length;\n item = item.replace(/^ *([*+-]|\\d+[.)]) */, ''); // Outdent whatever the\n // list item contains. Hacky.\n\n if (~item.indexOf('\\n ')) {\n space -= item.length;\n item = !this.options.pedantic ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '') : item.replace(/^ {1,4}/gm, '');\n } // Determine whether the next list item belongs here.\n // Backpedal if it does not belong in this list.\n\n\n if (i !== l - 1) {\n b = this.rules.block.bullet.exec(itemMatch[i + 1])[0];\n\n if (isordered ? b.length === 1 || !isparen && b[b.length - 1] === ')' : b.length > 1 || this.options.smartLists && b !== bull) {\n addBack = itemMatch.slice(i + 1).join('\\n');\n list.raw = list.raw.substring(0, list.raw.length - addBack.length);\n i = l - 1;\n }\n } // Determine whether item is loose or not.\n // Use: /(^|\\n)(?! )[^\\n]+\\n\\n(?!\\s*$)/\n // for discount behavior.\n\n\n loose = next || /\\n\\n(?!\\s*$)/.test(item);\n\n if (i !== l - 1) {\n next = item.charAt(item.length - 1) === '\\n';\n if (!loose) loose = next;\n }\n\n if (loose) {\n list.loose = true;\n } // Check for task list items\n\n\n istask = /^\\[[ xX]\\] /.test(item);\n ischecked = undefined;\n\n if (istask) {\n ischecked = item[1] !== ' ';\n item = item.replace(/^\\[[ xX]\\] +/, '');\n }\n\n list.items.push({\n type: 'list_item',\n raw: raw,\n task: istask,\n checked: ischecked,\n loose: loose,\n text: item\n });\n }\n\n return list;\n }\n };\n\n _proto.html = function html(src) {\n var cap = this.rules.block.html.exec(src);\n\n if (cap) {\n return {\n type: this.options.sanitize ? 'paragraph' : 'html',\n raw: cap[0],\n pre: !this.options.sanitizer && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),\n text: this.options.sanitize ? this.options.sanitizer ? this.options.sanitizer(cap[0]) : _escape(cap[0]) : cap[0]\n };\n }\n };\n\n _proto.def = function def(src) {\n var cap = this.rules.block.def.exec(src);\n\n if (cap) {\n if (cap[3]) cap[3] = cap[3].substring(1, cap[3].length - 1);\n var tag = cap[1].toLowerCase().replace(/\\s+/g, ' ');\n return {\n tag: tag,\n raw: cap[0],\n href: cap[2],\n title: cap[3]\n };\n }\n };\n\n _proto.table = function table(src) {\n var cap = this.rules.block.table.exec(src);\n\n if (cap) {\n var item = {\n type: 'table',\n header: splitCells$1(cap[1].replace(/^ *| *\\| *$/g, '')),\n align: cap[2].replace(/^ *|\\| *$/g, '').split(/ *\\| */),\n cells: cap[3] ? cap[3].replace(/\\n$/, '').split('\\n') : []\n };\n\n if (item.header.length === item.align.length) {\n item.raw = cap[0];\n var l = item.align.length;\n var i;\n\n for (i = 0; i < l; i++) {\n if (/^ *-+: *$/.test(item.align[i])) {\n item.align[i] = 'right';\n } else if (/^ *:-+: *$/.test(item.align[i])) {\n item.align[i] = 'center';\n } else if (/^ *:-+ *$/.test(item.align[i])) {\n item.align[i] = 'left';\n } else {\n item.align[i] = null;\n }\n }\n\n l = item.cells.length;\n\n for (i = 0; i < l; i++) {\n item.cells[i] = splitCells$1(item.cells[i].replace(/^ *\\| *| *\\| *$/g, ''), item.header.length);\n }\n\n return item;\n }\n }\n };\n\n _proto.lheading = function lheading(src) {\n var cap = this.rules.block.lheading.exec(src);\n\n if (cap) {\n return {\n type: 'heading',\n raw: cap[0],\n depth: cap[2].charAt(0) === '=' ? 1 : 2,\n text: cap[1]\n };\n }\n };\n\n _proto.paragraph = function paragraph(src) {\n var cap = this.rules.block.paragraph.exec(src);\n\n if (cap) {\n return {\n type: 'paragraph',\n raw: cap[0],\n text: cap[1].charAt(cap[1].length - 1) === '\\n' ? cap[1].slice(0, -1) : cap[1]\n };\n }\n };\n\n _proto.text = function text(src, tokens) {\n var cap = this.rules.block.text.exec(src);\n\n if (cap) {\n var lastToken = tokens[tokens.length - 1];\n\n if (lastToken && lastToken.type === 'text') {\n return {\n raw: cap[0],\n text: cap[0]\n };\n }\n\n return {\n type: 'text',\n raw: cap[0],\n text: cap[0]\n };\n }\n };\n\n _proto.escape = function escape(src) {\n var cap = this.rules.inline.escape.exec(src);\n\n if (cap) {\n return {\n type: 'escape',\n raw: cap[0],\n text: _escape(cap[1])\n };\n }\n };\n\n _proto.tag = function tag(src, inLink, inRawBlock) {\n var cap = this.rules.inline.tag.exec(src);\n\n if (cap) {\n if (!inLink && /^<a /i.test(cap[0])) {\n inLink = true;\n } else if (inLink && /^<\\/a>/i.test(cap[0])) {\n inLink = false;\n }\n\n if (!inRawBlock && /^<(pre|code|kbd|script)(\\s|>)/i.test(cap[0])) {\n inRawBlock = true;\n } else if (inRawBlock && /^<\\/(pre|code|kbd|script)(\\s|>)/i.test(cap[0])) {\n inRawBlock = false;\n }\n\n return {\n type: this.options.sanitize ? 'text' : 'html',\n raw: cap[0],\n inLink: inLink,\n inRawBlock: inRawBlock,\n text: this.options.sanitize ? this.options.sanitizer ? this.options.sanitizer(cap[0]) : _escape(cap[0]) : cap[0]\n };\n }\n };\n\n _proto.link = function link(src) {\n var cap = this.rules.inline.link.exec(src);\n\n if (cap) {\n var lastParenIndex = findClosingBracket$1(cap[2], '()');\n\n if (lastParenIndex > -1) {\n var start = cap[0].indexOf('!') === 0 ? 5 : 4;\n var linkLen = start + cap[1].length + lastParenIndex;\n cap[2] = cap[2].substring(0, lastParenIndex);\n cap[0] = cap[0].substring(0, linkLen).trim();\n cap[3] = '';\n }\n\n var href = cap[2];\n var title = '';\n\n if (this.options.pedantic) {\n var link = /^([^'\"]*[^\\s])\\s+(['\"])(.*)\\2/.exec(href);\n\n if (link) {\n href = link[1];\n title = link[3];\n } else {\n title = '';\n }\n } else {\n title = cap[3] ? cap[3].slice(1, -1) : '';\n }\n\n href = href.trim().replace(/^<([\\s\\S]*)>$/, '$1');\n var token = outputLink(cap, {\n href: href ? href.replace(this.rules.inline._escapes, '$1') : href,\n title: title ? title.replace(this.rules.inline._escapes, '$1') : title\n }, cap[0]);\n return token;\n }\n };\n\n _proto.reflink = function reflink(src, links) {\n var cap;\n\n if ((cap = this.rules.inline.reflink.exec(src)) || (cap = this.rules.inline.nolink.exec(src))) {\n var link = (cap[2] || cap[1]).replace(/\\s+/g, ' ');\n link = links[link.toLowerCase()];\n\n if (!link || !link.href) {\n var text = cap[0].charAt(0);\n return {\n type: 'text',\n raw: text,\n text: text\n };\n }\n\n var token = outputLink(cap, link, cap[0]);\n return token;\n }\n };\n\n _proto.strong = function strong(src, maskedSrc, prevChar) {\n if (prevChar === void 0) {\n prevChar = '';\n }\n\n var match = this.rules.inline.strong.start.exec(src);\n\n if (match && (!match[1] || match[1] && (prevChar === '' || this.rules.inline.punctuation.exec(prevChar)))) {\n maskedSrc = maskedSrc.slice(-1 * src.length);\n var endReg = match[0] === '**' ? this.rules.inline.strong.endAst : this.rules.inline.strong.endUnd;\n endReg.lastIndex = 0;\n var cap;\n\n while ((match = endReg.exec(maskedSrc)) != null) {\n cap = this.rules.inline.strong.middle.exec(maskedSrc.slice(0, match.index + 3));\n\n if (cap) {\n return {\n type: 'strong',\n raw: src.slice(0, cap[0].length),\n text: src.slice(2, cap[0].length - 2)\n };\n }\n }\n }\n };\n\n _proto.em = function em(src, maskedSrc, prevChar) {\n if (prevChar === void 0) {\n prevChar = '';\n }\n\n var match = this.rules.inline.em.start.exec(src);\n\n if (match && (!match[1] || match[1] && (prevChar === '' || this.rules.inline.punctuation.exec(prevChar)))) {\n maskedSrc = maskedSrc.slice(-1 * src.length);\n var endReg = match[0] === '*' ? this.rules.inline.em.endAst : this.rules.inline.em.endUnd;\n endReg.lastIndex = 0;\n var cap;\n\n while ((match = endReg.exec(maskedSrc)) != null) {\n cap = this.rules.inline.em.middle.exec(maskedSrc.slice(0, match.index + 2));\n\n if (cap) {\n return {\n type: 'em',\n raw: src.slice(0, cap[0].length),\n text: src.slice(1, cap[0].length - 1)\n };\n }\n }\n }\n };\n\n _proto.codespan = function codespan(src) {\n var cap = this.rules.inline.code.exec(src);\n\n if (cap) {\n var text = cap[2].replace(/\\n/g, ' ');\n var hasNonSpaceChars = /[^ ]/.test(text);\n var hasSpaceCharsOnBothEnds = text.startsWith(' ') && text.endsWith(' ');\n\n if (hasNonSpaceChars && hasSpaceCharsOnBothEnds) {\n text = text.substring(1, text.length - 1);\n }\n\n text = _escape(text, true);\n return {\n type: 'codespan',\n raw: cap[0],\n text: text\n };\n }\n };\n\n _proto.br = function br(src) {\n var cap = this.rules.inline.br.exec(src);\n\n if (cap) {\n return {\n type: 'br',\n raw: cap[0]\n };\n }\n };\n\n _proto.del = function del(src) {\n var cap = this.rules.inline.del.exec(src);\n\n if (cap) {\n return {\n type: 'del',\n raw: cap[0],\n text: cap[1]\n };\n }\n };\n\n _proto.autolink = function autolink(src, mangle) {\n var cap = this.rules.inline.autolink.exec(src);\n\n if (cap) {\n var text, href;\n\n if (cap[2] === '@') {\n text = _escape(this.options.mangle ? mangle(cap[1]) : cap[1]);\n href = 'mailto:' + text;\n } else {\n text = _escape(cap[1]);\n href = text;\n }\n\n return {\n type: 'link',\n raw: cap[0],\n text: text,\n href: href,\n tokens: [{\n type: 'text',\n raw: text,\n text: text\n }]\n };\n }\n };\n\n _proto.url = function url(src, mangle) {\n var cap;\n\n if (cap = this.rules.inline.url.exec(src)) {\n var text, href;\n\n if (cap[2] === '@') {\n text = _escape(this.options.mangle ? mangle(cap[0]) : cap[0]);\n href = 'mailto:' + text;\n } else {\n // do extended autolink path validation\n var prevCapZero;\n\n do {\n prevCapZero = cap[0];\n cap[0] = this.rules.inline._backpedal.exec(cap[0])[0];\n } while (prevCapZero !== cap[0]);\n\n text = _escape(cap[0]);\n\n if (cap[1] === 'www.') {\n href = 'http://' + text;\n } else {\n href = text;\n }\n }\n\n return {\n type: 'link',\n raw: cap[0],\n text: text,\n href: href,\n tokens: [{\n type: 'text',\n raw: text,\n text: text\n }]\n };\n }\n };\n\n _proto.inlineText = function inlineText(src, inRawBlock, smartypants) {\n var cap = this.rules.inline.text.exec(src);\n\n if (cap) {\n var text;\n\n if (inRawBlock) {\n text = this.options.sanitize ? this.options.sanitizer ? this.options.sanitizer(cap[0]) : _escape(cap[0]) : cap[0];\n } else {\n text = _escape(this.options.smartypants ? smartypants(cap[0]) : cap[0]);\n }\n\n return {\n type: 'text',\n raw: cap[0],\n text: text\n };\n }\n };\n\n return Tokenizer;\n }();\n\n var noopTest$1 = helpers.noopTest,\n edit$1 = helpers.edit,\n merge$1 = helpers.merge;\n /**\n * Block-Level Grammar\n */\n\n var block = {\n newline: /^\\n+/,\n code: /^( {4}[^\\n]+\\n*)+/,\n fences: /^ {0,3}(`{3,}(?=[^`\\n]*\\n)|~{3,})([^\\n]*)\\n(?:|([\\s\\S]*?)\\n)(?: {0,3}\\1[~`]* *(?:\\n+|$)|$)/,\n hr: /^ {0,3}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)/,\n heading: /^ {0,3}(#{1,6}) +([^\\n]*?)(?: +#+)? *(?:\\n+|$)/,\n blockquote: /^( {0,3}> ?(paragraph|[^\\n]*)(?:\\n|$))+/,\n list: /^( {0,3})(bull) [\\s\\S]+?(?:hr|def|\\n{2,}(?! )(?!\\1bull )\\n*|\\s*$)/,\n html: '^ {0,3}(?:' // optional indentation\n + '<(script|pre|style)[\\\\s>][\\\\s\\\\S]*?(?:</\\\\1>[^\\\\n]*\\\\n+|$)' // (1)\n + '|comment[^\\\\n]*(\\\\n+|$)' // (2)\n + '|<\\\\?[\\\\s\\\\S]*?\\\\?>\\\\n*' // (3)\n + '|<![A-Z][\\\\s\\\\S]*?>\\\\n*' // (4)\n + '|<!\\\\[CDATA\\\\[[\\\\s\\\\S]*?\\\\]\\\\]>\\\\n*' // (5)\n + '|</?(tag)(?: +|\\\\n|/?>)[\\\\s\\\\S]*?(?:\\\\n{2,}|$)' // (6)\n + '|<(?!script|pre|style)([a-z][\\\\w-]*)(?:attribute)*? */?>(?=[ \\\\t]*(?:\\\\n|$))[\\\\s\\\\S]*?(?:\\\\n{2,}|$)' // (7) open tag\n + '|</(?!script|pre|style)[a-z][\\\\w-]*\\\\s*>(?=[ \\\\t]*(?:\\\\n|$))[\\\\s\\\\S]*?(?:\\\\n{2,}|$)' // (7) closing tag\n + ')',\n def: /^ {0,3}\\[(label)\\]: *\\n? *<?([^\\s>]+)>?(?:(?: +\\n? *| *\\n *)(title))? *(?:\\n+|$)/,\n nptable: noopTest$1,\n table: noopTest$1,\n lheading: /^([^\\n]+)\\n {0,3}(=+|-+) *(?:\\n+|$)/,\n // regex template, placeholders will be replaced according to different paragraph\n // interruption rules of commonmark and the original markdown spec:\n _paragraph: /^([^\\n]+(?:\\n(?!hr|heading|lheading|blockquote|fences|list|html)[^\\n]+)*)/,\n text: /^[^\\n]+/\n };\n block._label = /(?!\\s*\\])(?:\\\\[\\[\\]]|[^\\[\\]])+/;\n block._title = /(?:\"(?:\\\\\"?|[^\"\\\\])*\"|'[^'\\n]*(?:\\n[^'\\n]+)*\\n?'|\\([^()]*\\))/;\n block.def = edit$1(block.def).replace('label', block._label).replace('title', block._title).getRegex();\n block.bullet = /(?:[*+-]|\\d{1,9}[.)])/;\n block.item = /^( *)(bull) ?[^\\n]*(?:\\n(?!\\1bull ?)[^\\n]*)*/;\n block.item = edit$1(block.item, 'gm').replace(/bull/g, block.bullet).getRegex();\n block.list = edit$1(block.list).replace(/bull/g, block.bullet).replace('hr', '\\\\n+(?=\\\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\\\* *){3,})(?:\\\\n+|$))').replace('def', '\\\\n+(?=' + block.def.source + ')').getRegex();\n block._tag = 'address|article|aside|base|basefont|blockquote|body|caption' + '|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption' + '|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe' + '|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option' + '|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr' + '|track|ul';\n block._comment = /<!--(?!-?>)[\\s\\S]*?-->/;\n block.html = edit$1(block.html, 'i').replace('comment', block._comment).replace('tag', block._tag).replace('attribute', / +[a-zA-Z:_][\\w.:-]*(?: *= *\"[^\"\\n]*\"| *= *'[^'\\n]*'| *= *[^\\s\"'=<>`]+)?/).getRegex();\n block.paragraph = edit$1(block._paragraph).replace('hr', block.hr).replace('heading', ' {0,3}#{1,6} ').replace('|lheading', '') // setex headings don't interrupt commonmark paragraphs\n .replace('blockquote', ' {0,3}>').replace('fences', ' {0,3}(?:`{3,}(?=[^`\\\\n]*\\\\n)|~{3,})[^\\\\n]*\\\\n').replace('list', ' {0,3}(?:[*+-]|1[.)]) ') // only lists starting from 1 can interrupt\n .replace('html', '</?(?:tag)(?: +|\\\\n|/?>)|<(?:script|pre|style|!--)').replace('tag', block._tag) // pars can be interrupted by type (6) html blocks\n .getRegex();\n block.blockquote = edit$1(block.blockquote).replace('paragraph', block.paragraph).getRegex();\n /**\n * Normal Block Grammar\n */\n\n block.normal = merge$1({}, block);\n /**\n * GFM Block Grammar\n */\n\n block.gfm = merge$1({}, block.normal, {\n nptable: '^ *([^|\\\\n ].*\\\\|.*)\\\\n' // Header\n + ' *([-:]+ *\\\\|[-| :]*)' // Align\n + '(?:\\\\n((?:(?!\\\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\\\n|$))*)\\\\n*|$)',\n // Cells\n table: '^ *\\\\|(.+)\\\\n' // Header\n + ' *\\\\|?( *[-:]+[-| :]*)' // Align\n + '(?:\\\\n *((?:(?!\\\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\\\n|$))*)\\\\n*|$)' // Cells\n\n });\n block.gfm.nptable = edit$1(block.gfm.nptable).replace('hr', block.hr).replace('heading', ' {0,3}#{1,6} ').replace('blockquote', ' {0,3}>').replace('code', ' {4}[^\\\\n]').replace('fences', ' {0,3}(?:`{3,}(?=[^`\\\\n]*\\\\n)|~{3,})[^\\\\n]*\\\\n').replace('list', ' {0,3}(?:[*+-]|1[.)]) ') // only lists starting from 1 can interrupt\n .replace('html', '</?(?:tag)(?: +|\\\\n|/?>)|<(?:script|pre|style|!--)').replace('tag', block._tag) // tables can be interrupted by type (6) html blocks\n .getRegex();\n block.gfm.table = edit$1(block.gfm.table).replace('hr', block.hr).replace('heading', ' {0,3}#{1,6} ').replace('blockquote', ' {0,3}>').replace('code', ' {4}[^\\\\n]').replace('fences', ' {0,3}(?:`{3,}(?=[^`\\\\n]*\\\\n)|~{3,})[^\\\\n]*\\\\n').replace('list', ' {0,3}(?:[*+-]|1[.)]) ') // only lists starting from 1 can interrupt\n .replace('html', '</?(?:tag)(?: +|\\\\n|/?>)|<(?:script|pre|style|!--)').replace('tag', block._tag) // tables can be interrupted by type (6) html blocks\n .getRegex();\n /**\n * Pedantic grammar (original John Gruber's loose markdown specification)\n */\n\n block.pedantic = merge$1({}, block.normal, {\n html: edit$1('^ *(?:comment *(?:\\\\n|\\\\s*$)' + '|<(tag)[\\\\s\\\\S]+?</\\\\1> *(?:\\\\n{2,}|\\\\s*$)' // closed tag\n + '|<tag(?:\"[^\"]*\"|\\'[^\\']*\\'|\\\\s[^\\'\"/>\\\\s]*)*?/?> *(?:\\\\n{2,}|\\\\s*$))').replace('comment', block._comment).replace(/tag/g, '(?!(?:' + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub' + '|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)' + '\\\\b)\\\\w+(?!:|[^\\\\w\\\\s@]*@)\\\\b').getRegex(),\n def: /^ *\\[([^\\]]+)\\]: *<?([^\\s>]+)>?(?: +([\"(][^\\n]+[\")]))? *(?:\\n+|$)/,\n heading: /^ *(#{1,6}) *([^\\n]+?) *(?:#+ *)?(?:\\n+|$)/,\n fences: noopTest$1,\n // fences not supported\n paragraph: edit$1(block.normal._paragraph).replace('hr', block.hr).replace('heading', ' *#{1,6} *[^\\n]').replace('lheading', block.lheading).replace('blockquote', ' {0,3}>').replace('|fences', '').replace('|list', '').replace('|html', '').getRegex()\n });\n /**\n * Inline-Level Grammar\n */\n\n var inline = {\n escape: /^\\\\([!\"#$%&'()*+,\\-./:;<=>?@\\[\\]\\\\^_`{|}~])/,\n autolink: /^<(scheme:[^\\s\\x00-\\x1f<>]*|email)>/,\n url: noopTest$1,\n tag: '^comment' + '|^</[a-zA-Z][\\\\w:-]*\\\\s*>' // self-closing tag\n + '|^<[a-zA-Z][\\\\w-]*(?:attribute)*?\\\\s*/?>' // open tag\n + '|^<\\\\?[\\\\s\\\\S]*?\\\\?>' // processing instruction, e.g. <?php ?>\n + '|^<![a-zA-Z]+\\\\s[\\\\s\\\\S]*?>' // declaration, e.g. <!DOCTYPE html>\n + '|^<!\\\\[CDATA\\\\[[\\\\s\\\\S]*?\\\\]\\\\]>',\n // CDATA section\n link: /^!?\\[(label)\\]\\(\\s*(href)(?:\\s+(title))?\\s*\\)/,\n reflink: /^!?\\[(label)\\]\\[(?!\\s*\\])((?:\\\\[\\[\\]]?|[^\\[\\]\\\\])+)\\]/,\n nolink: /^!?\\[(?!\\s*\\])((?:\\[[^\\[\\]]*\\]|\\\\[\\[\\]]|[^\\[\\]])*)\\](?:\\[\\])?/,\n reflinkSearch: 'reflink|nolink(?!\\\\()',\n strong: {\n start: /^(?:(\\*\\*(?=[*punctuation]))|\\*\\*)(?![\\s])|__/,\n // (1) returns if starts w/ punctuation\n middle: /^\\*\\*(?:(?:(?!overlapSkip)(?:[^*]|\\\\\\*)|overlapSkip)|\\*(?:(?!overlapSkip)(?:[^*]|\\\\\\*)|overlapSkip)*?\\*)+?\\*\\*$|^__(?![\\s])((?:(?:(?!overlapSkip)(?:[^_]|\\\\_)|overlapSkip)|_(?:(?!overlapSkip)(?:[^_]|\\\\_)|overlapSkip)*?_)+?)__$/,\n endAst: /[^punctuation\\s]\\*\\*(?!\\*)|[punctuation]\\*\\*(?!\\*)(?:(?=[punctuation\\s]|$))/,\n // last char can't be punct, or final * must also be followed by punct (or endline)\n endUnd: /[^\\s]__(?!_)(?:(?=[punctuation\\s])|$)/ // last char can't be a space, and final _ must preceed punct or \\s (or endline)\n\n },\n em: {\n start: /^(?:(\\*(?=[punctuation]))|\\*)(?![*\\s])|_/,\n // (1) returns if starts w/ punctuation\n middle: /^\\*(?:(?:(?!overlapSkip)(?:[^*]|\\\\\\*)|overlapSkip)|\\*(?:(?!overlapSkip)(?:[^*]|\\\\\\*)|overlapSkip)*?\\*)+?\\*$|^_(?![_\\s])(?:(?:(?!overlapSkip)(?:[^_]|\\\\_)|overlapSkip)|_(?:(?!overlapSkip)(?:[^_]|\\\\_)|overlapSkip)*?_)+?_$/,\n endAst: /[^punctuation\\s]\\*(?!\\*)|[punctuation]\\*(?!\\*)(?:(?=[punctuation\\s]|$))/,\n // last char can't be punct, or final * must also be followed by punct (or endline)\n endUnd: /[^\\s]_(?!_)(?:(?=[punctuation\\s])|$)/ // last char can't be a space, and final _ must preceed punct or \\s (or endline)\n\n },\n code: /^(`+)([^`]|[^`][\\s\\S]*?[^`])\\1(?!`)/,\n br: /^( {2,}|\\\\)\\n(?!\\s*$)/,\n del: noopTest$1,\n text: /^(`+|[^`])(?:[\\s\\S]*?(?:(?=[\\\\<!\\[`*]|\\b_|$)|[^ ](?= {2,}\\n))|(?= {2,}\\n))/,\n punctuation: /^([\\s*punctuation])/\n }; // list of punctuation marks from common mark spec\n // without * and _ to workaround cases with double emphasis\n\n inline._punctuation = '!\"#$%&\\'()+\\\\-.,/:;<=>?@\\\\[\\\\]`^{|}~';\n inline.punctuation = edit$1(inline.punctuation).replace(/punctuation/g, inline._punctuation).getRegex(); // sequences em should skip over [title](link), `code`, <html>\n\n inline._blockSkip = '\\\\[[^\\\\]]*?\\\\]\\\\([^\\\\)]*?\\\\)|`[^`]*?`|<[^>]*?>';\n inline._overlapSkip = '__[^_]*?__|\\\\*\\\\*\\\\[^\\\\*\\\\]*?\\\\*\\\\*';\n inline.em.start = edit$1(inline.em.start).replace(/punctuation/g, inline._punctuation).getRegex();\n inline.em.middle = edit$1(inline.em.middle).replace(/punctuation/g, inline._punctuation).replace(/overlapSkip/g, inline._overlapSkip).getRegex();\n inline.em.endAst = edit$1(inline.em.endAst, 'g').replace(/punctuation/g, inline._punctuation).getRegex();\n inline.em.endUnd = edit$1(inline.em.endUnd, 'g').replace(/punctuation/g, inline._punctuation).getRegex();\n inline.strong.start = edit$1(inline.strong.start).replace(/punctuation/g, inline._punctuation).getRegex();\n inline.strong.middle = edit$1(inline.strong.middle).replace(/punctuation/g, inline._punctuation).replace(/blockSkip/g, inline._blockSkip).getRegex();\n inline.strong.endAst = edit$1(inline.strong.endAst, 'g').replace(/punctuation/g, inline._punctuation).getRegex();\n inline.strong.endUnd = edit$1(inline.strong.endUnd, 'g').replace(/punctuation/g, inline._punctuation).getRegex();\n inline.blockSkip = edit$1(inline._blockSkip, 'g').getRegex();\n inline.overlapSkip = edit$1(inline._overlapSkip, 'g').getRegex();\n inline._escapes = /\\\\([!\"#$%&'()*+,\\-./:;<=>?@\\[\\]\\\\^_`{|}~])/g;\n inline._scheme = /[a-zA-Z][a-zA-Z0-9+.-]{1,31}/;\n inline._email = /[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])?)+(?![-_])/;\n inline.autolink = edit$1(inline.autolink).replace('scheme', inline._scheme).replace('email', inline._email).getRegex();\n inline._attribute = /\\s+[a-zA-Z:_][\\w.:-]*(?:\\s*=\\s*\"[^\"]*\"|\\s*=\\s*'[^']*'|\\s*=\\s*[^\\s\"'=<>`]+)?/;\n inline.tag = edit$1(inline.tag).replace('comment', block._comment).replace('attribute', inline._attribute).getRegex();\n inline._label = /(?:\\[(?:\\\\.|[^\\[\\]\\\\])*\\]|\\\\.|`[^`]*`|[^\\[\\]\\\\`])*?/;\n inline._href = /<(?:\\\\[<>]?|[^\\s<>\\\\])*>|[^\\s\\x00-\\x1f]*/;\n inline._title = /\"(?:\\\\\"?|[^\"\\\\])*\"|'(?:\\\\'?|[^'\\\\])*'|\\((?:\\\\\\)?|[^)\\\\])*\\)/;\n inline.link = edit$1(inline.link).replace('label', inline._label).replace('href', inline._href).replace('title', inline._title).getRegex();\n inline.reflink = edit$1(inline.reflink).replace('label', inline._label).getRegex();\n inline.reflinkSearch = edit$1(inline.reflinkSearch, 'g').replace('reflink', inline.reflink).replace('nolink', inline.nolink).getRegex();\n /**\n * Normal Inline Grammar\n */\n\n inline.normal = merge$1({}, inline);\n /**\n * Pedantic Inline Grammar\n */\n\n inline.pedantic = merge$1({}, inline.normal, {\n strong: {\n start: /^__|\\*\\*/,\n middle: /^__(?=\\S)([\\s\\S]*?\\S)__(?!_)|^\\*\\*(?=\\S)([\\s\\S]*?\\S)\\*\\*(?!\\*)/,\n endAst: /\\*\\*(?!\\*)/g,\n endUnd: /__(?!_)/g\n },\n em: {\n start: /^_|\\*/,\n middle: /^()\\*(?=\\S)([\\s\\S]*?\\S)\\*(?!\\*)|^_(?=\\S)([\\s\\S]*?\\S)_(?!_)/,\n endAst: /\\*(?!\\*)/g,\n endUnd: /_(?!_)/g\n },\n link: edit$1(/^!?\\[(label)\\]\\((.*?)\\)/).replace('label', inline._label).getRegex(),\n reflink: edit$1(/^!?\\[(label)\\]\\s*\\[([^\\]]*)\\]/).replace('label', inline._label).getRegex()\n });\n /**\n * GFM Inline Grammar\n */\n\n inline.gfm = merge$1({}, inline.normal, {\n escape: edit$1(inline.escape).replace('])', '~|])').getRegex(),\n _extended_email: /[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,\n url: /^((?:ftp|https?):\\/\\/|www\\.)(?:[a-zA-Z0-9\\-]+\\.?)+[^\\s<]*|^email/,\n _backpedal: /(?:[^?!.,:;*_~()&]+|\\([^)]*\\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_~)]+(?!$))+/,\n del: /^~+(?=\\S)([\\s\\S]*?\\S)~+/,\n text: /^(`+|[^`])(?:[\\s\\S]*?(?:(?=[\\\\<!\\[`*~]|\\b_|https?:\\/\\/|ftp:\\/\\/|www\\.|$)|[^ ](?= {2,}\\n)|[^a-zA-Z0-9.!#$%&'*+\\/=?_`{\\|}~-](?=[a-zA-Z0-9.!#$%&'*+\\/=?_`{\\|}~-]+@))|(?= {2,}\\n|[a-zA-Z0-9.!#$%&'*+\\/=?_`{\\|}~-]+@))/\n });\n inline.gfm.url = edit$1(inline.gfm.url, 'i').replace('email', inline.gfm._extended_email).getRegex();\n /**\n * GFM + Line Breaks Inline Grammar\n */\n\n inline.breaks = merge$1({}, inline.gfm, {\n br: edit$1(inline.br).replace('{2,}', '*').getRegex(),\n text: edit$1(inline.gfm.text).replace('\\\\b_', '\\\\b_| {2,}\\\\n').replace(/\\{2,\\}/g, '*').getRegex()\n });\n var rules = {\n block: block,\n inline: inline\n };\n\n var defaults$2 = defaults.defaults;\n var block$1 = rules.block,\n inline$1 = rules.inline;\n /**\n * smartypants text replacement\n */\n\n function smartypants(text) {\n return text // em-dashes\n .replace(/---/g, \"\\u2014\") // en-dashes\n .replace(/--/g, \"\\u2013\") // opening singles\n .replace(/(^|[-\\u2014/(\\[{\"\\s])'/g, \"$1\\u2018\") // closing singles & apostrophes\n .replace(/'/g, \"\\u2019\") // opening doubles\n .replace(/(^|[-\\u2014/(\\[{\\u2018\\s])\"/g, \"$1\\u201C\") // closing doubles\n .replace(/\"/g, \"\\u201D\") // ellipses\n .replace(/\\.{3}/g, \"\\u2026\");\n }\n /**\n * mangle email addresses\n */\n\n\n function mangle(text) {\n var out = '',\n i,\n ch;\n var l = text.length;\n\n for (i = 0; i < l; i++) {\n ch = text.charCodeAt(i);\n\n if (Math.random() > 0.5) {\n ch = 'x' + ch.toString(16);\n }\n\n out += '&#' + ch + ';';\n }\n\n return out;\n }\n /**\n * Block Lexer\n */\n\n\n var Lexer_1 = /*#__PURE__*/function () {\n function Lexer(options) {\n this.tokens = [];\n this.tokens.links = Object.create(null);\n this.options = options || defaults$2;\n this.options.tokenizer = this.options.tokenizer || new Tokenizer_1();\n this.tokenizer = this.options.tokenizer;\n this.tokenizer.options = this.options;\n var rules = {\n block: block$1.normal,\n inline: inline$1.normal\n };\n\n if (this.options.pedantic) {\n rules.block = block$1.pedantic;\n rules.inline = inline$1.pedantic;\n } else if (this.options.gfm) {\n rules.block = block$1.gfm;\n\n if (this.options.breaks) {\n rules.inline = inline$1.breaks;\n } else {\n rules.inline = inline$1.gfm;\n }\n }\n\n this.tokenizer.rules = rules;\n }\n /**\n * Expose Rules\n */\n\n\n /**\n * Static Lex Method\n */\n Lexer.lex = function lex(src, options) {\n var lexer = new Lexer(options);\n return lexer.lex(src);\n }\n /**\n * Preprocessing\n */\n ;\n\n var _proto = Lexer.prototype;\n\n _proto.lex = function lex(src) {\n src = src.replace(/\\r\\n|\\r/g, '\\n').replace(/\\t/g, ' ');\n this.blockTokens(src, this.tokens, true);\n this.inline(this.tokens);\n return this.tokens;\n }\n /**\n * Lexing\n */\n ;\n\n _proto.blockTokens = function blockTokens(src, tokens, top) {\n if (tokens === void 0) {\n tokens = [];\n }\n\n if (top === void 0) {\n top = true;\n }\n\n src = src.replace(/^ +$/gm, '');\n var token, i, l, lastToken;\n\n while (src) {\n // newline\n if (token = this.tokenizer.space(src)) {\n src = src.substring(token.raw.length);\n\n if (token.type) {\n tokens.push(token);\n }\n\n continue;\n } // code\n\n\n if (token = this.tokenizer.code(src, tokens)) {\n src = src.substring(token.raw.length);\n\n if (token.type) {\n tokens.push(token);\n } else {\n lastToken = tokens[tokens.length - 1];\n lastToken.raw += '\\n' + token.raw;\n lastToken.text += '\\n' + token.text;\n }\n\n continue;\n } // fences\n\n\n if (token = this.tokenizer.fences(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // heading\n\n\n if (token = this.tokenizer.heading(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // table no leading pipe (gfm)\n\n\n if (token = this.tokenizer.nptable(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // hr\n\n\n if (token = this.tokenizer.hr(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // blockquote\n\n\n if (token = this.tokenizer.blockquote(src)) {\n src = src.substring(token.raw.length);\n token.tokens = this.blockTokens(token.text, [], top);\n tokens.push(token);\n continue;\n } // list\n\n\n if (token = this.tokenizer.list(src)) {\n src = src.substring(token.raw.length);\n l = token.items.length;\n\n for (i = 0; i < l; i++) {\n token.items[i].tokens = this.blockTokens(token.items[i].text, [], false);\n }\n\n tokens.push(token);\n continue;\n } // html\n\n\n if (token = this.tokenizer.html(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // def\n\n\n if (top && (token = this.tokenizer.def(src))) {\n src = src.substring(token.raw.length);\n\n if (!this.tokens.links[token.tag]) {\n this.tokens.links[token.tag] = {\n href: token.href,\n title: token.title\n };\n }\n\n continue;\n } // table (gfm)\n\n\n if (token = this.tokenizer.table(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // lheading\n\n\n if (token = this.tokenizer.lheading(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // top-level paragraph\n\n\n if (top && (token = this.tokenizer.paragraph(src))) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // text\n\n\n if (token = this.tokenizer.text(src, tokens)) {\n src = src.substring(token.raw.length);\n\n if (token.type) {\n tokens.push(token);\n } else {\n lastToken = tokens[tokens.length - 1];\n lastToken.raw += '\\n' + token.raw;\n lastToken.text += '\\n' + token.text;\n }\n\n continue;\n }\n\n if (src) {\n var errMsg = 'Infinite loop on byte: ' + src.charCodeAt(0);\n\n if (this.options.silent) {\n console.error(errMsg);\n break;\n } else {\n throw new Error(errMsg);\n }\n }\n }\n\n return tokens;\n };\n\n _proto.inline = function inline(tokens) {\n var i, j, k, l2, row, token;\n var l = tokens.length;\n\n for (i = 0; i < l; i++) {\n token = tokens[i];\n\n switch (token.type) {\n case 'paragraph':\n case 'text':\n case 'heading':\n {\n token.tokens = [];\n this.inlineTokens(token.text, token.tokens);\n break;\n }\n\n case 'table':\n {\n token.tokens = {\n header: [],\n cells: []\n }; // header\n\n l2 = token.header.length;\n\n for (j = 0; j < l2; j++) {\n token.tokens.header[j] = [];\n this.inlineTokens(token.header[j], token.tokens.header[j]);\n } // cells\n\n\n l2 = token.cells.length;\n\n for (j = 0; j < l2; j++) {\n row = token.cells[j];\n token.tokens.cells[j] = [];\n\n for (k = 0; k < row.length; k++) {\n token.tokens.cells[j][k] = [];\n this.inlineTokens(row[k], token.tokens.cells[j][k]);\n }\n }\n\n break;\n }\n\n case 'blockquote':\n {\n this.inline(token.tokens);\n break;\n }\n\n case 'list':\n {\n l2 = token.items.length;\n\n for (j = 0; j < l2; j++) {\n this.inline(token.items[j].tokens);\n }\n\n break;\n }\n }\n }\n\n return tokens;\n }\n /**\n * Lexing/Compiling\n */\n ;\n\n _proto.inlineTokens = function inlineTokens(src, tokens, inLink, inRawBlock, prevChar) {\n if (tokens === void 0) {\n tokens = [];\n }\n\n if (inLink === void 0) {\n inLink = false;\n }\n\n if (inRawBlock === void 0) {\n inRawBlock = false;\n }\n\n if (prevChar === void 0) {\n prevChar = '';\n }\n\n var token; // String with links masked to avoid interference with em and strong\n\n var maskedSrc = src;\n var match; // Mask out reflinks\n\n if (this.tokens.links) {\n var links = Object.keys(this.tokens.links);\n\n if (links.length > 0) {\n while ((match = this.tokenizer.rules.inline.reflinkSearch.exec(maskedSrc)) != null) {\n if (links.includes(match[0].slice(match[0].lastIndexOf('[') + 1, -1))) {\n maskedSrc = maskedSrc.slice(0, match.index) + '[' + 'a'.repeat(match[0].length - 2) + ']' + maskedSrc.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex);\n }\n }\n }\n } // Mask out other blocks\n\n\n while ((match = this.tokenizer.rules.inline.blockSkip.exec(maskedSrc)) != null) {\n maskedSrc = maskedSrc.slice(0, match.index) + '[' + 'a'.repeat(match[0].length - 2) + ']' + maskedSrc.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);\n }\n\n while (src) {\n // escape\n if (token = this.tokenizer.escape(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // tag\n\n\n if (token = this.tokenizer.tag(src, inLink, inRawBlock)) {\n src = src.substring(token.raw.length);\n inLink = token.inLink;\n inRawBlock = token.inRawBlock;\n tokens.push(token);\n continue;\n } // link\n\n\n if (token = this.tokenizer.link(src)) {\n src = src.substring(token.raw.length);\n\n if (token.type === 'link') {\n token.tokens = this.inlineTokens(token.text, [], true, inRawBlock);\n }\n\n tokens.push(token);\n continue;\n } // reflink, nolink\n\n\n if (token = this.tokenizer.reflink(src, this.tokens.links)) {\n src = src.substring(token.raw.length);\n\n if (token.type === 'link') {\n token.tokens = this.inlineTokens(token.text, [], true, inRawBlock);\n }\n\n tokens.push(token);\n continue;\n } // strong\n\n\n if (token = this.tokenizer.strong(src, maskedSrc, prevChar)) {\n src = src.substring(token.raw.length);\n token.tokens = this.inlineTokens(token.text, [], inLink, inRawBlock);\n tokens.push(token);\n continue;\n } // em\n\n\n if (token = this.tokenizer.em(src, maskedSrc, prevChar)) {\n src = src.substring(token.raw.length);\n token.tokens = this.inlineTokens(token.text, [], inLink, inRawBlock);\n tokens.push(token);\n continue;\n } // code\n\n\n if (token = this.tokenizer.codespan(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // br\n\n\n if (token = this.tokenizer.br(src)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // del (gfm)\n\n\n if (token = this.tokenizer.del(src)) {\n src = src.substring(token.raw.length);\n token.tokens = this.inlineTokens(token.text, [], inLink, inRawBlock);\n tokens.push(token);\n continue;\n } // autolink\n\n\n if (token = this.tokenizer.autolink(src, mangle)) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // url (gfm)\n\n\n if (!inLink && (token = this.tokenizer.url(src, mangle))) {\n src = src.substring(token.raw.length);\n tokens.push(token);\n continue;\n } // text\n\n\n if (token = this.tokenizer.inlineText(src, inRawBlock, smartypants)) {\n src = src.substring(token.raw.length);\n prevChar = token.raw.slice(-1);\n tokens.push(token);\n continue;\n }\n\n if (src) {\n var errMsg = 'Infinite loop on byte: ' + src.charCodeAt(0);\n\n if (this.options.silent) {\n console.error(errMsg);\n break;\n } else {\n throw new Error(errMsg);\n }\n }\n }\n\n return tokens;\n };\n\n _createClass(Lexer, null, [{\n key: \"rules\",\n get: function get() {\n return {\n block: block$1,\n inline: inline$1\n };\n }\n }]);\n\n return Lexer;\n }();\n\n var defaults$3 = defaults.defaults;\n var cleanUrl$1 = helpers.cleanUrl,\n escape$1 = helpers.escape;\n /**\n * Renderer\n */\n\n var Renderer_1 = /*#__PURE__*/function () {\n function Renderer(options) {\n this.options = options || defaults$3;\n }\n\n var _proto = Renderer.prototype;\n\n _proto.code = function code(_code, infostring, escaped) {\n var lang = (infostring || '').match(/\\S*/)[0];\n\n if (this.options.highlight) {\n var out = this.options.highlight(_code, lang);\n\n if (out != null && out !== _code) {\n escaped = true;\n _code = out;\n }\n }\n\n if (!lang) {\n return '<pre><code>' + (escaped ? _code : escape$1(_code, true)) + '</code></pre>\\n';\n }\n\n return '<pre><code class=\"' + this.options.langPrefix + escape$1(lang, true) + '\">' + (escaped ? _code : escape$1(_code, true)) + '</code></pre>\\n';\n };\n\n _proto.blockquote = function blockquote(quote) {\n return '<blockquote>\\n' + quote + '</blockquote>\\n';\n };\n\n _proto.html = function html(_html) {\n return _html;\n };\n\n _proto.heading = function heading(text, level, raw, slugger) {\n if (this.options.headerIds) {\n return '<h' + level + ' id=\"' + this.options.headerPrefix + slugger.slug(raw) + '\">' + text + '</h' + level + '>\\n';\n } // ignore IDs\n\n\n return '<h' + level + '>' + text + '</h' + level + '>\\n';\n };\n\n _proto.hr = function hr() {\n return this.options.xhtml ? '<hr/>\\n' : '<hr>\\n';\n };\n\n _proto.list = function list(body, ordered, start) {\n var type = ordered ? 'ol' : 'ul',\n startatt = ordered && start !== 1 ? ' start=\"' + start + '\"' : '';\n return '<' + type + startatt + '>\\n' + body + '</' + type + '>\\n';\n };\n\n _proto.listitem = function listitem(text) {\n return '<li>' + text + '</li>\\n';\n };\n\n _proto.checkbox = function checkbox(checked) {\n return '<input ' + (checked ? 'checked=\"\" ' : '') + 'disabled=\"\" type=\"checkbox\"' + (this.options.xhtml ? ' /' : '') + '> ';\n };\n\n _proto.paragraph = function paragraph(text) {\n return '<p>' + text + '</p>\\n';\n };\n\n _proto.table = function table(header, body) {\n if (body) body = '<tbody>' + body + '</tbody>';\n return '<table>\\n' + '<thead>\\n' + header + '</thead>\\n' + body + '</table>\\n';\n };\n\n _proto.tablerow = function tablerow(content) {\n return '<tr>\\n' + content + '</tr>\\n';\n };\n\n _proto.tablecell = function tablecell(content, flags) {\n var type = flags.header ? 'th' : 'td';\n var tag = flags.align ? '<' + type + ' align=\"' + flags.align + '\">' : '<' + type + '>';\n return tag + content + '</' + type + '>\\n';\n } // span level renderer\n ;\n\n _proto.strong = function strong(text) {\n return '<strong>' + text + '</strong>';\n };\n\n _proto.em = function em(text) {\n return '<em>' + text + '</em>';\n };\n\n _proto.codespan = function codespan(text) {\n return '<code>' + text + '</code>';\n };\n\n _proto.br = function br() {\n return this.options.xhtml ? '<br/>' : '<br>';\n };\n\n _proto.del = function del(text) {\n return '<del>' + text + '</del>';\n };\n\n _proto.link = function link(href, title, text) {\n href = cleanUrl$1(this.options.sanitize, this.options.baseUrl, href);\n\n if (href === null) {\n return text;\n }\n\n var out = '<a href=\"' + escape$1(href) + '\"';\n\n if (title) {\n out += ' title=\"' + title + '\"';\n }\n\n out += '>' + text + '</a>';\n return out;\n };\n\n _proto.image = function image(href, title, text) {\n href = cleanUrl$1(this.options.sanitize, this.options.baseUrl, href);\n\n if (href === null) {\n return text;\n }\n\n var out = '<img src=\"' + href + '\" alt=\"' + text + '\"';\n\n if (title) {\n out += ' title=\"' + title + '\"';\n }\n\n out += this.options.xhtml ? '/>' : '>';\n return out;\n };\n\n _proto.text = function text(_text) {\n return _text;\n };\n\n return Renderer;\n }();\n\n /**\n * TextRenderer\n * returns only the textual part of the token\n */\n var TextRenderer_1 = /*#__PURE__*/function () {\n function TextRenderer() {}\n\n var _proto = TextRenderer.prototype;\n\n // no need for block level renderers\n _proto.strong = function strong(text) {\n return text;\n };\n\n _proto.em = function em(text) {\n return text;\n };\n\n _proto.codespan = function codespan(text) {\n return text;\n };\n\n _proto.del = function del(text) {\n return text;\n };\n\n _proto.html = function html(text) {\n return text;\n };\n\n _proto.text = function text(_text) {\n return _text;\n };\n\n _proto.link = function link(href, title, text) {\n return '' + text;\n };\n\n _proto.image = function image(href, title, text) {\n return '' + text;\n };\n\n _proto.br = function br() {\n return '';\n };\n\n return TextRenderer;\n }();\n\n /**\n * Slugger generates header id\n */\n var Slugger_1 = /*#__PURE__*/function () {\n function Slugger() {\n this.seen = {};\n }\n /**\n * Convert string to unique id\n */\n\n\n var _proto = Slugger.prototype;\n\n _proto.slug = function slug(value) {\n var slug = value.toLowerCase().trim() // remove html tags\n .replace(/<[!\\/a-z].*?>/ig, '') // remove unwanted chars\n .replace(/[\\u2000-\\u206F\\u2E00-\\u2E7F\\\\'!\"#$%&()*+,./:;<=>?@[\\]^`{|}~]/g, '').replace(/\\s/g, '-');\n\n if (this.seen.hasOwnProperty(slug)) {\n var originalSlug = slug;\n\n do {\n this.seen[originalSlug]++;\n slug = originalSlug + '-' + this.seen[originalSlug];\n } while (this.seen.hasOwnProperty(slug));\n }\n\n this.seen[slug] = 0;\n return slug;\n };\n\n return Slugger;\n }();\n\n var defaults$4 = defaults.defaults;\n var unescape$1 = helpers.unescape;\n /**\n * Parsing & Compiling\n */\n\n var Parser_1 = /*#__PURE__*/function () {\n function Parser(options) {\n this.options = options || defaults$4;\n this.options.renderer = this.options.renderer || new Renderer_1();\n this.renderer = this.options.renderer;\n this.renderer.options = this.options;\n this.textRenderer = new TextRenderer_1();\n this.slugger = new Slugger_1();\n }\n /**\n * Static Parse Method\n */\n\n\n Parser.parse = function parse(tokens, options) {\n var parser = new Parser(options);\n return parser.parse(tokens);\n }\n /**\n * Parse Loop\n */\n ;\n\n var _proto = Parser.prototype;\n\n _proto.parse = function parse(tokens, top) {\n if (top === void 0) {\n top = true;\n }\n\n var out = '',\n i,\n j,\n k,\n l2,\n l3,\n row,\n cell,\n header,\n body,\n token,\n ordered,\n start,\n loose,\n itemBody,\n item,\n checked,\n task,\n checkbox;\n var l = tokens.length;\n\n for (i = 0; i < l; i++) {\n token = tokens[i];\n\n switch (token.type) {\n case 'space':\n {\n continue;\n }\n\n case 'hr':\n {\n out += this.renderer.hr();\n continue;\n }\n\n case 'heading':\n {\n out += this.renderer.heading(this.parseInline(token.tokens), token.depth, unescape$1(this.parseInline(token.tokens, this.textRenderer)), this.slugger);\n continue;\n }\n\n case 'code':\n {\n out += this.renderer.code(token.text, token.lang, token.escaped);\n continue;\n }\n\n case 'table':\n {\n header = ''; // header\n\n cell = '';\n l2 = token.header.length;\n\n for (j = 0; j < l2; j++) {\n cell += this.renderer.tablecell(this.parseInline(token.tokens.header[j]), {\n header: true,\n align: token.align[j]\n });\n }\n\n header += this.renderer.tablerow(cell);\n body = '';\n l2 = token.cells.length;\n\n for (j = 0; j < l2; j++) {\n row = token.tokens.cells[j];\n cell = '';\n l3 = row.length;\n\n for (k = 0; k < l3; k++) {\n cell += this.renderer.tablecell(this.parseInline(row[k]), {\n header: false,\n align: token.align[k]\n });\n }\n\n body += this.renderer.tablerow(cell);\n }\n\n out += this.renderer.table(header, body);\n continue;\n }\n\n case 'blockquote':\n {\n body = this.parse(token.tokens);\n out += this.renderer.blockquote(body);\n continue;\n }\n\n case 'list':\n {\n ordered = token.ordered;\n start = token.start;\n loose = token.loose;\n l2 = token.items.length;\n body = '';\n\n for (j = 0; j < l2; j++) {\n item = token.items[j];\n checked = item.checked;\n task = item.task;\n itemBody = '';\n\n if (item.task) {\n checkbox = this.renderer.checkbox(checked);\n\n if (loose) {\n if (item.tokens.length > 0 && item.tokens[0].type === 'text') {\n item.tokens[0].text = checkbox + ' ' + item.tokens[0].text;\n\n if (item.tokens[0].tokens && item.tokens[0].tokens.length > 0 && item.tokens[0].tokens[0].type === 'text') {\n item.tokens[0].tokens[0].text = checkbox + ' ' + item.tokens[0].tokens[0].text;\n }\n } else {\n item.tokens.unshift({\n type: 'text',\n text: checkbox\n });\n }\n } else {\n itemBody += checkbox;\n }\n }\n\n itemBody += this.parse(item.tokens, loose);\n body += this.renderer.listitem(itemBody, task, checked);\n }\n\n out += this.renderer.list(body, ordered, start);\n continue;\n }\n\n case 'html':\n {\n // TODO parse inline content if parameter markdown=1\n out += this.renderer.html(token.text);\n continue;\n }\n\n case 'paragraph':\n {\n out += this.renderer.paragraph(this.parseInline(token.tokens));\n continue;\n }\n\n case 'text':\n {\n body = token.tokens ? this.parseInline(token.tokens) : token.text;\n\n while (i + 1 < l && tokens[i + 1].type === 'text') {\n token = tokens[++i];\n body += '\\n' + (token.tokens ? this.parseInline(token.tokens) : token.text);\n }\n\n out += top ? this.renderer.paragraph(body) : body;\n continue;\n }\n\n default:\n {\n var errMsg = 'Token with \"' + token.type + '\" type was not found.';\n\n if (this.options.silent) {\n console.error(errMsg);\n return;\n } else {\n throw new Error(errMsg);\n }\n }\n }\n }\n\n return out;\n }\n /**\n * Parse Inline Tokens\n */\n ;\n\n _proto.parseInline = function parseInline(tokens, renderer) {\n renderer = renderer || this.renderer;\n var out = '',\n i,\n token;\n var l = tokens.length;\n\n for (i = 0; i < l; i++) {\n token = tokens[i];\n\n switch (token.type) {\n case 'escape':\n {\n out += renderer.text(token.text);\n break;\n }\n\n case 'html':\n {\n out += renderer.html(token.text);\n break;\n }\n\n case 'link':\n {\n out += renderer.link(token.href, token.title, this.parseInline(token.tokens, renderer));\n break;\n }\n\n case 'image':\n {\n out += renderer.image(token.href, token.title, token.text);\n break;\n }\n\n case 'strong':\n {\n out += renderer.strong(this.parseInline(token.tokens, renderer));\n break;\n }\n\n case 'em':\n {\n out += renderer.em(this.parseInline(token.tokens, renderer));\n break;\n }\n\n case 'codespan':\n {\n out += renderer.codespan(token.text);\n break;\n }\n\n case 'br':\n {\n out += renderer.br();\n break;\n }\n\n case 'del':\n {\n out += renderer.del(this.parseInline(token.tokens, renderer));\n break;\n }\n\n case 'text':\n {\n out += renderer.text(token.text);\n break;\n }\n\n default:\n {\n var errMsg = 'Token with \"' + token.type + '\" type was not found.';\n\n if (this.options.silent) {\n console.error(errMsg);\n return;\n } else {\n throw new Error(errMsg);\n }\n }\n }\n }\n\n return out;\n };\n\n return Parser;\n }();\n\n var merge$2 = helpers.merge,\n checkSanitizeDeprecation$1 = helpers.checkSanitizeDeprecation,\n escape$2 = helpers.escape;\n var getDefaults = defaults.getDefaults,\n changeDefaults = defaults.changeDefaults,\n defaults$5 = defaults.defaults;\n /**\n * Marked\n */\n\n function marked(src, opt, callback) {\n // throw error in case of non string input\n if (typeof src === 'undefined' || src === null) {\n throw new Error('marked(): input parameter is undefined or null');\n }\n\n if (typeof src !== 'string') {\n throw new Error('marked(): input parameter is of type ' + Object.prototype.toString.call(src) + ', string expected');\n }\n\n if (typeof opt === 'function') {\n callback = opt;\n opt = null;\n }\n\n opt = merge$2({}, marked.defaults, opt || {});\n checkSanitizeDeprecation$1(opt);\n\n if (callback) {\n var highlight = opt.highlight;\n var tokens;\n\n try {\n tokens = Lexer_1.lex(src, opt);\n } catch (e) {\n return callback(e);\n }\n\n var done = function done(err) {\n var out;\n\n if (!err) {\n try {\n out = Parser_1.parse(tokens, opt);\n } catch (e) {\n err = e;\n }\n }\n\n opt.highlight = highlight;\n return err ? callback(err) : callback(null, out);\n };\n\n if (!highlight || highlight.length < 3) {\n return done();\n }\n\n delete opt.highlight;\n if (!tokens.length) return done();\n var pending = 0;\n marked.walkTokens(tokens, function (token) {\n if (token.type === 'code') {\n pending++;\n setTimeout(function () {\n highlight(token.text, token.lang, function (err, code) {\n if (err) {\n return done(err);\n }\n\n if (code != null && code !== token.text) {\n token.text = code;\n token.escaped = true;\n }\n\n pending--;\n\n if (pending === 0) {\n done();\n }\n });\n }, 0);\n }\n });\n\n if (pending === 0) {\n done();\n }\n\n return;\n }\n\n try {\n var _tokens = Lexer_1.lex(src, opt);\n\n if (opt.walkTokens) {\n marked.walkTokens(_tokens, opt.walkTokens);\n }\n\n return Parser_1.parse(_tokens, opt);\n } catch (e) {\n e.message += '\\nPlease report this to https://github.com/markedjs/marked.';\n\n if (opt.silent) {\n return '<p>An error occurred:</p><pre>' + escape$2(e.message + '', true) + '</pre>';\n }\n\n throw e;\n }\n }\n /**\n * Options\n */\n\n\n marked.options = marked.setOptions = function (opt) {\n merge$2(marked.defaults, opt);\n changeDefaults(marked.defaults);\n return marked;\n };\n\n marked.getDefaults = getDefaults;\n marked.defaults = defaults$5;\n /**\n * Use Extension\n */\n\n marked.use = function (extension) {\n var opts = merge$2({}, extension);\n\n if (extension.renderer) {\n (function () {\n var renderer = marked.defaults.renderer || new Renderer_1();\n\n var _loop = function _loop(prop) {\n var prevRenderer = renderer[prop];\n\n renderer[prop] = function () {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n var ret = extension.renderer[prop].apply(renderer, args);\n\n if (ret === false) {\n ret = prevRenderer.apply(renderer, args);\n }\n\n return ret;\n };\n };\n\n for (var prop in extension.renderer) {\n _loop(prop);\n }\n\n opts.renderer = renderer;\n })();\n }\n\n if (extension.tokenizer) {\n (function () {\n var tokenizer = marked.defaults.tokenizer || new Tokenizer_1();\n\n var _loop2 = function _loop2(prop) {\n var prevTokenizer = tokenizer[prop];\n\n tokenizer[prop] = function () {\n for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n var ret = extension.tokenizer[prop].apply(tokenizer, args);\n\n if (ret === false) {\n ret = prevTokenizer.apply(tokenizer, args);\n }\n\n return ret;\n };\n };\n\n for (var prop in extension.tokenizer) {\n _loop2(prop);\n }\n\n opts.tokenizer = tokenizer;\n })();\n }\n\n if (extension.walkTokens) {\n var walkTokens = marked.defaults.walkTokens;\n\n opts.walkTokens = function (token) {\n extension.walkTokens(token);\n\n if (walkTokens) {\n walkTokens(token);\n }\n };\n }\n\n marked.setOptions(opts);\n };\n /**\n * Run callback for every token\n */\n\n\n marked.walkTokens = function (tokens, callback) {\n for (var _iterator = _createForOfIteratorHelperLoose(tokens), _step; !(_step = _iterator()).done;) {\n var token = _step.value;\n callback(token);\n\n switch (token.type) {\n case 'table':\n {\n for (var _iterator2 = _createForOfIteratorHelperLoose(token.tokens.header), _step2; !(_step2 = _iterator2()).done;) {\n var cell = _step2.value;\n marked.walkTokens(cell, callback);\n }\n\n for (var _iterator3 = _createForOfIteratorHelperLoose(token.tokens.cells), _step3; !(_step3 = _iterator3()).done;) {\n var row = _step3.value;\n\n for (var _iterator4 = _createForOfIteratorHelperLoose(row), _step4; !(_step4 = _iterator4()).done;) {\n var _cell = _step4.value;\n marked.walkTokens(_cell, callback);\n }\n }\n\n break;\n }\n\n case 'list':\n {\n marked.walkTokens(token.items, callback);\n break;\n }\n\n default:\n {\n if (token.tokens) {\n marked.walkTokens(token.tokens, callback);\n }\n }\n }\n }\n };\n /**\n * Expose\n */\n\n\n marked.Parser = Parser_1;\n marked.parser = Parser_1.parse;\n marked.Renderer = Renderer_1;\n marked.TextRenderer = TextRenderer_1;\n marked.Lexer = Lexer_1;\n marked.lexer = Lexer_1.lex;\n marked.Tokenizer = Tokenizer_1;\n marked.Slugger = Slugger_1;\n marked.parse = marked;\n var marked_1 = marked;\n\n return marked_1;\n\n})));\n","/*! @license DOMPurify | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.0.8/LICENSE */\n\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (global = global || self, global.DOMPurify = factory());\n}(this, function () { 'use strict';\n\n function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\n var hasOwnProperty = Object.hasOwnProperty,\n setPrototypeOf = Object.setPrototypeOf,\n isFrozen = Object.isFrozen,\n objectKeys = Object.keys;\n var freeze = Object.freeze,\n seal = Object.seal,\n create = Object.create; // eslint-disable-line import/no-mutable-exports\n\n var _ref = typeof Reflect !== 'undefined' && Reflect,\n apply = _ref.apply,\n construct = _ref.construct;\n\n if (!apply) {\n apply = function apply(fun, thisValue, args) {\n return fun.apply(thisValue, args);\n };\n }\n\n if (!freeze) {\n freeze = function freeze(x) {\n return x;\n };\n }\n\n if (!seal) {\n seal = function seal(x) {\n return x;\n };\n }\n\n if (!construct) {\n construct = function construct(Func, args) {\n return new (Function.prototype.bind.apply(Func, [null].concat(_toConsumableArray(args))))();\n };\n }\n\n var arrayForEach = unapply(Array.prototype.forEach);\n var arrayIndexOf = unapply(Array.prototype.indexOf);\n var arrayJoin = unapply(Array.prototype.join);\n var arrayPop = unapply(Array.prototype.pop);\n var arrayPush = unapply(Array.prototype.push);\n var arraySlice = unapply(Array.prototype.slice);\n\n var stringToLowerCase = unapply(String.prototype.toLowerCase);\n var stringMatch = unapply(String.prototype.match);\n var stringReplace = unapply(String.prototype.replace);\n var stringIndexOf = unapply(String.prototype.indexOf);\n var stringTrim = unapply(String.prototype.trim);\n\n var regExpTest = unapply(RegExp.prototype.test);\n var regExpCreate = unconstruct(RegExp);\n\n var typeErrorCreate = unconstruct(TypeError);\n\n function unapply(func) {\n return function (thisArg) {\n for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n return apply(func, thisArg, args);\n };\n }\n\n function unconstruct(func) {\n return function () {\n for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n return construct(func, args);\n };\n }\n\n /* Add properties to a lookup table */\n function addToSet(set, array) {\n if (setPrototypeOf) {\n // Make 'in' and truthy checks like Boolean(set.constructor)\n // independent of any properties defined on Object.prototype.\n // Prevent prototype setters from intercepting set as a this value.\n setPrototypeOf(set, null);\n }\n\n var l = array.length;\n while (l--) {\n var element = array[l];\n if (typeof element === 'string') {\n var lcElement = stringToLowerCase(element);\n if (lcElement !== element) {\n // Config presets (e.g. tags.js, attrs.js) are immutable.\n if (!isFrozen(array)) {\n array[l] = lcElement;\n }\n\n element = lcElement;\n }\n }\n\n set[element] = true;\n }\n\n return set;\n }\n\n /* Shallow clone an object */\n function clone(object) {\n var newObject = create(null);\n\n var property = void 0;\n for (property in object) {\n if (apply(hasOwnProperty, object, [property])) {\n newObject[property] = object[property];\n }\n }\n\n return newObject;\n }\n\n var html = freeze(['a', 'abbr', 'acronym', 'address', 'area', 'article', 'aside', 'audio', 'b', 'bdi', 'bdo', 'big', 'blink', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'center', 'cite', 'code', 'col', 'colgroup', 'content', 'data', 'datalist', 'dd', 'decorator', 'del', 'details', 'dfn', 'dir', 'div', 'dl', 'dt', 'element', 'em', 'fieldset', 'figcaption', 'figure', 'font', 'footer', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'img', 'input', 'ins', 'kbd', 'label', 'legend', 'li', 'main', 'map', 'mark', 'marquee', 'menu', 'menuitem', 'meter', 'nav', 'nobr', 'ol', 'optgroup', 'option', 'output', 'p', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'section', 'select', 'shadow', 'small', 'source', 'spacer', 'span', 'strike', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'time', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'video', 'wbr']);\n\n // SVG\n var svg = freeze(['svg', 'a', 'altglyph', 'altglyphdef', 'altglyphitem', 'animatecolor', 'animatemotion', 'animatetransform', 'audio', 'canvas', 'circle', 'clippath', 'defs', 'desc', 'ellipse', 'filter', 'font', 'g', 'glyph', 'glyphref', 'hkern', 'image', 'line', 'lineargradient', 'marker', 'mask', 'metadata', 'mpath', 'path', 'pattern', 'polygon', 'polyline', 'radialgradient', 'rect', 'stop', 'style', 'switch', 'symbol', 'text', 'textpath', 'title', 'tref', 'tspan', 'video', 'view', 'vkern']);\n\n var svgFilters = freeze(['feBlend', 'feColorMatrix', 'feComponentTransfer', 'feComposite', 'feConvolveMatrix', 'feDiffuseLighting', 'feDisplacementMap', 'feDistantLight', 'feFlood', 'feFuncA', 'feFuncB', 'feFuncG', 'feFuncR', 'feGaussianBlur', 'feMerge', 'feMergeNode', 'feMorphology', 'feOffset', 'fePointLight', 'feSpecularLighting', 'feSpotLight', 'feTile', 'feTurbulence']);\n\n var mathMl = freeze(['math', 'menclose', 'merror', 'mfenced', 'mfrac', 'mglyph', 'mi', 'mlabeledtr', 'mmultiscripts', 'mn', 'mo', 'mover', 'mpadded', 'mphantom', 'mroot', 'mrow', 'ms', 'mspace', 'msqrt', 'mstyle', 'msub', 'msup', 'msubsup', 'mtable', 'mtd', 'mtext', 'mtr', 'munder', 'munderover']);\n\n var text = freeze(['#text']);\n\n var html$1 = freeze(['accept', 'action', 'align', 'alt', 'autocapitalize', 'autocomplete', 'autopictureinpicture', 'autoplay', 'background', 'bgcolor', 'border', 'capture', 'cellpadding', 'cellspacing', 'checked', 'cite', 'class', 'clear', 'color', 'cols', 'colspan', 'controls', 'controlslist', 'coords', 'crossorigin', 'datetime', 'decoding', 'default', 'dir', 'disabled', 'disablepictureinpicture', 'disableremoteplayback', 'download', 'draggable', 'enctype', 'enterkeyhint', 'face', 'for', 'headers', 'height', 'hidden', 'high', 'href', 'hreflang', 'id', 'inputmode', 'integrity', 'ismap', 'kind', 'label', 'lang', 'list', 'loading', 'loop', 'low', 'max', 'maxlength', 'media', 'method', 'min', 'minlength', 'multiple', 'muted', 'name', 'noshade', 'novalidate', 'nowrap', 'open', 'optimum', 'pattern', 'placeholder', 'playsinline', 'poster', 'preload', 'pubdate', 'radiogroup', 'readonly', 'rel', 'required', 'rev', 'reversed', 'role', 'rows', 'rowspan', 'spellcheck', 'scope', 'selected', 'shape', 'size', 'sizes', 'span', 'srclang', 'start', 'src', 'srcset', 'step', 'style', 'summary', 'tabindex', 'title', 'translate', 'type', 'usemap', 'valign', 'value', 'width', 'xmlns']);\n\n var svg$1 = freeze(['accent-height', 'accumulate', 'additive', 'alignment-baseline', 'ascent', 'attributename', 'attributetype', 'azimuth', 'basefrequency', 'baseline-shift', 'begin', 'bias', 'by', 'class', 'clip', 'clippathunits', 'clip-path', 'clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cx', 'cy', 'd', 'dx', 'dy', 'diffuseconstant', 'direction', 'display', 'divisor', 'dur', 'edgemode', 'elevation', 'end', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'filterunits', 'flood-color', 'flood-opacity', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'fx', 'fy', 'g1', 'g2', 'glyph-name', 'glyphref', 'gradientunits', 'gradienttransform', 'height', 'href', 'id', 'image-rendering', 'in', 'in2', 'k', 'k1', 'k2', 'k3', 'k4', 'kerning', 'keypoints', 'keysplines', 'keytimes', 'lang', 'lengthadjust', 'letter-spacing', 'kernelmatrix', 'kernelunitlength', 'lighting-color', 'local', 'marker-end', 'marker-mid', 'marker-start', 'markerheight', 'markerunits', 'markerwidth', 'maskcontentunits', 'maskunits', 'max', 'mask', 'media', 'method', 'mode', 'min', 'name', 'numoctaves', 'offset', 'operator', 'opacity', 'order', 'orient', 'orientation', 'origin', 'overflow', 'paint-order', 'path', 'pathlength', 'patterncontentunits', 'patterntransform', 'patternunits', 'points', 'preservealpha', 'preserveaspectratio', 'primitiveunits', 'r', 'rx', 'ry', 'radius', 'refx', 'refy', 'repeatcount', 'repeatdur', 'restart', 'result', 'rotate', 'scale', 'seed', 'shape-rendering', 'specularconstant', 'specularexponent', 'spreadmethod', 'startoffset', 'stddeviation', 'stitchtiles', 'stop-color', 'stop-opacity', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke', 'stroke-width', 'style', 'surfacescale', 'systemlanguage', 'tabindex', 'targetx', 'targety', 'transform', 'text-anchor', 'text-decoration', 'text-rendering', 'textlength', 'type', 'u1', 'u2', 'unicode', 'values', 'viewbox', 'visibility', 'version', 'vert-adv-y', 'vert-origin-x', 'vert-origin-y', 'width', 'word-spacing', 'wrap', 'writing-mode', 'xchannelselector', 'ychannelselector', 'x', 'x1', 'x2', 'xmlns', 'y', 'y1', 'y2', 'z', 'zoomandpan']);\n\n var mathMl$1 = freeze(['accent', 'accentunder', 'align', 'bevelled', 'close', 'columnsalign', 'columnlines', 'columnspan', 'denomalign', 'depth', 'dir', 'display', 'displaystyle', 'encoding', 'fence', 'frame', 'height', 'href', 'id', 'largeop', 'length', 'linethickness', 'lspace', 'lquote', 'mathbackground', 'mathcolor', 'mathsize', 'mathvariant', 'maxsize', 'minsize', 'movablelimits', 'notation', 'numalign', 'open', 'rowalign', 'rowlines', 'rowspacing', 'rowspan', 'rspace', 'rquote', 'scriptlevel', 'scriptminsize', 'scriptsizemultiplier', 'selection', 'separator', 'separators', 'stretchy', 'subscriptshift', 'supscriptshift', 'symmetric', 'voffset', 'width', 'xmlns']);\n\n var xml = freeze(['xlink:href', 'xml:id', 'xlink:title', 'xml:space', 'xmlns:xlink']);\n\n // eslint-disable-next-line unicorn/better-regex\n var MUSTACHE_EXPR = seal(/\\{\\{[\\s\\S]*|[\\s\\S]*\\}\\}/gm); // Specify template detection regex for SAFE_FOR_TEMPLATES mode\n var ERB_EXPR = seal(/<%[\\s\\S]*|[\\s\\S]*%>/gm);\n var DATA_ATTR = seal(/^data-[\\-\\w.\\u00B7-\\uFFFF]/); // eslint-disable-line no-useless-escape\n var ARIA_ATTR = seal(/^aria-[\\-\\w]+$/); // eslint-disable-line no-useless-escape\n var IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\\-]+(?:[^a-z+.\\-:]|$))/i // eslint-disable-line no-useless-escape\n );\n var IS_SCRIPT_OR_DATA = seal(/^(?:\\w+script|data):/i);\n var ATTR_WHITESPACE = seal(/[\\u0000-\\u0020\\u00A0\\u1680\\u180E\\u2000-\\u2029\\u205F\\u3000]/g // eslint-disable-line no-control-regex\n );\n\n var _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n function _toConsumableArray$1(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\n var getGlobal = function getGlobal() {\n return typeof window === 'undefined' ? null : window;\n };\n\n /**\n * Creates a no-op policy for internal use only.\n * Don't export this function outside this module!\n * @param {?TrustedTypePolicyFactory} trustedTypes The policy factory.\n * @param {Document} document The document object (to determine policy name suffix)\n * @return {?TrustedTypePolicy} The policy created (or null, if Trusted Types\n * are not supported).\n */\n var _createTrustedTypesPolicy = function _createTrustedTypesPolicy(trustedTypes, document) {\n if ((typeof trustedTypes === 'undefined' ? 'undefined' : _typeof(trustedTypes)) !== 'object' || typeof trustedTypes.createPolicy !== 'function') {\n return null;\n }\n\n // Allow the callers to control the unique policy name\n // by adding a data-tt-policy-suffix to the script element with the DOMPurify.\n // Policy creation with duplicate names throws in Trusted Types.\n var suffix = null;\n var ATTR_NAME = 'data-tt-policy-suffix';\n if (document.currentScript && document.currentScript.hasAttribute(ATTR_NAME)) {\n suffix = document.currentScript.getAttribute(ATTR_NAME);\n }\n\n var policyName = 'dompurify' + (suffix ? '#' + suffix : '');\n\n try {\n return trustedTypes.createPolicy(policyName, {\n createHTML: function createHTML(html$$1) {\n return html$$1;\n }\n });\n } catch (_) {\n // Policy creation failed (most likely another DOMPurify script has\n // already run). Skip creating the policy, as this will only cause errors\n // if TT are enforced.\n console.warn('TrustedTypes policy ' + policyName + ' could not be created.');\n return null;\n }\n };\n\n function createDOMPurify() {\n var window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();\n\n var DOMPurify = function DOMPurify(root) {\n return createDOMPurify(root);\n };\n\n /**\n * Version label, exposed for easier checks\n * if DOMPurify is up to date or not\n */\n DOMPurify.version = '2.0.15';\n\n /**\n * Array of elements that DOMPurify removed during sanitation.\n * Empty if nothing was removed.\n */\n DOMPurify.removed = [];\n\n if (!window || !window.document || window.document.nodeType !== 9) {\n // Not running in a browser, provide a factory function\n // so that you can pass your own Window\n DOMPurify.isSupported = false;\n\n return DOMPurify;\n }\n\n var originalDocument = window.document;\n var removeTitle = false;\n\n var document = window.document;\n var DocumentFragment = window.DocumentFragment,\n HTMLTemplateElement = window.HTMLTemplateElement,\n Node = window.Node,\n NodeFilter = window.NodeFilter,\n _window$NamedNodeMap = window.NamedNodeMap,\n NamedNodeMap = _window$NamedNodeMap === undefined ? window.NamedNodeMap || window.MozNamedAttrMap : _window$NamedNodeMap,\n Text = window.Text,\n Comment = window.Comment,\n DOMParser = window.DOMParser,\n trustedTypes = window.trustedTypes;\n\n // As per issue #47, the web-components registry is inherited by a\n // new document created via createHTMLDocument. As per the spec\n // (http://w3c.github.io/webcomponents/spec/custom/#creating-and-passing-registries)\n // a new empty registry is used when creating a template contents owner\n // document, so we use that as our parent document to ensure nothing\n // is inherited.\n\n if (typeof HTMLTemplateElement === 'function') {\n var template = document.createElement('template');\n if (template.content && template.content.ownerDocument) {\n document = template.content.ownerDocument;\n }\n }\n\n var trustedTypesPolicy = _createTrustedTypesPolicy(trustedTypes, originalDocument);\n var emptyHTML = trustedTypesPolicy && RETURN_TRUSTED_TYPE ? trustedTypesPolicy.createHTML('') : '';\n\n var _document = document,\n implementation = _document.implementation,\n createNodeIterator = _document.createNodeIterator,\n getElementsByTagName = _document.getElementsByTagName,\n createDocumentFragment = _document.createDocumentFragment;\n var importNode = originalDocument.importNode;\n\n\n var documentMode = clone(document).documentMode ? document.documentMode : {};\n\n var hooks = {};\n\n /**\n * Expose whether this browser supports running the full DOMPurify.\n */\n DOMPurify.isSupported = implementation && typeof implementation.createHTMLDocument !== 'undefined' && documentMode !== 9;\n\n var MUSTACHE_EXPR$$1 = MUSTACHE_EXPR,\n ERB_EXPR$$1 = ERB_EXPR,\n DATA_ATTR$$1 = DATA_ATTR,\n ARIA_ATTR$$1 = ARIA_ATTR,\n IS_SCRIPT_OR_DATA$$1 = IS_SCRIPT_OR_DATA,\n ATTR_WHITESPACE$$1 = ATTR_WHITESPACE;\n var IS_ALLOWED_URI$$1 = IS_ALLOWED_URI;\n\n /**\n * We consider the elements and attributes below to be safe. Ideally\n * don't add any new ones but feel free to remove unwanted ones.\n */\n\n /* allowed element names */\n\n var ALLOWED_TAGS = null;\n var DEFAULT_ALLOWED_TAGS = addToSet({}, [].concat(_toConsumableArray$1(html), _toConsumableArray$1(svg), _toConsumableArray$1(svgFilters), _toConsumableArray$1(mathMl), _toConsumableArray$1(text)));\n\n /* Allowed attribute names */\n var ALLOWED_ATTR = null;\n var DEFAULT_ALLOWED_ATTR = addToSet({}, [].concat(_toConsumableArray$1(html$1), _toConsumableArray$1(svg$1), _toConsumableArray$1(mathMl$1), _toConsumableArray$1(xml)));\n\n /* Explicitly forbidden tags (overrides ALLOWED_TAGS/ADD_TAGS) */\n var FORBID_TAGS = null;\n\n /* Explicitly forbidden attributes (overrides ALLOWED_ATTR/ADD_ATTR) */\n var FORBID_ATTR = null;\n\n /* Decide if ARIA attributes are okay */\n var ALLOW_ARIA_ATTR = true;\n\n /* Decide if custom data attributes are okay */\n var ALLOW_DATA_ATTR = true;\n\n /* Decide if unknown protocols are okay */\n var ALLOW_UNKNOWN_PROTOCOLS = false;\n\n /* Output should be safe for jQuery's $() factory? */\n var SAFE_FOR_JQUERY = false;\n\n /* Output should be safe for common template engines.\n * This means, DOMPurify removes data attributes, mustaches and ERB\n */\n var SAFE_FOR_TEMPLATES = false;\n\n /* Decide if document with <html>... should be returned */\n var WHOLE_DOCUMENT = false;\n\n /* Track whether config is already set on this instance of DOMPurify. */\n var SET_CONFIG = false;\n\n /* Decide if all elements (e.g. style, script) must be children of\n * document.body. By default, browsers might move them to document.head */\n var FORCE_BODY = false;\n\n /* Decide if a DOM `HTMLBodyElement` should be returned, instead of a html\n * string (or a TrustedHTML object if Trusted Types are supported).\n * If `WHOLE_DOCUMENT` is enabled a `HTMLHtmlElement` will be returned instead\n */\n var RETURN_DOM = false;\n\n /* Decide if a DOM `DocumentFragment` should be returned, instead of a html\n * string (or a TrustedHTML object if Trusted Types are supported) */\n var RETURN_DOM_FRAGMENT = false;\n\n /* If `RETURN_DOM` or `RETURN_DOM_FRAGMENT` is enabled, decide if the returned DOM\n * `Node` is imported into the current `Document`. If this flag is not enabled the\n * `Node` will belong (its ownerDocument) to a fresh `HTMLDocument`, created by\n * DOMPurify. */\n var RETURN_DOM_IMPORT = false;\n\n /* Try to return a Trusted Type object instead of a string, return a string in\n * case Trusted Types are not supported */\n var RETURN_TRUSTED_TYPE = false;\n\n /* Output should be free from DOM clobbering attacks? */\n var SANITIZE_DOM = true;\n\n /* Keep element content when removing element? */\n var KEEP_CONTENT = true;\n\n /* If a `Node` is passed to sanitize(), then performs sanitization in-place instead\n * of importing it into a new Document and returning a sanitized copy */\n var IN_PLACE = false;\n\n /* Allow usage of profiles like html, svg and mathMl */\n var USE_PROFILES = {};\n\n /* Tags to ignore content of when KEEP_CONTENT is true */\n var FORBID_CONTENTS = addToSet({}, ['annotation-xml', 'audio', 'colgroup', 'desc', 'foreignobject', 'head', 'iframe', 'math', 'mi', 'mn', 'mo', 'ms', 'mtext', 'noembed', 'noframes', 'plaintext', 'script', 'style', 'svg', 'template', 'thead', 'title', 'video', 'xmp']);\n\n /* Tags that are safe for data: URIs */\n var DATA_URI_TAGS = null;\n var DEFAULT_DATA_URI_TAGS = addToSet({}, ['audio', 'video', 'img', 'source', 'image', 'track']);\n\n /* Attributes safe for values like \"javascript:\" */\n var URI_SAFE_ATTRIBUTES = null;\n var DEFAULT_URI_SAFE_ATTRIBUTES = addToSet({}, ['alt', 'class', 'for', 'id', 'label', 'name', 'pattern', 'placeholder', 'summary', 'title', 'value', 'style', 'xmlns']);\n\n /* Keep a reference to config to pass to hooks */\n var CONFIG = null;\n\n /* Ideally, do not touch anything below this line */\n /* ______________________________________________ */\n\n var formElement = document.createElement('form');\n\n /**\n * _parseConfig\n *\n * @param {Object} cfg optional config literal\n */\n // eslint-disable-next-line complexity\n var _parseConfig = function _parseConfig(cfg) {\n if (CONFIG && CONFIG === cfg) {\n return;\n }\n\n /* Shield configuration object from tampering */\n if (!cfg || (typeof cfg === 'undefined' ? 'undefined' : _typeof(cfg)) !== 'object') {\n cfg = {};\n }\n\n /* Shield configuration object from prototype pollution */\n cfg = clone(cfg);\n\n /* Set configuration parameters */\n ALLOWED_TAGS = 'ALLOWED_TAGS' in cfg ? addToSet({}, cfg.ALLOWED_TAGS) : DEFAULT_ALLOWED_TAGS;\n ALLOWED_ATTR = 'ALLOWED_ATTR' in cfg ? addToSet({}, cfg.ALLOWED_ATTR) : DEFAULT_ALLOWED_ATTR;\n URI_SAFE_ATTRIBUTES = 'ADD_URI_SAFE_ATTR' in cfg ? addToSet(clone(DEFAULT_URI_SAFE_ATTRIBUTES), cfg.ADD_URI_SAFE_ATTR) : DEFAULT_URI_SAFE_ATTRIBUTES;\n DATA_URI_TAGS = 'ADD_DATA_URI_TAGS' in cfg ? addToSet(clone(DEFAULT_DATA_URI_TAGS), cfg.ADD_DATA_URI_TAGS) : DEFAULT_DATA_URI_TAGS;\n FORBID_TAGS = 'FORBID_TAGS' in cfg ? addToSet({}, cfg.FORBID_TAGS) : {};\n FORBID_ATTR = 'FORBID_ATTR' in cfg ? addToSet({}, cfg.FORBID_ATTR) : {};\n USE_PROFILES = 'USE_PROFILES' in cfg ? cfg.USE_PROFILES : false;\n ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false; // Default true\n ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false; // Default true\n ALLOW_UNKNOWN_PROTOCOLS = cfg.ALLOW_UNKNOWN_PROTOCOLS || false; // Default false\n SAFE_FOR_JQUERY = cfg.SAFE_FOR_JQUERY || false; // Default false\n SAFE_FOR_TEMPLATES = cfg.SAFE_FOR_TEMPLATES || false; // Default false\n WHOLE_DOCUMENT = cfg.WHOLE_DOCUMENT || false; // Default false\n RETURN_DOM = cfg.RETURN_DOM || false; // Default false\n RETURN_DOM_FRAGMENT = cfg.RETURN_DOM_FRAGMENT || false; // Default false\n RETURN_DOM_IMPORT = cfg.RETURN_DOM_IMPORT || false; // Default false\n RETURN_TRUSTED_TYPE = cfg.RETURN_TRUSTED_TYPE || false; // Default false\n FORCE_BODY = cfg.FORCE_BODY || false; // Default false\n SANITIZE_DOM = cfg.SANITIZE_DOM !== false; // Default true\n KEEP_CONTENT = cfg.KEEP_CONTENT !== false; // Default true\n IN_PLACE = cfg.IN_PLACE || false; // Default false\n IS_ALLOWED_URI$$1 = cfg.ALLOWED_URI_REGEXP || IS_ALLOWED_URI$$1;\n if (SAFE_FOR_TEMPLATES) {\n ALLOW_DATA_ATTR = false;\n }\n\n if (RETURN_DOM_FRAGMENT) {\n RETURN_DOM = true;\n }\n\n /* Parse profile info */\n if (USE_PROFILES) {\n ALLOWED_TAGS = addToSet({}, [].concat(_toConsumableArray$1(text)));\n ALLOWED_ATTR = [];\n if (USE_PROFILES.html === true) {\n addToSet(ALLOWED_TAGS, html);\n addToSet(ALLOWED_ATTR, html$1);\n }\n\n if (USE_PROFILES.svg === true) {\n addToSet(ALLOWED_TAGS, svg);\n addToSet(ALLOWED_ATTR, svg$1);\n addToSet(ALLOWED_ATTR, xml);\n }\n\n if (USE_PROFILES.svgFilters === true) {\n addToSet(ALLOWED_TAGS, svgFilters);\n addToSet(ALLOWED_ATTR, svg$1);\n addToSet(ALLOWED_ATTR, xml);\n }\n\n if (USE_PROFILES.mathMl === true) {\n addToSet(ALLOWED_TAGS, mathMl);\n addToSet(ALLOWED_ATTR, mathMl$1);\n addToSet(ALLOWED_ATTR, xml);\n }\n }\n\n /* Merge configuration parameters */\n if (cfg.ADD_TAGS) {\n if (ALLOWED_TAGS === DEFAULT_ALLOWED_TAGS) {\n ALLOWED_TAGS = clone(ALLOWED_TAGS);\n }\n\n addToSet(ALLOWED_TAGS, cfg.ADD_TAGS);\n }\n\n if (cfg.ADD_ATTR) {\n if (ALLOWED_ATTR === DEFAULT_ALLOWED_ATTR) {\n ALLOWED_ATTR = clone(ALLOWED_ATTR);\n }\n\n addToSet(ALLOWED_ATTR, cfg.ADD_ATTR);\n }\n\n if (cfg.ADD_URI_SAFE_ATTR) {\n addToSet(URI_SAFE_ATTRIBUTES, cfg.ADD_URI_SAFE_ATTR);\n }\n\n /* Add #text in case KEEP_CONTENT is set to true */\n if (KEEP_CONTENT) {\n ALLOWED_TAGS['#text'] = true;\n }\n\n /* Add html, head and body to ALLOWED_TAGS in case WHOLE_DOCUMENT is true */\n if (WHOLE_DOCUMENT) {\n addToSet(ALLOWED_TAGS, ['html', 'head', 'body']);\n }\n\n /* Add tbody to ALLOWED_TAGS in case tables are permitted, see #286, #365 */\n if (ALLOWED_TAGS.table) {\n addToSet(ALLOWED_TAGS, ['tbody']);\n delete FORBID_TAGS.tbody;\n }\n\n // Prevent further manipulation of configuration.\n // Not available in IE8, Safari 5, etc.\n if (freeze) {\n freeze(cfg);\n }\n\n CONFIG = cfg;\n };\n\n /**\n * _forceRemove\n *\n * @param {Node} node a DOM node\n */\n var _forceRemove = function _forceRemove(node) {\n arrayPush(DOMPurify.removed, { element: node });\n try {\n node.parentNode.removeChild(node);\n } catch (_) {\n node.outerHTML = emptyHTML;\n }\n };\n\n /**\n * _removeAttribute\n *\n * @param {String} name an Attribute name\n * @param {Node} node a DOM node\n */\n var _removeAttribute = function _removeAttribute(name, node) {\n try {\n arrayPush(DOMPurify.removed, {\n attribute: node.getAttributeNode(name),\n from: node\n });\n } catch (_) {\n arrayPush(DOMPurify.removed, {\n attribute: null,\n from: node\n });\n }\n\n node.removeAttribute(name);\n };\n\n /**\n * _initDocument\n *\n * @param {String} dirty a string of dirty markup\n * @return {Document} a DOM, filled with the dirty markup\n */\n var _initDocument = function _initDocument(dirty) {\n /* Create a HTML document */\n var doc = void 0;\n var leadingWhitespace = void 0;\n\n if (FORCE_BODY) {\n dirty = '<remove></remove>' + dirty;\n } else {\n /* If FORCE_BODY isn't used, leading whitespace needs to be preserved manually */\n var matches = stringMatch(dirty, /^[\\r\\n\\t ]+/);\n leadingWhitespace = matches && matches[0];\n }\n\n var dirtyPayload = trustedTypesPolicy ? trustedTypesPolicy.createHTML(dirty) : dirty;\n /* Use the DOMParser API by default, fallback later if needs be */\n try {\n doc = new DOMParser().parseFromString(dirtyPayload, 'text/html');\n } catch (_) {}\n\n /* Remove title to fix a mXSS bug in older MS Edge */\n if (removeTitle) {\n addToSet(FORBID_TAGS, ['title']);\n }\n\n /* Use createHTMLDocument in case DOMParser is not available */\n if (!doc || !doc.documentElement) {\n doc = implementation.createHTMLDocument('');\n var _doc = doc,\n body = _doc.body;\n\n body.parentNode.removeChild(body.parentNode.firstElementChild);\n body.outerHTML = dirtyPayload;\n }\n\n if (dirty && leadingWhitespace) {\n doc.body.insertBefore(document.createTextNode(leadingWhitespace), doc.body.childNodes[0] || null);\n }\n\n /* Work on whole document or just its body */\n return getElementsByTagName.call(doc, WHOLE_DOCUMENT ? 'html' : 'body')[0];\n };\n\n /* Here we test for a broken feature in Edge that might cause mXSS */\n if (DOMPurify.isSupported) {\n (function () {\n try {\n var doc = _initDocument('<x/><title></title><img>');\n if (regExpTest(/<\\/title/, doc.querySelector('title').innerHTML)) {\n removeTitle = true;\n }\n } catch (_) {}\n })();\n }\n\n /**\n * _createIterator\n *\n * @param {Document} root document/fragment to create iterator for\n * @return {Iterator} iterator instance\n */\n var _createIterator = function _createIterator(root) {\n return createNodeIterator.call(root.ownerDocument || root, root, NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_TEXT, function () {\n return NodeFilter.FILTER_ACCEPT;\n }, false);\n };\n\n /**\n * _isClobbered\n *\n * @param {Node} elm element to check for clobbering attacks\n * @return {Boolean} true if clobbered, false if safe\n */\n var _isClobbered = function _isClobbered(elm) {\n if (elm instanceof Text || elm instanceof Comment) {\n return false;\n }\n\n if (typeof elm.nodeName !== 'string' || typeof elm.textContent !== 'string' || typeof elm.removeChild !== 'function' || !(elm.attributes instanceof NamedNodeMap) || typeof elm.removeAttribute !== 'function' || typeof elm.setAttribute !== 'function' || typeof elm.namespaceURI !== 'string') {\n return true;\n }\n\n return false;\n };\n\n /**\n * _isNode\n *\n * @param {Node} obj object to check whether it's a DOM node\n * @return {Boolean} true is object is a DOM node\n */\n var _isNode = function _isNode(object) {\n return (typeof Node === 'undefined' ? 'undefined' : _typeof(Node)) === 'object' ? object instanceof Node : object && (typeof object === 'undefined' ? 'undefined' : _typeof(object)) === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string';\n };\n\n /**\n * _executeHook\n * Execute user configurable hooks\n *\n * @param {String} entryPoint Name of the hook's entry point\n * @param {Node} currentNode node to work on with the hook\n * @param {Object} data additional hook parameters\n */\n var _executeHook = function _executeHook(entryPoint, currentNode, data) {\n if (!hooks[entryPoint]) {\n return;\n }\n\n arrayForEach(hooks[entryPoint], function (hook) {\n hook.call(DOMPurify, currentNode, data, CONFIG);\n });\n };\n\n /**\n * _sanitizeElements\n *\n * @protect nodeName\n * @protect textContent\n * @protect removeChild\n *\n * @param {Node} currentNode to check for permission to exist\n * @return {Boolean} true if node was killed, false if left alive\n */\n // eslint-disable-next-line complexity\n var _sanitizeElements = function _sanitizeElements(currentNode) {\n var content = void 0;\n\n /* Execute a hook if present */\n _executeHook('beforeSanitizeElements', currentNode, null);\n\n /* Check if element is clobbered or can clobber */\n if (_isClobbered(currentNode)) {\n _forceRemove(currentNode);\n return true;\n }\n\n /* Check if tagname contains Unicode */\n if (stringMatch(currentNode.nodeName, /[\\u0080-\\uFFFF]/)) {\n _forceRemove(currentNode);\n return true;\n }\n\n /* Now let's check the element's type and name */\n var tagName = stringToLowerCase(currentNode.nodeName);\n\n /* Execute a hook if present */\n _executeHook('uponSanitizeElement', currentNode, {\n tagName: tagName,\n allowedTags: ALLOWED_TAGS\n });\n\n /* Take care of an mXSS pattern using p, br inside svg, math */\n if ((tagName === 'svg' || tagName === 'math') && currentNode.querySelectorAll('p, br').length !== 0) {\n _forceRemove(currentNode);\n return true;\n }\n\n /* Remove element if anything forbids its presence */\n if (!ALLOWED_TAGS[tagName] || FORBID_TAGS[tagName]) {\n /* Keep content except for bad-listed elements */\n if (KEEP_CONTENT && !FORBID_CONTENTS[tagName] && typeof currentNode.insertAdjacentHTML === 'function') {\n try {\n var htmlToInsert = currentNode.innerHTML;\n currentNode.insertAdjacentHTML('AfterEnd', trustedTypesPolicy ? trustedTypesPolicy.createHTML(htmlToInsert) : htmlToInsert);\n } catch (_) {}\n }\n\n _forceRemove(currentNode);\n return true;\n }\n\n /* Remove in case a noscript/noembed XSS is suspected */\n if (tagName === 'noscript' && regExpTest(/<\\/noscript/i, currentNode.innerHTML)) {\n _forceRemove(currentNode);\n return true;\n }\n\n if (tagName === 'noembed' && regExpTest(/<\\/noembed/i, currentNode.innerHTML)) {\n _forceRemove(currentNode);\n return true;\n }\n\n /* Convert markup to cover jQuery behavior */\n if (SAFE_FOR_JQUERY && !_isNode(currentNode.firstElementChild) && (!_isNode(currentNode.content) || !_isNode(currentNode.content.firstElementChild)) && regExpTest(/</g, currentNode.textContent)) {\n arrayPush(DOMPurify.removed, { element: currentNode.cloneNode() });\n if (currentNode.innerHTML) {\n currentNode.innerHTML = stringReplace(currentNode.innerHTML, /</g, '<');\n } else {\n currentNode.innerHTML = stringReplace(currentNode.textContent, /</g, '<');\n }\n }\n\n /* Sanitize element content to be template-safe */\n if (SAFE_FOR_TEMPLATES && currentNode.nodeType === 3) {\n /* Get the element's text content */\n content = currentNode.textContent;\n content = stringReplace(content, MUSTACHE_EXPR$$1, ' ');\n content = stringReplace(content, ERB_EXPR$$1, ' ');\n if (currentNode.textContent !== content) {\n arrayPush(DOMPurify.removed, { element: currentNode.cloneNode() });\n currentNode.textContent = content;\n }\n }\n\n /* Execute a hook if present */\n _executeHook('afterSanitizeElements', currentNode, null);\n\n return false;\n };\n\n /**\n * _isValidAttribute\n *\n * @param {string} lcTag Lowercase tag name of containing element.\n * @param {string} lcName Lowercase attribute name.\n * @param {string} value Attribute value.\n * @return {Boolean} Returns true if `value` is valid, otherwise false.\n */\n // eslint-disable-next-line complexity\n var _isValidAttribute = function _isValidAttribute(lcTag, lcName, value) {\n /* Make sure attribute cannot clobber */\n if (SANITIZE_DOM && (lcName === 'id' || lcName === 'name') && (value in document || value in formElement)) {\n return false;\n }\n\n /* Allow valid data-* attributes: At least one character after \"-\"\n (https://html.spec.whatwg.org/multipage/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes)\n XML-compatible (https://html.spec.whatwg.org/multipage/infrastructure.html#xml-compatible and http://www.w3.org/TR/xml/#d0e804)\n We don't need to check the value; it's always URI safe. */\n if (ALLOW_DATA_ATTR && regExpTest(DATA_ATTR$$1, lcName)) ; else if (ALLOW_ARIA_ATTR && regExpTest(ARIA_ATTR$$1, lcName)) ; else if (!ALLOWED_ATTR[lcName] || FORBID_ATTR[lcName]) {\n return false;\n\n /* Check value is safe. First, is attr inert? If so, is safe */\n } else if (URI_SAFE_ATTRIBUTES[lcName]) ; else if (regExpTest(IS_ALLOWED_URI$$1, stringReplace(value, ATTR_WHITESPACE$$1, ''))) ; else if ((lcName === 'src' || lcName === 'xlink:href' || lcName === 'href') && lcTag !== 'script' && stringIndexOf(value, 'data:') === 0 && DATA_URI_TAGS[lcTag]) ; else if (ALLOW_UNKNOWN_PROTOCOLS && !regExpTest(IS_SCRIPT_OR_DATA$$1, stringReplace(value, ATTR_WHITESPACE$$1, ''))) ; else if (!value) ; else {\n return false;\n }\n\n return true;\n };\n\n /**\n * _sanitizeAttributes\n *\n * @protect attributes\n * @protect nodeName\n * @protect removeAttribute\n * @protect setAttribute\n *\n * @param {Node} currentNode to sanitize\n */\n // eslint-disable-next-line complexity\n var _sanitizeAttributes = function _sanitizeAttributes(currentNode) {\n var attr = void 0;\n var value = void 0;\n var lcName = void 0;\n var idAttr = void 0;\n var l = void 0;\n /* Execute a hook if present */\n _executeHook('beforeSanitizeAttributes', currentNode, null);\n\n var attributes = currentNode.attributes;\n\n /* Check if we have attributes; if not we might have a text node */\n\n if (!attributes) {\n return;\n }\n\n var hookEvent = {\n attrName: '',\n attrValue: '',\n keepAttr: true,\n allowedAttributes: ALLOWED_ATTR\n };\n l = attributes.length;\n\n /* Go backwards over all attributes; safely remove bad ones */\n while (l--) {\n attr = attributes[l];\n var _attr = attr,\n name = _attr.name,\n namespaceURI = _attr.namespaceURI;\n\n value = stringTrim(attr.value);\n lcName = stringToLowerCase(name);\n\n /* Execute a hook if present */\n hookEvent.attrName = lcName;\n hookEvent.attrValue = value;\n hookEvent.keepAttr = true;\n hookEvent.forceKeepAttr = undefined; // Allows developers to see this is a property they can set\n _executeHook('uponSanitizeAttribute', currentNode, hookEvent);\n value = hookEvent.attrValue;\n /* Did the hooks approve of the attribute? */\n if (hookEvent.forceKeepAttr) {\n continue;\n }\n\n /* Remove attribute */\n // Safari (iOS + Mac), last tested v8.0.5, crashes if you try to\n // remove a \"name\" attribute from an <img> tag that has an \"id\"\n // attribute at the time.\n if (lcName === 'name' && currentNode.nodeName === 'IMG' && attributes.id) {\n idAttr = attributes.id;\n attributes = arraySlice(attributes, []);\n _removeAttribute('id', currentNode);\n _removeAttribute(name, currentNode);\n if (arrayIndexOf(attributes, idAttr) > l) {\n currentNode.setAttribute('id', idAttr.value);\n }\n } else if (\n // This works around a bug in Safari, where input[type=file]\n // cannot be dynamically set after type has been removed\n currentNode.nodeName === 'INPUT' && lcName === 'type' && value === 'file' && hookEvent.keepAttr && (ALLOWED_ATTR[lcName] || !FORBID_ATTR[lcName])) {\n continue;\n } else {\n // This avoids a crash in Safari v9.0 with double-ids.\n // The trick is to first set the id to be empty and then to\n // remove the attribute\n if (name === 'id') {\n currentNode.setAttribute(name, '');\n }\n\n _removeAttribute(name, currentNode);\n }\n\n /* Did the hooks approve of the attribute? */\n if (!hookEvent.keepAttr) {\n continue;\n }\n\n /* Work around a security issue in jQuery 3.0 */\n if (SAFE_FOR_JQUERY && regExpTest(/\\/>/i, value)) {\n _removeAttribute(name, currentNode);\n continue;\n }\n\n /* Take care of an mXSS pattern using namespace switches */\n if (regExpTest(/svg|math/i, currentNode.namespaceURI) && regExpTest(regExpCreate('</(' + arrayJoin(objectKeys(FORBID_CONTENTS), '|') + ')', 'i'), value)) {\n _removeAttribute(name, currentNode);\n continue;\n }\n\n /* Sanitize attribute content to be template-safe */\n if (SAFE_FOR_TEMPLATES) {\n value = stringReplace(value, MUSTACHE_EXPR$$1, ' ');\n value = stringReplace(value, ERB_EXPR$$1, ' ');\n }\n\n /* Is `value` valid for this attribute? */\n var lcTag = currentNode.nodeName.toLowerCase();\n if (!_isValidAttribute(lcTag, lcName, value)) {\n continue;\n }\n\n /* Handle invalid data-* attribute set by try-catching it */\n try {\n if (namespaceURI) {\n currentNode.setAttributeNS(namespaceURI, name, value);\n } else {\n /* Fallback to setAttribute() for browser-unrecognized namespaces e.g. \"x-schema\". */\n currentNode.setAttribute(name, value);\n }\n\n arrayPop(DOMPurify.removed);\n } catch (_) {}\n }\n\n /* Execute a hook if present */\n _executeHook('afterSanitizeAttributes', currentNode, null);\n };\n\n /**\n * _sanitizeShadowDOM\n *\n * @param {DocumentFragment} fragment to iterate over recursively\n */\n var _sanitizeShadowDOM = function _sanitizeShadowDOM(fragment) {\n var shadowNode = void 0;\n var shadowIterator = _createIterator(fragment);\n\n /* Execute a hook if present */\n _executeHook('beforeSanitizeShadowDOM', fragment, null);\n\n while (shadowNode = shadowIterator.nextNode()) {\n /* Execute a hook if present */\n _executeHook('uponSanitizeShadowNode', shadowNode, null);\n\n /* Sanitize tags and elements */\n if (_sanitizeElements(shadowNode)) {\n continue;\n }\n\n /* Deep shadow DOM detected */\n if (shadowNode.content instanceof DocumentFragment) {\n _sanitizeShadowDOM(shadowNode.content);\n }\n\n /* Check attributes, sanitize if necessary */\n _sanitizeAttributes(shadowNode);\n }\n\n /* Execute a hook if present */\n _executeHook('afterSanitizeShadowDOM', fragment, null);\n };\n\n /**\n * Sanitize\n * Public method providing core sanitation functionality\n *\n * @param {String|Node} dirty string or DOM node\n * @param {Object} configuration object\n */\n // eslint-disable-next-line complexity\n DOMPurify.sanitize = function (dirty, cfg) {\n var body = void 0;\n var importedNode = void 0;\n var currentNode = void 0;\n var oldNode = void 0;\n var returnNode = void 0;\n /* Make sure we have a string to sanitize.\n DO NOT return early, as this will return the wrong type if\n the user has requested a DOM object rather than a string */\n if (!dirty) {\n dirty = '<!-->';\n }\n\n /* Stringify, in case dirty is an object */\n if (typeof dirty !== 'string' && !_isNode(dirty)) {\n // eslint-disable-next-line no-negated-condition\n if (typeof dirty.toString !== 'function') {\n throw typeErrorCreate('toString is not a function');\n } else {\n dirty = dirty.toString();\n if (typeof dirty !== 'string') {\n throw typeErrorCreate('dirty is not a string, aborting');\n }\n }\n }\n\n /* Check we can run. Otherwise fall back or ignore */\n if (!DOMPurify.isSupported) {\n if (_typeof(window.toStaticHTML) === 'object' || typeof window.toStaticHTML === 'function') {\n if (typeof dirty === 'string') {\n return window.toStaticHTML(dirty);\n }\n\n if (_isNode(dirty)) {\n return window.toStaticHTML(dirty.outerHTML);\n }\n }\n\n return dirty;\n }\n\n /* Assign config vars */\n if (!SET_CONFIG) {\n _parseConfig(cfg);\n }\n\n /* Clean up removed elements */\n DOMPurify.removed = [];\n\n /* Check if dirty is correctly typed for IN_PLACE */\n if (typeof dirty === 'string') {\n IN_PLACE = false;\n }\n\n if (IN_PLACE) ; else if (dirty instanceof Node) {\n /* If dirty is a DOM element, append to an empty document to avoid\n elements being stripped by the parser */\n body = _initDocument('<!-->');\n importedNode = body.ownerDocument.importNode(dirty, true);\n if (importedNode.nodeType === 1 && importedNode.nodeName === 'BODY') {\n /* Node is already a body, use as is */\n body = importedNode;\n } else if (importedNode.nodeName === 'HTML') {\n body = importedNode;\n } else {\n // eslint-disable-next-line unicorn/prefer-node-append\n body.appendChild(importedNode);\n }\n } else {\n /* Exit directly if we have nothing to do */\n if (!RETURN_DOM && !SAFE_FOR_TEMPLATES && !WHOLE_DOCUMENT &&\n // eslint-disable-next-line unicorn/prefer-includes\n dirty.indexOf('<') === -1) {\n return trustedTypesPolicy && RETURN_TRUSTED_TYPE ? trustedTypesPolicy.createHTML(dirty) : dirty;\n }\n\n /* Initialize the document to work on */\n body = _initDocument(dirty);\n\n /* Check we have a DOM node from the data */\n if (!body) {\n return RETURN_DOM ? null : emptyHTML;\n }\n }\n\n /* Remove first element node (ours) if FORCE_BODY is set */\n if (body && FORCE_BODY) {\n _forceRemove(body.firstChild);\n }\n\n /* Get node iterator */\n var nodeIterator = _createIterator(IN_PLACE ? dirty : body);\n\n /* Now start iterating over the created document */\n while (currentNode = nodeIterator.nextNode()) {\n /* Fix IE's strange behavior with manipulated textNodes #89 */\n if (currentNode.nodeType === 3 && currentNode === oldNode) {\n continue;\n }\n\n /* Sanitize tags and elements */\n if (_sanitizeElements(currentNode)) {\n continue;\n }\n\n /* Shadow DOM detected, sanitize it */\n if (currentNode.content instanceof DocumentFragment) {\n _sanitizeShadowDOM(currentNode.content);\n }\n\n /* Check attributes, sanitize if necessary */\n _sanitizeAttributes(currentNode);\n\n oldNode = currentNode;\n }\n\n oldNode = null;\n\n /* If we sanitized `dirty` in-place, return it. */\n if (IN_PLACE) {\n return dirty;\n }\n\n /* Return sanitized string or DOM */\n if (RETURN_DOM) {\n if (RETURN_DOM_FRAGMENT) {\n returnNode = createDocumentFragment.call(body.ownerDocument);\n\n while (body.firstChild) {\n // eslint-disable-next-line unicorn/prefer-node-append\n returnNode.appendChild(body.firstChild);\n }\n } else {\n returnNode = body;\n }\n\n if (RETURN_DOM_IMPORT) {\n /*\n AdoptNode() is not used because internal state is not reset\n (e.g. the past names map of a HTMLFormElement), this is safe\n in theory but we would rather not risk another attack vector.\n The state that is cloned by importNode() is explicitly defined\n by the specs.\n */\n returnNode = importNode.call(originalDocument, returnNode, true);\n }\n\n return returnNode;\n }\n\n var serializedHTML = WHOLE_DOCUMENT ? body.outerHTML : body.innerHTML;\n\n /* Sanitize final string template-safe */\n if (SAFE_FOR_TEMPLATES) {\n serializedHTML = stringReplace(serializedHTML, MUSTACHE_EXPR$$1, ' ');\n serializedHTML = stringReplace(serializedHTML, ERB_EXPR$$1, ' ');\n }\n\n return trustedTypesPolicy && RETURN_TRUSTED_TYPE ? trustedTypesPolicy.createHTML(serializedHTML) : serializedHTML;\n };\n\n /**\n * Public method to set the configuration once\n * setConfig\n *\n * @param {Object} cfg configuration object\n */\n DOMPurify.setConfig = function (cfg) {\n _parseConfig(cfg);\n SET_CONFIG = true;\n };\n\n /**\n * Public method to remove the configuration\n * clearConfig\n *\n */\n DOMPurify.clearConfig = function () {\n CONFIG = null;\n SET_CONFIG = false;\n };\n\n /**\n * Public method to check if an attribute value is valid.\n * Uses last set config, if any. Otherwise, uses config defaults.\n * isValidAttribute\n *\n * @param {string} tag Tag name of containing element.\n * @param {string} attr Attribute name.\n * @param {string} value Attribute value.\n * @return {Boolean} Returns true if `value` is valid. Otherwise, returns false.\n */\n DOMPurify.isValidAttribute = function (tag, attr, value) {\n /* Initialize shared config vars if necessary. */\n if (!CONFIG) {\n _parseConfig({});\n }\n\n var lcTag = stringToLowerCase(tag);\n var lcName = stringToLowerCase(attr);\n return _isValidAttribute(lcTag, lcName, value);\n };\n\n /**\n * AddHook\n * Public method to add DOMPurify hooks\n *\n * @param {String} entryPoint entry point for the hook to add\n * @param {Function} hookFunction function to execute\n */\n DOMPurify.addHook = function (entryPoint, hookFunction) {\n if (typeof hookFunction !== 'function') {\n return;\n }\n\n hooks[entryPoint] = hooks[entryPoint] || [];\n arrayPush(hooks[entryPoint], hookFunction);\n };\n\n /**\n * RemoveHook\n * Public method to remove a DOMPurify hook at a given entryPoint\n * (pops it from the stack of hooks if more are present)\n *\n * @param {String} entryPoint entry point for the hook to remove\n */\n DOMPurify.removeHook = function (entryPoint) {\n if (hooks[entryPoint]) {\n arrayPop(hooks[entryPoint]);\n }\n };\n\n /**\n * RemoveHooks\n * Public method to remove all DOMPurify hooks at a given entryPoint\n *\n * @param {String} entryPoint entry point for the hooks to remove\n */\n DOMPurify.removeHooks = function (entryPoint) {\n if (hooks[entryPoint]) {\n hooks[entryPoint] = [];\n }\n };\n\n /**\n * RemoveAllHooks\n * Public method to remove all DOMPurify hooks\n *\n */\n DOMPurify.removeAllHooks = function () {\n hooks = {};\n };\n\n return DOMPurify;\n }\n\n var purify = createDOMPurify();\n\n return purify;\n\n}));\n//# sourceMappingURL=purify.js.map\n"],"sourceRoot":""} \ No newline at end of file diff --git a/core/js/dist/files_client.js b/core/js/dist/files_client.js index 094d71bc92..2258ad0ab4 100644 --- a/core/js/dist/files_client.js +++ b/core/js/dist/files_client.js @@ -1,2 +1,2 @@ -!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=671)}({0:function(e,t,n){var r,i,o;i="undefined"!=typeof window?window:this,o=function(n,i){var o=[],u=n.document,s=o.slice,a=o.concat,c=o.push,l=o.indexOf,f={},d=f.toString,p=f.hasOwnProperty,h={},g=function(e,t){return new g.fn.init(e,t)},v=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,m=/^-ms-/,y=/-([\da-z])/gi,x=function(e,t){return t.toUpperCase()};function b(e){var t=!!e&&"length"in e&&e.length,n=g.type(e);return"function"!==n&&!g.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}g.fn=g.prototype={jquery:"2.2.4",constructor:g,selector:"",length:0,toArray:function(){return s.call(this)},get:function(e){return null!=e?e<0?this[e+this.length]:this[e]:s.call(this)},pushStack:function(e){var t=g.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e){return g.each(this,e)},map:function(e){return this.pushStack(g.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:c,sort:o.sort,splice:o.splice},g.extend=g.fn.extend=function(){var e,t,n,r,i,o,u=arguments[0]||{},s=1,a=arguments.length,c=!1;for("boolean"==typeof u&&(c=u,u=arguments[s]||{},s++),"object"==typeof u||g.isFunction(u)||(u={}),s===a&&(u=this,s--);s<a;s++)if(null!=(e=arguments[s]))for(t in e)n=u[t],u!==(r=e[t])&&(c&&r&&(g.isPlainObject(r)||(i=g.isArray(r)))?(i?(i=!1,o=n&&g.isArray(n)?n:[]):o=n&&g.isPlainObject(n)?n:{},u[t]=g.extend(c,o,r)):void 0!==r&&(u[t]=r));return u},g.extend({expando:"jQuery"+("2.2.4"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===g.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){var t=e&&e.toString();return!g.isArray(e)&&t-parseFloat(t)+1>=0},isPlainObject:function(e){var t;if("object"!==g.type(e)||e.nodeType||g.isWindow(e))return!1;if(e.constructor&&!p.call(e,"constructor")&&!p.call(e.constructor.prototype||{},"isPrototypeOf"))return!1;for(t in e);return void 0===t||p.call(e,t)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?f[d.call(e)]||"object":typeof e},globalEval:function(e){var t,n=eval;(e=g.trim(e))&&(1===e.indexOf("use strict")?((t=u.createElement("script")).text=e,u.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(m,"ms-").replace(y,x)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t){var n,r=0;if(b(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(v,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(b(Object(e))?g.merge(n,"string"==typeof e?[e]:e):c.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:l.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,u=!n;i<o;i++)!t(e[i],i)!==u&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,u=[];if(b(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&u.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&u.push(i);return a.apply([],u)},guid:1,proxy:function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),g.isFunction(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||g.guid++,i},now:Date.now,support:h}),"function"==typeof Symbol&&(g.fn[Symbol.iterator]=o[Symbol.iterator]),g.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),(function(e,t){f["[object "+t+"]"]=t.toLowerCase()}));var w=function(e){var t,n,r,i,o,u,s,a,c,l,f,d,p,h,g,v,m,y,x,b="sizzle"+1*new Date,w=e.document,T=0,S=0,E=ie(),N=ie(),C=ie(),_=function(e,t){return e===t&&(f=!0),0},O={}.hasOwnProperty,D=[],j=D.pop,A=D.push,k=D.push,P=D.slice,R=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",q="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",F="\\["+q+"*("+I+")(?:"+q+"*([*^$|!~]?=)"+q+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+q+"*\\]",H=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+F+")*)|.*)\\)|)",M=new RegExp(q+"+","g"),U=new RegExp("^"+q+"+|((?:^|[^\\\\])(?:\\\\.)*)"+q+"+$","g"),W=new RegExp("^"+q+"*,"+q+"*"),B=new RegExp("^"+q+"*([>+~]|"+q+")"+q+"*"),$=new RegExp("="+q+"*([^\\]'\"]*?)"+q+"*\\]","g"),V=new RegExp(H),X=new RegExp("^"+I+"$"),z={"ID":new RegExp("^#("+I+")"),"CLASS":new RegExp("^\\.("+I+")"),"TAG":new RegExp("^("+I+"|[*])"),"ATTR":new RegExp("^"+F),"PSEUDO":new RegExp("^"+H),"CHILD":new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+q+"*(even|odd|(([+-]|)(\\d*)n|)"+q+"*(?:([+-]|)"+q+"*(\\d+)|))"+q+"*\\)|)","i"),"bool":new RegExp("^(?:"+L+")$","i"),"needsContext":new RegExp("^"+q+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+q+"*((?:-\\d)?\\d*)"+q+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Q=/[+~]/,Z=/'|\\/g,ee=new RegExp("\\\\([\\da-f]{1,6}"+q+"?|("+q+")|.)","ig"),te=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},ne=function(){d()};try{k.apply(D=P.call(w.childNodes),w.childNodes),D[w.childNodes.length].nodeType}catch(e){k={apply:D.length?function(e,t){A.apply(e,P.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function re(e,t,r,i){var o,s,c,l,f,h,m,y,T=t&&t.ownerDocument,S=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==S&&9!==S&&11!==S)return r;if(!i&&((t?t.ownerDocument||t:w)!==p&&d(t),t=t||p,g)){if(11!==S&&(h=J.exec(e)))if(o=h[1]){if(9===S){if(!(c=t.getElementById(o)))return r;if(c.id===o)return r.push(c),r}else if(T&&(c=T.getElementById(o))&&x(t,c)&&c.id===o)return r.push(c),r}else{if(h[2])return k.apply(r,t.getElementsByTagName(e)),r;if((o=h[3])&&n.getElementsByClassName&&t.getElementsByClassName)return k.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!C[e+" "]&&(!v||!v.test(e))){if(1!==S)T=t,y=e;else if("object"!==t.nodeName.toLowerCase()){for((l=t.getAttribute("id"))?l=l.replace(Z,"\\$&"):t.setAttribute("id",l=b),s=(m=u(e)).length,f=X.test(l)?"#"+l:"[id='"+l+"']";s--;)m[s]=f+" "+he(m[s]);y=m.join(","),T=Q.test(e)&&de(t.parentNode)||t}if(y)try{return k.apply(r,T.querySelectorAll(y)),r}catch(e){}finally{l===b&&t.removeAttribute("id")}}}return a(e.replace(U,"$1"),t,r,i)}function ie(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function oe(e){return e[b]=!0,e}function ue(e){var t=p.createElement("div");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function se(e,t){for(var n=e.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=t}function ae(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||1<<31)-(~e.sourceIndex||1<<31);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function ce(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function le(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function fe(e){return oe((function(t){return t=+t,oe((function(n,r){for(var i,o=e([],n.length,t),u=o.length;u--;)n[i=o[u]]&&(n[i]=!(r[i]=n[i]))}))}))}function de(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=re.support={},o=re.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},d=re.setDocument=function(e){var t,i,u=e?e.ownerDocument||e:w;return u!==p&&9===u.nodeType&&u.documentElement?(h=(p=u).documentElement,g=!o(p),(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",ne,!1):i.attachEvent&&i.attachEvent("onunload",ne)),n.attributes=ue((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ue((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=K.test(p.getElementsByClassName),n.getById=ue((function(e){return h.appendChild(e).id=b,!p.getElementsByName||!p.getElementsByName(b).length})),n.getById?(r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}},r.filter.ID=function(e){var t=e.replace(ee,te);return function(e){return e.getAttribute("id")===t}}):(delete r.find.ID,r.filter.ID=function(e){var t=e.replace(ee,te);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},m=[],v=[],(n.qsa=K.test(p.querySelectorAll))&&(ue((function(e){h.appendChild(e).innerHTML="<a id='"+b+"'></a><select id='"+b+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+q+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+q+"*(?:value|"+L+")"),e.querySelectorAll("[id~="+b+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||v.push(".#.+[+~]")})),ue((function(e){var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+q+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")}))),(n.matchesSelector=K.test(y=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue((function(e){n.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",H)})),v=v.length&&new RegExp(v.join("|")),m=m.length&&new RegExp(m.join("|")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},_=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===p||e.ownerDocument===w&&x(w,e)?-1:t===p||t.ownerDocument===w&&x(w,t)?1:l?R(l,e)-R(l,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,u=[e],s=[t];if(!i||!o)return e===p?-1:t===p?1:i?-1:o?1:l?R(l,e)-R(l,t):0;if(i===o)return ae(e,t);for(n=e;n=n.parentNode;)u.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;u[r]===s[r];)r++;return r?ae(u[r],s[r]):u[r]===w?-1:s[r]===w?1:0},p):p},re.matches=function(e,t){return re(e,null,null,t)},re.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&d(e),t=t.replace($,"='$1']"),n.matchesSelector&&g&&!C[t+" "]&&(!m||!m.test(t))&&(!v||!v.test(t)))try{var r=y.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return re(t,p,null,[e]).length>0},re.contains=function(e,t){return(e.ownerDocument||e)!==p&&d(e),x(e,t)},re.attr=function(e,t){(e.ownerDocument||e)!==p&&d(e);var i=r.attrHandle[t.toLowerCase()],o=i&&O.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},re.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},re.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(_),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return l=null,e},i=re.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=re.selectors={cacheLength:50,createPseudo:oe,match:z,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{"ATTR":function(e){return e[1]=e[1].replace(ee,te),e[3]=(e[3]||e[4]||e[5]||"").replace(ee,te),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},"CHILD":function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||re.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&re.error(e[0]),e},"PSEUDO":function(e){var t,n=!e[6]&&e[2];return z.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=u(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{"TAG":function(e){var t=e.replace(ee,te).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},"CLASS":function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+q+")"+e+"("+q+"|$)"))&&E(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")}))},"ATTR":function(e,t,n){return function(r){var i=re.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(M," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},"CHILD":function(e,t,n,r,i){var o="nth"!==e.slice(0,3),u="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,a){var c,l,f,d,p,h,g=o!==u?"nextSibling":"previousSibling",v=t.parentNode,m=s&&t.nodeName.toLowerCase(),y=!a&&!s,x=!1;if(v){if(o){for(;g;){for(d=t;d=d[g];)if(s?d.nodeName.toLowerCase()===m:1===d.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[u?v.firstChild:v.lastChild],u&&y){for(x=(p=(c=(l=(f=(d=v)[b]||(d[b]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===T&&c[1])&&c[2],d=p&&v.childNodes[p];d=++p&&d&&d[g]||(x=p=0)||h.pop();)if(1===d.nodeType&&++x&&d===t){l[e]=[T,p,x];break}}else if(y&&(x=p=(c=(l=(f=(d=t)[b]||(d[b]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===T&&c[1]),!1===x)for(;(d=++p&&d&&d[g]||(x=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==m:1!==d.nodeType)||!++x||(y&&((l=(f=d[b]||(d[b]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]=[T,x]),d!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},"PSEUDO":function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||re.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?oe((function(e,n){for(var r,o=i(e,t),u=o.length;u--;)e[r=R(e,o[u])]=!(n[r]=o[u])})):function(e){return i(e,0,n)}):i}},pseudos:{"not":oe((function(e){var t=[],n=[],r=s(e.replace(U,"$1"));return r[b]?oe((function(e,t,n,i){for(var o,u=r(e,null,i,[]),s=e.length;s--;)(o=u[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),"has":oe((function(e){return function(t){return re(e,t).length>0}})),"contains":oe((function(e){return e=e.replace(ee,te),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}})),"lang":oe((function(e){return X.test(e||"")||re.error("unsupported lang: "+e),e=e.replace(ee,te).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),"target":function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},"root":function(e){return e===h},"focus":function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},"enabled":function(e){return!1===e.disabled},"disabled":function(e){return!0===e.disabled},"checked":function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},"selected":function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},"empty":function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},"parent":function(e){return!r.pseudos.empty(e)},"header":function(e){return G.test(e.nodeName)},"input":function(e){return Y.test(e.nodeName)},"button":function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},"text":function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},"first":fe((function(){return[0]})),"last":fe((function(e,t){return[t-1]})),"eq":fe((function(e,t,n){return[n<0?n+t:n]})),"even":fe((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),"odd":fe((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),"lt":fe((function(e,t,n){for(var r=n<0?n+t:n;--r>=0;)e.push(r);return e})),"gt":fe((function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e}))}}).pseudos.nth=r.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=ce(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=le(t);function pe(){}function he(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function ge(e,t,n){var r=t.dir,i=n&&"parentNode"===r,o=S++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||i)return e(t,n,o)}:function(t,n,u){var s,a,c,l=[T,o];if(u){for(;t=t[r];)if((1===t.nodeType||i)&&e(t,n,u))return!0}else for(;t=t[r];)if(1===t.nodeType||i){if((s=(a=(c=t[b]||(t[b]={}))[t.uniqueID]||(c[t.uniqueID]={}))[r])&&s[0]===T&&s[1]===o)return l[2]=s[2];if(a[r]=l,l[2]=e(t,n,u))return!0}}}function ve(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function me(e,t,n,r,i){for(var o,u=[],s=0,a=e.length,c=null!=t;s<a;s++)(o=e[s])&&(n&&!n(o,r,i)||(u.push(o),c&&t.push(s)));return u}function ye(e,t,n,r,i,o){return r&&!r[b]&&(r=ye(r)),i&&!i[b]&&(i=ye(i,o)),oe((function(o,u,s,a){var c,l,f,d=[],p=[],h=u.length,g=o||function(e,t,n){for(var r=0,i=t.length;r<i;r++)re(e,t[r],n);return n}(t||"*",s.nodeType?[s]:s,[]),v=!e||!o&&t?g:me(g,d,e,s,a),m=n?i||(o?e:h||r)?[]:u:v;if(n&&n(v,m,s,a),r)for(c=me(m,p),r(c,[],s,a),l=c.length;l--;)(f=c[l])&&(m[p[l]]=!(v[p[l]]=f));if(o){if(i||e){if(i){for(c=[],l=m.length;l--;)(f=m[l])&&c.push(v[l]=f);i(null,m=[],c,a)}for(l=m.length;l--;)(f=m[l])&&(c=i?R(o,f):d[l])>-1&&(o[c]=!(u[c]=f))}}else m=me(m===u?m.splice(h,m.length):m),i?i(null,u,m,a):k.apply(u,m)}))}function xe(e){for(var t,n,i,o=e.length,u=r.relative[e[0].type],s=u||r.relative[" "],a=u?1:0,l=ge((function(e){return e===t}),s,!0),f=ge((function(e){return R(t,e)>-1}),s,!0),d=[function(e,n,r){var i=!u&&(r||n!==c)||((t=n).nodeType?l(e,n,r):f(e,n,r));return t=null,i}];a<o;a++)if(n=r.relative[e[a].type])d=[ge(ve(d),n)];else{if((n=r.filter[e[a].type].apply(null,e[a].matches))[b]){for(i=++a;i<o&&!r.relative[e[i].type];i++);return ye(a>1&&ve(d),a>1&&he(e.slice(0,a-1).concat({value:" "===e[a-2].type?"*":""})).replace(U,"$1"),n,a<i&&xe(e.slice(a,i)),i<o&&xe(e=e.slice(i)),i<o&&he(e))}d.push(n)}return ve(d)}return pe.prototype=r.filters=r.pseudos,r.setFilters=new pe,u=re.tokenize=function(e,t){var n,i,o,u,s,a,c,l=N[e+" "];if(l)return t?0:l.slice(0);for(s=e,a=[],c=r.preFilter;s;){for(u in n&&!(i=W.exec(s))||(i&&(s=s.slice(i[0].length)||s),a.push(o=[])),n=!1,(i=B.exec(s))&&(n=i.shift(),o.push({value:n,type:i[0].replace(U," ")}),s=s.slice(n.length)),r.filter)!(i=z[u].exec(s))||c[u]&&!(i=c[u](i))||(n=i.shift(),o.push({value:n,type:u,matches:i}),s=s.slice(n.length));if(!n)break}return t?s.length:s?re.error(e):N(e,a).slice(0)},s=re.compile=function(e,t){var n,i=[],o=[],s=C[e+" "];if(!s){for(t||(t=u(e)),n=t.length;n--;)(s=xe(t[n]))[b]?i.push(s):o.push(s);(s=C(e,function(e,t){var n=t.length>0,i=e.length>0,o=function(o,u,s,a,l){var f,h,v,m=0,y="0",x=o&&[],b=[],w=c,S=o||i&&r.find.TAG("*",l),E=T+=null==w?1:Math.random()||.1,N=S.length;for(l&&(c=u===p||u||l);y!==N&&null!=(f=S[y]);y++){if(i&&f){for(h=0,u||f.ownerDocument===p||(d(f),s=!g);v=e[h++];)if(v(f,u||p,s)){a.push(f);break}l&&(T=E)}n&&((f=!v&&f)&&m--,o&&x.push(f))}if(m+=y,n&&y!==m){for(h=0;v=t[h++];)v(x,b,u,s);if(o){if(m>0)for(;y--;)x[y]||b[y]||(b[y]=j.call(a));b=me(b)}k.apply(a,b),l&&!o&&b.length>0&&m+t.length>1&&re.uniqueSort(a)}return l&&(T=E,c=w),x};return n?oe(o):o}(o,i))).selector=e}return s},a=re.select=function(e,t,i,o){var a,c,l,f,d,p="function"==typeof e&&e,h=!o&&u(e=p.selector||e);if(i=i||[],1===h.length){if((c=h[0]=h[0].slice(0)).length>2&&"ID"===(l=c[0]).type&&n.getById&&9===t.nodeType&&g&&r.relative[c[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(ee,te),t)||[])[0]))return i;p&&(t=t.parentNode),e=e.slice(c.shift().value.length)}for(a=z.needsContext.test(e)?0:c.length;a--&&(l=c[a],!r.relative[f=l.type]);)if((d=r.find[f])&&(o=d(l.matches[0].replace(ee,te),Q.test(c[0].type)&&de(t.parentNode)||t))){if(c.splice(a,1),!(e=o.length&&he(c)))return k.apply(i,o),i;break}}return(p||s(e,h))(o,t,!g,i,!t||Q.test(e)&&de(t.parentNode)||t),i},n.sortStable=b.split("").sort(_).join("")===b,n.detectDuplicates=!!f,d(),n.sortDetached=ue((function(e){return 1&e.compareDocumentPosition(p.createElement("div"))})),ue((function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")}))||se("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ue((function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||se("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ue((function(e){return null==e.getAttribute("disabled")}))||se(L,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),re}(n);g.find=w,g.expr=w.selectors,g.expr[":"]=g.expr.pseudos,g.uniqueSort=g.unique=w.uniqueSort,g.text=w.getText,g.isXMLDoc=w.isXML,g.contains=w.contains;var T=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&g(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},E=g.expr.match.needsContext,N=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,C=/^.[^:#\[\.,]*$/;function _(e,t,n){if(g.isFunction(t))return g.grep(e,(function(e,r){return!!t.call(e,r,e)!==n}));if(t.nodeType)return g.grep(e,(function(e){return e===t!==n}));if("string"==typeof t){if(C.test(t))return g.filter(t,e,n);t=g.filter(t,e)}return g.grep(e,(function(e){return l.call(t,e)>-1!==n}))}g.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?g.find.matchesSelector(r,e)?[r]:[]:g.find.matches(e,g.grep(t,(function(e){return 1===e.nodeType})))},g.fn.extend({find:function(e){var t,n=this.length,r=[],i=this;if("string"!=typeof e)return this.pushStack(g(e).filter((function(){for(t=0;t<n;t++)if(g.contains(i[t],this))return!0})));for(t=0;t<n;t++)g.find(e,i[t],r);return(r=this.pushStack(n>1?g.unique(r):r)).selector=this.selector?this.selector+" "+e:e,r},filter:function(e){return this.pushStack(_(this,e||[],!1))},not:function(e){return this.pushStack(_(this,e||[],!0))},is:function(e){return!!_(this,"string"==typeof e&&E.test(e)?g(e):e||[],!1).length}});var O,D=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;(g.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||O,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:D.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof g?t[0]:t,g.merge(this,g.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:u,!0)),N.test(r[1])&&g.isPlainObject(t))for(r in t)g.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=u.getElementById(r[2]))&&i.parentNode&&(this.length=1,this[0]=i),this.context=u,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):g.isFunction(e)?void 0!==n.ready?n.ready(e):e(g):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),g.makeArray(e,this))}).prototype=g.fn,O=g(u);var j=/^(?:parents|prev(?:Until|All))/,A={children:!0,contents:!0,next:!0,prev:!0};function k(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}g.fn.extend({has:function(e){var t=g(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(g.contains(this,t[e]))return!0}))},closest:function(e,t){for(var n,r=0,i=this.length,o=[],u=E.test(e)||"string"!=typeof e?g(e,t||this.context):0;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(u?u.index(n)>-1:1===n.nodeType&&g.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?g.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?l.call(g(e),this[0]):l.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(g.uniqueSort(g.merge(this.get(),g(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),g.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return k(e,"nextSibling")},prev:function(e){return k(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return e.contentDocument||g.merge([],e.childNodes)}},(function(e,t){g.fn[e]=function(n,r){var i=g.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=g.filter(r,i)),this.length>1&&(A[e]||g.uniqueSort(i),j.test(e)&&i.reverse()),this.pushStack(i)}}));var P,R=/\S+/g;function L(){u.removeEventListener("DOMContentLoaded",L),n.removeEventListener("load",L),g.ready()}g.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return g.each(e.match(R)||[],(function(e,n){t[n]=!0})),t}(e):g.extend({},e);var t,n,r,i,o=[],u=[],s=-1,a=function(){for(i=e.once,r=t=!0;u.length;s=-1)for(n=u.shift();++s<o.length;)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},c={add:function(){return o&&(n&&!t&&(s=o.length-1,u.push(n)),function t(n){g.each(n,(function(n,r){g.isFunction(r)?e.unique&&c.has(r)||o.push(r):r&&r.length&&"string"!==g.type(r)&&t(r)}))}(arguments),n&&!t&&a()),this},remove:function(){return g.each(arguments,(function(e,t){for(var n;(n=g.inArray(t,o,n))>-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?g.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=u=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=u=[],n||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],u.push(n),t||a()),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!r}};return c},g.extend({Deferred:function(e){var t=[["resolve","done",g.Callbacks("once memory"),"resolved"],["reject","fail",g.Callbacks("once memory"),"rejected"],["notify","progress",g.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return g.Deferred((function(n){g.each(t,(function(t,o){var u=g.isFunction(e[t])&&e[t];i[o[1]]((function(){var e=u&&u.apply(this,arguments);e&&g.isFunction(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[o[0]+"With"](this===r?n.promise():this,u?[e]:arguments)}))})),e=null})).promise()},promise:function(e){return null!=e?g.extend(e,r):r}},i={};return r.pipe=r.then,g.each(t,(function(e,o){var u=o[2],s=o[3];r[o[1]]=u.add,s&&u.add((function(){n=s}),t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=u.fireWith})),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=s.call(arguments),u=o.length,a=1!==u||e&&g.isFunction(e.promise)?u:0,c=1===a?e:g.Deferred(),l=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?s.call(arguments):i,r===t?c.notifyWith(n,r):--a||c.resolveWith(n,r)}};if(u>1)for(t=new Array(u),n=new Array(u),r=new Array(u);i<u;i++)o[i]&&g.isFunction(o[i].promise)?o[i].promise().progress(l(i,n,t)).done(l(i,r,o)).fail(c.reject):--a;return a||c.resolveWith(r,o),c.promise()}}),g.fn.ready=function(e){return g.ready.promise().done(e),this},g.extend({isReady:!1,readyWait:1,holdReady:function(e){e?g.readyWait++:g.ready(!0)},ready:function(e){(!0===e?--g.readyWait:g.isReady)||(g.isReady=!0,!0!==e&&--g.readyWait>0||(P.resolveWith(u,[g]),g.fn.triggerHandler&&(g(u).triggerHandler("ready"),g(u).off("ready"))))}}),g.ready.promise=function(e){return P||(P=g.Deferred(),"complete"===u.readyState||"loading"!==u.readyState&&!u.documentElement.doScroll?n.setTimeout(g.ready):(u.addEventListener("DOMContentLoaded",L),n.addEventListener("load",L))),P.promise(e)},g.ready.promise();var q=function(e,t,n,r,i,o,u){var s=0,a=e.length,c=null==n;if("object"===g.type(n))for(s in i=!0,n)q(e,t,s,n[s],!0,o,u);else if(void 0!==r&&(i=!0,g.isFunction(r)||(u=!0),c&&(u?(t.call(e,r),t=null):(c=t,t=function(e,t,n){return c.call(g(e),n)})),t))for(;s<a;s++)t(e[s],n,u?r:r.call(e[s],s,t(e[s],n)));return i?e:c?t.call(e):a?t(e[0],n):o},I=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function F(){this.expando=g.expando+F.uid++}F.uid=1,F.prototype={register:function(e,t){var n=t||{};return e.nodeType?e[this.expando]=n:Object.defineProperty(e,this.expando,{value:n,writable:!0,configurable:!0}),e[this.expando]},cache:function(e){if(!I(e))return{};var t=e[this.expando];return t||(t={},I(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[t]=n;else for(r in t)i[r]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][t]},access:function(e,t,n){var r;return void 0===t||t&&"string"==typeof t&&void 0===n?void 0!==(r=this.get(e,t))?r:this.get(e,g.camelCase(t)):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r,i,o=e[this.expando];if(void 0!==o){if(void 0===t)this.register(e);else{g.isArray(t)?r=t.concat(t.map(g.camelCase)):(i=g.camelCase(t),r=t in o?[t,i]:(r=i)in o?[r]:r.match(R)||[]),n=r.length;for(;n--;)delete o[r[n]]}(void 0===t||g.isEmptyObject(o))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!g.isEmptyObject(t)}};var H=new F,M=new F,U=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,W=/[A-Z]/g;function B(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(W,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===n||"false"!==n&&("null"===n?null:+n+""===n?+n:U.test(n)?g.parseJSON(n):n)}catch(e){}M.set(e,t,n)}else n=void 0;return n}g.extend({hasData:function(e){return M.hasData(e)||H.hasData(e)},data:function(e,t,n){return M.access(e,t,n)},removeData:function(e,t){M.remove(e,t)},_data:function(e,t,n){return H.access(e,t,n)},_removeData:function(e,t){H.remove(e,t)}}),g.fn.extend({data:function(e,t){var n,r,i,o=this[0],u=o&&o.attributes;if(void 0===e){if(this.length&&(i=M.get(o),1===o.nodeType&&!H.get(o,"hasDataAttrs"))){for(n=u.length;n--;)u[n]&&0===(r=u[n].name).indexOf("data-")&&(r=g.camelCase(r.slice(5)),B(o,r,i[r]));H.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each((function(){M.set(this,e)})):q(this,(function(t){var n,r;if(o&&void 0===t)return void 0!==(n=M.get(o,e)||M.get(o,e.replace(W,"-$&").toLowerCase()))?n:(r=g.camelCase(e),void 0!==(n=M.get(o,r))||void 0!==(n=B(o,r,void 0))?n:void 0);r=g.camelCase(e),this.each((function(){var n=M.get(this,r);M.set(this,r,t),e.indexOf("-")>-1&&void 0!==n&&M.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){M.remove(this,e)}))}}),g.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=H.get(e,t),n&&(!r||g.isArray(n)?r=H.access(e,t,g.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=g.queue(e,t),r=n.length,i=n.shift(),o=g._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){g.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return H.get(e,n)||H.access(e,n,{empty:g.Callbacks("once memory").add((function(){H.remove(e,[t+"queue",n])}))})}}),g.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?g.queue(this[0],e):void 0===t?this:this.each((function(){var n=g.queue(this,e,t);g._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&g.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){g.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=g.Deferred(),o=this,u=this.length,s=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";u--;)(n=H.get(o[u],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var $=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,V=new RegExp("^(?:([+-])=|)("+$+")([a-z%]*)$","i"),X=["Top","Right","Bottom","Left"],z=function(e,t){return e=t||e,"none"===g.css(e,"display")||!g.contains(e.ownerDocument,e)};function Y(e,t,n,r){var i,o=1,u=20,s=r?function(){return r.cur()}:function(){return g.css(e,t,"")},a=s(),c=n&&n[3]||(g.cssNumber[t]?"":"px"),l=(g.cssNumber[t]||"px"!==c&&+a)&&V.exec(g.css(e,t));if(l&&l[3]!==c){c=c||l[3],n=n||[],l=+a||1;do{l/=o=o||".5",g.style(e,t,l+c)}while(o!==(o=s()/a)&&1!==o&&--u)}return n&&(l=+l||+a||0,i=n[1]?l+(n[1]+1)*n[2]:+n[2],r&&(r.unit=c,r.start=l,r.end=i)),i}var G=/^(?:checkbox|radio)$/i,K=/<([\w:-]+)/,J=/^$|\/(?:java|ecma)script/i,Q={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,"",""]};function Z(e,t){var n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[];return void 0===t||t&&g.nodeName(e,t)?g.merge([e],n):n}function ee(e,t){for(var n=0,r=e.length;n<r;n++)H.set(e[n],"globalEval",!t||H.get(t[n],"globalEval"))}Q.optgroup=Q.option,Q.tbody=Q.tfoot=Q.colgroup=Q.caption=Q.thead,Q.th=Q.td;var te,ne,re=/<|&#?\w+;/;function ie(e,t,n,r,i){for(var o,u,s,a,c,l,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p<h;p++)if((o=e[p])||0===o)if("object"===g.type(o))g.merge(d,o.nodeType?[o]:o);else if(re.test(o)){for(u=u||f.appendChild(t.createElement("div")),s=(K.exec(o)||["",""])[1].toLowerCase(),a=Q[s]||Q._default,u.innerHTML=a[1]+g.htmlPrefilter(o)+a[2],l=a[0];l--;)u=u.lastChild;g.merge(d,u.childNodes),(u=f.firstChild).textContent=""}else d.push(t.createTextNode(o));for(f.textContent="",p=0;o=d[p++];)if(r&&g.inArray(o,r)>-1)i&&i.push(o);else if(c=g.contains(o.ownerDocument,o),u=Z(f.appendChild(o),"script"),c&&ee(u),n)for(l=0;o=u[l++];)J.test(o.type||"")&&n.push(o);return f}te=u.createDocumentFragment().appendChild(u.createElement("div")),(ne=u.createElement("input")).setAttribute("type","radio"),ne.setAttribute("checked","checked"),ne.setAttribute("name","t"),te.appendChild(ne),h.checkClone=te.cloneNode(!0).cloneNode(!0).lastChild.checked,te.innerHTML="<textarea>x</textarea>",h.noCloneChecked=!!te.cloneNode(!0).lastChild.defaultValue;var oe=/^key/,ue=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,se=/^([^.]*)(?:\.(.+)|)/;function ae(){return!0}function ce(){return!1}function le(){try{return u.activeElement}catch(e){}}function fe(e,t,n,r,i,o){var u,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)fe(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ce;else if(!i)return e;return 1===o&&(u=i,(i=function(e){return g().off(e),u.apply(this,arguments)}).guid=u.guid||(u.guid=g.guid++)),e.each((function(){g.event.add(this,t,i,r,n)}))}g.event={global:{},add:function(e,t,n,r,i){var o,u,s,a,c,l,f,d,p,h,v,m=H.get(e);if(m)for(n.handler&&(n=(o=n).handler,i=o.selector),n.guid||(n.guid=g.guid++),(a=m.events)||(a=m.events={}),(u=m.handle)||(u=m.handle=function(t){return void 0!==g&&g.event.triggered!==t.type?g.event.dispatch.apply(e,arguments):void 0}),c=(t=(t||"").match(R)||[""]).length;c--;)p=v=(s=se.exec(t[c])||[])[1],h=(s[2]||"").split(".").sort(),p&&(f=g.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=g.event.special[p]||{},l=g.extend({type:p,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&g.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=a[p])||((d=a[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,u)||e.addEventListener&&e.addEventListener(p,u)),f.add&&(f.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,l):d.push(l),g.event.global[p]=!0)},remove:function(e,t,n,r,i){var o,u,s,a,c,l,f,d,p,h,v,m=H.hasData(e)&&H.get(e);if(m&&(a=m.events)){for(c=(t=(t||"").match(R)||[""]).length;c--;)if(p=v=(s=se.exec(t[c])||[])[1],h=(s[2]||"").split(".").sort(),p){for(f=g.event.special[p]||{},d=a[p=(r?f.delegateType:f.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=d.length;o--;)l=d[o],!i&&v!==l.origType||n&&n.guid!==l.guid||s&&!s.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(d.splice(o,1),l.selector&&d.delegateCount--,f.remove&&f.remove.call(e,l));u&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,h,m.handle)||g.removeEvent(e,p,m.handle),delete a[p])}else for(p in a)g.event.remove(e,p+t[c],n,r,!0);g.isEmptyObject(a)&&H.remove(e,"handle events")}},dispatch:function(e){e=g.event.fix(e);var t,n,r,i,o,u=[],a=s.call(arguments),c=(H.get(this,"events")||{})[e.type]||[],l=g.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||!1!==l.preDispatch.call(this,e)){for(u=g.event.handlers.call(this,e,c),t=0;(i=u[t++])&&!e.isPropagationStopped();)for(e.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!e.isImmediatePropagationStopped();)e.rnamespace&&!e.rnamespace.test(o.namespace)||(e.handleObj=o,e.data=o.data,void 0!==(r=((g.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a))&&!1===(e.result=r)&&(e.preventDefault(),e.stopPropagation()));return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,u=[],s=t.delegateCount,a=e.target;if(s&&a.nodeType&&("click"!==e.type||isNaN(e.button)||e.button<1))for(;a!==this;a=a.parentNode||this)if(1===a.nodeType&&(!0!==a.disabled||"click"!==e.type)){for(r=[],n=0;n<s;n++)void 0===r[i=(o=t[n]).selector+" "]&&(r[i]=o.needsContext?g(i,this).index(a)>-1:g.find(i,this,null,[a]).length),r[i]&&r.push(o);r.length&&u.push({elem:a,handlers:r})}return s<t.length&&u.push({elem:this,handlers:t.slice(s)}),u},props:"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,o=t.button;return null==e.pageX&&null!=t.clientX&&(r=(n=e.target.ownerDocument||u).documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||void 0===o||(e.which=1&o?1:2&o?3:4&o?2:0),e}},fix:function(e){if(e[g.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];for(s||(this.fixHooks[i]=s=ue.test(i)?this.mouseHooks:oe.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new g.Event(o),t=r.length;t--;)e[n=r[t]]=o[n];return e.target||(e.target=u),3===e.target.nodeType&&(e.target=e.target.parentNode),s.filter?s.filter(e,o):e},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==le()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===le()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&g.nodeName(this,"input"))return this.click(),!1},_default:function(e){return g.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},g.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},g.Event=function(e,t){if(!(this instanceof g.Event))return new g.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ae:ce):this.type=e,t&&g.extend(this,t),this.timeStamp=e&&e.timeStamp||g.now(),this[g.expando]=!0},g.Event.prototype={constructor:g.Event,isDefaultPrevented:ce,isPropagationStopped:ce,isImmediatePropagationStopped:ce,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ae,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ae,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ae,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},g.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},(function(e,t){g.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||g.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}})),g.fn.extend({on:function(e,t,n,r){return fe(this,e,t,n,r)},one:function(e,t,n,r){return fe(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,g(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=ce),this.each((function(){g.event.remove(this,e,n,t)}))}});var de=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,pe=/<script|<style|<link/i,he=/checked\s*(?:[^=]|=\s*.checked.)/i,ge=/^true\/(.*)/,ve=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function me(e,t){return g.nodeName(e,"table")&&g.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ye(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function xe(e){var t=ge.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function be(e,t){var n,r,i,o,u,s,a,c;if(1===t.nodeType){if(H.hasData(e)&&(o=H.access(e),u=H.set(t,o),c=o.events))for(i in delete u.handle,u.events={},c)for(n=0,r=c[i].length;n<r;n++)g.event.add(t,i,c[i][n]);M.hasData(e)&&(s=M.access(e),a=g.extend({},s),M.set(t,a))}}function we(e,t,n,r){t=a.apply([],t);var i,o,u,s,c,l,f=0,d=e.length,p=d-1,v=t[0],m=g.isFunction(v);if(m||d>1&&"string"==typeof v&&!h.checkClone&&he.test(v))return e.each((function(i){var o=e.eq(i);m&&(t[0]=v.call(this,i,o.html())),we(o,t,n,r)}));if(d&&(o=(i=ie(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(s=(u=g.map(Z(i,"script"),ye)).length;f<d;f++)c=i,f!==p&&(c=g.clone(c,!0,!0),s&&g.merge(u,Z(c,"script"))),n.call(e[f],c,f);if(s)for(l=u[u.length-1].ownerDocument,g.map(u,xe),f=0;f<s;f++)c=u[f],J.test(c.type||"")&&!H.access(c,"globalEval")&&g.contains(l,c)&&(c.src?g._evalUrl&&g._evalUrl(c.src):g.globalEval(c.textContent.replace(ve,"")))}return e}function Te(e,t,n){for(var r,i=t?g.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||g.cleanData(Z(r)),r.parentNode&&(n&&g.contains(r.ownerDocument,r)&&ee(Z(r,"script")),r.parentNode.removeChild(r));return e}g.extend({htmlPrefilter:function(e){return e.replace(de,"<$1></$2>")},clone:function(e,t,n){var r,i,o,u,s,a,c,l=e.cloneNode(!0),f=g.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||g.isXMLDoc(e)))for(u=Z(l),r=0,i=(o=Z(e)).length;r<i;r++)s=o[r],a=u[r],c=void 0,"input"===(c=a.nodeName.toLowerCase())&&G.test(s.type)?a.checked=s.checked:"input"!==c&&"textarea"!==c||(a.defaultValue=s.defaultValue);if(t)if(n)for(o=o||Z(e),u=u||Z(l),r=0,i=o.length;r<i;r++)be(o[r],u[r]);else be(e,l);return(u=Z(l,"script")).length>0&&ee(u,!f&&Z(e,"script")),l},cleanData:function(e){for(var t,n,r,i=g.event.special,o=0;void 0!==(n=e[o]);o++)if(I(n)){if(t=n[H.expando]){if(t.events)for(r in t.events)i[r]?g.event.remove(n,r):g.removeEvent(n,r,t.handle);n[H.expando]=void 0}n[M.expando]&&(n[M.expando]=void 0)}}}),g.fn.extend({domManip:we,detach:function(e){return Te(this,e,!0)},remove:function(e){return Te(this,e)},text:function(e){return q(this,(function(e){return void 0===e?g.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return we(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||me(this,e).appendChild(e)}))},prepend:function(){return we(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=me(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return we(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return we(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(g.cleanData(Z(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return g.clone(this,e,t)}))},html:function(e){return q(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!pe.test(e)&&!Q[(K.exec(e)||["",""])[1].toLowerCase()]){e=g.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(g.cleanData(Z(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return we(this,arguments,(function(t){var n=this.parentNode;g.inArray(this,e)<0&&(g.cleanData(Z(this)),n&&n.replaceChild(t,this))}),e)}}),g.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},(function(e,t){g.fn[e]=function(e){for(var n,r=[],i=g(e),o=i.length-1,u=0;u<=o;u++)n=u===o?this:this.clone(!0),g(i[u])[t](n),c.apply(r,n.get());return this.pushStack(r)}}));var Se,Ee={HTML:"block",BODY:"block"};function Ne(e,t){var n=g(t.createElement(e)).appendTo(t.body),r=g.css(n[0],"display");return n.detach(),r}function Ce(e){var t=u,n=Ee[e];return n||("none"!==(n=Ne(e,t))&&n||((t=(Se=(Se||g("<iframe frameborder='0' width='0' height='0'/>")).appendTo(t.documentElement))[0].contentDocument).write(),t.close(),n=Ne(e,t),Se.detach()),Ee[e]=n),n}var _e=/^margin/,Oe=new RegExp("^("+$+")(?!px)[a-z%]+$","i"),De=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=n),t.getComputedStyle(e)},je=function(e,t,n,r){var i,o,u={};for(o in t)u[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=u[o];return i},Ae=u.documentElement;function ke(e,t,n){var r,i,o,u,s=e.style;return""!==(u=(n=n||De(e))?n.getPropertyValue(t)||n[t]:void 0)&&void 0!==u||g.contains(e.ownerDocument,e)||(u=g.style(e,t)),n&&!h.pixelMarginRight()&&Oe.test(u)&&_e.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=u,u=n.width,s.width=r,s.minWidth=i,s.maxWidth=o),void 0!==u?u+"":u}function Pe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){var e,t,r,i,o=u.createElement("div"),s=u.createElement("div");function a(){s.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",s.innerHTML="",Ae.appendChild(o);var u=n.getComputedStyle(s);e="1%"!==u.top,i="2px"===u.marginLeft,t="4px"===u.width,s.style.marginRight="50%",r="4px"===u.marginRight,Ae.removeChild(o)}s.style&&(s.style.backgroundClip="content-box",s.cloneNode(!0).style.backgroundClip="",h.clearCloneStyle="content-box"===s.style.backgroundClip,o.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",o.appendChild(s),g.extend(h,{pixelPosition:function(){return a(),e},boxSizingReliable:function(){return null==t&&a(),t},pixelMarginRight:function(){return null==t&&a(),r},reliableMarginLeft:function(){return null==t&&a(),i},reliableMarginRight:function(){var e,t=s.appendChild(u.createElement("div"));return t.style.cssText=s.style.cssText="-webkit-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",t.style.marginRight=t.style.width="0",s.style.width="1px",Ae.appendChild(o),e=!parseFloat(n.getComputedStyle(t).marginRight),Ae.removeChild(o),s.removeChild(t),e}}))}();var Re=/^(none|table(?!-c[ea]).+)/,Le={position:"absolute",visibility:"hidden",display:"block"},qe={letterSpacing:"0",fontWeight:"400"},Ie=["Webkit","O","Moz","ms"],Fe=u.createElement("div").style;function He(e){if(e in Fe)return e;for(var t=e[0].toUpperCase()+e.slice(1),n=Ie.length;n--;)if((e=Ie[n]+t)in Fe)return e}function Me(e,t,n){var r=V.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ue(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,u=0;o<4;o+=2)"margin"===n&&(u+=g.css(e,n+X[o],!0,i)),r?("content"===n&&(u-=g.css(e,"padding"+X[o],!0,i)),"margin"!==n&&(u-=g.css(e,"border"+X[o]+"Width",!0,i))):(u+=g.css(e,"padding"+X[o],!0,i),"padding"!==n&&(u+=g.css(e,"border"+X[o]+"Width",!0,i)));return u}function We(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=De(e),u="border-box"===g.css(e,"boxSizing",!1,o);if(i<=0||null==i){if(((i=ke(e,t,o))<0||null==i)&&(i=e.style[t]),Oe.test(i))return i;r=u&&(h.boxSizingReliable()||i===e.style[t]),i=parseFloat(i)||0}return i+Ue(e,t,n||(u?"border":"content"),r,o)+"px"}function Be(e,t){for(var n,r,i,o=[],u=0,s=e.length;u<s;u++)(r=e[u]).style&&(o[u]=H.get(r,"olddisplay"),n=r.style.display,t?(o[u]||"none"!==n||(r.style.display=""),""===r.style.display&&z(r)&&(o[u]=H.access(r,"olddisplay",Ce(r.nodeName)))):(i=z(r),"none"===n&&i||H.set(r,"olddisplay",i?n:g.css(r,"display"))));for(u=0;u<s;u++)(r=e[u]).style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[u]||"":"none"));return e}function $e(e,t,n,r,i){return new $e.prototype.init(e,t,n,r,i)}g.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=ke(e,"opacity");return""===n?"1":n}}}},cssNumber:{"animationIterationCount":!0,"columnCount":!0,"fillOpacity":!0,"flexGrow":!0,"flexShrink":!0,"fontWeight":!0,"lineHeight":!0,"opacity":!0,"order":!0,"orphans":!0,"widows":!0,"zIndex":!0,"zoom":!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,u,s=g.camelCase(t),a=e.style;if(t=g.cssProps[s]||(g.cssProps[s]=He(s)||s),u=g.cssHooks[t]||g.cssHooks[s],void 0===n)return u&&"get"in u&&void 0!==(i=u.get(e,!1,r))?i:a[t];"string"==(o=typeof n)&&(i=V.exec(n))&&i[1]&&(n=Y(e,t,i),o="number"),null!=n&&n==n&&("number"===o&&(n+=i&&i[3]||(g.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(a[t]="inherit"),u&&"set"in u&&void 0===(n=u.set(e,n,r))||(a[t]=n))}},css:function(e,t,n,r){var i,o,u,s=g.camelCase(t);return t=g.cssProps[s]||(g.cssProps[s]=He(s)||s),(u=g.cssHooks[t]||g.cssHooks[s])&&"get"in u&&(i=u.get(e,!0,n)),void 0===i&&(i=ke(e,t,r)),"normal"===i&&t in qe&&(i=qe[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),g.each(["height","width"],(function(e,t){g.cssHooks[t]={get:function(e,n,r){if(n)return Re.test(g.css(e,"display"))&&0===e.offsetWidth?je(e,Le,(function(){return We(e,t,r)})):We(e,t,r)},set:function(e,n,r){var i,o=r&&De(e),u=r&&Ue(e,t,r,"border-box"===g.css(e,"boxSizing",!1,o),o);return u&&(i=V.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=g.css(e,t)),Me(0,n,u)}}})),g.cssHooks.marginLeft=Pe(h.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(ke(e,"marginLeft"))||e.getBoundingClientRect().left-je(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),g.cssHooks.marginRight=Pe(h.reliableMarginRight,(function(e,t){if(t)return je(e,{"display":"inline-block"},ke,[e,"marginRight"])})),g.each({margin:"",padding:"",border:"Width"},(function(e,t){g.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+X[r]+t]=o[r]||o[r-2]||o[0];return i}},_e.test(e)||(g.cssHooks[e+t].set=Me)})),g.fn.extend({css:function(e,t){return q(this,(function(e,t,n){var r,i,o={},u=0;if(g.isArray(t)){for(r=De(e),i=t.length;u<i;u++)o[t[u]]=g.css(e,t[u],!1,r);return o}return void 0!==n?g.style(e,t,n):g.css(e,t)}),e,t,arguments.length>1)},show:function(){return Be(this,!0)},hide:function(){return Be(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){z(this)?g(this).show():g(this).hide()}))}}),g.Tween=$e,$e.prototype={constructor:$e,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||g.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(g.cssNumber[n]?"":"px")},cur:function(){var e=$e.propHooks[this.prop];return e&&e.get?e.get(this):$e.propHooks._default.get(this)},run:function(e){var t,n=$e.propHooks[this.prop];return this.options.duration?this.pos=t=g.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):$e.propHooks._default.set(this),this}},$e.prototype.init.prototype=$e.prototype,$e.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=g.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){g.fx.step[e.prop]?g.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[g.cssProps[e.prop]]&&!g.cssHooks[e.prop]?e.elem[e.prop]=e.now:g.style(e.elem,e.prop,e.now+e.unit)}}},$e.propHooks.scrollTop=$e.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},g.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},g.fx=$e.prototype.init,g.fx.step={};var Ve,Xe,ze=/^(?:toggle|show|hide)$/,Ye=/queueHooks$/;function Ge(){return n.setTimeout((function(){Ve=void 0})),Ve=g.now()}function Ke(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=X[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function Je(e,t,n){for(var r,i=(Qe.tweeners[t]||[]).concat(Qe.tweeners["*"]),o=0,u=i.length;o<u;o++)if(r=i[o].call(n,t,e))return r}function Qe(e,t,n){var r,i,o=0,u=Qe.prefilters.length,s=g.Deferred().always((function(){delete a.elem})),a=function(){if(i)return!1;for(var t=Ve||Ge(),n=Math.max(0,c.startTime+c.duration-t),r=1-(n/c.duration||0),o=0,u=c.tweens.length;o<u;o++)c.tweens[o].run(r);return s.notifyWith(e,[c,r,n]),r<1&&u?n:(s.resolveWith(e,[c]),!1)},c=s.promise({elem:e,props:g.extend({},t),opts:g.extend(!0,{specialEasing:{},easing:g.easing._default},n),originalProperties:t,originalOptions:n,startTime:Ve||Ge(),duration:n.duration,tweens:[],createTween:function(t,n){var r=g.Tween(e,c.opts,t,n,c.opts.specialEasing[t]||c.opts.easing);return c.tweens.push(r),r},stop:function(t){var n=0,r=t?c.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)c.tweens[n].run(1);return t?(s.notifyWith(e,[c,1,0]),s.resolveWith(e,[c,t])):s.rejectWith(e,[c,t]),this}}),l=c.props;for(function(e,t){var n,r,i,o,u;for(n in e)if(i=t[r=g.camelCase(n)],o=e[n],g.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(u=g.cssHooks[r])&&"expand"in u)for(n in o=u.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(l,c.opts.specialEasing);o<u;o++)if(r=Qe.prefilters[o].call(c,e,l,c.opts))return g.isFunction(r.stop)&&(g._queueHooks(c.elem,c.opts.queue).stop=g.proxy(r.stop,r)),r;return g.map(l,Je,c),g.isFunction(c.opts.start)&&c.opts.start.call(e,c),g.fx.timer(g.extend(a,{elem:e,anim:c,queue:c.opts.queue})),c.progress(c.opts.progress).done(c.opts.done,c.opts.complete).fail(c.opts.fail).always(c.opts.always)}g.Animation=g.extend(Qe,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return Y(n.elem,e,V.exec(t),n),n}]},tweener:function(e,t){g.isFunction(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],Qe.tweeners[n]=Qe.tweeners[n]||[],Qe.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,u,s,a,c,l=this,f={},d=e.style,p=e.nodeType&&z(e),h=H.get(e,"fxshow");for(r in n.queue||(null==(s=g._queueHooks(e,"fx")).unqueued&&(s.unqueued=0,a=s.empty.fire,s.empty.fire=function(){s.unqueued||a()}),s.unqueued++,l.always((function(){l.always((function(){s.unqueued--,g.queue(e,"fx").length||s.empty.fire()}))}))),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===("none"===(c=g.css(e,"display"))?H.get(e,"olddisplay")||Ce(e.nodeName):c)&&"none"===g.css(e,"float")&&(d.display="inline-block")),n.overflow&&(d.overflow="hidden",l.always((function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}))),t)if(i=t[r],ze.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(p?"hide":"show")){if("show"!==i||!h||void 0===h[r])continue;p=!0}f[r]=h&&h[r]||g.style(e,r)}else c=void 0;if(g.isEmptyObject(f))"inline"===("none"===c?Ce(e.nodeName):c)&&(d.display=c);else for(r in h?"hidden"in h&&(p=h.hidden):h=H.access(e,"fxshow",{}),o&&(h.hidden=!p),p?g(e).show():l.done((function(){g(e).hide()})),l.done((function(){var t;for(t in H.remove(e,"fxshow"),f)g.style(e,t,f[t])})),f)u=Je(p?h[r]:0,r,l),r in h||(h[r]=u.start,p&&(u.end=u.start,u.start="width"===r||"height"===r?1:0))}],prefilter:function(e,t){t?Qe.prefilters.unshift(e):Qe.prefilters.push(e)}}),g.speed=function(e,t,n){var r=e&&"object"==typeof e?g.extend({},e):{complete:n||!n&&t||g.isFunction(e)&&e,duration:e,easing:n&&t||t&&!g.isFunction(t)&&t};return r.duration=g.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in g.fx.speeds?g.fx.speeds[r.duration]:g.fx.speeds._default,null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){g.isFunction(r.old)&&r.old.call(this),r.queue&&g.dequeue(this,r.queue)},r},g.fn.extend({fadeTo:function(e,t,n,r){return this.filter(z).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=g.isEmptyObject(e),o=g.speed(t,n,r),u=function(){var t=Qe(this,g.extend({},e),o);(i||H.get(this,"finish"))&&t.stop(!0)};return u.finish=u,i||!1===o.queue?this.each(u):this.queue(o.queue,u)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each((function(){var t=!0,i=null!=e&&e+"queueHooks",o=g.timers,u=H.get(this);if(i)u[i]&&u[i].stop&&r(u[i]);else for(i in u)u[i]&&u[i].stop&&Ye.test(i)&&r(u[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||g.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||"fx"),this.each((function(){var t,n=H.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=g.timers,u=r?r.length:0;for(n.finish=!0,g.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<u;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish}))}}),g.each(["toggle","show","hide"],(function(e,t){var n=g.fn[t];g.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(Ke(t,!0),e,r,i)}})),g.each({slideDown:Ke("show"),slideUp:Ke("hide"),slideToggle:Ke("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},(function(e,t){g.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}})),g.timers=[],g.fx.tick=function(){var e,t=0,n=g.timers;for(Ve=g.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||g.fx.stop(),Ve=void 0},g.fx.timer=function(e){g.timers.push(e),e()?g.fx.start():g.timers.pop()},g.fx.interval=13,g.fx.start=function(){Xe||(Xe=n.setInterval(g.fx.tick,g.fx.interval))},g.fx.stop=function(){n.clearInterval(Xe),Xe=null},g.fx.speeds={slow:600,fast:200,_default:400},g.fn.delay=function(e,t){return e=g.fx&&g.fx.speeds[e]||e,t=t||"fx",this.queue(t,(function(t,r){var i=n.setTimeout(t,e);r.stop=function(){n.clearTimeout(i)}}))},function(){var e=u.createElement("input"),t=u.createElement("select"),n=t.appendChild(u.createElement("option"));e.type="checkbox",h.checkOn=""!==e.value,h.optSelected=n.selected,t.disabled=!0,h.optDisabled=!n.disabled,(e=u.createElement("input")).value="t",e.type="radio",h.radioValue="t"===e.value}();var Ze,et=g.expr.attrHandle;g.fn.extend({attr:function(e,t){return q(this,g.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){g.removeAttr(this,e)}))}}),g.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?g.prop(e,t,n):(1===o&&g.isXMLDoc(e)||(t=t.toLowerCase(),i=g.attrHooks[t]||(g.expr.match.bool.test(t)?Ze:void 0)),void 0!==n?null===n?void g.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=g.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&g.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(R);if(o&&1===e.nodeType)for(;n=o[i++];)r=g.propFix[n]||n,g.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)}}),Ze={set:function(e,t,n){return!1===t?g.removeAttr(e,n):e.setAttribute(n,n),n}},g.each(g.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=et[t]||g.find.attr;et[t]=function(e,t,r){var i,o;return r||(o=et[t],et[t]=i,i=null!=n(e,t,r)?t.toLowerCase():null,et[t]=o),i}}));var tt=/^(?:input|select|textarea|button)$/i,nt=/^(?:a|area)$/i;g.fn.extend({prop:function(e,t){return q(this,g.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[g.propFix[e]||e]}))}}),g.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&g.isXMLDoc(e)||(t=g.propFix[t]||t,i=g.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=g.find.attr(e,"tabindex");return t?parseInt(t,10):tt.test(e.nodeName)||nt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(g.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),g.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){g.propFix[this.toLowerCase()]=this}));var rt=/[\t\r\n\f]/g;function it(e){return e.getAttribute&&e.getAttribute("class")||""}g.fn.extend({addClass:function(e){var t,n,r,i,o,u,s,a=0;if(g.isFunction(e))return this.each((function(t){g(this).addClass(e.call(this,t,it(this)))}));if("string"==typeof e&&e)for(t=e.match(R)||[];n=this[a++];)if(i=it(n),r=1===n.nodeType&&(" "+i+" ").replace(rt," ")){for(u=0;o=t[u++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=g.trim(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,u,s,a=0;if(g.isFunction(e))return this.each((function(t){g(this).removeClass(e.call(this,t,it(this)))}));if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(R)||[];n=this[a++];)if(i=it(n),r=1===n.nodeType&&(" "+i+" ").replace(rt," ")){for(u=0;o=t[u++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=g.trim(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):g.isFunction(e)?this.each((function(n){g(this).toggleClass(e.call(this,n,it(this),t),t)})):this.each((function(){var t,r,i,o;if("string"===n)for(r=0,i=g(this),o=e.match(R)||[];t=o[r++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||((t=it(this))&&H.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":H.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+it(n)+" ").replace(rt," ").indexOf(t)>-1)return!0;return!1}});var ot=/\r/g,ut=/[\x20\t\r\n\f]+/g;g.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=g.isFunction(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,g(this).val()):e)?i="":"number"==typeof i?i+="":g.isArray(i)&&(i=g.map(i,(function(e){return null==e?"":e+""}))),(t=g.valHooks[this.type]||g.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=g.valHooks[i.type]||g.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(ot,""):null==n?"":n:void 0}}),g.extend({valHooks:{option:{get:function(e){var t=g.find.attr(e,"value");return null!=t?t:g.trim(g.text(e)).replace(ut," ")}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||i<0,u=o?null:[],s=o?i+1:r.length,a=i<0?s:o?i:0;a<s;a++)if(((n=r[a]).selected||a===i)&&(h.optDisabled?!n.disabled:null===n.getAttribute("disabled"))&&(!n.parentNode.disabled||!g.nodeName(n.parentNode,"optgroup"))){if(t=g(n).val(),o)return t;u.push(t)}return u},set:function(e,t){for(var n,r,i=e.options,o=g.makeArray(t),u=i.length;u--;)((r=i[u]).selected=g.inArray(g.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),g.each(["radio","checkbox"],(function(){g.valHooks[this]={set:function(e,t){if(g.isArray(t))return e.checked=g.inArray(g(e).val(),t)>-1}},h.checkOn||(g.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}));var st=/^(?:focusinfocus|focusoutblur)$/;g.extend(g.event,{trigger:function(e,t,r,i){var o,s,a,c,l,f,d,h=[r||u],v=p.call(e,"type")?e.type:e,m=p.call(e,"namespace")?e.namespace.split("."):[];if(s=a=r=r||u,3!==r.nodeType&&8!==r.nodeType&&!st.test(v+g.event.triggered)&&(v.indexOf(".")>-1&&(m=v.split("."),v=m.shift(),m.sort()),l=v.indexOf(":")<0&&"on"+v,(e=e[g.expando]?e:new g.Event(v,"object"==typeof e&&e)).isTrigger=i?2:3,e.namespace=m.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:g.makeArray(t,[e]),d=g.event.special[v]||{},i||!d.trigger||!1!==d.trigger.apply(r,t))){if(!i&&!d.noBubble&&!g.isWindow(r)){for(c=d.delegateType||v,st.test(c+v)||(s=s.parentNode);s;s=s.parentNode)h.push(s),a=s;a===(r.ownerDocument||u)&&h.push(a.defaultView||a.parentWindow||n)}for(o=0;(s=h[o++])&&!e.isPropagationStopped();)e.type=o>1?c:d.bindType||v,(f=(H.get(s,"events")||{})[e.type]&&H.get(s,"handle"))&&f.apply(s,t),(f=l&&s[l])&&f.apply&&I(s)&&(e.result=f.apply(s,t),!1===e.result&&e.preventDefault());return e.type=v,i||e.isDefaultPrevented()||d._default&&!1!==d._default.apply(h.pop(),t)||!I(r)||l&&g.isFunction(r[v])&&!g.isWindow(r)&&((a=r[l])&&(r[l]=null),g.event.triggered=v,r[v](),g.event.triggered=void 0,a&&(r[l]=a)),e.result}},simulate:function(e,t,n){var r=g.extend(new g.Event,n,{type:e,isSimulated:!0});g.event.trigger(r,null,t)}}),g.fn.extend({trigger:function(e,t){return this.each((function(){g.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return g.event.trigger(e,t,n,!0)}}),g.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),(function(e,t){g.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}})),g.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),h.focusin="onfocusin"in n,h.focusin||g.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){g.event.simulate(t,e.target,g.event.fix(e))};g.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=H.access(r,t);i||r.addEventListener(e,n,!0),H.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=H.access(r,t)-1;i?H.access(r,t,i):(r.removeEventListener(e,n,!0),H.remove(r,t))}}}));var at=n.location,ct=g.now(),lt=/\?/;g.parseJSON=function(e){return JSON.parse(e+"")},g.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||g.error("Invalid XML: "+e),t};var ft=/#.*$/,dt=/([?&])_=[^&]*/,pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,ht=/^(?:GET|HEAD)$/,gt=/^\/\//,vt={},mt={},yt="*/".concat("*"),xt=u.createElement("a");function bt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(R)||[];if(g.isFunction(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function wt(e,t,n,r){var i={},o=e===mt;function u(s){var a;return i[s]=!0,g.each(e[s]||[],(function(e,s){var c=s(t,n,r);return"string"!=typeof c||o||i[c]?o?!(a=c):void 0:(t.dataTypes.unshift(c),u(c),!1)})),a}return u(t.dataTypes[0])||!i["*"]&&u("*")}function Tt(e,t){var n,r,i=g.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&g.extend(!0,e,r),e}xt.href=at.href,g.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:at.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(at.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":yt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":g.parseJSON,"text xml":g.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Tt(Tt(e,g.ajaxSettings),t):Tt(g.ajaxSettings,e)},ajaxPrefilter:bt(vt),ajaxTransport:bt(mt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,i,o,s,a,c,l,f,d=g.ajaxSetup({},t),p=d.context||d,h=d.context&&(p.nodeType||p.jquery)?g(p):g.event,v=g.Deferred(),m=g.Callbacks("once memory"),y=d.statusCode||{},x={},b={},w=0,T="canceled",S={readyState:0,getResponseHeader:function(e){var t;if(2===w){if(!s)for(s={};t=pt.exec(o);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===w?o:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return w||(e=b[n]=b[n]||e,x[e]=t),this},overrideMimeType:function(e){return w||(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(w<2)for(t in e)y[t]=[y[t],e[t]];else S.always(e[S.status]);return this},abort:function(e){var t=e||T;return r&&r.abort(t),E(0,t),this}};if(v.promise(S).complete=m.add,S.success=S.done,S.error=S.fail,d.url=((e||d.url||at.href)+"").replace(ft,"").replace(gt,at.protocol+"//"),d.type=t.method||t.type||d.method||d.type,d.dataTypes=g.trim(d.dataType||"*").toLowerCase().match(R)||[""],null==d.crossDomain){c=u.createElement("a");try{c.href=d.url,c.href=c.href,d.crossDomain=xt.protocol+"//"+xt.host!=c.protocol+"//"+c.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=g.param(d.data,d.traditional)),wt(vt,d,t,S),2===w)return S;for(f in(l=g.event&&d.global)&&0==g.active++&&g.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!ht.test(d.type),i=d.url,d.hasContent||(d.data&&(i=d.url+=(lt.test(i)?"&":"?")+d.data,delete d.data),!1===d.cache&&(d.url=dt.test(i)?i.replace(dt,"$1_="+ct++):i+(lt.test(i)?"&":"?")+"_="+ct++)),d.ifModified&&(g.lastModified[i]&&S.setRequestHeader("If-Modified-Since",g.lastModified[i]),g.etag[i]&&S.setRequestHeader("If-None-Match",g.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||t.contentType)&&S.setRequestHeader("Content-Type",d.contentType),S.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+yt+"; q=0.01":""):d.accepts["*"]),d.headers)S.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(p,S,d)||2===w))return S.abort();for(f in T="abort",{success:1,error:1,complete:1})S[f](d[f]);if(r=wt(mt,d,t,S)){if(S.readyState=1,l&&h.trigger("ajaxSend",[S,d]),2===w)return S;d.async&&d.timeout>0&&(a=n.setTimeout((function(){S.abort("timeout")}),d.timeout));try{w=1,r.send(x,E)}catch(e){if(!(w<2))throw e;E(-1,e)}}else E(-1,"No Transport");function E(e,t,u,s){var c,f,x,b,T,E=t;2!==w&&(w=2,a&&n.clearTimeout(a),r=void 0,o=s||"",S.readyState=e>0?4:0,c=e>=200&&e<300||304===e,u&&(b=function(e,t,n){for(var r,i,o,u,s=e.contents,a=e.dataTypes;"*"===a[0];)a.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){a.unshift(i);break}if(a[0]in n)o=a[0];else{for(i in n){if(!a[0]||e.converters[i+" "+a[0]]){o=i;break}u||(u=i)}o=o||u}if(o)return o!==a[0]&&a.unshift(o),n[o]}(d,S,u)),b=function(e,t,n,r){var i,o,u,s,a,c={},l=e.dataTypes.slice();if(l[1])for(u in e.converters)c[u.toLowerCase()]=e.converters[u];for(o=l.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!a&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),a=o,o=l.shift())if("*"===o)o=a;else if("*"!==a&&a!==o){if(!(u=c[a+" "+o]||c["* "+o]))for(i in c)if((s=i.split(" "))[1]===o&&(u=c[a+" "+s[0]]||c["* "+s[0]])){!0===u?u=c[i]:!0!==c[i]&&(o=s[0],l.unshift(s[1]));break}if(!0!==u)if(u&&e.throws)t=u(t);else try{t=u(t)}catch(e){return{state:"parsererror",error:u?e:"No conversion from "+a+" to "+o}}}return{state:"success",data:t}}(d,b,S,c),c?(d.ifModified&&((T=S.getResponseHeader("Last-Modified"))&&(g.lastModified[i]=T),(T=S.getResponseHeader("etag"))&&(g.etag[i]=T)),204===e||"HEAD"===d.type?E="nocontent":304===e?E="notmodified":(E=b.state,f=b.data,c=!(x=b.error))):(x=E,!e&&E||(E="error",e<0&&(e=0))),S.status=e,S.statusText=(t||E)+"",c?v.resolveWith(p,[f,E,S]):v.rejectWith(p,[S,E,x]),S.statusCode(y),y=void 0,l&&h.trigger(c?"ajaxSuccess":"ajaxError",[S,d,c?f:x]),m.fireWith(p,[S,E]),l&&(h.trigger("ajaxComplete",[S,d]),--g.active||g.event.trigger("ajaxStop")))}return S},getJSON:function(e,t,n){return g.get(e,t,n,"json")},getScript:function(e,t){return g.get(e,void 0,t,"script")}}),g.each(["get","post"],(function(e,t){g[t]=function(e,n,r,i){return g.isFunction(n)&&(i=i||r,r=n,n=void 0),g.ajax(g.extend({url:e,type:t,dataType:i,data:n,success:r},g.isPlainObject(e)&&e))}})),g._evalUrl=function(e){return g.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},g.fn.extend({wrapAll:function(e){var t;return g.isFunction(e)?this.each((function(t){g(this).wrapAll(e.call(this,t))})):(this[0]&&(t=g(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this)},wrapInner:function(e){return g.isFunction(e)?this.each((function(t){g(this).wrapInner(e.call(this,t))})):this.each((function(){var t=g(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=g.isFunction(e);return this.each((function(n){g(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(){return this.parent().each((function(){g.nodeName(this,"body")||g(this).replaceWith(this.childNodes)})).end()}}),g.expr.filters.hidden=function(e){return!g.expr.filters.visible(e)},g.expr.filters.visible=function(e){return e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0};var St=/%20/g,Et=/\[\]$/,Nt=/\r?\n/g,Ct=/^(?:submit|button|image|reset|file)$/i,_t=/^(?:input|select|textarea|keygen)/i;function Ot(e,t,n,r){var i;if(g.isArray(t))g.each(t,(function(t,i){n||Et.test(e)?r(e,i):Ot(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==g.type(t))r(e,t);else for(i in t)Ot(e+"["+i+"]",t[i],n,r)}g.param=function(e,t){var n,r=[],i=function(e,t){t=g.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=g.ajaxSettings&&g.ajaxSettings.traditional),g.isArray(e)||e.jquery&&!g.isPlainObject(e))g.each(e,(function(){i(this.name,this.value)}));else for(n in e)Ot(n,e[n],t,i);return r.join("&").replace(St,"+")},g.fn.extend({serialize:function(){return g.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=g.prop(this,"elements");return e?g.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!g(this).is(":disabled")&&_t.test(this.nodeName)&&!Ct.test(e)&&(this.checked||!G.test(e))})).map((function(e,t){var n=g(this).val();return null==n?null:g.isArray(n)?g.map(n,(function(e){return{name:t.name,value:e.replace(Nt,"\r\n")}})):{name:t.name,value:n.replace(Nt,"\r\n")}})).get()}}),g.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var Dt={0:200,1223:204},jt=g.ajaxSettings.xhr();h.cors=!!jt&&"withCredentials"in jt,h.ajax=jt=!!jt,g.ajaxTransport((function(e){var t,r;if(h.cors||jt&&!e.crossDomain)return{send:function(i,o){var u,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(u in e.xhrFields)s[u]=e.xhrFields[u];for(u in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(u,i[u]);t=function(e){return function(){t&&(t=r=s.onload=s.onerror=s.onabort=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Dt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),r=s.onerror=t("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout((function(){t&&r()}))},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),g.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return g.globalEval(e),e}}}),g.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),g.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain)return{send:function(r,i){t=g("<script>").prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),u.head.appendChild(t[0])},abort:function(){n&&n()}}}));var At=[],kt=/(=)\?(?=&|$)|\?\?/;g.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=At.pop()||g.expando+"_"+ct++;return this[e]=!0,e}}),g.ajaxPrefilter("json jsonp",(function(e,t,r){var i,o,u,s=!1!==e.jsonp&&(kt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&kt.test(e.data)&&"data");if(s||"jsonp"===e.dataTypes[0])return i=e.jsonpCallback=g.isFunction(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,s?e[s]=e[s].replace(kt,"$1"+i):!1!==e.jsonp&&(e.url+=(lt.test(e.url)?"&":"?")+e.jsonp+"="+i),e.converters["script json"]=function(){return u||g.error(i+" was not called"),u[0]},e.dataTypes[0]="json",o=n[i],n[i]=function(){u=arguments},r.always((function(){void 0===o?g(n).removeProp(i):n[i]=o,e[i]&&(e.jsonpCallback=t.jsonpCallback,At.push(i)),u&&g.isFunction(o)&&o(u[0]),u=o=void 0})),"script"})),g.parseHTML=function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||u;var r=N.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=ie([e],t,i),i&&i.length&&g(i).remove(),g.merge([],r.childNodes))};var Pt=g.fn.load;function Rt(e){return g.isWindow(e)?e:9===e.nodeType&&e.defaultView}g.fn.load=function(e,t,n){if("string"!=typeof e&&Pt)return Pt.apply(this,arguments);var r,i,o,u=this,s=e.indexOf(" ");return s>-1&&(r=g.trim(e.slice(s)),e=e.slice(0,s)),g.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),u.length>0&&g.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done((function(e){o=arguments,u.html(r?g("<div>").append(g.parseHTML(e)).find(r):e)})).always(n&&function(e,t){u.each((function(){n.apply(this,o||[e.responseText,t,e])}))}),this},g.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){g.fn[t]=function(e){return this.on(t,e)}})),g.expr.filters.animated=function(e){return g.grep(g.timers,(function(t){return e===t.elem})).length},g.offset={setOffset:function(e,t,n){var r,i,o,u,s,a,c=g.css(e,"position"),l=g(e),f={};"static"===c&&(e.style.position="relative"),s=l.offset(),o=g.css(e,"top"),a=g.css(e,"left"),("absolute"===c||"fixed"===c)&&(o+a).indexOf("auto")>-1?(u=(r=l.position()).top,i=r.left):(u=parseFloat(o)||0,i=parseFloat(a)||0),g.isFunction(t)&&(t=t.call(e,n,g.extend({},s))),null!=t.top&&(f.top=t.top-s.top+u),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):l.css(f)}},g.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){g.offset.setOffset(this,e,t)}));var t,n,r=this[0],i={top:0,left:0},o=r&&r.ownerDocument;return o?(t=o.documentElement,g.contains(t,r)?(i=r.getBoundingClientRect(),n=Rt(o),{top:i.top+n.pageYOffset-t.clientTop,left:i.left+n.pageXOffset-t.clientLeft}):i):void 0},position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===g.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),g.nodeName(e[0],"html")||(r=e.offset()),r.top+=g.css(e[0],"borderTopWidth",!0),r.left+=g.css(e[0],"borderLeftWidth",!0)),{top:t.top-r.top-g.css(n,"marginTop",!0),left:t.left-r.left-g.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&"static"===g.css(e,"position");)e=e.offsetParent;return e||Ae}))}}),g.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(e,t){var n="pageYOffset"===t;g.fn[e]=function(r){return q(this,(function(e,r,i){var o=Rt(e);if(void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i}),e,r,arguments.length)}})),g.each(["top","left"],(function(e,t){g.cssHooks[t]=Pe(h.pixelPosition,(function(e,n){if(n)return n=ke(e,t),Oe.test(n)?g(e).position()[t]+"px":n}))})),g.each({Height:"height",Width:"width"},(function(e,t){g.each({padding:"inner"+e,content:t,"":"outer"+e},(function(n,r){g.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),u=n||(!0===r||!0===i?"margin":"border");return q(this,(function(t,n,r){var i;return g.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===r?g.css(t,n,u):g.style(t,n,r,u)}),t,o?r:void 0,o,null)}}))})),g.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},size:function(){return this.length}}),g.fn.andSelf=g.fn.addBack,void 0===(r=function(){return g}.apply(t,[]))||(e.exports=r);var Lt=n.jQuery,qt=n.$;return g.noConflict=function(e){return n.$===g&&(n.$=qt),e&&n.jQuery===g&&(n.jQuery=Lt),g},i||(n.jQuery=n.$=g),g},"object"==typeof e.exports?e.exports=i.document?o(i,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return o(e)}:o(i)},1:function(e,t,n){"use strict";(function(e){n.d(t,"e",(function(){return r})),n.d(t,"p",(function(){return i})),n.d(t,"a",(function(){return o})),n.d(t,"c",(function(){return u})),n.d(t,"d",(function(){return s})),n.d(t,"o",(function(){return a})),n.d(t,"q",(function(){return c})),n.d(t,"s",(function(){return l})),n.d(t,"i",(function(){return f})),n.d(t,"r",(function(){return d})),n.d(t,"k",(function(){return p})),n.d(t,"m",(function(){return h})),n.d(t,"j",(function(){return g})),n.d(t,"l",(function(){return v})),n.d(t,"g",(function(){return m})),n.d(t,"f",(function(){return y})),n.d(t,"h",(function(){return x})),n.d(t,"n",(function(){return b})),n.d(t,"b",(function(){return w}));var r="1.11.0",i="object"==typeof self&&self.self===self&&self||"object"==typeof e&&e.global===e&&e||Function("return this")()||{},o=Array.prototype,u=Object.prototype,s="undefined"!=typeof Symbol?Symbol.prototype:null,a=o.push,c=o.slice,l=u.toString,f=u.hasOwnProperty,d="undefined"!=typeof ArrayBuffer,p=Array.isArray,h=Object.keys,g=Object.create,v=d&&ArrayBuffer.isView,m=isNaN,y=isFinite,x=!{toString:null}.propertyIsEnumerable("toString"),b=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],w=Math.pow(2,53)-1}).call(this,n(20))},143:function(e,t,n){"use strict";var r=/["'&<>]/;e.exports=function(e){var t,n=""+e,i=r.exec(n);if(!i)return n;var o="",u=0,s=0;for(u=i.index;u<n.length;u++){switch(n.charCodeAt(u)){case 34:t=""";break;case 38:t="&";break;case 39:t="'";break;case 60:t="<";break;case 62:t=">";break;default:continue}s!==u&&(o+=n.substring(s,u)),s=u+1,o+=t}return s!==u?o+n.substring(s,u):o}},20:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},671:function(e,t,n){"use strict";n.r(t),function(e,t){var r=n(143),i=n.n(r);!function(n,r){var o=function t(r){this._root=r.root,"/"===this._root.charAt(this._root.length-1)&&(this._root=this._root.substr(0,this._root.length-1));var i=t.PROTOCOL_HTTP+"://";r.useHTTPS&&(i=t.PROTOCOL_HTTPS+"://"),i+=r.host+this._root,this._host=r.host,this._defaultHeaders=r.defaultHeaders||{"X-Requested-With":"XMLHttpRequest","requesttoken":n.requestToken},this._baseUrl=i;var o={baseUrl:this._baseUrl,xmlNamespaces:{"DAV:":"d","http://owncloud.org/ns":"oc","http://nextcloud.org/ns":"nc","http://open-collaboration-services.org/ns":"ocs"}};r.userName&&(o.userName=r.userName),r.password&&(o.password=r.password),this._client=new dav.Client(o),this._client.xhrProvider=e.bind(this._xhrProvider,this),this._fileInfoParsers=[]};o.NS_OWNCLOUD="http://owncloud.org/ns",o.NS_NEXTCLOUD="http://nextcloud.org/ns",o.NS_DAV="DAV:",o.NS_OCS="http://open-collaboration-services.org/ns",o.PROPERTY_GETLASTMODIFIED="{"+o.NS_DAV+"}getlastmodified",o.PROPERTY_GETETAG="{"+o.NS_DAV+"}getetag",o.PROPERTY_GETCONTENTTYPE="{"+o.NS_DAV+"}getcontenttype",o.PROPERTY_RESOURCETYPE="{"+o.NS_DAV+"}resourcetype",o.PROPERTY_INTERNAL_FILEID="{"+o.NS_OWNCLOUD+"}fileid",o.PROPERTY_PERMISSIONS="{"+o.NS_OWNCLOUD+"}permissions",o.PROPERTY_SIZE="{"+o.NS_OWNCLOUD+"}size",o.PROPERTY_GETCONTENTLENGTH="{"+o.NS_DAV+"}getcontentlength",o.PROPERTY_ISENCRYPTED="{"+o.NS_DAV+"}is-encrypted",o.PROPERTY_SHARE_PERMISSIONS="{"+o.NS_OCS+"}share-permissions",o.PROTOCOL_HTTP="http",o.PROTOCOL_HTTPS="https",o._PROPFIND_PROPERTIES=[[o.NS_DAV,"getlastmodified"],[o.NS_DAV,"getetag"],[o.NS_DAV,"getcontenttype"],[o.NS_DAV,"resourcetype"],[o.NS_OWNCLOUD,"fileid"],[o.NS_OWNCLOUD,"permissions"],[o.NS_OWNCLOUD,"size"],[o.NS_DAV,"getcontentlength"],[o.NS_NEXTCLOUD,"has-preview"],[o.NS_NEXTCLOUD,"mount-type"],[o.NS_NEXTCLOUD,"is-encrypted"],[o.NS_OCS,"share-permissions"]],o.prototype={_root:null,_client:null,_fileInfoParsers:[],_xhrProvider:function(){var t=this._defaultHeaders,r=new XMLHttpRequest,i=r.open;return r.open=function(){var n=i.apply(this,arguments);return e.each(t,(function(e,t){r.setRequestHeader(t,e)})),n},n.registerXHRForErrorProcessing(r),r},_buildUrl:function(){var e=this._buildPath.apply(this,arguments);return"/"===e.charAt([e.length-1])&&(e=e.substr(0,e.length-1)),"/"===e.charAt(0)&&(e=e.substr(1)),this._baseUrl+"/"+e},_buildPath:function(){var e,t=n.joinPaths.apply(this,arguments),r=t.split("/");for(e=0;e<r.length;e++)r[e]=encodeURIComponent(r[e]);return t=r.join("/")},_parseHeaders:function(e){for(var t=e.split("\n"),n={},r=0;r<t.length;r++){var i=t[r].indexOf(":");if(!(i<0)){var o=t[r].substr(0,i),u=t[r].substr(i+2);n[o]||(n[o]=[]),n[o].push(u)}}return n},_parseEtag:function(e){return'"'===e.charAt(0)?e.split('"')[1]:e},_parseFileInfo:function(t){var i=decodeURIComponent(t.href);if(i.substr(0,this._root.length)===this._root&&(i=i.substr(this._root.length)),"/"===i.charAt(i.length-1)&&(i=i.substr(0,i.length-1)),0===t.propStat.length||"HTTP/1.1 200 OK"!==t.propStat[0].status)return null;var u=t.propStat[0].properties,s={id:u[o.PROPERTY_INTERNAL_FILEID],path:n.dirname(i)||"/",name:n.basename(i),mtime:new Date(u[o.PROPERTY_GETLASTMODIFIED]).getTime()},a=u[o.PROPERTY_GETETAG];e.isUndefined(a)||(s.etag=this._parseEtag(a));var c=u[o.PROPERTY_GETCONTENTLENGTH];e.isUndefined(c)||(s.size=parseInt(c,10)),c=u[o.PROPERTY_SIZE],e.isUndefined(c)||(s.size=parseInt(c,10));var l=u["{"+o.NS_NEXTCLOUD+"}has-preview"];e.isUndefined(l)?s.hasPreview=!0:s.hasPreview="true"===l;var f=u["{"+o.NS_NEXTCLOUD+"}is-encrypted"];e.isUndefined(f)?s.isEncrypted=!1:s.isEncrypted="1"===f;var d=u["{"+o.NS_OWNCLOUD+"}favorite"];e.isUndefined(d)?s.isFavourited=!1:s.isFavourited="1"===d;var p=u[o.PROPERTY_GETCONTENTTYPE];e.isUndefined(p)||(s.mimetype=p);var h=u[o.PROPERTY_RESOURCETYPE];if(!s.mimetype&&h){var g=h[0];g.namespaceURI===o.NS_DAV&&"collection"===g.nodeName.split(":")[1]&&(s.mimetype="httpd/unix-directory")}s.permissions=n.PERMISSION_NONE;var v=u[o.PROPERTY_PERMISSIONS];if(!e.isUndefined(v)){var m=v||"";s.mountType=null;for(var y=0;y<m.length;y++){switch(m.charAt(y)){case"C":case"K":s.permissions|=n.PERMISSION_CREATE;break;case"G":s.permissions|=n.PERMISSION_READ;break;case"W":case"N":case"V":s.permissions|=n.PERMISSION_UPDATE;break;case"D":s.permissions|=n.PERMISSION_DELETE;break;case"R":s.permissions|=n.PERMISSION_SHARE;break;case"M":s.mountType||(s.mountType="external");break;case"S":s.mountType="shared"}}}var x=u[o.PROPERTY_SHARE_PERMISSIONS];e.isUndefined(x)||(s.sharePermissions=parseInt(x));var b=u["{"+o.NS_NEXTCLOUD+"}mount-type"];return e.isUndefined(b)||(s.mountType=b),e.each(this._fileInfoParsers,(function(n){e.extend(s,n(t,s)||{})})),new r(s)},_parseResult:function(t){var n=this;return e.map(t,(function(e){return n._parseFileInfo(e)}))},_isSuccessStatus:function(e){return e>=200&&e<=299},_getSabreException:function(e){var t={},n=e.xhr.responseXML;if(null===n)return t;var r=n.getElementsByTagNameNS("http://sabredav.org/ns","message"),i=n.getElementsByTagNameNS("http://sabredav.org/ns","exception");return r.length&&(t.message=r[0].textContent),i.length&&(t.exception=i[0].textContent),t},getPropfindProperties:function(){return this._propfindProperties||(this._propfindProperties=e.map(o._PROPFIND_PROPERTIES,(function(e){return"{"+e[0]+"}"+e[1]}))),this._propfindProperties},getFolderContents:function(n,r){n||(n=""),r=r||{};var i,o=this,u=t.Deferred(),s=u.promise();return i=e.isUndefined(r.properties)?this.getPropfindProperties():r.properties,this._client.propFind(this._buildUrl(n),i,1).then((function(t){if(o._isSuccessStatus(t.status)){var n=o._parseResult(t.body);r&&r.includeParent||n.shift(),u.resolve(t.status,n)}else t=e.extend(t,o._getSabreException(t)),u.reject(t.status,t)})),s},getFilteredFiles:function(n,r){r=r||{};var o,u=this,s=t.Deferred(),a=s.promise();if(o=e.isUndefined(r.properties)?this.getPropfindProperties():r.properties,!n||!n.systemTagIds&&e.isUndefined(n.favorite)&&!n.circlesIds)throw"Missing filter argument";var c,l="<oc:filter-files ";for(c in this._client.xmlNamespaces)l+=" xmlns:"+this._client.xmlNamespaces[c]+'="'+c+'"';return l+=">\n",l+=" <"+this._client.xmlNamespaces["DAV:"]+":prop>\n",e.each(o,(function(e){var t=u._client.parseClarkNotation(e);l+=" <"+u._client.xmlNamespaces[t.namespace]+":"+t.name+" />\n"})),l+=" </"+this._client.xmlNamespaces["DAV:"]+":prop>\n",l+=" <oc:filter-rules>\n",e.each(n.systemTagIds,(function(e){l+=" <oc:systemtag>"+i()(e)+"</oc:systemtag>\n"})),e.each(n.circlesIds,(function(e){l+=" <oc:circle>"+i()(e)+"</oc:circle>\n"})),n.favorite&&(l+=" <oc:favorite>"+(n.favorite?"1":"0")+"</oc:favorite>\n"),l+=" </oc:filter-rules>\n",l+="</oc:filter-files>\n",this._client.request("REPORT",this._buildUrl(),{},l).then((function(t){if(u._isSuccessStatus(t.status)){var n=u._parseResult(t.body);s.resolve(t.status,n)}else t=e.extend(t,u._getSabreException(t)),s.reject(t.status,t)})),a},getFileInfo:function(n,r){n||(n=""),r=r||{};var i,o=this,u=t.Deferred(),s=u.promise();return i=e.isUndefined(r.properties)?this.getPropfindProperties():r.properties,this._client.propFind(this._buildUrl(n),i,0).then((function(t){o._isSuccessStatus(t.status)?u.resolve(t.status,o._parseResult([t.body])[0]):(t=e.extend(t,o._getSabreException(t)),u.reject(t.status,t))})),s},getFileContents:function(n){if(!n)throw'Missing argument "path"';var r=this,i=t.Deferred(),o=i.promise();return this._client.request("GET",this._buildUrl(n)).then((function(t){r._isSuccessStatus(t.status)?i.resolve(t.status,t.body):(t=e.extend(t,r._getSabreException(t)),i.reject(t.status,t))})),o},putFileContents:function(n,r,i){if(!n)throw'Missing argument "path"';var o=this,u=t.Deferred(),s=u.promise(),a={},c="text/plain;charset=utf-8";return(i=i||{}).contentType&&(c=i.contentType),a["Content-Type"]=c,(e.isUndefined(i.overwrite)||i.overwrite)&&(a["If-None-Match"]="*"),this._client.request("PUT",this._buildUrl(n),a,r||"").then((function(t){o._isSuccessStatus(t.status)?u.resolve(t.status):(t=e.extend(t,o._getSabreException(t)),u.reject(t.status,t))})),s},_simpleCall:function(n,r){if(!r)throw'Missing argument "path"';var i=this,o=t.Deferred(),u=o.promise();return this._client.request(n,this._buildUrl(r)).then((function(t){i._isSuccessStatus(t.status)?o.resolve(t.status):(t=e.extend(t,i._getSabreException(t)),o.reject(t.status,t))})),u},createDirectory:function(e){return this._simpleCall("MKCOL",e)},remove:function(e){return this._simpleCall("DELETE",e)},move:function(n,r,i,o){if(!n)throw'Missing argument "path"';if(!r)throw'Missing argument "destinationPath"';var u=this,s=t.Deferred(),a=s.promise();return o=e.extend({},o,{"Destination":this._buildUrl(r)}),i||(o.Overwrite="F"),this._client.request("MOVE",this._buildUrl(n),o).then((function(t){u._isSuccessStatus(t.status)?s.resolve(t.status):(t=e.extend(t,u._getSabreException(t)),s.reject(t.status,t))})),a},copy:function(e,n,r){if(!e)throw'Missing argument "path"';if(!n)throw'Missing argument "destinationPath"';var i=this,o=t.Deferred(),u=o.promise(),s={"Destination":this._buildUrl(n)};return r||(s.Overwrite="F"),this._client.request("COPY",this._buildUrl(e),s).then((function(e){i._isSuccessStatus(e.status)?o.resolve(e.status):o.reject(e.status)})),u},addFileInfoParser:function(e){this._fileInfoParsers.push(e)},getClient:function(){return this._client},getUserName:function(){return this._client.userName},getPassword:function(){return this._client.password},getBaseUrl:function(){return this._client.baseUrl},getHost:function(){return this._host}},n.Files||(n.Files={}),n.Files.getClient=function(){if(n.Files._defaultClient)return n.Files._defaultClient;var e=new n.Files.Client({host:n.getHost(),port:n.getPort(),root:n.linkToRemoteBase("dav")+"/files/"+n.getCurrentUser().uid,useHTTPS:"https"===n.getProtocol()});return n.Files._defaultClient=e,e},n.Files.Client=o}(OC,OC.Files.FileInfo)}.call(this,n(7),n(0))},7:function(e,t,n){"use strict";n.r(t),n.d(t,"default",(function(){return un})),n.d(t,"VERSION",(function(){return i.e})),n.d(t,"restArguments",(function(){return o})),n.d(t,"isObject",(function(){return u})),n.d(t,"isNull",(function(){return s})),n.d(t,"isUndefined",(function(){return a})),n.d(t,"isBoolean",(function(){return c})),n.d(t,"isElement",(function(){return l})),n.d(t,"isString",(function(){return d})),n.d(t,"isNumber",(function(){return p})),n.d(t,"isDate",(function(){return h})),n.d(t,"isRegExp",(function(){return g})),n.d(t,"isError",(function(){return v})),n.d(t,"isSymbol",(function(){return m})),n.d(t,"isMap",(function(){return y})),n.d(t,"isWeakMap",(function(){return x})),n.d(t,"isSet",(function(){return b})),n.d(t,"isWeakSet",(function(){return w})),n.d(t,"isArrayBuffer",(function(){return T})),n.d(t,"isDataView",(function(){return S})),n.d(t,"isArray",(function(){return E})),n.d(t,"isFunction",(function(){return _})),n.d(t,"isArguments",(function(){return j})),n.d(t,"isFinite",(function(){return A})),n.d(t,"isNaN",(function(){return k})),n.d(t,"isTypedArray",(function(){return H})),n.d(t,"isEmpty",(function(){return $})),n.d(t,"isMatch",(function(){return V})),n.d(t,"isEqual",(function(){return Y})),n.d(t,"keys",(function(){return B})),n.d(t,"allKeys",(function(){return G})),n.d(t,"values",(function(){return K})),n.d(t,"pairs",(function(){return J})),n.d(t,"invert",(function(){return Q})),n.d(t,"functions",(function(){return Z})),n.d(t,"methods",(function(){return Z})),n.d(t,"extend",(function(){return te})),n.d(t,"extendOwn",(function(){return ne})),n.d(t,"assign",(function(){return ne})),n.d(t,"defaults",(function(){return re})),n.d(t,"create",(function(){return oe})),n.d(t,"clone",(function(){return ue})),n.d(t,"tap",(function(){return se})),n.d(t,"has",(function(){return ae})),n.d(t,"mapObject",(function(){return me})),n.d(t,"identity",(function(){return ce})),n.d(t,"constant",(function(){return P})),n.d(t,"noop",(function(){return ye})),n.d(t,"property",(function(){return de})),n.d(t,"propertyOf",(function(){return xe})),n.d(t,"matcher",(function(){return le})),n.d(t,"matches",(function(){return le})),n.d(t,"times",(function(){return be})),n.d(t,"random",(function(){return we})),n.d(t,"now",(function(){return Te})),n.d(t,"escape",(function(){return Ne})),n.d(t,"unescape",(function(){return Ce})),n.d(t,"templateSettings",(function(){return _e})),n.d(t,"template",(function(){return ke})),n.d(t,"result",(function(){return Pe})),n.d(t,"uniqueId",(function(){return Le})),n.d(t,"chain",(function(){return qe})),n.d(t,"iteratee",(function(){return ge})),n.d(t,"partial",(function(){return He})),n.d(t,"bind",(function(){return Me})),n.d(t,"bindAll",(function(){return We})),n.d(t,"memoize",(function(){return Be})),n.d(t,"delay",(function(){return $e})),n.d(t,"defer",(function(){return Ve})),n.d(t,"throttle",(function(){return Xe})),n.d(t,"debounce",(function(){return ze})),n.d(t,"wrap",(function(){return Ye})),n.d(t,"negate",(function(){return Ge})),n.d(t,"compose",(function(){return Ke})),n.d(t,"after",(function(){return Je})),n.d(t,"before",(function(){return Qe})),n.d(t,"once",(function(){return Ze})),n.d(t,"findKey",(function(){return et})),n.d(t,"findIndex",(function(){return nt})),n.d(t,"findLastIndex",(function(){return rt})),n.d(t,"sortedIndex",(function(){return it})),n.d(t,"indexOf",(function(){return ut})),n.d(t,"lastIndexOf",(function(){return st})),n.d(t,"find",(function(){return at})),n.d(t,"detect",(function(){return at})),n.d(t,"findWhere",(function(){return ct})),n.d(t,"each",(function(){return lt})),n.d(t,"forEach",(function(){return lt})),n.d(t,"map",(function(){return ft})),n.d(t,"collect",(function(){return ft})),n.d(t,"reduce",(function(){return pt})),n.d(t,"foldl",(function(){return pt})),n.d(t,"inject",(function(){return pt})),n.d(t,"reduceRight",(function(){return ht})),n.d(t,"foldr",(function(){return ht})),n.d(t,"filter",(function(){return gt})),n.d(t,"select",(function(){return gt})),n.d(t,"reject",(function(){return vt})),n.d(t,"every",(function(){return mt})),n.d(t,"all",(function(){return mt})),n.d(t,"some",(function(){return yt})),n.d(t,"any",(function(){return yt})),n.d(t,"contains",(function(){return xt})),n.d(t,"includes",(function(){return xt})),n.d(t,"include",(function(){return xt})),n.d(t,"invoke",(function(){return bt})),n.d(t,"pluck",(function(){return wt})),n.d(t,"where",(function(){return Tt})),n.d(t,"max",(function(){return St})),n.d(t,"min",(function(){return Et})),n.d(t,"shuffle",(function(){return Ct})),n.d(t,"sample",(function(){return Nt})),n.d(t,"sortBy",(function(){return _t})),n.d(t,"groupBy",(function(){return Dt})),n.d(t,"indexBy",(function(){return jt})),n.d(t,"countBy",(function(){return At})),n.d(t,"partition",(function(){return kt})),n.d(t,"toArray",(function(){return Rt})),n.d(t,"size",(function(){return Lt})),n.d(t,"pick",(function(){return It})),n.d(t,"omit",(function(){return Ft})),n.d(t,"first",(function(){return Mt})),n.d(t,"head",(function(){return Mt})),n.d(t,"take",(function(){return Mt})),n.d(t,"initial",(function(){return Ht})),n.d(t,"last",(function(){return Wt})),n.d(t,"rest",(function(){return Ut})),n.d(t,"tail",(function(){return Ut})),n.d(t,"drop",(function(){return Ut})),n.d(t,"compact",(function(){return Bt})),n.d(t,"flatten",(function(){return $t})),n.d(t,"without",(function(){return Xt})),n.d(t,"uniq",(function(){return zt})),n.d(t,"unique",(function(){return zt})),n.d(t,"union",(function(){return Yt})),n.d(t,"intersection",(function(){return Gt})),n.d(t,"difference",(function(){return Vt})),n.d(t,"unzip",(function(){return Kt})),n.d(t,"transpose",(function(){return Kt})),n.d(t,"zip",(function(){return Jt})),n.d(t,"object",(function(){return Qt})),n.d(t,"range",(function(){return Zt})),n.d(t,"chunk",(function(){return en})),n.d(t,"mixin",(function(){return nn}));var r={};n.r(r),n.d(r,"VERSION",(function(){return i.e})),n.d(r,"restArguments",(function(){return o})),n.d(r,"isObject",(function(){return u})),n.d(r,"isNull",(function(){return s})),n.d(r,"isUndefined",(function(){return a})),n.d(r,"isBoolean",(function(){return c})),n.d(r,"isElement",(function(){return l})),n.d(r,"isString",(function(){return d})),n.d(r,"isNumber",(function(){return p})),n.d(r,"isDate",(function(){return h})),n.d(r,"isRegExp",(function(){return g})),n.d(r,"isError",(function(){return v})),n.d(r,"isSymbol",(function(){return m})),n.d(r,"isMap",(function(){return y})),n.d(r,"isWeakMap",(function(){return x})),n.d(r,"isSet",(function(){return b})),n.d(r,"isWeakSet",(function(){return w})),n.d(r,"isArrayBuffer",(function(){return T})),n.d(r,"isDataView",(function(){return S})),n.d(r,"isArray",(function(){return E})),n.d(r,"isFunction",(function(){return _})),n.d(r,"isArguments",(function(){return j})),n.d(r,"isFinite",(function(){return A})),n.d(r,"isNaN",(function(){return k})),n.d(r,"isTypedArray",(function(){return H})),n.d(r,"isEmpty",(function(){return $})),n.d(r,"isMatch",(function(){return V})),n.d(r,"isEqual",(function(){return Y})),n.d(r,"keys",(function(){return B})),n.d(r,"allKeys",(function(){return G})),n.d(r,"values",(function(){return K})),n.d(r,"pairs",(function(){return J})),n.d(r,"invert",(function(){return Q})),n.d(r,"functions",(function(){return Z})),n.d(r,"methods",(function(){return Z})),n.d(r,"extend",(function(){return te})),n.d(r,"extendOwn",(function(){return ne})),n.d(r,"assign",(function(){return ne})),n.d(r,"defaults",(function(){return re})),n.d(r,"create",(function(){return oe})),n.d(r,"clone",(function(){return ue})),n.d(r,"tap",(function(){return se})),n.d(r,"has",(function(){return ae})),n.d(r,"mapObject",(function(){return me})),n.d(r,"identity",(function(){return ce})),n.d(r,"constant",(function(){return P})),n.d(r,"noop",(function(){return ye})),n.d(r,"property",(function(){return de})),n.d(r,"propertyOf",(function(){return xe})),n.d(r,"matcher",(function(){return le})),n.d(r,"matches",(function(){return le})),n.d(r,"times",(function(){return be})),n.d(r,"random",(function(){return we})),n.d(r,"now",(function(){return Te})),n.d(r,"escape",(function(){return Ne})),n.d(r,"unescape",(function(){return Ce})),n.d(r,"templateSettings",(function(){return _e})),n.d(r,"template",(function(){return ke})),n.d(r,"result",(function(){return Pe})),n.d(r,"uniqueId",(function(){return Le})),n.d(r,"chain",(function(){return qe})),n.d(r,"iteratee",(function(){return ge})),n.d(r,"partial",(function(){return He})),n.d(r,"bind",(function(){return Me})),n.d(r,"bindAll",(function(){return We})),n.d(r,"memoize",(function(){return Be})),n.d(r,"delay",(function(){return $e})),n.d(r,"defer",(function(){return Ve})),n.d(r,"throttle",(function(){return Xe})),n.d(r,"debounce",(function(){return ze})),n.d(r,"wrap",(function(){return Ye})),n.d(r,"negate",(function(){return Ge})),n.d(r,"compose",(function(){return Ke})),n.d(r,"after",(function(){return Je})),n.d(r,"before",(function(){return Qe})),n.d(r,"once",(function(){return Ze})),n.d(r,"findKey",(function(){return et})),n.d(r,"findIndex",(function(){return nt})),n.d(r,"findLastIndex",(function(){return rt})),n.d(r,"sortedIndex",(function(){return it})),n.d(r,"indexOf",(function(){return ut})),n.d(r,"lastIndexOf",(function(){return st})),n.d(r,"find",(function(){return at})),n.d(r,"detect",(function(){return at})),n.d(r,"findWhere",(function(){return ct})),n.d(r,"each",(function(){return lt})),n.d(r,"forEach",(function(){return lt})),n.d(r,"map",(function(){return ft})),n.d(r,"collect",(function(){return ft})),n.d(r,"reduce",(function(){return pt})),n.d(r,"foldl",(function(){return pt})),n.d(r,"inject",(function(){return pt})),n.d(r,"reduceRight",(function(){return ht})),n.d(r,"foldr",(function(){return ht})),n.d(r,"filter",(function(){return gt})),n.d(r,"select",(function(){return gt})),n.d(r,"reject",(function(){return vt})),n.d(r,"every",(function(){return mt})),n.d(r,"all",(function(){return mt})),n.d(r,"some",(function(){return yt})),n.d(r,"any",(function(){return yt})),n.d(r,"contains",(function(){return xt})),n.d(r,"includes",(function(){return xt})),n.d(r,"include",(function(){return xt})),n.d(r,"invoke",(function(){return bt})),n.d(r,"pluck",(function(){return wt})),n.d(r,"where",(function(){return Tt})),n.d(r,"max",(function(){return St})),n.d(r,"min",(function(){return Et})),n.d(r,"shuffle",(function(){return Ct})),n.d(r,"sample",(function(){return Nt})),n.d(r,"sortBy",(function(){return _t})),n.d(r,"groupBy",(function(){return Dt})),n.d(r,"indexBy",(function(){return jt})),n.d(r,"countBy",(function(){return At})),n.d(r,"partition",(function(){return kt})),n.d(r,"toArray",(function(){return Rt})),n.d(r,"size",(function(){return Lt})),n.d(r,"pick",(function(){return It})),n.d(r,"omit",(function(){return Ft})),n.d(r,"first",(function(){return Mt})),n.d(r,"head",(function(){return Mt})),n.d(r,"take",(function(){return Mt})),n.d(r,"initial",(function(){return Ht})),n.d(r,"last",(function(){return Wt})),n.d(r,"rest",(function(){return Ut})),n.d(r,"tail",(function(){return Ut})),n.d(r,"drop",(function(){return Ut})),n.d(r,"compact",(function(){return Bt})),n.d(r,"flatten",(function(){return $t})),n.d(r,"without",(function(){return Xt})),n.d(r,"uniq",(function(){return zt})),n.d(r,"unique",(function(){return zt})),n.d(r,"union",(function(){return Yt})),n.d(r,"intersection",(function(){return Gt})),n.d(r,"difference",(function(){return Vt})),n.d(r,"unzip",(function(){return Kt})),n.d(r,"transpose",(function(){return Kt})),n.d(r,"zip",(function(){return Jt})),n.d(r,"object",(function(){return Qt})),n.d(r,"range",(function(){return Zt})),n.d(r,"chunk",(function(){return en})),n.d(r,"mixin",(function(){return nn})),n.d(r,"default",(function(){return rn}));var i=n(1);function o(e,t){return t=null==t?e.length-1:+t,function(){for(var n=Math.max(arguments.length-t,0),r=Array(n),i=0;i<n;i++)r[i]=arguments[i+t];switch(t){case 0:return e.call(this,r);case 1:return e.call(this,arguments[0],r);case 2:return e.call(this,arguments[0],arguments[1],r)}var o=Array(t+1);for(i=0;i<t;i++)o[i]=arguments[i];return o[t]=r,e.apply(this,o)}}function u(e){var t=typeof e;return"function"===t||"object"===t&&!!e}function s(e){return null===e}function a(e){return void 0===e}function c(e){return!0===e||!1===e||"[object Boolean]"===i.s.call(e)}function l(e){return!(!e||1!==e.nodeType)}function f(e){return function(t){return i.s.call(t)==="[object "+e+"]"}}var d=f("String"),p=f("Number"),h=f("Date"),g=f("RegExp"),v=f("Error"),m=f("Symbol"),y=f("Map"),x=f("WeakMap"),b=f("Set"),w=f("WeakSet"),T=f("ArrayBuffer"),S=f("DataView"),E=i.k||f("Array"),N=f("Function"),C=i.p.document&&i.p.document.childNodes;"object"!=typeof Int8Array&&"function"!=typeof C&&(N=function(e){return"function"==typeof e||!1});var _=N;function O(e,t){return null!=e&&i.i.call(e,t)}var D=f("Arguments");!function(){D(arguments)||(D=function(e){return O(e,"callee")})}();var j=D;function A(e){return!m(e)&&Object(i.f)(e)&&!isNaN(parseFloat(e))}function k(e){return p(e)&&Object(i.g)(e)}function P(e){return function(){return e}}function R(e){return function(t){var n=e(t);return"number"==typeof n&&n>=0&&n<=i.b}}function L(e){return function(t){return null==t?void 0:t[e]}}var q=L("byteLength"),I=R(q),F=/\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/;var H=i.r?function(e){return i.l?Object(i.l)(e)&&!S(e):I(e)&&F.test(i.s.call(e))}:P(!1),M=L("length"),U=R(M);function W(e,t){t=function(e){for(var t={},n=e.length,r=0;r<n;++r)t[e[r]]=!0;return{contains:function(e){return t[e]},push:function(n){return t[n]=!0,e.push(n)}}}(t);var n=i.n.length,r=e.constructor,o=_(r)&&r.prototype||i.c,u="constructor";for(O(e,u)&&!t.contains(u)&&t.push(u);n--;)(u=i.n[n])in e&&e[u]!==o[u]&&!t.contains(u)&&t.push(u)}function B(e){if(!u(e))return[];if(i.m)return Object(i.m)(e);var t=[];for(var n in e)O(e,n)&&t.push(n);return i.h&&W(e,t),t}function $(e){return null==e||(U(e)&&(E(e)||d(e)||j(e))?0===e.length:0===B(e).length)}function V(e,t){var n=B(t),r=n.length;if(null==e)return!r;for(var i=Object(e),o=0;o<r;o++){var u=n[o];if(t[u]!==i[u]||!(u in i))return!1}return!0}function X(e){return e instanceof X?e:this instanceof X?void(this._wrapped=e):new X(e)}function z(e,t,n,r){if(e===t)return 0!==e||1/e==1/t;if(null==e||null==t)return!1;if(e!=e)return t!=t;var o=typeof e;return("function"===o||"object"===o||"object"==typeof t)&&function e(t,n,r,o){t instanceof X&&(t=t._wrapped);n instanceof X&&(n=n._wrapped);var u=i.s.call(t);if(u!==i.s.call(n))return!1;switch(u){case"[object RegExp]":case"[object String]":return""+t==""+n;case"[object Number]":return+t!=+t?+n!=+n:0==+t?1/+t==1/n:+t==+n;case"[object Date]":case"[object Boolean]":return+t==+n;case"[object Symbol]":return i.d.valueOf.call(t)===i.d.valueOf.call(n);case"[object ArrayBuffer]":return e(new DataView(t),new DataView(n),r,o);case"[object DataView]":var s=q(t);if(s!==q(n))return!1;for(;s--;)if(t.getUint8(s)!==n.getUint8(s))return!1;return!0}if(H(t))return e(new DataView(t.buffer),new DataView(n.buffer),r,o);var a="[object Array]"===u;if(!a){if("object"!=typeof t||"object"!=typeof n)return!1;var c=t.constructor,l=n.constructor;if(c!==l&&!(_(c)&&c instanceof c&&_(l)&&l instanceof l)&&"constructor"in t&&"constructor"in n)return!1}o=o||[];var f=(r=r||[]).length;for(;f--;)if(r[f]===t)return o[f]===n;if(r.push(t),o.push(n),a){if((f=t.length)!==n.length)return!1;for(;f--;)if(!z(t[f],n[f],r,o))return!1}else{var d,p=B(t);if(f=p.length,B(n).length!==f)return!1;for(;f--;)if(d=p[f],!O(n,d)||!z(t[d],n[d],r,o))return!1}return r.pop(),o.pop(),!0}(e,t,n,r)}function Y(e,t){return z(e,t)}function G(e){if(!u(e))return[];var t=[];for(var n in e)t.push(n);return i.h&&W(e,t),t}function K(e){for(var t=B(e),n=t.length,r=Array(n),i=0;i<n;i++)r[i]=e[t[i]];return r}function J(e){for(var t=B(e),n=t.length,r=Array(n),i=0;i<n;i++)r[i]=[t[i],e[t[i]]];return r}function Q(e){for(var t={},n=B(e),r=0,i=n.length;r<i;r++)t[e[n[r]]]=n[r];return t}function Z(e){var t=[];for(var n in e)_(e[n])&&t.push(n);return t.sort()}function ee(e,t){return function(n){var r=arguments.length;if(t&&(n=Object(n)),r<2||null==n)return n;for(var i=1;i<r;i++)for(var o=arguments[i],u=e(o),s=u.length,a=0;a<s;a++){var c=u[a];t&&void 0!==n[c]||(n[c]=o[c])}return n}}X.VERSION=i.e,X.prototype.value=function(){return this._wrapped},X.prototype.valueOf=X.prototype.toJSON=X.prototype.value,X.prototype.toString=function(){return String(this._wrapped)};var te=ee(G),ne=ee(B),re=ee(G,!0);function ie(e){if(!u(e))return{};if(i.j)return Object(i.j)(e);var t=function(){};t.prototype=e;var n=new t;return t.prototype=null,n}function oe(e,t){var n=ie(e);return t&&ne(n,t),n}function ue(e){return u(e)?E(e)?e.slice():te({},e):e}function se(e,t){return t(e),e}function ae(e,t){if(!E(t))return O(e,t);for(var n=t.length,r=0;r<n;r++){var o=t[r];if(null==e||!i.i.call(e,o))return!1;e=e[o]}return!!n}function ce(e){return e}function le(e){return e=ne({},e),function(t){return V(t,e)}}function fe(e,t){for(var n=t.length,r=0;r<n;r++){if(null==e)return;e=e[t[r]]}return n?e:void 0}function de(e){return E(e)?function(t){return fe(t,e)}:L(e)}function pe(e,t,n){if(void 0===t)return e;switch(null==n?3:n){case 1:return function(n){return e.call(t,n)};case 3:return function(n,r,i){return e.call(t,n,r,i)};case 4:return function(n,r,i,o){return e.call(t,n,r,i,o)}}return function(){return e.apply(t,arguments)}}function he(e,t,n){return null==e?ce:_(e)?pe(e,t,n):u(e)&&!E(e)?le(e):de(e)}function ge(e,t){return he(e,t,1/0)}function ve(e,t,n){return X.iteratee!==ge?X.iteratee(e,t):he(e,t,n)}function me(e,t,n){t=ve(t,n);for(var r=B(e),i=r.length,o={},u=0;u<i;u++){var s=r[u];o[s]=t(e[s],s,e)}return o}function ye(){}function xe(e){return null==e?function(){}:function(t){return E(t)?fe(e,t):e[t]}}function be(e,t,n){var r=Array(Math.max(0,e));t=pe(t,n,1);for(var i=0;i<e;i++)r[i]=t(i);return r}function we(e,t){return null==t&&(t=e,e=0),e+Math.floor(Math.random()*(t-e+1))}X.iteratee=ge;var Te=Date.now||function(){return(new Date).getTime()};function Se(e){var t=function(t){return e[t]},n="(?:"+B(e).join("|")+")",r=RegExp(n),i=RegExp(n,"g");return function(e){return e=null==e?"":""+e,r.test(e)?e.replace(i,t):e}}var Ee={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},Ne=Se(Ee),Ce=Se(Q(Ee)),_e=X.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g},Oe=/(.)^/,De={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},je=/\\|'|\r|\n|\u2028|\u2029/g;function Ae(e){return"\\"+De[e]}function ke(e,t,n){!t&&n&&(t=n),t=re({},t,X.templateSettings);var r,i=RegExp([(t.escape||Oe).source,(t.interpolate||Oe).source,(t.evaluate||Oe).source].join("|")+"|$","g"),o=0,u="__p+='";e.replace(i,(function(t,n,r,i,s){return u+=e.slice(o,s).replace(je,Ae),o=s+t.length,n?u+="'+\n((__t=("+n+"))==null?'':_.escape(__t))+\n'":r?u+="'+\n((__t=("+r+"))==null?'':__t)+\n'":i&&(u+="';\n"+i+"\n__p+='"),t})),u+="';\n",t.variable||(u="with(obj||{}){\n"+u+"}\n"),u="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+u+"return __p;\n";try{r=new Function(t.variable||"obj","_",u)}catch(e){throw e.source=u,e}var s=function(e){return r.call(this,e,X)},a=t.variable||"obj";return s.source="function("+a+"){\n"+u+"}",s}function Pe(e,t,n){E(t)||(t=[t]);var r=t.length;if(!r)return _(n)?n.call(e):n;for(var i=0;i<r;i++){var o=null==e?void 0:e[t[i]];void 0===o&&(o=n,i=r),e=_(o)?o.call(e):o}return e}var Re=0;function Le(e){var t=++Re+"";return e?e+t:t}function qe(e){var t=X(e);return t._chain=!0,t}function Ie(e,t,n,r,i){if(!(r instanceof t))return e.apply(n,i);var o=ie(e.prototype),s=e.apply(o,i);return u(s)?s:o}var Fe=o((function(e,t){var n=Fe.placeholder,r=function(){for(var i=0,o=t.length,u=Array(o),s=0;s<o;s++)u[s]=t[s]===n?arguments[i++]:t[s];for(;i<arguments.length;)u.push(arguments[i++]);return Ie(e,r,this,this,u)};return r}));Fe.placeholder=X;var He=Fe,Me=o((function(e,t,n){if(!_(e))throw new TypeError("Bind must be called on a function");var r=o((function(i){return Ie(e,r,t,this,n.concat(i))}));return r}));function Ue(e,t,n,r){if(r=r||[],t||0===t){if(t<=0)return r.concat(e)}else t=1/0;for(var i=r.length,o=0,u=M(e);o<u;o++){var s=e[o];if(U(s)&&(E(s)||j(s)))if(t>1)Ue(s,t-1,n,r),i=r.length;else for(var a=0,c=s.length;a<c;)r[i++]=s[a++];else n||(r[i++]=s)}return r}var We=o((function(e,t){var n=(t=Ue(t,!1,!1)).length;if(n<1)throw new Error("bindAll must be passed function names");for(;n--;){var r=t[n];e[r]=Me(e[r],e)}return e}));function Be(e,t){var n=function(r){var i=n.cache,o=""+(t?t.apply(this,arguments):r);return O(i,o)||(i[o]=e.apply(this,arguments)),i[o]};return n.cache={},n}var $e=o((function(e,t,n){return setTimeout((function(){return e.apply(null,n)}),t)})),Ve=He($e,X,1);function Xe(e,t,n){var r,i,o,u,s=0;n||(n={});var a=function(){s=!1===n.leading?0:Te(),r=null,u=e.apply(i,o),r||(i=o=null)},c=function(){var c=Te();s||!1!==n.leading||(s=c);var l=t-(c-s);return i=this,o=arguments,l<=0||l>t?(r&&(clearTimeout(r),r=null),s=c,u=e.apply(i,o),r||(i=o=null)):r||!1===n.trailing||(r=setTimeout(a,l)),u};return c.cancel=function(){clearTimeout(r),s=0,r=i=o=null},c}function ze(e,t,n){var r,i,u=function(t,n){r=null,n&&(i=e.apply(t,n))},s=o((function(o){if(r&&clearTimeout(r),n){var s=!r;r=setTimeout(u,t),s&&(i=e.apply(this,o))}else r=$e(u,t,this,o);return i}));return s.cancel=function(){clearTimeout(r),r=null},s}function Ye(e,t){return He(t,e)}function Ge(e){return function(){return!e.apply(this,arguments)}}function Ke(){var e=arguments,t=e.length-1;return function(){for(var n=t,r=e[t].apply(this,arguments);n--;)r=e[n].call(this,r);return r}}function Je(e,t){return function(){if(--e<1)return t.apply(this,arguments)}}function Qe(e,t){var n;return function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=null),n}}var Ze=He(Qe,2);function et(e,t,n){t=ve(t,n);for(var r,i=B(e),o=0,u=i.length;o<u;o++)if(t(e[r=i[o]],r,e))return r}function tt(e){return function(t,n,r){n=ve(n,r);for(var i=M(t),o=e>0?0:i-1;o>=0&&o<i;o+=e)if(n(t[o],o,t))return o;return-1}}var nt=tt(1),rt=tt(-1);function it(e,t,n,r){for(var i=(n=ve(n,r,1))(t),o=0,u=M(e);o<u;){var s=Math.floor((o+u)/2);n(e[s])<i?o=s+1:u=s}return o}function ot(e,t,n){return function(r,o,u){var s=0,a=M(r);if("number"==typeof u)e>0?s=u>=0?u:Math.max(u+a,s):a=u>=0?Math.min(u+1,a):u+a+1;else if(n&&u&&a)return r[u=n(r,o)]===o?u:-1;if(o!=o)return(u=t(i.q.call(r,s,a),k))>=0?u+s:-1;for(u=e>0?s:a-1;u>=0&&u<a;u+=e)if(r[u]===o)return u;return-1}}var ut=ot(1,nt,it),st=ot(-1,rt);function at(e,t,n){var r=(U(e)?nt:et)(e,t,n);if(void 0!==r&&-1!==r)return e[r]}function ct(e,t){return at(e,le(t))}function lt(e,t,n){var r,i;if(t=pe(t,n),U(e))for(r=0,i=e.length;r<i;r++)t(e[r],r,e);else{var o=B(e);for(r=0,i=o.length;r<i;r++)t(e[o[r]],o[r],e)}return e}function ft(e,t,n){t=ve(t,n);for(var r=!U(e)&&B(e),i=(r||e).length,o=Array(i),u=0;u<i;u++){var s=r?r[u]:u;o[u]=t(e[s],s,e)}return o}function dt(e){var t=function(t,n,r,i){var o=!U(t)&&B(t),u=(o||t).length,s=e>0?0:u-1;for(i||(r=t[o?o[s]:s],s+=e);s>=0&&s<u;s+=e){var a=o?o[s]:s;r=n(r,t[a],a,t)}return r};return function(e,n,r,i){var o=arguments.length>=3;return t(e,pe(n,i,4),r,o)}}var pt=dt(1),ht=dt(-1);function gt(e,t,n){var r=[];return t=ve(t,n),lt(e,(function(e,n,i){t(e,n,i)&&r.push(e)})),r}function vt(e,t,n){return gt(e,Ge(ve(t)),n)}function mt(e,t,n){t=ve(t,n);for(var r=!U(e)&&B(e),i=(r||e).length,o=0;o<i;o++){var u=r?r[o]:o;if(!t(e[u],u,e))return!1}return!0}function yt(e,t,n){t=ve(t,n);for(var r=!U(e)&&B(e),i=(r||e).length,o=0;o<i;o++){var u=r?r[o]:o;if(t(e[u],u,e))return!0}return!1}function xt(e,t,n,r){return U(e)||(e=K(e)),("number"!=typeof n||r)&&(n=0),ut(e,t,n)>=0}var bt=o((function(e,t,n){var r,i;return _(t)?i=t:E(t)&&(r=t.slice(0,-1),t=t[t.length-1]),ft(e,(function(e){var o=i;if(!o){if(r&&r.length&&(e=fe(e,r)),null==e)return;o=e[t]}return null==o?o:o.apply(e,n)}))}));function wt(e,t){return ft(e,de(t))}function Tt(e,t){return gt(e,le(t))}function St(e,t,n){var r,i,o=-1/0,u=-1/0;if(null==t||"number"==typeof t&&"object"!=typeof e[0]&&null!=e)for(var s=0,a=(e=U(e)?e:K(e)).length;s<a;s++)null!=(r=e[s])&&r>o&&(o=r);else t=ve(t,n),lt(e,(function(e,n,r){((i=t(e,n,r))>u||i===-1/0&&o===-1/0)&&(o=e,u=i)}));return o}function Et(e,t,n){var r,i,o=1/0,u=1/0;if(null==t||"number"==typeof t&&"object"!=typeof e[0]&&null!=e)for(var s=0,a=(e=U(e)?e:K(e)).length;s<a;s++)null!=(r=e[s])&&r<o&&(o=r);else t=ve(t,n),lt(e,(function(e,n,r){((i=t(e,n,r))<u||i===1/0&&o===1/0)&&(o=e,u=i)}));return o}function Nt(e,t,n){if(null==t||n)return U(e)||(e=K(e)),e[we(e.length-1)];var r=U(e)?ue(e):K(e),i=M(r);t=Math.max(Math.min(t,i),0);for(var o=i-1,u=0;u<t;u++){var s=we(u,o),a=r[u];r[u]=r[s],r[s]=a}return r.slice(0,t)}function Ct(e){return Nt(e,1/0)}function _t(e,t,n){var r=0;return t=ve(t,n),wt(ft(e,(function(e,n,i){return{value:e,index:r++,criteria:t(e,n,i)}})).sort((function(e,t){var n=e.criteria,r=t.criteria;if(n!==r){if(n>r||void 0===n)return 1;if(n<r||void 0===r)return-1}return e.index-t.index})),"value")}function Ot(e,t){return function(n,r,i){var o=t?[[],[]]:{};return r=ve(r,i),lt(n,(function(t,i){var u=r(t,i,n);e(o,t,u)})),o}}var Dt=Ot((function(e,t,n){O(e,n)?e[n].push(t):e[n]=[t]})),jt=Ot((function(e,t,n){e[n]=t})),At=Ot((function(e,t,n){O(e,n)?e[n]++:e[n]=1})),kt=Ot((function(e,t,n){e[n?0:1].push(t)}),!0),Pt=/[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g;function Rt(e){return e?E(e)?i.q.call(e):d(e)?e.match(Pt):U(e)?ft(e,ce):K(e):[]}function Lt(e){return null==e?0:U(e)?e.length:B(e).length}function qt(e,t,n){return t in n}var It=o((function(e,t){var n={},r=t[0];if(null==e)return n;_(r)?(t.length>1&&(r=pe(r,t[1])),t=G(e)):(r=qt,t=Ue(t,!1,!1),e=Object(e));for(var i=0,o=t.length;i<o;i++){var u=t[i],s=e[u];r(s,u,e)&&(n[u]=s)}return n})),Ft=o((function(e,t){var n,r=t[0];return _(r)?(r=Ge(r),t.length>1&&(n=t[1])):(t=ft(Ue(t,!1,!1),String),r=function(e,n){return!xt(t,n)}),It(e,r,n)}));function Ht(e,t,n){return i.q.call(e,0,Math.max(0,e.length-(null==t||n?1:t)))}function Mt(e,t,n){return null==e||e.length<1?null==t||n?void 0:[]:null==t||n?e[0]:Ht(e,e.length-t)}function Ut(e,t,n){return i.q.call(e,null==t||n?1:t)}function Wt(e,t,n){return null==e||e.length<1?null==t||n?void 0:[]:null==t||n?e[e.length-1]:Ut(e,Math.max(0,e.length-t))}function Bt(e){return gt(e,Boolean)}function $t(e,t){return Ue(e,t,!1)}var Vt=o((function(e,t){return t=Ue(t,!0,!0),gt(e,(function(e){return!xt(t,e)}))})),Xt=o((function(e,t){return Vt(e,t)}));function zt(e,t,n,r){c(t)||(r=n,n=t,t=!1),null!=n&&(n=ve(n,r));for(var i=[],o=[],u=0,s=M(e);u<s;u++){var a=e[u],l=n?n(a,u,e):a;t&&!n?(u&&o===l||i.push(a),o=l):n?xt(o,l)||(o.push(l),i.push(a)):xt(i,a)||i.push(a)}return i}var Yt=o((function(e){return zt(Ue(e,!0,!0))}));function Gt(e){for(var t=[],n=arguments.length,r=0,i=M(e);r<i;r++){var o=e[r];if(!xt(t,o)){var u;for(u=1;u<n&&xt(arguments[u],o);u++);u===n&&t.push(o)}}return t}function Kt(e){for(var t=e&&St(e,M).length||0,n=Array(t),r=0;r<t;r++)n[r]=wt(e,r);return n}var Jt=o(Kt);function Qt(e,t){for(var n={},r=0,i=M(e);r<i;r++)t?n[e[r]]=t[r]:n[e[r][0]]=e[r][1];return n}function Zt(e,t,n){null==t&&(t=e||0,e=0),n||(n=t<e?-1:1);for(var r=Math.max(Math.ceil((t-e)/n),0),i=Array(r),o=0;o<r;o++,e+=n)i[o]=e;return i}function en(e,t){if(null==t||t<1)return[];for(var n=[],r=0,o=e.length;r<o;)n.push(i.q.call(e,r,r+=t));return n}function tn(e,t){return e._chain?X(t).chain():t}function nn(e){return lt(Z(e),(function(t){var n=X[t]=e[t];X.prototype[t]=function(){var e=[this._wrapped];return i.o.apply(e,arguments),tn(this,n.apply(X,e))}})),X}lt(["pop","push","reverse","shift","sort","splice","unshift"],(function(e){var t=i.a[e];X.prototype[e]=function(){var n=this._wrapped;return null!=n&&(t.apply(n,arguments),"shift"!==e&&"splice"!==e||0!==n.length||delete n[0]),tn(this,n)}})),lt(["concat","join","slice"],(function(e){var t=i.a[e];X.prototype[e]=function(){var e=this._wrapped;return null!=e&&(e=t.apply(e,arguments)),tn(this,e)}}));var rn=X,on=nn(r);on._=on;var un=on}}); +!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=671)}({0:function(e,t,n){var r,i,o;i="undefined"!=typeof window?window:this,o=function(n,i){var o=[],u=n.document,s=o.slice,a=o.concat,c=o.push,l=o.indexOf,f={},d=f.toString,p=f.hasOwnProperty,h={},g=function(e,t){return new g.fn.init(e,t)},v=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,m=/^-ms-/,y=/-([\da-z])/gi,x=function(e,t){return t.toUpperCase()};function b(e){var t=!!e&&"length"in e&&e.length,n=g.type(e);return"function"!==n&&!g.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}g.fn=g.prototype={jquery:"2.2.4",constructor:g,selector:"",length:0,toArray:function(){return s.call(this)},get:function(e){return null!=e?e<0?this[e+this.length]:this[e]:s.call(this)},pushStack:function(e){var t=g.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e){return g.each(this,e)},map:function(e){return this.pushStack(g.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:c,sort:o.sort,splice:o.splice},g.extend=g.fn.extend=function(){var e,t,n,r,i,o,u=arguments[0]||{},s=1,a=arguments.length,c=!1;for("boolean"==typeof u&&(c=u,u=arguments[s]||{},s++),"object"==typeof u||g.isFunction(u)||(u={}),s===a&&(u=this,s--);s<a;s++)if(null!=(e=arguments[s]))for(t in e)n=u[t],u!==(r=e[t])&&(c&&r&&(g.isPlainObject(r)||(i=g.isArray(r)))?(i?(i=!1,o=n&&g.isArray(n)?n:[]):o=n&&g.isPlainObject(n)?n:{},u[t]=g.extend(c,o,r)):void 0!==r&&(u[t]=r));return u},g.extend({expando:"jQuery"+("2.2.4"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===g.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){var t=e&&e.toString();return!g.isArray(e)&&t-parseFloat(t)+1>=0},isPlainObject:function(e){var t;if("object"!==g.type(e)||e.nodeType||g.isWindow(e))return!1;if(e.constructor&&!p.call(e,"constructor")&&!p.call(e.constructor.prototype||{},"isPrototypeOf"))return!1;for(t in e);return void 0===t||p.call(e,t)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?f[d.call(e)]||"object":typeof e},globalEval:function(e){var t,n=eval;(e=g.trim(e))&&(1===e.indexOf("use strict")?((t=u.createElement("script")).text=e,u.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(m,"ms-").replace(y,x)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t){var n,r=0;if(b(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(v,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(b(Object(e))?g.merge(n,"string"==typeof e?[e]:e):c.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:l.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,u=!n;i<o;i++)!t(e[i],i)!==u&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,u=[];if(b(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&u.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&u.push(i);return a.apply([],u)},guid:1,proxy:function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),g.isFunction(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||g.guid++,i},now:Date.now,support:h}),"function"==typeof Symbol&&(g.fn[Symbol.iterator]=o[Symbol.iterator]),g.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),(function(e,t){f["[object "+t+"]"]=t.toLowerCase()}));var w=function(e){var t,n,r,i,o,u,s,a,c,l,f,d,p,h,g,v,m,y,x,b="sizzle"+1*new Date,w=e.document,T=0,S=0,E=ie(),N=ie(),C=ie(),_=function(e,t){return e===t&&(f=!0),0},O={}.hasOwnProperty,A=[],D=A.pop,j=A.push,k=A.push,P=A.slice,R=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",q="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",F="\\["+q+"*("+I+")(?:"+q+"*([*^$|!~]?=)"+q+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+q+"*\\]",H=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+F+")*)|.*)\\)|)",M=new RegExp(q+"+","g"),U=new RegExp("^"+q+"+|((?:^|[^\\\\])(?:\\\\.)*)"+q+"+$","g"),B=new RegExp("^"+q+"*,"+q+"*"),W=new RegExp("^"+q+"*([>+~]|"+q+")"+q+"*"),$=new RegExp("="+q+"*([^\\]'\"]*?)"+q+"*\\]","g"),V=new RegExp(H),Y=new RegExp("^"+I+"$"),X={"ID":new RegExp("^#("+I+")"),"CLASS":new RegExp("^\\.("+I+")"),"TAG":new RegExp("^("+I+"|[*])"),"ATTR":new RegExp("^"+F),"PSEUDO":new RegExp("^"+H),"CHILD":new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+q+"*(even|odd|(([+-]|)(\\d*)n|)"+q+"*(?:([+-]|)"+q+"*(\\d+)|))"+q+"*\\)|)","i"),"bool":new RegExp("^(?:"+L+")$","i"),"needsContext":new RegExp("^"+q+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+q+"*((?:-\\d)?\\d*)"+q+"*\\)|)(?=[^-]|$)","i")},z=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Q=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,J=/[+~]/,Z=/'|\\/g,ee=new RegExp("\\\\([\\da-f]{1,6}"+q+"?|("+q+")|.)","ig"),te=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},ne=function(){d()};try{k.apply(A=P.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){k={apply:A.length?function(e,t){j.apply(e,P.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function re(e,t,r,i){var o,s,c,l,f,h,m,y,T=t&&t.ownerDocument,S=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==S&&9!==S&&11!==S)return r;if(!i&&((t?t.ownerDocument||t:w)!==p&&d(t),t=t||p,g)){if(11!==S&&(h=Q.exec(e)))if(o=h[1]){if(9===S){if(!(c=t.getElementById(o)))return r;if(c.id===o)return r.push(c),r}else if(T&&(c=T.getElementById(o))&&x(t,c)&&c.id===o)return r.push(c),r}else{if(h[2])return k.apply(r,t.getElementsByTagName(e)),r;if((o=h[3])&&n.getElementsByClassName&&t.getElementsByClassName)return k.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!C[e+" "]&&(!v||!v.test(e))){if(1!==S)T=t,y=e;else if("object"!==t.nodeName.toLowerCase()){for((l=t.getAttribute("id"))?l=l.replace(Z,"\\$&"):t.setAttribute("id",l=b),s=(m=u(e)).length,f=Y.test(l)?"#"+l:"[id='"+l+"']";s--;)m[s]=f+" "+he(m[s]);y=m.join(","),T=J.test(e)&&de(t.parentNode)||t}if(y)try{return k.apply(r,T.querySelectorAll(y)),r}catch(e){}finally{l===b&&t.removeAttribute("id")}}}return a(e.replace(U,"$1"),t,r,i)}function ie(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function oe(e){return e[b]=!0,e}function ue(e){var t=p.createElement("div");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function se(e,t){for(var n=e.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=t}function ae(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||1<<31)-(~e.sourceIndex||1<<31);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function ce(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function le(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function fe(e){return oe((function(t){return t=+t,oe((function(n,r){for(var i,o=e([],n.length,t),u=o.length;u--;)n[i=o[u]]&&(n[i]=!(r[i]=n[i]))}))}))}function de(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=re.support={},o=re.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},d=re.setDocument=function(e){var t,i,u=e?e.ownerDocument||e:w;return u!==p&&9===u.nodeType&&u.documentElement?(h=(p=u).documentElement,g=!o(p),(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",ne,!1):i.attachEvent&&i.attachEvent("onunload",ne)),n.attributes=ue((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ue((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=K.test(p.getElementsByClassName),n.getById=ue((function(e){return h.appendChild(e).id=b,!p.getElementsByName||!p.getElementsByName(b).length})),n.getById?(r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}},r.filter.ID=function(e){var t=e.replace(ee,te);return function(e){return e.getAttribute("id")===t}}):(delete r.find.ID,r.filter.ID=function(e){var t=e.replace(ee,te);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},m=[],v=[],(n.qsa=K.test(p.querySelectorAll))&&(ue((function(e){h.appendChild(e).innerHTML="<a id='"+b+"'></a><select id='"+b+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+q+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+q+"*(?:value|"+L+")"),e.querySelectorAll("[id~="+b+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||v.push(".#.+[+~]")})),ue((function(e){var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+q+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")}))),(n.matchesSelector=K.test(y=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue((function(e){n.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",H)})),v=v.length&&new RegExp(v.join("|")),m=m.length&&new RegExp(m.join("|")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},_=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===p||e.ownerDocument===w&&x(w,e)?-1:t===p||t.ownerDocument===w&&x(w,t)?1:l?R(l,e)-R(l,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,u=[e],s=[t];if(!i||!o)return e===p?-1:t===p?1:i?-1:o?1:l?R(l,e)-R(l,t):0;if(i===o)return ae(e,t);for(n=e;n=n.parentNode;)u.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;u[r]===s[r];)r++;return r?ae(u[r],s[r]):u[r]===w?-1:s[r]===w?1:0},p):p},re.matches=function(e,t){return re(e,null,null,t)},re.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&d(e),t=t.replace($,"='$1']"),n.matchesSelector&&g&&!C[t+" "]&&(!m||!m.test(t))&&(!v||!v.test(t)))try{var r=y.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return re(t,p,null,[e]).length>0},re.contains=function(e,t){return(e.ownerDocument||e)!==p&&d(e),x(e,t)},re.attr=function(e,t){(e.ownerDocument||e)!==p&&d(e);var i=r.attrHandle[t.toLowerCase()],o=i&&O.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},re.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},re.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(_),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return l=null,e},i=re.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=re.selectors={cacheLength:50,createPseudo:oe,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{"ATTR":function(e){return e[1]=e[1].replace(ee,te),e[3]=(e[3]||e[4]||e[5]||"").replace(ee,te),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},"CHILD":function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||re.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&re.error(e[0]),e},"PSEUDO":function(e){var t,n=!e[6]&&e[2];return X.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=u(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{"TAG":function(e){var t=e.replace(ee,te).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},"CLASS":function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+q+")"+e+"("+q+"|$)"))&&E(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")}))},"ATTR":function(e,t,n){return function(r){var i=re.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(M," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},"CHILD":function(e,t,n,r,i){var o="nth"!==e.slice(0,3),u="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,a){var c,l,f,d,p,h,g=o!==u?"nextSibling":"previousSibling",v=t.parentNode,m=s&&t.nodeName.toLowerCase(),y=!a&&!s,x=!1;if(v){if(o){for(;g;){for(d=t;d=d[g];)if(s?d.nodeName.toLowerCase()===m:1===d.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[u?v.firstChild:v.lastChild],u&&y){for(x=(p=(c=(l=(f=(d=v)[b]||(d[b]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===T&&c[1])&&c[2],d=p&&v.childNodes[p];d=++p&&d&&d[g]||(x=p=0)||h.pop();)if(1===d.nodeType&&++x&&d===t){l[e]=[T,p,x];break}}else if(y&&(x=p=(c=(l=(f=(d=t)[b]||(d[b]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===T&&c[1]),!1===x)for(;(d=++p&&d&&d[g]||(x=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==m:1!==d.nodeType)||!++x||(y&&((l=(f=d[b]||(d[b]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]=[T,x]),d!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},"PSEUDO":function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||re.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?oe((function(e,n){for(var r,o=i(e,t),u=o.length;u--;)e[r=R(e,o[u])]=!(n[r]=o[u])})):function(e){return i(e,0,n)}):i}},pseudos:{"not":oe((function(e){var t=[],n=[],r=s(e.replace(U,"$1"));return r[b]?oe((function(e,t,n,i){for(var o,u=r(e,null,i,[]),s=e.length;s--;)(o=u[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),"has":oe((function(e){return function(t){return re(e,t).length>0}})),"contains":oe((function(e){return e=e.replace(ee,te),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}})),"lang":oe((function(e){return Y.test(e||"")||re.error("unsupported lang: "+e),e=e.replace(ee,te).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),"target":function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},"root":function(e){return e===h},"focus":function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},"enabled":function(e){return!1===e.disabled},"disabled":function(e){return!0===e.disabled},"checked":function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},"selected":function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},"empty":function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},"parent":function(e){return!r.pseudos.empty(e)},"header":function(e){return G.test(e.nodeName)},"input":function(e){return z.test(e.nodeName)},"button":function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},"text":function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},"first":fe((function(){return[0]})),"last":fe((function(e,t){return[t-1]})),"eq":fe((function(e,t,n){return[n<0?n+t:n]})),"even":fe((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),"odd":fe((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),"lt":fe((function(e,t,n){for(var r=n<0?n+t:n;--r>=0;)e.push(r);return e})),"gt":fe((function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e}))}}).pseudos.nth=r.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=ce(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=le(t);function pe(){}function he(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function ge(e,t,n){var r=t.dir,i=n&&"parentNode"===r,o=S++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||i)return e(t,n,o)}:function(t,n,u){var s,a,c,l=[T,o];if(u){for(;t=t[r];)if((1===t.nodeType||i)&&e(t,n,u))return!0}else for(;t=t[r];)if(1===t.nodeType||i){if((s=(a=(c=t[b]||(t[b]={}))[t.uniqueID]||(c[t.uniqueID]={}))[r])&&s[0]===T&&s[1]===o)return l[2]=s[2];if(a[r]=l,l[2]=e(t,n,u))return!0}}}function ve(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function me(e,t,n,r,i){for(var o,u=[],s=0,a=e.length,c=null!=t;s<a;s++)(o=e[s])&&(n&&!n(o,r,i)||(u.push(o),c&&t.push(s)));return u}function ye(e,t,n,r,i,o){return r&&!r[b]&&(r=ye(r)),i&&!i[b]&&(i=ye(i,o)),oe((function(o,u,s,a){var c,l,f,d=[],p=[],h=u.length,g=o||function(e,t,n){for(var r=0,i=t.length;r<i;r++)re(e,t[r],n);return n}(t||"*",s.nodeType?[s]:s,[]),v=!e||!o&&t?g:me(g,d,e,s,a),m=n?i||(o?e:h||r)?[]:u:v;if(n&&n(v,m,s,a),r)for(c=me(m,p),r(c,[],s,a),l=c.length;l--;)(f=c[l])&&(m[p[l]]=!(v[p[l]]=f));if(o){if(i||e){if(i){for(c=[],l=m.length;l--;)(f=m[l])&&c.push(v[l]=f);i(null,m=[],c,a)}for(l=m.length;l--;)(f=m[l])&&(c=i?R(o,f):d[l])>-1&&(o[c]=!(u[c]=f))}}else m=me(m===u?m.splice(h,m.length):m),i?i(null,u,m,a):k.apply(u,m)}))}function xe(e){for(var t,n,i,o=e.length,u=r.relative[e[0].type],s=u||r.relative[" "],a=u?1:0,l=ge((function(e){return e===t}),s,!0),f=ge((function(e){return R(t,e)>-1}),s,!0),d=[function(e,n,r){var i=!u&&(r||n!==c)||((t=n).nodeType?l(e,n,r):f(e,n,r));return t=null,i}];a<o;a++)if(n=r.relative[e[a].type])d=[ge(ve(d),n)];else{if((n=r.filter[e[a].type].apply(null,e[a].matches))[b]){for(i=++a;i<o&&!r.relative[e[i].type];i++);return ye(a>1&&ve(d),a>1&&he(e.slice(0,a-1).concat({value:" "===e[a-2].type?"*":""})).replace(U,"$1"),n,a<i&&xe(e.slice(a,i)),i<o&&xe(e=e.slice(i)),i<o&&he(e))}d.push(n)}return ve(d)}return pe.prototype=r.filters=r.pseudos,r.setFilters=new pe,u=re.tokenize=function(e,t){var n,i,o,u,s,a,c,l=N[e+" "];if(l)return t?0:l.slice(0);for(s=e,a=[],c=r.preFilter;s;){for(u in n&&!(i=B.exec(s))||(i&&(s=s.slice(i[0].length)||s),a.push(o=[])),n=!1,(i=W.exec(s))&&(n=i.shift(),o.push({value:n,type:i[0].replace(U," ")}),s=s.slice(n.length)),r.filter)!(i=X[u].exec(s))||c[u]&&!(i=c[u](i))||(n=i.shift(),o.push({value:n,type:u,matches:i}),s=s.slice(n.length));if(!n)break}return t?s.length:s?re.error(e):N(e,a).slice(0)},s=re.compile=function(e,t){var n,i=[],o=[],s=C[e+" "];if(!s){for(t||(t=u(e)),n=t.length;n--;)(s=xe(t[n]))[b]?i.push(s):o.push(s);(s=C(e,function(e,t){var n=t.length>0,i=e.length>0,o=function(o,u,s,a,l){var f,h,v,m=0,y="0",x=o&&[],b=[],w=c,S=o||i&&r.find.TAG("*",l),E=T+=null==w?1:Math.random()||.1,N=S.length;for(l&&(c=u===p||u||l);y!==N&&null!=(f=S[y]);y++){if(i&&f){for(h=0,u||f.ownerDocument===p||(d(f),s=!g);v=e[h++];)if(v(f,u||p,s)){a.push(f);break}l&&(T=E)}n&&((f=!v&&f)&&m--,o&&x.push(f))}if(m+=y,n&&y!==m){for(h=0;v=t[h++];)v(x,b,u,s);if(o){if(m>0)for(;y--;)x[y]||b[y]||(b[y]=D.call(a));b=me(b)}k.apply(a,b),l&&!o&&b.length>0&&m+t.length>1&&re.uniqueSort(a)}return l&&(T=E,c=w),x};return n?oe(o):o}(o,i))).selector=e}return s},a=re.select=function(e,t,i,o){var a,c,l,f,d,p="function"==typeof e&&e,h=!o&&u(e=p.selector||e);if(i=i||[],1===h.length){if((c=h[0]=h[0].slice(0)).length>2&&"ID"===(l=c[0]).type&&n.getById&&9===t.nodeType&&g&&r.relative[c[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(ee,te),t)||[])[0]))return i;p&&(t=t.parentNode),e=e.slice(c.shift().value.length)}for(a=X.needsContext.test(e)?0:c.length;a--&&(l=c[a],!r.relative[f=l.type]);)if((d=r.find[f])&&(o=d(l.matches[0].replace(ee,te),J.test(c[0].type)&&de(t.parentNode)||t))){if(c.splice(a,1),!(e=o.length&&he(c)))return k.apply(i,o),i;break}}return(p||s(e,h))(o,t,!g,i,!t||J.test(e)&&de(t.parentNode)||t),i},n.sortStable=b.split("").sort(_).join("")===b,n.detectDuplicates=!!f,d(),n.sortDetached=ue((function(e){return 1&e.compareDocumentPosition(p.createElement("div"))})),ue((function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")}))||se("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ue((function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||se("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ue((function(e){return null==e.getAttribute("disabled")}))||se(L,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),re}(n);g.find=w,g.expr=w.selectors,g.expr[":"]=g.expr.pseudos,g.uniqueSort=g.unique=w.uniqueSort,g.text=w.getText,g.isXMLDoc=w.isXML,g.contains=w.contains;var T=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&g(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},E=g.expr.match.needsContext,N=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,C=/^.[^:#\[\.,]*$/;function _(e,t,n){if(g.isFunction(t))return g.grep(e,(function(e,r){return!!t.call(e,r,e)!==n}));if(t.nodeType)return g.grep(e,(function(e){return e===t!==n}));if("string"==typeof t){if(C.test(t))return g.filter(t,e,n);t=g.filter(t,e)}return g.grep(e,(function(e){return l.call(t,e)>-1!==n}))}g.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?g.find.matchesSelector(r,e)?[r]:[]:g.find.matches(e,g.grep(t,(function(e){return 1===e.nodeType})))},g.fn.extend({find:function(e){var t,n=this.length,r=[],i=this;if("string"!=typeof e)return this.pushStack(g(e).filter((function(){for(t=0;t<n;t++)if(g.contains(i[t],this))return!0})));for(t=0;t<n;t++)g.find(e,i[t],r);return(r=this.pushStack(n>1?g.unique(r):r)).selector=this.selector?this.selector+" "+e:e,r},filter:function(e){return this.pushStack(_(this,e||[],!1))},not:function(e){return this.pushStack(_(this,e||[],!0))},is:function(e){return!!_(this,"string"==typeof e&&E.test(e)?g(e):e||[],!1).length}});var O,A=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;(g.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||O,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:A.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof g?t[0]:t,g.merge(this,g.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:u,!0)),N.test(r[1])&&g.isPlainObject(t))for(r in t)g.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=u.getElementById(r[2]))&&i.parentNode&&(this.length=1,this[0]=i),this.context=u,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):g.isFunction(e)?void 0!==n.ready?n.ready(e):e(g):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),g.makeArray(e,this))}).prototype=g.fn,O=g(u);var D=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function k(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}g.fn.extend({has:function(e){var t=g(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(g.contains(this,t[e]))return!0}))},closest:function(e,t){for(var n,r=0,i=this.length,o=[],u=E.test(e)||"string"!=typeof e?g(e,t||this.context):0;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(u?u.index(n)>-1:1===n.nodeType&&g.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?g.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?l.call(g(e),this[0]):l.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(g.uniqueSort(g.merge(this.get(),g(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),g.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return k(e,"nextSibling")},prev:function(e){return k(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return e.contentDocument||g.merge([],e.childNodes)}},(function(e,t){g.fn[e]=function(n,r){var i=g.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=g.filter(r,i)),this.length>1&&(j[e]||g.uniqueSort(i),D.test(e)&&i.reverse()),this.pushStack(i)}}));var P,R=/\S+/g;function L(){u.removeEventListener("DOMContentLoaded",L),n.removeEventListener("load",L),g.ready()}g.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return g.each(e.match(R)||[],(function(e,n){t[n]=!0})),t}(e):g.extend({},e);var t,n,r,i,o=[],u=[],s=-1,a=function(){for(i=e.once,r=t=!0;u.length;s=-1)for(n=u.shift();++s<o.length;)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},c={add:function(){return o&&(n&&!t&&(s=o.length-1,u.push(n)),function t(n){g.each(n,(function(n,r){g.isFunction(r)?e.unique&&c.has(r)||o.push(r):r&&r.length&&"string"!==g.type(r)&&t(r)}))}(arguments),n&&!t&&a()),this},remove:function(){return g.each(arguments,(function(e,t){for(var n;(n=g.inArray(t,o,n))>-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?g.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=u=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=u=[],n||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],u.push(n),t||a()),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!r}};return c},g.extend({Deferred:function(e){var t=[["resolve","done",g.Callbacks("once memory"),"resolved"],["reject","fail",g.Callbacks("once memory"),"rejected"],["notify","progress",g.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return g.Deferred((function(n){g.each(t,(function(t,o){var u=g.isFunction(e[t])&&e[t];i[o[1]]((function(){var e=u&&u.apply(this,arguments);e&&g.isFunction(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[o[0]+"With"](this===r?n.promise():this,u?[e]:arguments)}))})),e=null})).promise()},promise:function(e){return null!=e?g.extend(e,r):r}},i={};return r.pipe=r.then,g.each(t,(function(e,o){var u=o[2],s=o[3];r[o[1]]=u.add,s&&u.add((function(){n=s}),t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=u.fireWith})),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=s.call(arguments),u=o.length,a=1!==u||e&&g.isFunction(e.promise)?u:0,c=1===a?e:g.Deferred(),l=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?s.call(arguments):i,r===t?c.notifyWith(n,r):--a||c.resolveWith(n,r)}};if(u>1)for(t=new Array(u),n=new Array(u),r=new Array(u);i<u;i++)o[i]&&g.isFunction(o[i].promise)?o[i].promise().progress(l(i,n,t)).done(l(i,r,o)).fail(c.reject):--a;return a||c.resolveWith(r,o),c.promise()}}),g.fn.ready=function(e){return g.ready.promise().done(e),this},g.extend({isReady:!1,readyWait:1,holdReady:function(e){e?g.readyWait++:g.ready(!0)},ready:function(e){(!0===e?--g.readyWait:g.isReady)||(g.isReady=!0,!0!==e&&--g.readyWait>0||(P.resolveWith(u,[g]),g.fn.triggerHandler&&(g(u).triggerHandler("ready"),g(u).off("ready"))))}}),g.ready.promise=function(e){return P||(P=g.Deferred(),"complete"===u.readyState||"loading"!==u.readyState&&!u.documentElement.doScroll?n.setTimeout(g.ready):(u.addEventListener("DOMContentLoaded",L),n.addEventListener("load",L))),P.promise(e)},g.ready.promise();var q=function(e,t,n,r,i,o,u){var s=0,a=e.length,c=null==n;if("object"===g.type(n))for(s in i=!0,n)q(e,t,s,n[s],!0,o,u);else if(void 0!==r&&(i=!0,g.isFunction(r)||(u=!0),c&&(u?(t.call(e,r),t=null):(c=t,t=function(e,t,n){return c.call(g(e),n)})),t))for(;s<a;s++)t(e[s],n,u?r:r.call(e[s],s,t(e[s],n)));return i?e:c?t.call(e):a?t(e[0],n):o},I=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function F(){this.expando=g.expando+F.uid++}F.uid=1,F.prototype={register:function(e,t){var n=t||{};return e.nodeType?e[this.expando]=n:Object.defineProperty(e,this.expando,{value:n,writable:!0,configurable:!0}),e[this.expando]},cache:function(e){if(!I(e))return{};var t=e[this.expando];return t||(t={},I(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[t]=n;else for(r in t)i[r]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][t]},access:function(e,t,n){var r;return void 0===t||t&&"string"==typeof t&&void 0===n?void 0!==(r=this.get(e,t))?r:this.get(e,g.camelCase(t)):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r,i,o=e[this.expando];if(void 0!==o){if(void 0===t)this.register(e);else{g.isArray(t)?r=t.concat(t.map(g.camelCase)):(i=g.camelCase(t),r=t in o?[t,i]:(r=i)in o?[r]:r.match(R)||[]),n=r.length;for(;n--;)delete o[r[n]]}(void 0===t||g.isEmptyObject(o))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!g.isEmptyObject(t)}};var H=new F,M=new F,U=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,B=/[A-Z]/g;function W(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(B,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===n||"false"!==n&&("null"===n?null:+n+""===n?+n:U.test(n)?g.parseJSON(n):n)}catch(e){}M.set(e,t,n)}else n=void 0;return n}g.extend({hasData:function(e){return M.hasData(e)||H.hasData(e)},data:function(e,t,n){return M.access(e,t,n)},removeData:function(e,t){M.remove(e,t)},_data:function(e,t,n){return H.access(e,t,n)},_removeData:function(e,t){H.remove(e,t)}}),g.fn.extend({data:function(e,t){var n,r,i,o=this[0],u=o&&o.attributes;if(void 0===e){if(this.length&&(i=M.get(o),1===o.nodeType&&!H.get(o,"hasDataAttrs"))){for(n=u.length;n--;)u[n]&&0===(r=u[n].name).indexOf("data-")&&(r=g.camelCase(r.slice(5)),W(o,r,i[r]));H.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each((function(){M.set(this,e)})):q(this,(function(t){var n,r;if(o&&void 0===t)return void 0!==(n=M.get(o,e)||M.get(o,e.replace(B,"-$&").toLowerCase()))?n:(r=g.camelCase(e),void 0!==(n=M.get(o,r))||void 0!==(n=W(o,r,void 0))?n:void 0);r=g.camelCase(e),this.each((function(){var n=M.get(this,r);M.set(this,r,t),e.indexOf("-")>-1&&void 0!==n&&M.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){M.remove(this,e)}))}}),g.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=H.get(e,t),n&&(!r||g.isArray(n)?r=H.access(e,t,g.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=g.queue(e,t),r=n.length,i=n.shift(),o=g._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){g.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return H.get(e,n)||H.access(e,n,{empty:g.Callbacks("once memory").add((function(){H.remove(e,[t+"queue",n])}))})}}),g.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?g.queue(this[0],e):void 0===t?this:this.each((function(){var n=g.queue(this,e,t);g._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&g.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){g.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=g.Deferred(),o=this,u=this.length,s=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";u--;)(n=H.get(o[u],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var $=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,V=new RegExp("^(?:([+-])=|)("+$+")([a-z%]*)$","i"),Y=["Top","Right","Bottom","Left"],X=function(e,t){return e=t||e,"none"===g.css(e,"display")||!g.contains(e.ownerDocument,e)};function z(e,t,n,r){var i,o=1,u=20,s=r?function(){return r.cur()}:function(){return g.css(e,t,"")},a=s(),c=n&&n[3]||(g.cssNumber[t]?"":"px"),l=(g.cssNumber[t]||"px"!==c&&+a)&&V.exec(g.css(e,t));if(l&&l[3]!==c){c=c||l[3],n=n||[],l=+a||1;do{l/=o=o||".5",g.style(e,t,l+c)}while(o!==(o=s()/a)&&1!==o&&--u)}return n&&(l=+l||+a||0,i=n[1]?l+(n[1]+1)*n[2]:+n[2],r&&(r.unit=c,r.start=l,r.end=i)),i}var G=/^(?:checkbox|radio)$/i,K=/<([\w:-]+)/,Q=/^$|\/(?:java|ecma)script/i,J={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,"",""]};function Z(e,t){var n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[];return void 0===t||t&&g.nodeName(e,t)?g.merge([e],n):n}function ee(e,t){for(var n=0,r=e.length;n<r;n++)H.set(e[n],"globalEval",!t||H.get(t[n],"globalEval"))}J.optgroup=J.option,J.tbody=J.tfoot=J.colgroup=J.caption=J.thead,J.th=J.td;var te,ne,re=/<|&#?\w+;/;function ie(e,t,n,r,i){for(var o,u,s,a,c,l,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p<h;p++)if((o=e[p])||0===o)if("object"===g.type(o))g.merge(d,o.nodeType?[o]:o);else if(re.test(o)){for(u=u||f.appendChild(t.createElement("div")),s=(K.exec(o)||["",""])[1].toLowerCase(),a=J[s]||J._default,u.innerHTML=a[1]+g.htmlPrefilter(o)+a[2],l=a[0];l--;)u=u.lastChild;g.merge(d,u.childNodes),(u=f.firstChild).textContent=""}else d.push(t.createTextNode(o));for(f.textContent="",p=0;o=d[p++];)if(r&&g.inArray(o,r)>-1)i&&i.push(o);else if(c=g.contains(o.ownerDocument,o),u=Z(f.appendChild(o),"script"),c&&ee(u),n)for(l=0;o=u[l++];)Q.test(o.type||"")&&n.push(o);return f}te=u.createDocumentFragment().appendChild(u.createElement("div")),(ne=u.createElement("input")).setAttribute("type","radio"),ne.setAttribute("checked","checked"),ne.setAttribute("name","t"),te.appendChild(ne),h.checkClone=te.cloneNode(!0).cloneNode(!0).lastChild.checked,te.innerHTML="<textarea>x</textarea>",h.noCloneChecked=!!te.cloneNode(!0).lastChild.defaultValue;var oe=/^key/,ue=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,se=/^([^.]*)(?:\.(.+)|)/;function ae(){return!0}function ce(){return!1}function le(){try{return u.activeElement}catch(e){}}function fe(e,t,n,r,i,o){var u,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)fe(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ce;else if(!i)return e;return 1===o&&(u=i,(i=function(e){return g().off(e),u.apply(this,arguments)}).guid=u.guid||(u.guid=g.guid++)),e.each((function(){g.event.add(this,t,i,r,n)}))}g.event={global:{},add:function(e,t,n,r,i){var o,u,s,a,c,l,f,d,p,h,v,m=H.get(e);if(m)for(n.handler&&(n=(o=n).handler,i=o.selector),n.guid||(n.guid=g.guid++),(a=m.events)||(a=m.events={}),(u=m.handle)||(u=m.handle=function(t){return void 0!==g&&g.event.triggered!==t.type?g.event.dispatch.apply(e,arguments):void 0}),c=(t=(t||"").match(R)||[""]).length;c--;)p=v=(s=se.exec(t[c])||[])[1],h=(s[2]||"").split(".").sort(),p&&(f=g.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=g.event.special[p]||{},l=g.extend({type:p,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&g.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=a[p])||((d=a[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,u)||e.addEventListener&&e.addEventListener(p,u)),f.add&&(f.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,l):d.push(l),g.event.global[p]=!0)},remove:function(e,t,n,r,i){var o,u,s,a,c,l,f,d,p,h,v,m=H.hasData(e)&&H.get(e);if(m&&(a=m.events)){for(c=(t=(t||"").match(R)||[""]).length;c--;)if(p=v=(s=se.exec(t[c])||[])[1],h=(s[2]||"").split(".").sort(),p){for(f=g.event.special[p]||{},d=a[p=(r?f.delegateType:f.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=d.length;o--;)l=d[o],!i&&v!==l.origType||n&&n.guid!==l.guid||s&&!s.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(d.splice(o,1),l.selector&&d.delegateCount--,f.remove&&f.remove.call(e,l));u&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,h,m.handle)||g.removeEvent(e,p,m.handle),delete a[p])}else for(p in a)g.event.remove(e,p+t[c],n,r,!0);g.isEmptyObject(a)&&H.remove(e,"handle events")}},dispatch:function(e){e=g.event.fix(e);var t,n,r,i,o,u=[],a=s.call(arguments),c=(H.get(this,"events")||{})[e.type]||[],l=g.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||!1!==l.preDispatch.call(this,e)){for(u=g.event.handlers.call(this,e,c),t=0;(i=u[t++])&&!e.isPropagationStopped();)for(e.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!e.isImmediatePropagationStopped();)e.rnamespace&&!e.rnamespace.test(o.namespace)||(e.handleObj=o,e.data=o.data,void 0!==(r=((g.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a))&&!1===(e.result=r)&&(e.preventDefault(),e.stopPropagation()));return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,u=[],s=t.delegateCount,a=e.target;if(s&&a.nodeType&&("click"!==e.type||isNaN(e.button)||e.button<1))for(;a!==this;a=a.parentNode||this)if(1===a.nodeType&&(!0!==a.disabled||"click"!==e.type)){for(r=[],n=0;n<s;n++)void 0===r[i=(o=t[n]).selector+" "]&&(r[i]=o.needsContext?g(i,this).index(a)>-1:g.find(i,this,null,[a]).length),r[i]&&r.push(o);r.length&&u.push({elem:a,handlers:r})}return s<t.length&&u.push({elem:this,handlers:t.slice(s)}),u},props:"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,o=t.button;return null==e.pageX&&null!=t.clientX&&(r=(n=e.target.ownerDocument||u).documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||void 0===o||(e.which=1&o?1:2&o?3:4&o?2:0),e}},fix:function(e){if(e[g.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];for(s||(this.fixHooks[i]=s=ue.test(i)?this.mouseHooks:oe.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new g.Event(o),t=r.length;t--;)e[n=r[t]]=o[n];return e.target||(e.target=u),3===e.target.nodeType&&(e.target=e.target.parentNode),s.filter?s.filter(e,o):e},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==le()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===le()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&g.nodeName(this,"input"))return this.click(),!1},_default:function(e){return g.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},g.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},g.Event=function(e,t){if(!(this instanceof g.Event))return new g.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ae:ce):this.type=e,t&&g.extend(this,t),this.timeStamp=e&&e.timeStamp||g.now(),this[g.expando]=!0},g.Event.prototype={constructor:g.Event,isDefaultPrevented:ce,isPropagationStopped:ce,isImmediatePropagationStopped:ce,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ae,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ae,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ae,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},g.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},(function(e,t){g.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||g.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}})),g.fn.extend({on:function(e,t,n,r){return fe(this,e,t,n,r)},one:function(e,t,n,r){return fe(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,g(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=ce),this.each((function(){g.event.remove(this,e,n,t)}))}});var de=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,pe=/<script|<style|<link/i,he=/checked\s*(?:[^=]|=\s*.checked.)/i,ge=/^true\/(.*)/,ve=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function me(e,t){return g.nodeName(e,"table")&&g.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ye(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function xe(e){var t=ge.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function be(e,t){var n,r,i,o,u,s,a,c;if(1===t.nodeType){if(H.hasData(e)&&(o=H.access(e),u=H.set(t,o),c=o.events))for(i in delete u.handle,u.events={},c)for(n=0,r=c[i].length;n<r;n++)g.event.add(t,i,c[i][n]);M.hasData(e)&&(s=M.access(e),a=g.extend({},s),M.set(t,a))}}function we(e,t,n,r){t=a.apply([],t);var i,o,u,s,c,l,f=0,d=e.length,p=d-1,v=t[0],m=g.isFunction(v);if(m||d>1&&"string"==typeof v&&!h.checkClone&&he.test(v))return e.each((function(i){var o=e.eq(i);m&&(t[0]=v.call(this,i,o.html())),we(o,t,n,r)}));if(d&&(o=(i=ie(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(s=(u=g.map(Z(i,"script"),ye)).length;f<d;f++)c=i,f!==p&&(c=g.clone(c,!0,!0),s&&g.merge(u,Z(c,"script"))),n.call(e[f],c,f);if(s)for(l=u[u.length-1].ownerDocument,g.map(u,xe),f=0;f<s;f++)c=u[f],Q.test(c.type||"")&&!H.access(c,"globalEval")&&g.contains(l,c)&&(c.src?g._evalUrl&&g._evalUrl(c.src):g.globalEval(c.textContent.replace(ve,"")))}return e}function Te(e,t,n){for(var r,i=t?g.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||g.cleanData(Z(r)),r.parentNode&&(n&&g.contains(r.ownerDocument,r)&&ee(Z(r,"script")),r.parentNode.removeChild(r));return e}g.extend({htmlPrefilter:function(e){return e.replace(de,"<$1></$2>")},clone:function(e,t,n){var r,i,o,u,s,a,c,l=e.cloneNode(!0),f=g.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||g.isXMLDoc(e)))for(u=Z(l),r=0,i=(o=Z(e)).length;r<i;r++)s=o[r],a=u[r],c=void 0,"input"===(c=a.nodeName.toLowerCase())&&G.test(s.type)?a.checked=s.checked:"input"!==c&&"textarea"!==c||(a.defaultValue=s.defaultValue);if(t)if(n)for(o=o||Z(e),u=u||Z(l),r=0,i=o.length;r<i;r++)be(o[r],u[r]);else be(e,l);return(u=Z(l,"script")).length>0&&ee(u,!f&&Z(e,"script")),l},cleanData:function(e){for(var t,n,r,i=g.event.special,o=0;void 0!==(n=e[o]);o++)if(I(n)){if(t=n[H.expando]){if(t.events)for(r in t.events)i[r]?g.event.remove(n,r):g.removeEvent(n,r,t.handle);n[H.expando]=void 0}n[M.expando]&&(n[M.expando]=void 0)}}}),g.fn.extend({domManip:we,detach:function(e){return Te(this,e,!0)},remove:function(e){return Te(this,e)},text:function(e){return q(this,(function(e){return void 0===e?g.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return we(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||me(this,e).appendChild(e)}))},prepend:function(){return we(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=me(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return we(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return we(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(g.cleanData(Z(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return g.clone(this,e,t)}))},html:function(e){return q(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!pe.test(e)&&!J[(K.exec(e)||["",""])[1].toLowerCase()]){e=g.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(g.cleanData(Z(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return we(this,arguments,(function(t){var n=this.parentNode;g.inArray(this,e)<0&&(g.cleanData(Z(this)),n&&n.replaceChild(t,this))}),e)}}),g.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},(function(e,t){g.fn[e]=function(e){for(var n,r=[],i=g(e),o=i.length-1,u=0;u<=o;u++)n=u===o?this:this.clone(!0),g(i[u])[t](n),c.apply(r,n.get());return this.pushStack(r)}}));var Se,Ee={HTML:"block",BODY:"block"};function Ne(e,t){var n=g(t.createElement(e)).appendTo(t.body),r=g.css(n[0],"display");return n.detach(),r}function Ce(e){var t=u,n=Ee[e];return n||("none"!==(n=Ne(e,t))&&n||((t=(Se=(Se||g("<iframe frameborder='0' width='0' height='0'/>")).appendTo(t.documentElement))[0].contentDocument).write(),t.close(),n=Ne(e,t),Se.detach()),Ee[e]=n),n}var _e=/^margin/,Oe=new RegExp("^("+$+")(?!px)[a-z%]+$","i"),Ae=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=n),t.getComputedStyle(e)},De=function(e,t,n,r){var i,o,u={};for(o in t)u[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=u[o];return i},je=u.documentElement;function ke(e,t,n){var r,i,o,u,s=e.style;return""!==(u=(n=n||Ae(e))?n.getPropertyValue(t)||n[t]:void 0)&&void 0!==u||g.contains(e.ownerDocument,e)||(u=g.style(e,t)),n&&!h.pixelMarginRight()&&Oe.test(u)&&_e.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=u,u=n.width,s.width=r,s.minWidth=i,s.maxWidth=o),void 0!==u?u+"":u}function Pe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){var e,t,r,i,o=u.createElement("div"),s=u.createElement("div");function a(){s.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",s.innerHTML="",je.appendChild(o);var u=n.getComputedStyle(s);e="1%"!==u.top,i="2px"===u.marginLeft,t="4px"===u.width,s.style.marginRight="50%",r="4px"===u.marginRight,je.removeChild(o)}s.style&&(s.style.backgroundClip="content-box",s.cloneNode(!0).style.backgroundClip="",h.clearCloneStyle="content-box"===s.style.backgroundClip,o.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",o.appendChild(s),g.extend(h,{pixelPosition:function(){return a(),e},boxSizingReliable:function(){return null==t&&a(),t},pixelMarginRight:function(){return null==t&&a(),r},reliableMarginLeft:function(){return null==t&&a(),i},reliableMarginRight:function(){var e,t=s.appendChild(u.createElement("div"));return t.style.cssText=s.style.cssText="-webkit-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",t.style.marginRight=t.style.width="0",s.style.width="1px",je.appendChild(o),e=!parseFloat(n.getComputedStyle(t).marginRight),je.removeChild(o),s.removeChild(t),e}}))}();var Re=/^(none|table(?!-c[ea]).+)/,Le={position:"absolute",visibility:"hidden",display:"block"},qe={letterSpacing:"0",fontWeight:"400"},Ie=["Webkit","O","Moz","ms"],Fe=u.createElement("div").style;function He(e){if(e in Fe)return e;for(var t=e[0].toUpperCase()+e.slice(1),n=Ie.length;n--;)if((e=Ie[n]+t)in Fe)return e}function Me(e,t,n){var r=V.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ue(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,u=0;o<4;o+=2)"margin"===n&&(u+=g.css(e,n+Y[o],!0,i)),r?("content"===n&&(u-=g.css(e,"padding"+Y[o],!0,i)),"margin"!==n&&(u-=g.css(e,"border"+Y[o]+"Width",!0,i))):(u+=g.css(e,"padding"+Y[o],!0,i),"padding"!==n&&(u+=g.css(e,"border"+Y[o]+"Width",!0,i)));return u}function Be(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Ae(e),u="border-box"===g.css(e,"boxSizing",!1,o);if(i<=0||null==i){if(((i=ke(e,t,o))<0||null==i)&&(i=e.style[t]),Oe.test(i))return i;r=u&&(h.boxSizingReliable()||i===e.style[t]),i=parseFloat(i)||0}return i+Ue(e,t,n||(u?"border":"content"),r,o)+"px"}function We(e,t){for(var n,r,i,o=[],u=0,s=e.length;u<s;u++)(r=e[u]).style&&(o[u]=H.get(r,"olddisplay"),n=r.style.display,t?(o[u]||"none"!==n||(r.style.display=""),""===r.style.display&&X(r)&&(o[u]=H.access(r,"olddisplay",Ce(r.nodeName)))):(i=X(r),"none"===n&&i||H.set(r,"olddisplay",i?n:g.css(r,"display"))));for(u=0;u<s;u++)(r=e[u]).style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[u]||"":"none"));return e}function $e(e,t,n,r,i){return new $e.prototype.init(e,t,n,r,i)}g.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=ke(e,"opacity");return""===n?"1":n}}}},cssNumber:{"animationIterationCount":!0,"columnCount":!0,"fillOpacity":!0,"flexGrow":!0,"flexShrink":!0,"fontWeight":!0,"lineHeight":!0,"opacity":!0,"order":!0,"orphans":!0,"widows":!0,"zIndex":!0,"zoom":!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,u,s=g.camelCase(t),a=e.style;if(t=g.cssProps[s]||(g.cssProps[s]=He(s)||s),u=g.cssHooks[t]||g.cssHooks[s],void 0===n)return u&&"get"in u&&void 0!==(i=u.get(e,!1,r))?i:a[t];"string"==(o=typeof n)&&(i=V.exec(n))&&i[1]&&(n=z(e,t,i),o="number"),null!=n&&n==n&&("number"===o&&(n+=i&&i[3]||(g.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(a[t]="inherit"),u&&"set"in u&&void 0===(n=u.set(e,n,r))||(a[t]=n))}},css:function(e,t,n,r){var i,o,u,s=g.camelCase(t);return t=g.cssProps[s]||(g.cssProps[s]=He(s)||s),(u=g.cssHooks[t]||g.cssHooks[s])&&"get"in u&&(i=u.get(e,!0,n)),void 0===i&&(i=ke(e,t,r)),"normal"===i&&t in qe&&(i=qe[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),g.each(["height","width"],(function(e,t){g.cssHooks[t]={get:function(e,n,r){if(n)return Re.test(g.css(e,"display"))&&0===e.offsetWidth?De(e,Le,(function(){return Be(e,t,r)})):Be(e,t,r)},set:function(e,n,r){var i,o=r&&Ae(e),u=r&&Ue(e,t,r,"border-box"===g.css(e,"boxSizing",!1,o),o);return u&&(i=V.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=g.css(e,t)),Me(0,n,u)}}})),g.cssHooks.marginLeft=Pe(h.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(ke(e,"marginLeft"))||e.getBoundingClientRect().left-De(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),g.cssHooks.marginRight=Pe(h.reliableMarginRight,(function(e,t){if(t)return De(e,{"display":"inline-block"},ke,[e,"marginRight"])})),g.each({margin:"",padding:"",border:"Width"},(function(e,t){g.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+Y[r]+t]=o[r]||o[r-2]||o[0];return i}},_e.test(e)||(g.cssHooks[e+t].set=Me)})),g.fn.extend({css:function(e,t){return q(this,(function(e,t,n){var r,i,o={},u=0;if(g.isArray(t)){for(r=Ae(e),i=t.length;u<i;u++)o[t[u]]=g.css(e,t[u],!1,r);return o}return void 0!==n?g.style(e,t,n):g.css(e,t)}),e,t,arguments.length>1)},show:function(){return We(this,!0)},hide:function(){return We(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){X(this)?g(this).show():g(this).hide()}))}}),g.Tween=$e,$e.prototype={constructor:$e,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||g.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(g.cssNumber[n]?"":"px")},cur:function(){var e=$e.propHooks[this.prop];return e&&e.get?e.get(this):$e.propHooks._default.get(this)},run:function(e){var t,n=$e.propHooks[this.prop];return this.options.duration?this.pos=t=g.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):$e.propHooks._default.set(this),this}},$e.prototype.init.prototype=$e.prototype,$e.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=g.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){g.fx.step[e.prop]?g.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[g.cssProps[e.prop]]&&!g.cssHooks[e.prop]?e.elem[e.prop]=e.now:g.style(e.elem,e.prop,e.now+e.unit)}}},$e.propHooks.scrollTop=$e.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},g.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},g.fx=$e.prototype.init,g.fx.step={};var Ve,Ye,Xe=/^(?:toggle|show|hide)$/,ze=/queueHooks$/;function Ge(){return n.setTimeout((function(){Ve=void 0})),Ve=g.now()}function Ke(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=Y[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function Qe(e,t,n){for(var r,i=(Je.tweeners[t]||[]).concat(Je.tweeners["*"]),o=0,u=i.length;o<u;o++)if(r=i[o].call(n,t,e))return r}function Je(e,t,n){var r,i,o=0,u=Je.prefilters.length,s=g.Deferred().always((function(){delete a.elem})),a=function(){if(i)return!1;for(var t=Ve||Ge(),n=Math.max(0,c.startTime+c.duration-t),r=1-(n/c.duration||0),o=0,u=c.tweens.length;o<u;o++)c.tweens[o].run(r);return s.notifyWith(e,[c,r,n]),r<1&&u?n:(s.resolveWith(e,[c]),!1)},c=s.promise({elem:e,props:g.extend({},t),opts:g.extend(!0,{specialEasing:{},easing:g.easing._default},n),originalProperties:t,originalOptions:n,startTime:Ve||Ge(),duration:n.duration,tweens:[],createTween:function(t,n){var r=g.Tween(e,c.opts,t,n,c.opts.specialEasing[t]||c.opts.easing);return c.tweens.push(r),r},stop:function(t){var n=0,r=t?c.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)c.tweens[n].run(1);return t?(s.notifyWith(e,[c,1,0]),s.resolveWith(e,[c,t])):s.rejectWith(e,[c,t]),this}}),l=c.props;for(function(e,t){var n,r,i,o,u;for(n in e)if(i=t[r=g.camelCase(n)],o=e[n],g.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(u=g.cssHooks[r])&&"expand"in u)for(n in o=u.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(l,c.opts.specialEasing);o<u;o++)if(r=Je.prefilters[o].call(c,e,l,c.opts))return g.isFunction(r.stop)&&(g._queueHooks(c.elem,c.opts.queue).stop=g.proxy(r.stop,r)),r;return g.map(l,Qe,c),g.isFunction(c.opts.start)&&c.opts.start.call(e,c),g.fx.timer(g.extend(a,{elem:e,anim:c,queue:c.opts.queue})),c.progress(c.opts.progress).done(c.opts.done,c.opts.complete).fail(c.opts.fail).always(c.opts.always)}g.Animation=g.extend(Je,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return z(n.elem,e,V.exec(t),n),n}]},tweener:function(e,t){g.isFunction(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],Je.tweeners[n]=Je.tweeners[n]||[],Je.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,u,s,a,c,l=this,f={},d=e.style,p=e.nodeType&&X(e),h=H.get(e,"fxshow");for(r in n.queue||(null==(s=g._queueHooks(e,"fx")).unqueued&&(s.unqueued=0,a=s.empty.fire,s.empty.fire=function(){s.unqueued||a()}),s.unqueued++,l.always((function(){l.always((function(){s.unqueued--,g.queue(e,"fx").length||s.empty.fire()}))}))),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===("none"===(c=g.css(e,"display"))?H.get(e,"olddisplay")||Ce(e.nodeName):c)&&"none"===g.css(e,"float")&&(d.display="inline-block")),n.overflow&&(d.overflow="hidden",l.always((function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}))),t)if(i=t[r],Xe.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(p?"hide":"show")){if("show"!==i||!h||void 0===h[r])continue;p=!0}f[r]=h&&h[r]||g.style(e,r)}else c=void 0;if(g.isEmptyObject(f))"inline"===("none"===c?Ce(e.nodeName):c)&&(d.display=c);else for(r in h?"hidden"in h&&(p=h.hidden):h=H.access(e,"fxshow",{}),o&&(h.hidden=!p),p?g(e).show():l.done((function(){g(e).hide()})),l.done((function(){var t;for(t in H.remove(e,"fxshow"),f)g.style(e,t,f[t])})),f)u=Qe(p?h[r]:0,r,l),r in h||(h[r]=u.start,p&&(u.end=u.start,u.start="width"===r||"height"===r?1:0))}],prefilter:function(e,t){t?Je.prefilters.unshift(e):Je.prefilters.push(e)}}),g.speed=function(e,t,n){var r=e&&"object"==typeof e?g.extend({},e):{complete:n||!n&&t||g.isFunction(e)&&e,duration:e,easing:n&&t||t&&!g.isFunction(t)&&t};return r.duration=g.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in g.fx.speeds?g.fx.speeds[r.duration]:g.fx.speeds._default,null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){g.isFunction(r.old)&&r.old.call(this),r.queue&&g.dequeue(this,r.queue)},r},g.fn.extend({fadeTo:function(e,t,n,r){return this.filter(X).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=g.isEmptyObject(e),o=g.speed(t,n,r),u=function(){var t=Je(this,g.extend({},e),o);(i||H.get(this,"finish"))&&t.stop(!0)};return u.finish=u,i||!1===o.queue?this.each(u):this.queue(o.queue,u)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each((function(){var t=!0,i=null!=e&&e+"queueHooks",o=g.timers,u=H.get(this);if(i)u[i]&&u[i].stop&&r(u[i]);else for(i in u)u[i]&&u[i].stop&&ze.test(i)&&r(u[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||g.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||"fx"),this.each((function(){var t,n=H.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=g.timers,u=r?r.length:0;for(n.finish=!0,g.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<u;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish}))}}),g.each(["toggle","show","hide"],(function(e,t){var n=g.fn[t];g.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(Ke(t,!0),e,r,i)}})),g.each({slideDown:Ke("show"),slideUp:Ke("hide"),slideToggle:Ke("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},(function(e,t){g.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}})),g.timers=[],g.fx.tick=function(){var e,t=0,n=g.timers;for(Ve=g.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||g.fx.stop(),Ve=void 0},g.fx.timer=function(e){g.timers.push(e),e()?g.fx.start():g.timers.pop()},g.fx.interval=13,g.fx.start=function(){Ye||(Ye=n.setInterval(g.fx.tick,g.fx.interval))},g.fx.stop=function(){n.clearInterval(Ye),Ye=null},g.fx.speeds={slow:600,fast:200,_default:400},g.fn.delay=function(e,t){return e=g.fx&&g.fx.speeds[e]||e,t=t||"fx",this.queue(t,(function(t,r){var i=n.setTimeout(t,e);r.stop=function(){n.clearTimeout(i)}}))},function(){var e=u.createElement("input"),t=u.createElement("select"),n=t.appendChild(u.createElement("option"));e.type="checkbox",h.checkOn=""!==e.value,h.optSelected=n.selected,t.disabled=!0,h.optDisabled=!n.disabled,(e=u.createElement("input")).value="t",e.type="radio",h.radioValue="t"===e.value}();var Ze,et=g.expr.attrHandle;g.fn.extend({attr:function(e,t){return q(this,g.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){g.removeAttr(this,e)}))}}),g.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?g.prop(e,t,n):(1===o&&g.isXMLDoc(e)||(t=t.toLowerCase(),i=g.attrHooks[t]||(g.expr.match.bool.test(t)?Ze:void 0)),void 0!==n?null===n?void g.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=g.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&g.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(R);if(o&&1===e.nodeType)for(;n=o[i++];)r=g.propFix[n]||n,g.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)}}),Ze={set:function(e,t,n){return!1===t?g.removeAttr(e,n):e.setAttribute(n,n),n}},g.each(g.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=et[t]||g.find.attr;et[t]=function(e,t,r){var i,o;return r||(o=et[t],et[t]=i,i=null!=n(e,t,r)?t.toLowerCase():null,et[t]=o),i}}));var tt=/^(?:input|select|textarea|button)$/i,nt=/^(?:a|area)$/i;g.fn.extend({prop:function(e,t){return q(this,g.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[g.propFix[e]||e]}))}}),g.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&g.isXMLDoc(e)||(t=g.propFix[t]||t,i=g.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=g.find.attr(e,"tabindex");return t?parseInt(t,10):tt.test(e.nodeName)||nt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(g.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),g.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){g.propFix[this.toLowerCase()]=this}));var rt=/[\t\r\n\f]/g;function it(e){return e.getAttribute&&e.getAttribute("class")||""}g.fn.extend({addClass:function(e){var t,n,r,i,o,u,s,a=0;if(g.isFunction(e))return this.each((function(t){g(this).addClass(e.call(this,t,it(this)))}));if("string"==typeof e&&e)for(t=e.match(R)||[];n=this[a++];)if(i=it(n),r=1===n.nodeType&&(" "+i+" ").replace(rt," ")){for(u=0;o=t[u++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=g.trim(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,u,s,a=0;if(g.isFunction(e))return this.each((function(t){g(this).removeClass(e.call(this,t,it(this)))}));if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(R)||[];n=this[a++];)if(i=it(n),r=1===n.nodeType&&(" "+i+" ").replace(rt," ")){for(u=0;o=t[u++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=g.trim(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):g.isFunction(e)?this.each((function(n){g(this).toggleClass(e.call(this,n,it(this),t),t)})):this.each((function(){var t,r,i,o;if("string"===n)for(r=0,i=g(this),o=e.match(R)||[];t=o[r++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||((t=it(this))&&H.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":H.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+it(n)+" ").replace(rt," ").indexOf(t)>-1)return!0;return!1}});var ot=/\r/g,ut=/[\x20\t\r\n\f]+/g;g.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=g.isFunction(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,g(this).val()):e)?i="":"number"==typeof i?i+="":g.isArray(i)&&(i=g.map(i,(function(e){return null==e?"":e+""}))),(t=g.valHooks[this.type]||g.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=g.valHooks[i.type]||g.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(ot,""):null==n?"":n:void 0}}),g.extend({valHooks:{option:{get:function(e){var t=g.find.attr(e,"value");return null!=t?t:g.trim(g.text(e)).replace(ut," ")}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||i<0,u=o?null:[],s=o?i+1:r.length,a=i<0?s:o?i:0;a<s;a++)if(((n=r[a]).selected||a===i)&&(h.optDisabled?!n.disabled:null===n.getAttribute("disabled"))&&(!n.parentNode.disabled||!g.nodeName(n.parentNode,"optgroup"))){if(t=g(n).val(),o)return t;u.push(t)}return u},set:function(e,t){for(var n,r,i=e.options,o=g.makeArray(t),u=i.length;u--;)((r=i[u]).selected=g.inArray(g.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),g.each(["radio","checkbox"],(function(){g.valHooks[this]={set:function(e,t){if(g.isArray(t))return e.checked=g.inArray(g(e).val(),t)>-1}},h.checkOn||(g.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}));var st=/^(?:focusinfocus|focusoutblur)$/;g.extend(g.event,{trigger:function(e,t,r,i){var o,s,a,c,l,f,d,h=[r||u],v=p.call(e,"type")?e.type:e,m=p.call(e,"namespace")?e.namespace.split("."):[];if(s=a=r=r||u,3!==r.nodeType&&8!==r.nodeType&&!st.test(v+g.event.triggered)&&(v.indexOf(".")>-1&&(m=v.split("."),v=m.shift(),m.sort()),l=v.indexOf(":")<0&&"on"+v,(e=e[g.expando]?e:new g.Event(v,"object"==typeof e&&e)).isTrigger=i?2:3,e.namespace=m.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:g.makeArray(t,[e]),d=g.event.special[v]||{},i||!d.trigger||!1!==d.trigger.apply(r,t))){if(!i&&!d.noBubble&&!g.isWindow(r)){for(c=d.delegateType||v,st.test(c+v)||(s=s.parentNode);s;s=s.parentNode)h.push(s),a=s;a===(r.ownerDocument||u)&&h.push(a.defaultView||a.parentWindow||n)}for(o=0;(s=h[o++])&&!e.isPropagationStopped();)e.type=o>1?c:d.bindType||v,(f=(H.get(s,"events")||{})[e.type]&&H.get(s,"handle"))&&f.apply(s,t),(f=l&&s[l])&&f.apply&&I(s)&&(e.result=f.apply(s,t),!1===e.result&&e.preventDefault());return e.type=v,i||e.isDefaultPrevented()||d._default&&!1!==d._default.apply(h.pop(),t)||!I(r)||l&&g.isFunction(r[v])&&!g.isWindow(r)&&((a=r[l])&&(r[l]=null),g.event.triggered=v,r[v](),g.event.triggered=void 0,a&&(r[l]=a)),e.result}},simulate:function(e,t,n){var r=g.extend(new g.Event,n,{type:e,isSimulated:!0});g.event.trigger(r,null,t)}}),g.fn.extend({trigger:function(e,t){return this.each((function(){g.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return g.event.trigger(e,t,n,!0)}}),g.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),(function(e,t){g.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}})),g.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),h.focusin="onfocusin"in n,h.focusin||g.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){g.event.simulate(t,e.target,g.event.fix(e))};g.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=H.access(r,t);i||r.addEventListener(e,n,!0),H.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=H.access(r,t)-1;i?H.access(r,t,i):(r.removeEventListener(e,n,!0),H.remove(r,t))}}}));var at=n.location,ct=g.now(),lt=/\?/;g.parseJSON=function(e){return JSON.parse(e+"")},g.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||g.error("Invalid XML: "+e),t};var ft=/#.*$/,dt=/([?&])_=[^&]*/,pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,ht=/^(?:GET|HEAD)$/,gt=/^\/\//,vt={},mt={},yt="*/".concat("*"),xt=u.createElement("a");function bt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(R)||[];if(g.isFunction(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function wt(e,t,n,r){var i={},o=e===mt;function u(s){var a;return i[s]=!0,g.each(e[s]||[],(function(e,s){var c=s(t,n,r);return"string"!=typeof c||o||i[c]?o?!(a=c):void 0:(t.dataTypes.unshift(c),u(c),!1)})),a}return u(t.dataTypes[0])||!i["*"]&&u("*")}function Tt(e,t){var n,r,i=g.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&g.extend(!0,e,r),e}xt.href=at.href,g.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:at.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(at.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":yt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":g.parseJSON,"text xml":g.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Tt(Tt(e,g.ajaxSettings),t):Tt(g.ajaxSettings,e)},ajaxPrefilter:bt(vt),ajaxTransport:bt(mt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,i,o,s,a,c,l,f,d=g.ajaxSetup({},t),p=d.context||d,h=d.context&&(p.nodeType||p.jquery)?g(p):g.event,v=g.Deferred(),m=g.Callbacks("once memory"),y=d.statusCode||{},x={},b={},w=0,T="canceled",S={readyState:0,getResponseHeader:function(e){var t;if(2===w){if(!s)for(s={};t=pt.exec(o);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===w?o:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return w||(e=b[n]=b[n]||e,x[e]=t),this},overrideMimeType:function(e){return w||(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(w<2)for(t in e)y[t]=[y[t],e[t]];else S.always(e[S.status]);return this},abort:function(e){var t=e||T;return r&&r.abort(t),E(0,t),this}};if(v.promise(S).complete=m.add,S.success=S.done,S.error=S.fail,d.url=((e||d.url||at.href)+"").replace(ft,"").replace(gt,at.protocol+"//"),d.type=t.method||t.type||d.method||d.type,d.dataTypes=g.trim(d.dataType||"*").toLowerCase().match(R)||[""],null==d.crossDomain){c=u.createElement("a");try{c.href=d.url,c.href=c.href,d.crossDomain=xt.protocol+"//"+xt.host!=c.protocol+"//"+c.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=g.param(d.data,d.traditional)),wt(vt,d,t,S),2===w)return S;for(f in(l=g.event&&d.global)&&0==g.active++&&g.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!ht.test(d.type),i=d.url,d.hasContent||(d.data&&(i=d.url+=(lt.test(i)?"&":"?")+d.data,delete d.data),!1===d.cache&&(d.url=dt.test(i)?i.replace(dt,"$1_="+ct++):i+(lt.test(i)?"&":"?")+"_="+ct++)),d.ifModified&&(g.lastModified[i]&&S.setRequestHeader("If-Modified-Since",g.lastModified[i]),g.etag[i]&&S.setRequestHeader("If-None-Match",g.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||t.contentType)&&S.setRequestHeader("Content-Type",d.contentType),S.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+yt+"; q=0.01":""):d.accepts["*"]),d.headers)S.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(p,S,d)||2===w))return S.abort();for(f in T="abort",{success:1,error:1,complete:1})S[f](d[f]);if(r=wt(mt,d,t,S)){if(S.readyState=1,l&&h.trigger("ajaxSend",[S,d]),2===w)return S;d.async&&d.timeout>0&&(a=n.setTimeout((function(){S.abort("timeout")}),d.timeout));try{w=1,r.send(x,E)}catch(e){if(!(w<2))throw e;E(-1,e)}}else E(-1,"No Transport");function E(e,t,u,s){var c,f,x,b,T,E=t;2!==w&&(w=2,a&&n.clearTimeout(a),r=void 0,o=s||"",S.readyState=e>0?4:0,c=e>=200&&e<300||304===e,u&&(b=function(e,t,n){for(var r,i,o,u,s=e.contents,a=e.dataTypes;"*"===a[0];)a.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){a.unshift(i);break}if(a[0]in n)o=a[0];else{for(i in n){if(!a[0]||e.converters[i+" "+a[0]]){o=i;break}u||(u=i)}o=o||u}if(o)return o!==a[0]&&a.unshift(o),n[o]}(d,S,u)),b=function(e,t,n,r){var i,o,u,s,a,c={},l=e.dataTypes.slice();if(l[1])for(u in e.converters)c[u.toLowerCase()]=e.converters[u];for(o=l.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!a&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),a=o,o=l.shift())if("*"===o)o=a;else if("*"!==a&&a!==o){if(!(u=c[a+" "+o]||c["* "+o]))for(i in c)if((s=i.split(" "))[1]===o&&(u=c[a+" "+s[0]]||c["* "+s[0]])){!0===u?u=c[i]:!0!==c[i]&&(o=s[0],l.unshift(s[1]));break}if(!0!==u)if(u&&e.throws)t=u(t);else try{t=u(t)}catch(e){return{state:"parsererror",error:u?e:"No conversion from "+a+" to "+o}}}return{state:"success",data:t}}(d,b,S,c),c?(d.ifModified&&((T=S.getResponseHeader("Last-Modified"))&&(g.lastModified[i]=T),(T=S.getResponseHeader("etag"))&&(g.etag[i]=T)),204===e||"HEAD"===d.type?E="nocontent":304===e?E="notmodified":(E=b.state,f=b.data,c=!(x=b.error))):(x=E,!e&&E||(E="error",e<0&&(e=0))),S.status=e,S.statusText=(t||E)+"",c?v.resolveWith(p,[f,E,S]):v.rejectWith(p,[S,E,x]),S.statusCode(y),y=void 0,l&&h.trigger(c?"ajaxSuccess":"ajaxError",[S,d,c?f:x]),m.fireWith(p,[S,E]),l&&(h.trigger("ajaxComplete",[S,d]),--g.active||g.event.trigger("ajaxStop")))}return S},getJSON:function(e,t,n){return g.get(e,t,n,"json")},getScript:function(e,t){return g.get(e,void 0,t,"script")}}),g.each(["get","post"],(function(e,t){g[t]=function(e,n,r,i){return g.isFunction(n)&&(i=i||r,r=n,n=void 0),g.ajax(g.extend({url:e,type:t,dataType:i,data:n,success:r},g.isPlainObject(e)&&e))}})),g._evalUrl=function(e){return g.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},g.fn.extend({wrapAll:function(e){var t;return g.isFunction(e)?this.each((function(t){g(this).wrapAll(e.call(this,t))})):(this[0]&&(t=g(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this)},wrapInner:function(e){return g.isFunction(e)?this.each((function(t){g(this).wrapInner(e.call(this,t))})):this.each((function(){var t=g(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=g.isFunction(e);return this.each((function(n){g(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(){return this.parent().each((function(){g.nodeName(this,"body")||g(this).replaceWith(this.childNodes)})).end()}}),g.expr.filters.hidden=function(e){return!g.expr.filters.visible(e)},g.expr.filters.visible=function(e){return e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0};var St=/%20/g,Et=/\[\]$/,Nt=/\r?\n/g,Ct=/^(?:submit|button|image|reset|file)$/i,_t=/^(?:input|select|textarea|keygen)/i;function Ot(e,t,n,r){var i;if(g.isArray(t))g.each(t,(function(t,i){n||Et.test(e)?r(e,i):Ot(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==g.type(t))r(e,t);else for(i in t)Ot(e+"["+i+"]",t[i],n,r)}g.param=function(e,t){var n,r=[],i=function(e,t){t=g.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=g.ajaxSettings&&g.ajaxSettings.traditional),g.isArray(e)||e.jquery&&!g.isPlainObject(e))g.each(e,(function(){i(this.name,this.value)}));else for(n in e)Ot(n,e[n],t,i);return r.join("&").replace(St,"+")},g.fn.extend({serialize:function(){return g.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=g.prop(this,"elements");return e?g.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!g(this).is(":disabled")&&_t.test(this.nodeName)&&!Ct.test(e)&&(this.checked||!G.test(e))})).map((function(e,t){var n=g(this).val();return null==n?null:g.isArray(n)?g.map(n,(function(e){return{name:t.name,value:e.replace(Nt,"\r\n")}})):{name:t.name,value:n.replace(Nt,"\r\n")}})).get()}}),g.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var At={0:200,1223:204},Dt=g.ajaxSettings.xhr();h.cors=!!Dt&&"withCredentials"in Dt,h.ajax=Dt=!!Dt,g.ajaxTransport((function(e){var t,r;if(h.cors||Dt&&!e.crossDomain)return{send:function(i,o){var u,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(u in e.xhrFields)s[u]=e.xhrFields[u];for(u in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(u,i[u]);t=function(e){return function(){t&&(t=r=s.onload=s.onerror=s.onabort=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(At[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),r=s.onerror=t("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout((function(){t&&r()}))},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),g.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return g.globalEval(e),e}}}),g.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),g.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain)return{send:function(r,i){t=g("<script>").prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),u.head.appendChild(t[0])},abort:function(){n&&n()}}}));var jt=[],kt=/(=)\?(?=&|$)|\?\?/;g.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=jt.pop()||g.expando+"_"+ct++;return this[e]=!0,e}}),g.ajaxPrefilter("json jsonp",(function(e,t,r){var i,o,u,s=!1!==e.jsonp&&(kt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&kt.test(e.data)&&"data");if(s||"jsonp"===e.dataTypes[0])return i=e.jsonpCallback=g.isFunction(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,s?e[s]=e[s].replace(kt,"$1"+i):!1!==e.jsonp&&(e.url+=(lt.test(e.url)?"&":"?")+e.jsonp+"="+i),e.converters["script json"]=function(){return u||g.error(i+" was not called"),u[0]},e.dataTypes[0]="json",o=n[i],n[i]=function(){u=arguments},r.always((function(){void 0===o?g(n).removeProp(i):n[i]=o,e[i]&&(e.jsonpCallback=t.jsonpCallback,jt.push(i)),u&&g.isFunction(o)&&o(u[0]),u=o=void 0})),"script"})),g.parseHTML=function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||u;var r=N.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=ie([e],t,i),i&&i.length&&g(i).remove(),g.merge([],r.childNodes))};var Pt=g.fn.load;function Rt(e){return g.isWindow(e)?e:9===e.nodeType&&e.defaultView}g.fn.load=function(e,t,n){if("string"!=typeof e&&Pt)return Pt.apply(this,arguments);var r,i,o,u=this,s=e.indexOf(" ");return s>-1&&(r=g.trim(e.slice(s)),e=e.slice(0,s)),g.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),u.length>0&&g.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done((function(e){o=arguments,u.html(r?g("<div>").append(g.parseHTML(e)).find(r):e)})).always(n&&function(e,t){u.each((function(){n.apply(this,o||[e.responseText,t,e])}))}),this},g.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){g.fn[t]=function(e){return this.on(t,e)}})),g.expr.filters.animated=function(e){return g.grep(g.timers,(function(t){return e===t.elem})).length},g.offset={setOffset:function(e,t,n){var r,i,o,u,s,a,c=g.css(e,"position"),l=g(e),f={};"static"===c&&(e.style.position="relative"),s=l.offset(),o=g.css(e,"top"),a=g.css(e,"left"),("absolute"===c||"fixed"===c)&&(o+a).indexOf("auto")>-1?(u=(r=l.position()).top,i=r.left):(u=parseFloat(o)||0,i=parseFloat(a)||0),g.isFunction(t)&&(t=t.call(e,n,g.extend({},s))),null!=t.top&&(f.top=t.top-s.top+u),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):l.css(f)}},g.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){g.offset.setOffset(this,e,t)}));var t,n,r=this[0],i={top:0,left:0},o=r&&r.ownerDocument;return o?(t=o.documentElement,g.contains(t,r)?(i=r.getBoundingClientRect(),n=Rt(o),{top:i.top+n.pageYOffset-t.clientTop,left:i.left+n.pageXOffset-t.clientLeft}):i):void 0},position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===g.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),g.nodeName(e[0],"html")||(r=e.offset()),r.top+=g.css(e[0],"borderTopWidth",!0),r.left+=g.css(e[0],"borderLeftWidth",!0)),{top:t.top-r.top-g.css(n,"marginTop",!0),left:t.left-r.left-g.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&"static"===g.css(e,"position");)e=e.offsetParent;return e||je}))}}),g.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(e,t){var n="pageYOffset"===t;g.fn[e]=function(r){return q(this,(function(e,r,i){var o=Rt(e);if(void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i}),e,r,arguments.length)}})),g.each(["top","left"],(function(e,t){g.cssHooks[t]=Pe(h.pixelPosition,(function(e,n){if(n)return n=ke(e,t),Oe.test(n)?g(e).position()[t]+"px":n}))})),g.each({Height:"height",Width:"width"},(function(e,t){g.each({padding:"inner"+e,content:t,"":"outer"+e},(function(n,r){g.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),u=n||(!0===r||!0===i?"margin":"border");return q(this,(function(t,n,r){var i;return g.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===r?g.css(t,n,u):g.style(t,n,r,u)}),t,o?r:void 0,o,null)}}))})),g.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},size:function(){return this.length}}),g.fn.andSelf=g.fn.addBack,void 0===(r=function(){return g}.apply(t,[]))||(e.exports=r);var Lt=n.jQuery,qt=n.$;return g.noConflict=function(e){return n.$===g&&(n.$=qt),e&&n.jQuery===g&&(n.jQuery=Lt),g},i||(n.jQuery=n.$=g),g},"object"==typeof e.exports?e.exports=i.document?o(i,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return o(e)}:o(i)},1:function(e,t,n){"use strict";(function(e){n.d(t,"e",(function(){return r})),n.d(t,"p",(function(){return i})),n.d(t,"a",(function(){return o})),n.d(t,"c",(function(){return u})),n.d(t,"d",(function(){return s})),n.d(t,"o",(function(){return a})),n.d(t,"q",(function(){return c})),n.d(t,"s",(function(){return l})),n.d(t,"i",(function(){return f})),n.d(t,"r",(function(){return d})),n.d(t,"k",(function(){return p})),n.d(t,"m",(function(){return h})),n.d(t,"j",(function(){return g})),n.d(t,"l",(function(){return v})),n.d(t,"g",(function(){return m})),n.d(t,"f",(function(){return y})),n.d(t,"h",(function(){return x})),n.d(t,"n",(function(){return b})),n.d(t,"b",(function(){return w}));var r="1.11.0",i="object"==typeof self&&self.self===self&&self||"object"==typeof e&&e.global===e&&e||Function("return this")()||{},o=Array.prototype,u=Object.prototype,s="undefined"!=typeof Symbol?Symbol.prototype:null,a=o.push,c=o.slice,l=u.toString,f=u.hasOwnProperty,d="undefined"!=typeof ArrayBuffer,p=Array.isArray,h=Object.keys,g=Object.create,v=d&&ArrayBuffer.isView,m=isNaN,y=isFinite,x=!{toString:null}.propertyIsEnumerable("toString"),b=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],w=Math.pow(2,53)-1}).call(this,n(20))},143:function(e,t,n){"use strict";var r=/["'&<>]/;e.exports=function(e){var t,n=""+e,i=r.exec(n);if(!i)return n;var o="",u=0,s=0;for(u=i.index;u<n.length;u++){switch(n.charCodeAt(u)){case 34:t=""";break;case 38:t="&";break;case 39:t="'";break;case 60:t="<";break;case 62:t=">";break;default:continue}s!==u&&(o+=n.substring(s,u)),s=u+1,o+=t}return s!==u?o+n.substring(s,u):o}},20:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},671:function(e,t,n){"use strict";n.r(t),function(e,t){var r=n(143),i=n.n(r);!function(n,r){var o=function t(r){this._root=r.root,"/"===this._root.charAt(this._root.length-1)&&(this._root=this._root.substr(0,this._root.length-1));var i=t.PROTOCOL_HTTP+"://";r.useHTTPS&&(i=t.PROTOCOL_HTTPS+"://"),i+=r.host+this._root,this._host=r.host,this._defaultHeaders=r.defaultHeaders||{"X-Requested-With":"XMLHttpRequest","requesttoken":n.requestToken},this._baseUrl=i;var o={baseUrl:this._baseUrl,xmlNamespaces:{"DAV:":"d","http://owncloud.org/ns":"oc","http://nextcloud.org/ns":"nc","http://open-collaboration-services.org/ns":"ocs"}};r.userName&&(o.userName=r.userName),r.password&&(o.password=r.password),this._client=new dav.Client(o),this._client.xhrProvider=e.bind(this._xhrProvider,this),this._fileInfoParsers=[]};o.NS_OWNCLOUD="http://owncloud.org/ns",o.NS_NEXTCLOUD="http://nextcloud.org/ns",o.NS_DAV="DAV:",o.NS_OCS="http://open-collaboration-services.org/ns",o.PROPERTY_GETLASTMODIFIED="{"+o.NS_DAV+"}getlastmodified",o.PROPERTY_GETETAG="{"+o.NS_DAV+"}getetag",o.PROPERTY_GETCONTENTTYPE="{"+o.NS_DAV+"}getcontenttype",o.PROPERTY_RESOURCETYPE="{"+o.NS_DAV+"}resourcetype",o.PROPERTY_INTERNAL_FILEID="{"+o.NS_OWNCLOUD+"}fileid",o.PROPERTY_PERMISSIONS="{"+o.NS_OWNCLOUD+"}permissions",o.PROPERTY_SIZE="{"+o.NS_OWNCLOUD+"}size",o.PROPERTY_GETCONTENTLENGTH="{"+o.NS_DAV+"}getcontentlength",o.PROPERTY_ISENCRYPTED="{"+o.NS_DAV+"}is-encrypted",o.PROPERTY_SHARE_PERMISSIONS="{"+o.NS_OCS+"}share-permissions",o.PROPERTY_QUOTA_AVAILABLE_BYTES="{"+o.NS_DAV+"}quota-available-bytes",o.PROTOCOL_HTTP="http",o.PROTOCOL_HTTPS="https",o._PROPFIND_PROPERTIES=[[o.NS_DAV,"getlastmodified"],[o.NS_DAV,"getetag"],[o.NS_DAV,"getcontenttype"],[o.NS_DAV,"resourcetype"],[o.NS_OWNCLOUD,"fileid"],[o.NS_OWNCLOUD,"permissions"],[o.NS_OWNCLOUD,"size"],[o.NS_DAV,"getcontentlength"],[o.NS_DAV,"quota-available-bytes"],[o.NS_NEXTCLOUD,"has-preview"],[o.NS_NEXTCLOUD,"mount-type"],[o.NS_NEXTCLOUD,"is-encrypted"],[o.NS_OCS,"share-permissions"]],o.prototype={_root:null,_client:null,_fileInfoParsers:[],_xhrProvider:function(){var t=this._defaultHeaders,r=new XMLHttpRequest,i=r.open;return r.open=function(){var n=i.apply(this,arguments);return e.each(t,(function(e,t){r.setRequestHeader(t,e)})),n},n.registerXHRForErrorProcessing(r),r},_buildUrl:function(){var e=this._buildPath.apply(this,arguments);return"/"===e.charAt([e.length-1])&&(e=e.substr(0,e.length-1)),"/"===e.charAt(0)&&(e=e.substr(1)),this._baseUrl+"/"+e},_buildPath:function(){var e,t=n.joinPaths.apply(this,arguments),r=t.split("/");for(e=0;e<r.length;e++)r[e]=encodeURIComponent(r[e]);return t=r.join("/")},_parseHeaders:function(e){for(var t=e.split("\n"),n={},r=0;r<t.length;r++){var i=t[r].indexOf(":");if(!(i<0)){var o=t[r].substr(0,i),u=t[r].substr(i+2);n[o]||(n[o]=[]),n[o].push(u)}}return n},_parseEtag:function(e){return'"'===e.charAt(0)?e.split('"')[1]:e},_parseFileInfo:function(t){var i=decodeURIComponent(t.href);if(i.substr(0,this._root.length)===this._root&&(i=i.substr(this._root.length)),"/"===i.charAt(i.length-1)&&(i=i.substr(0,i.length-1)),0===t.propStat.length||"HTTP/1.1 200 OK"!==t.propStat[0].status)return null;var u=t.propStat[0].properties,s={id:u[o.PROPERTY_INTERNAL_FILEID],path:n.dirname(i)||"/",name:n.basename(i),mtime:new Date(u[o.PROPERTY_GETLASTMODIFIED]).getTime()},a=u[o.PROPERTY_GETETAG];e.isUndefined(a)||(s.etag=this._parseEtag(a));var c=u[o.PROPERTY_GETCONTENTLENGTH];e.isUndefined(c)||(s.size=parseInt(c,10)),c=u[o.PROPERTY_SIZE],e.isUndefined(c)||(s.size=parseInt(c,10));var l=u["{"+o.NS_NEXTCLOUD+"}has-preview"];e.isUndefined(l)?s.hasPreview=!0:s.hasPreview="true"===l;var f=u["{"+o.NS_NEXTCLOUD+"}is-encrypted"];e.isUndefined(f)?s.isEncrypted=!1:s.isEncrypted="1"===f;var d=u["{"+o.NS_OWNCLOUD+"}favorite"];e.isUndefined(d)?s.isFavourited=!1:s.isFavourited="1"===d;var p=u[o.PROPERTY_GETCONTENTTYPE];e.isUndefined(p)||(s.mimetype=p);var h=u[o.PROPERTY_RESOURCETYPE];if(!s.mimetype&&h){var g=h[0];g.namespaceURI===o.NS_DAV&&"collection"===g.nodeName.split(":")[1]&&(s.mimetype="httpd/unix-directory")}s.permissions=n.PERMISSION_NONE;var v=u[o.PROPERTY_PERMISSIONS];if(!e.isUndefined(v)){var m=v||"";s.mountType=null;for(var y=0;y<m.length;y++){switch(m.charAt(y)){case"C":case"K":s.permissions|=n.PERMISSION_CREATE;break;case"G":s.permissions|=n.PERMISSION_READ;break;case"W":case"N":case"V":s.permissions|=n.PERMISSION_UPDATE;break;case"D":s.permissions|=n.PERMISSION_DELETE;break;case"R":s.permissions|=n.PERMISSION_SHARE;break;case"M":s.mountType||(s.mountType="external");break;case"S":s.mountType="shared"}}}var x=u[o.PROPERTY_SHARE_PERMISSIONS];e.isUndefined(x)||(s.sharePermissions=parseInt(x));var b=u["{"+o.NS_NEXTCLOUD+"}mount-type"];e.isUndefined(b)||(s.mountType=b);var w=u["{"+o.NS_DAV+"}quota-available-bytes"];return e.isUndefined(w)||(s.quotaAvailableBytes=w),e.each(this._fileInfoParsers,(function(n){e.extend(s,n(t,s)||{})})),new r(s)},_parseResult:function(t){var n=this;return e.map(t,(function(e){return n._parseFileInfo(e)}))},_isSuccessStatus:function(e){return e>=200&&e<=299},_getSabreException:function(e){var t={},n=e.xhr.responseXML;if(null===n)return t;var r=n.getElementsByTagNameNS("http://sabredav.org/ns","message"),i=n.getElementsByTagNameNS("http://sabredav.org/ns","exception");return r.length&&(t.message=r[0].textContent),i.length&&(t.exception=i[0].textContent),t},getPropfindProperties:function(){return this._propfindProperties||(this._propfindProperties=e.map(o._PROPFIND_PROPERTIES,(function(e){return"{"+e[0]+"}"+e[1]}))),this._propfindProperties},getFolderContents:function(n,r){n||(n=""),r=r||{};var i,o=this,u=t.Deferred(),s=u.promise();return i=e.isUndefined(r.properties)?this.getPropfindProperties():r.properties,this._client.propFind(this._buildUrl(n),i,1).then((function(t){if(o._isSuccessStatus(t.status)){var n=o._parseResult(t.body);r&&r.includeParent||n.shift(),u.resolve(t.status,n)}else t=e.extend(t,o._getSabreException(t)),u.reject(t.status,t)})),s},getFilteredFiles:function(n,r){r=r||{};var o,u=this,s=t.Deferred(),a=s.promise();if(o=e.isUndefined(r.properties)?this.getPropfindProperties():r.properties,!n||!n.systemTagIds&&e.isUndefined(n.favorite)&&!n.circlesIds)throw"Missing filter argument";var c,l="<oc:filter-files ";for(c in this._client.xmlNamespaces)l+=" xmlns:"+this._client.xmlNamespaces[c]+'="'+c+'"';return l+=">\n",l+=" <"+this._client.xmlNamespaces["DAV:"]+":prop>\n",e.each(o,(function(e){var t=u._client.parseClarkNotation(e);l+=" <"+u._client.xmlNamespaces[t.namespace]+":"+t.name+" />\n"})),l+=" </"+this._client.xmlNamespaces["DAV:"]+":prop>\n",l+=" <oc:filter-rules>\n",e.each(n.systemTagIds,(function(e){l+=" <oc:systemtag>"+i()(e)+"</oc:systemtag>\n"})),e.each(n.circlesIds,(function(e){l+=" <oc:circle>"+i()(e)+"</oc:circle>\n"})),n.favorite&&(l+=" <oc:favorite>"+(n.favorite?"1":"0")+"</oc:favorite>\n"),l+=" </oc:filter-rules>\n",l+="</oc:filter-files>\n",this._client.request("REPORT",this._buildUrl(),{},l).then((function(t){if(u._isSuccessStatus(t.status)){var n=u._parseResult(t.body);s.resolve(t.status,n)}else t=e.extend(t,u._getSabreException(t)),s.reject(t.status,t)})),a},getFileInfo:function(n,r){n||(n=""),r=r||{};var i,o=this,u=t.Deferred(),s=u.promise();return i=e.isUndefined(r.properties)?this.getPropfindProperties():r.properties,this._client.propFind(this._buildUrl(n),i,0).then((function(t){o._isSuccessStatus(t.status)?u.resolve(t.status,o._parseResult([t.body])[0]):(t=e.extend(t,o._getSabreException(t)),u.reject(t.status,t))})),s},getFileContents:function(n){if(!n)throw'Missing argument "path"';var r=this,i=t.Deferred(),o=i.promise();return this._client.request("GET",this._buildUrl(n)).then((function(t){r._isSuccessStatus(t.status)?i.resolve(t.status,t.body):(t=e.extend(t,r._getSabreException(t)),i.reject(t.status,t))})),o},putFileContents:function(n,r,i){if(!n)throw'Missing argument "path"';var o=this,u=t.Deferred(),s=u.promise(),a={},c="text/plain;charset=utf-8";return(i=i||{}).contentType&&(c=i.contentType),a["Content-Type"]=c,(e.isUndefined(i.overwrite)||i.overwrite)&&(a["If-None-Match"]="*"),this._client.request("PUT",this._buildUrl(n),a,r||"").then((function(t){o._isSuccessStatus(t.status)?u.resolve(t.status):(t=e.extend(t,o._getSabreException(t)),u.reject(t.status,t))})),s},_simpleCall:function(n,r){if(!r)throw'Missing argument "path"';var i=this,o=t.Deferred(),u=o.promise();return this._client.request(n,this._buildUrl(r)).then((function(t){i._isSuccessStatus(t.status)?o.resolve(t.status):(t=e.extend(t,i._getSabreException(t)),o.reject(t.status,t))})),u},createDirectory:function(e){return this._simpleCall("MKCOL",e)},remove:function(e){return this._simpleCall("DELETE",e)},move:function(n,r,i,o){if(!n)throw'Missing argument "path"';if(!r)throw'Missing argument "destinationPath"';var u=this,s=t.Deferred(),a=s.promise();return o=e.extend({},o,{"Destination":this._buildUrl(r)}),i||(o.Overwrite="F"),this._client.request("MOVE",this._buildUrl(n),o).then((function(t){u._isSuccessStatus(t.status)?s.resolve(t.status):(t=e.extend(t,u._getSabreException(t)),s.reject(t.status,t))})),a},copy:function(e,n,r){if(!e)throw'Missing argument "path"';if(!n)throw'Missing argument "destinationPath"';var i=this,o=t.Deferred(),u=o.promise(),s={"Destination":this._buildUrl(n)};return r||(s.Overwrite="F"),this._client.request("COPY",this._buildUrl(e),s).then((function(e){i._isSuccessStatus(e.status)?o.resolve(e.status):o.reject(e.status)})),u},addFileInfoParser:function(e){this._fileInfoParsers.push(e)},getClient:function(){return this._client},getUserName:function(){return this._client.userName},getPassword:function(){return this._client.password},getBaseUrl:function(){return this._client.baseUrl},getHost:function(){return this._host}},n.Files||(n.Files={}),n.Files.getClient=function(){if(n.Files._defaultClient)return n.Files._defaultClient;var e=new n.Files.Client({host:n.getHost(),port:n.getPort(),root:n.linkToRemoteBase("dav")+"/files/"+n.getCurrentUser().uid,useHTTPS:"https"===n.getProtocol()});return n.Files._defaultClient=e,e},n.Files.Client=o}(OC,OC.Files.FileInfo)}.call(this,n(7),n(0))},7:function(e,t,n){"use strict";n.r(t),n.d(t,"default",(function(){return un})),n.d(t,"VERSION",(function(){return i.e})),n.d(t,"restArguments",(function(){return o})),n.d(t,"isObject",(function(){return u})),n.d(t,"isNull",(function(){return s})),n.d(t,"isUndefined",(function(){return a})),n.d(t,"isBoolean",(function(){return c})),n.d(t,"isElement",(function(){return l})),n.d(t,"isString",(function(){return d})),n.d(t,"isNumber",(function(){return p})),n.d(t,"isDate",(function(){return h})),n.d(t,"isRegExp",(function(){return g})),n.d(t,"isError",(function(){return v})),n.d(t,"isSymbol",(function(){return m})),n.d(t,"isMap",(function(){return y})),n.d(t,"isWeakMap",(function(){return x})),n.d(t,"isSet",(function(){return b})),n.d(t,"isWeakSet",(function(){return w})),n.d(t,"isArrayBuffer",(function(){return T})),n.d(t,"isDataView",(function(){return S})),n.d(t,"isArray",(function(){return E})),n.d(t,"isFunction",(function(){return _})),n.d(t,"isArguments",(function(){return D})),n.d(t,"isFinite",(function(){return j})),n.d(t,"isNaN",(function(){return k})),n.d(t,"isTypedArray",(function(){return H})),n.d(t,"isEmpty",(function(){return $})),n.d(t,"isMatch",(function(){return V})),n.d(t,"isEqual",(function(){return z})),n.d(t,"keys",(function(){return W})),n.d(t,"allKeys",(function(){return G})),n.d(t,"values",(function(){return K})),n.d(t,"pairs",(function(){return Q})),n.d(t,"invert",(function(){return J})),n.d(t,"functions",(function(){return Z})),n.d(t,"methods",(function(){return Z})),n.d(t,"extend",(function(){return te})),n.d(t,"extendOwn",(function(){return ne})),n.d(t,"assign",(function(){return ne})),n.d(t,"defaults",(function(){return re})),n.d(t,"create",(function(){return oe})),n.d(t,"clone",(function(){return ue})),n.d(t,"tap",(function(){return se})),n.d(t,"has",(function(){return ae})),n.d(t,"mapObject",(function(){return me})),n.d(t,"identity",(function(){return ce})),n.d(t,"constant",(function(){return P})),n.d(t,"noop",(function(){return ye})),n.d(t,"property",(function(){return de})),n.d(t,"propertyOf",(function(){return xe})),n.d(t,"matcher",(function(){return le})),n.d(t,"matches",(function(){return le})),n.d(t,"times",(function(){return be})),n.d(t,"random",(function(){return we})),n.d(t,"now",(function(){return Te})),n.d(t,"escape",(function(){return Ne})),n.d(t,"unescape",(function(){return Ce})),n.d(t,"templateSettings",(function(){return _e})),n.d(t,"template",(function(){return ke})),n.d(t,"result",(function(){return Pe})),n.d(t,"uniqueId",(function(){return Le})),n.d(t,"chain",(function(){return qe})),n.d(t,"iteratee",(function(){return ge})),n.d(t,"partial",(function(){return He})),n.d(t,"bind",(function(){return Me})),n.d(t,"bindAll",(function(){return Be})),n.d(t,"memoize",(function(){return We})),n.d(t,"delay",(function(){return $e})),n.d(t,"defer",(function(){return Ve})),n.d(t,"throttle",(function(){return Ye})),n.d(t,"debounce",(function(){return Xe})),n.d(t,"wrap",(function(){return ze})),n.d(t,"negate",(function(){return Ge})),n.d(t,"compose",(function(){return Ke})),n.d(t,"after",(function(){return Qe})),n.d(t,"before",(function(){return Je})),n.d(t,"once",(function(){return Ze})),n.d(t,"findKey",(function(){return et})),n.d(t,"findIndex",(function(){return nt})),n.d(t,"findLastIndex",(function(){return rt})),n.d(t,"sortedIndex",(function(){return it})),n.d(t,"indexOf",(function(){return ut})),n.d(t,"lastIndexOf",(function(){return st})),n.d(t,"find",(function(){return at})),n.d(t,"detect",(function(){return at})),n.d(t,"findWhere",(function(){return ct})),n.d(t,"each",(function(){return lt})),n.d(t,"forEach",(function(){return lt})),n.d(t,"map",(function(){return ft})),n.d(t,"collect",(function(){return ft})),n.d(t,"reduce",(function(){return pt})),n.d(t,"foldl",(function(){return pt})),n.d(t,"inject",(function(){return pt})),n.d(t,"reduceRight",(function(){return ht})),n.d(t,"foldr",(function(){return ht})),n.d(t,"filter",(function(){return gt})),n.d(t,"select",(function(){return gt})),n.d(t,"reject",(function(){return vt})),n.d(t,"every",(function(){return mt})),n.d(t,"all",(function(){return mt})),n.d(t,"some",(function(){return yt})),n.d(t,"any",(function(){return yt})),n.d(t,"contains",(function(){return xt})),n.d(t,"includes",(function(){return xt})),n.d(t,"include",(function(){return xt})),n.d(t,"invoke",(function(){return bt})),n.d(t,"pluck",(function(){return wt})),n.d(t,"where",(function(){return Tt})),n.d(t,"max",(function(){return St})),n.d(t,"min",(function(){return Et})),n.d(t,"shuffle",(function(){return Ct})),n.d(t,"sample",(function(){return Nt})),n.d(t,"sortBy",(function(){return _t})),n.d(t,"groupBy",(function(){return At})),n.d(t,"indexBy",(function(){return Dt})),n.d(t,"countBy",(function(){return jt})),n.d(t,"partition",(function(){return kt})),n.d(t,"toArray",(function(){return Rt})),n.d(t,"size",(function(){return Lt})),n.d(t,"pick",(function(){return It})),n.d(t,"omit",(function(){return Ft})),n.d(t,"first",(function(){return Mt})),n.d(t,"head",(function(){return Mt})),n.d(t,"take",(function(){return Mt})),n.d(t,"initial",(function(){return Ht})),n.d(t,"last",(function(){return Bt})),n.d(t,"rest",(function(){return Ut})),n.d(t,"tail",(function(){return Ut})),n.d(t,"drop",(function(){return Ut})),n.d(t,"compact",(function(){return Wt})),n.d(t,"flatten",(function(){return $t})),n.d(t,"without",(function(){return Yt})),n.d(t,"uniq",(function(){return Xt})),n.d(t,"unique",(function(){return Xt})),n.d(t,"union",(function(){return zt})),n.d(t,"intersection",(function(){return Gt})),n.d(t,"difference",(function(){return Vt})),n.d(t,"unzip",(function(){return Kt})),n.d(t,"transpose",(function(){return Kt})),n.d(t,"zip",(function(){return Qt})),n.d(t,"object",(function(){return Jt})),n.d(t,"range",(function(){return Zt})),n.d(t,"chunk",(function(){return en})),n.d(t,"mixin",(function(){return nn}));var r={};n.r(r),n.d(r,"VERSION",(function(){return i.e})),n.d(r,"restArguments",(function(){return o})),n.d(r,"isObject",(function(){return u})),n.d(r,"isNull",(function(){return s})),n.d(r,"isUndefined",(function(){return a})),n.d(r,"isBoolean",(function(){return c})),n.d(r,"isElement",(function(){return l})),n.d(r,"isString",(function(){return d})),n.d(r,"isNumber",(function(){return p})),n.d(r,"isDate",(function(){return h})),n.d(r,"isRegExp",(function(){return g})),n.d(r,"isError",(function(){return v})),n.d(r,"isSymbol",(function(){return m})),n.d(r,"isMap",(function(){return y})),n.d(r,"isWeakMap",(function(){return x})),n.d(r,"isSet",(function(){return b})),n.d(r,"isWeakSet",(function(){return w})),n.d(r,"isArrayBuffer",(function(){return T})),n.d(r,"isDataView",(function(){return S})),n.d(r,"isArray",(function(){return E})),n.d(r,"isFunction",(function(){return _})),n.d(r,"isArguments",(function(){return D})),n.d(r,"isFinite",(function(){return j})),n.d(r,"isNaN",(function(){return k})),n.d(r,"isTypedArray",(function(){return H})),n.d(r,"isEmpty",(function(){return $})),n.d(r,"isMatch",(function(){return V})),n.d(r,"isEqual",(function(){return z})),n.d(r,"keys",(function(){return W})),n.d(r,"allKeys",(function(){return G})),n.d(r,"values",(function(){return K})),n.d(r,"pairs",(function(){return Q})),n.d(r,"invert",(function(){return J})),n.d(r,"functions",(function(){return Z})),n.d(r,"methods",(function(){return Z})),n.d(r,"extend",(function(){return te})),n.d(r,"extendOwn",(function(){return ne})),n.d(r,"assign",(function(){return ne})),n.d(r,"defaults",(function(){return re})),n.d(r,"create",(function(){return oe})),n.d(r,"clone",(function(){return ue})),n.d(r,"tap",(function(){return se})),n.d(r,"has",(function(){return ae})),n.d(r,"mapObject",(function(){return me})),n.d(r,"identity",(function(){return ce})),n.d(r,"constant",(function(){return P})),n.d(r,"noop",(function(){return ye})),n.d(r,"property",(function(){return de})),n.d(r,"propertyOf",(function(){return xe})),n.d(r,"matcher",(function(){return le})),n.d(r,"matches",(function(){return le})),n.d(r,"times",(function(){return be})),n.d(r,"random",(function(){return we})),n.d(r,"now",(function(){return Te})),n.d(r,"escape",(function(){return Ne})),n.d(r,"unescape",(function(){return Ce})),n.d(r,"templateSettings",(function(){return _e})),n.d(r,"template",(function(){return ke})),n.d(r,"result",(function(){return Pe})),n.d(r,"uniqueId",(function(){return Le})),n.d(r,"chain",(function(){return qe})),n.d(r,"iteratee",(function(){return ge})),n.d(r,"partial",(function(){return He})),n.d(r,"bind",(function(){return Me})),n.d(r,"bindAll",(function(){return Be})),n.d(r,"memoize",(function(){return We})),n.d(r,"delay",(function(){return $e})),n.d(r,"defer",(function(){return Ve})),n.d(r,"throttle",(function(){return Ye})),n.d(r,"debounce",(function(){return Xe})),n.d(r,"wrap",(function(){return ze})),n.d(r,"negate",(function(){return Ge})),n.d(r,"compose",(function(){return Ke})),n.d(r,"after",(function(){return Qe})),n.d(r,"before",(function(){return Je})),n.d(r,"once",(function(){return Ze})),n.d(r,"findKey",(function(){return et})),n.d(r,"findIndex",(function(){return nt})),n.d(r,"findLastIndex",(function(){return rt})),n.d(r,"sortedIndex",(function(){return it})),n.d(r,"indexOf",(function(){return ut})),n.d(r,"lastIndexOf",(function(){return st})),n.d(r,"find",(function(){return at})),n.d(r,"detect",(function(){return at})),n.d(r,"findWhere",(function(){return ct})),n.d(r,"each",(function(){return lt})),n.d(r,"forEach",(function(){return lt})),n.d(r,"map",(function(){return ft})),n.d(r,"collect",(function(){return ft})),n.d(r,"reduce",(function(){return pt})),n.d(r,"foldl",(function(){return pt})),n.d(r,"inject",(function(){return pt})),n.d(r,"reduceRight",(function(){return ht})),n.d(r,"foldr",(function(){return ht})),n.d(r,"filter",(function(){return gt})),n.d(r,"select",(function(){return gt})),n.d(r,"reject",(function(){return vt})),n.d(r,"every",(function(){return mt})),n.d(r,"all",(function(){return mt})),n.d(r,"some",(function(){return yt})),n.d(r,"any",(function(){return yt})),n.d(r,"contains",(function(){return xt})),n.d(r,"includes",(function(){return xt})),n.d(r,"include",(function(){return xt})),n.d(r,"invoke",(function(){return bt})),n.d(r,"pluck",(function(){return wt})),n.d(r,"where",(function(){return Tt})),n.d(r,"max",(function(){return St})),n.d(r,"min",(function(){return Et})),n.d(r,"shuffle",(function(){return Ct})),n.d(r,"sample",(function(){return Nt})),n.d(r,"sortBy",(function(){return _t})),n.d(r,"groupBy",(function(){return At})),n.d(r,"indexBy",(function(){return Dt})),n.d(r,"countBy",(function(){return jt})),n.d(r,"partition",(function(){return kt})),n.d(r,"toArray",(function(){return Rt})),n.d(r,"size",(function(){return Lt})),n.d(r,"pick",(function(){return It})),n.d(r,"omit",(function(){return Ft})),n.d(r,"first",(function(){return Mt})),n.d(r,"head",(function(){return Mt})),n.d(r,"take",(function(){return Mt})),n.d(r,"initial",(function(){return Ht})),n.d(r,"last",(function(){return Bt})),n.d(r,"rest",(function(){return Ut})),n.d(r,"tail",(function(){return Ut})),n.d(r,"drop",(function(){return Ut})),n.d(r,"compact",(function(){return Wt})),n.d(r,"flatten",(function(){return $t})),n.d(r,"without",(function(){return Yt})),n.d(r,"uniq",(function(){return Xt})),n.d(r,"unique",(function(){return Xt})),n.d(r,"union",(function(){return zt})),n.d(r,"intersection",(function(){return Gt})),n.d(r,"difference",(function(){return Vt})),n.d(r,"unzip",(function(){return Kt})),n.d(r,"transpose",(function(){return Kt})),n.d(r,"zip",(function(){return Qt})),n.d(r,"object",(function(){return Jt})),n.d(r,"range",(function(){return Zt})),n.d(r,"chunk",(function(){return en})),n.d(r,"mixin",(function(){return nn})),n.d(r,"default",(function(){return rn}));var i=n(1);function o(e,t){return t=null==t?e.length-1:+t,function(){for(var n=Math.max(arguments.length-t,0),r=Array(n),i=0;i<n;i++)r[i]=arguments[i+t];switch(t){case 0:return e.call(this,r);case 1:return e.call(this,arguments[0],r);case 2:return e.call(this,arguments[0],arguments[1],r)}var o=Array(t+1);for(i=0;i<t;i++)o[i]=arguments[i];return o[t]=r,e.apply(this,o)}}function u(e){var t=typeof e;return"function"===t||"object"===t&&!!e}function s(e){return null===e}function a(e){return void 0===e}function c(e){return!0===e||!1===e||"[object Boolean]"===i.s.call(e)}function l(e){return!(!e||1!==e.nodeType)}function f(e){return function(t){return i.s.call(t)==="[object "+e+"]"}}var d=f("String"),p=f("Number"),h=f("Date"),g=f("RegExp"),v=f("Error"),m=f("Symbol"),y=f("Map"),x=f("WeakMap"),b=f("Set"),w=f("WeakSet"),T=f("ArrayBuffer"),S=f("DataView"),E=i.k||f("Array"),N=f("Function"),C=i.p.document&&i.p.document.childNodes;"object"!=typeof Int8Array&&"function"!=typeof C&&(N=function(e){return"function"==typeof e||!1});var _=N;function O(e,t){return null!=e&&i.i.call(e,t)}var A=f("Arguments");!function(){A(arguments)||(A=function(e){return O(e,"callee")})}();var D=A;function j(e){return!m(e)&&Object(i.f)(e)&&!isNaN(parseFloat(e))}function k(e){return p(e)&&Object(i.g)(e)}function P(e){return function(){return e}}function R(e){return function(t){var n=e(t);return"number"==typeof n&&n>=0&&n<=i.b}}function L(e){return function(t){return null==t?void 0:t[e]}}var q=L("byteLength"),I=R(q),F=/\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/;var H=i.r?function(e){return i.l?Object(i.l)(e)&&!S(e):I(e)&&F.test(i.s.call(e))}:P(!1),M=L("length"),U=R(M);function B(e,t){t=function(e){for(var t={},n=e.length,r=0;r<n;++r)t[e[r]]=!0;return{contains:function(e){return t[e]},push:function(n){return t[n]=!0,e.push(n)}}}(t);var n=i.n.length,r=e.constructor,o=_(r)&&r.prototype||i.c,u="constructor";for(O(e,u)&&!t.contains(u)&&t.push(u);n--;)(u=i.n[n])in e&&e[u]!==o[u]&&!t.contains(u)&&t.push(u)}function W(e){if(!u(e))return[];if(i.m)return Object(i.m)(e);var t=[];for(var n in e)O(e,n)&&t.push(n);return i.h&&B(e,t),t}function $(e){return null==e||(U(e)&&(E(e)||d(e)||D(e))?0===e.length:0===W(e).length)}function V(e,t){var n=W(t),r=n.length;if(null==e)return!r;for(var i=Object(e),o=0;o<r;o++){var u=n[o];if(t[u]!==i[u]||!(u in i))return!1}return!0}function Y(e){return e instanceof Y?e:this instanceof Y?void(this._wrapped=e):new Y(e)}function X(e,t,n,r){if(e===t)return 0!==e||1/e==1/t;if(null==e||null==t)return!1;if(e!=e)return t!=t;var o=typeof e;return("function"===o||"object"===o||"object"==typeof t)&&function e(t,n,r,o){t instanceof Y&&(t=t._wrapped);n instanceof Y&&(n=n._wrapped);var u=i.s.call(t);if(u!==i.s.call(n))return!1;switch(u){case"[object RegExp]":case"[object String]":return""+t==""+n;case"[object Number]":return+t!=+t?+n!=+n:0==+t?1/+t==1/n:+t==+n;case"[object Date]":case"[object Boolean]":return+t==+n;case"[object Symbol]":return i.d.valueOf.call(t)===i.d.valueOf.call(n);case"[object ArrayBuffer]":return e(new DataView(t),new DataView(n),r,o);case"[object DataView]":var s=q(t);if(s!==q(n))return!1;for(;s--;)if(t.getUint8(s)!==n.getUint8(s))return!1;return!0}if(H(t))return e(new DataView(t.buffer),new DataView(n.buffer),r,o);var a="[object Array]"===u;if(!a){if("object"!=typeof t||"object"!=typeof n)return!1;var c=t.constructor,l=n.constructor;if(c!==l&&!(_(c)&&c instanceof c&&_(l)&&l instanceof l)&&"constructor"in t&&"constructor"in n)return!1}o=o||[];var f=(r=r||[]).length;for(;f--;)if(r[f]===t)return o[f]===n;if(r.push(t),o.push(n),a){if((f=t.length)!==n.length)return!1;for(;f--;)if(!X(t[f],n[f],r,o))return!1}else{var d,p=W(t);if(f=p.length,W(n).length!==f)return!1;for(;f--;)if(d=p[f],!O(n,d)||!X(t[d],n[d],r,o))return!1}return r.pop(),o.pop(),!0}(e,t,n,r)}function z(e,t){return X(e,t)}function G(e){if(!u(e))return[];var t=[];for(var n in e)t.push(n);return i.h&&B(e,t),t}function K(e){for(var t=W(e),n=t.length,r=Array(n),i=0;i<n;i++)r[i]=e[t[i]];return r}function Q(e){for(var t=W(e),n=t.length,r=Array(n),i=0;i<n;i++)r[i]=[t[i],e[t[i]]];return r}function J(e){for(var t={},n=W(e),r=0,i=n.length;r<i;r++)t[e[n[r]]]=n[r];return t}function Z(e){var t=[];for(var n in e)_(e[n])&&t.push(n);return t.sort()}function ee(e,t){return function(n){var r=arguments.length;if(t&&(n=Object(n)),r<2||null==n)return n;for(var i=1;i<r;i++)for(var o=arguments[i],u=e(o),s=u.length,a=0;a<s;a++){var c=u[a];t&&void 0!==n[c]||(n[c]=o[c])}return n}}Y.VERSION=i.e,Y.prototype.value=function(){return this._wrapped},Y.prototype.valueOf=Y.prototype.toJSON=Y.prototype.value,Y.prototype.toString=function(){return String(this._wrapped)};var te=ee(G),ne=ee(W),re=ee(G,!0);function ie(e){if(!u(e))return{};if(i.j)return Object(i.j)(e);var t=function(){};t.prototype=e;var n=new t;return t.prototype=null,n}function oe(e,t){var n=ie(e);return t&&ne(n,t),n}function ue(e){return u(e)?E(e)?e.slice():te({},e):e}function se(e,t){return t(e),e}function ae(e,t){if(!E(t))return O(e,t);for(var n=t.length,r=0;r<n;r++){var o=t[r];if(null==e||!i.i.call(e,o))return!1;e=e[o]}return!!n}function ce(e){return e}function le(e){return e=ne({},e),function(t){return V(t,e)}}function fe(e,t){for(var n=t.length,r=0;r<n;r++){if(null==e)return;e=e[t[r]]}return n?e:void 0}function de(e){return E(e)?function(t){return fe(t,e)}:L(e)}function pe(e,t,n){if(void 0===t)return e;switch(null==n?3:n){case 1:return function(n){return e.call(t,n)};case 3:return function(n,r,i){return e.call(t,n,r,i)};case 4:return function(n,r,i,o){return e.call(t,n,r,i,o)}}return function(){return e.apply(t,arguments)}}function he(e,t,n){return null==e?ce:_(e)?pe(e,t,n):u(e)&&!E(e)?le(e):de(e)}function ge(e,t){return he(e,t,1/0)}function ve(e,t,n){return Y.iteratee!==ge?Y.iteratee(e,t):he(e,t,n)}function me(e,t,n){t=ve(t,n);for(var r=W(e),i=r.length,o={},u=0;u<i;u++){var s=r[u];o[s]=t(e[s],s,e)}return o}function ye(){}function xe(e){return null==e?function(){}:function(t){return E(t)?fe(e,t):e[t]}}function be(e,t,n){var r=Array(Math.max(0,e));t=pe(t,n,1);for(var i=0;i<e;i++)r[i]=t(i);return r}function we(e,t){return null==t&&(t=e,e=0),e+Math.floor(Math.random()*(t-e+1))}Y.iteratee=ge;var Te=Date.now||function(){return(new Date).getTime()};function Se(e){var t=function(t){return e[t]},n="(?:"+W(e).join("|")+")",r=RegExp(n),i=RegExp(n,"g");return function(e){return e=null==e?"":""+e,r.test(e)?e.replace(i,t):e}}var Ee={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},Ne=Se(Ee),Ce=Se(J(Ee)),_e=Y.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g},Oe=/(.)^/,Ae={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},De=/\\|'|\r|\n|\u2028|\u2029/g;function je(e){return"\\"+Ae[e]}function ke(e,t,n){!t&&n&&(t=n),t=re({},t,Y.templateSettings);var r,i=RegExp([(t.escape||Oe).source,(t.interpolate||Oe).source,(t.evaluate||Oe).source].join("|")+"|$","g"),o=0,u="__p+='";e.replace(i,(function(t,n,r,i,s){return u+=e.slice(o,s).replace(De,je),o=s+t.length,n?u+="'+\n((__t=("+n+"))==null?'':_.escape(__t))+\n'":r?u+="'+\n((__t=("+r+"))==null?'':__t)+\n'":i&&(u+="';\n"+i+"\n__p+='"),t})),u+="';\n",t.variable||(u="with(obj||{}){\n"+u+"}\n"),u="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+u+"return __p;\n";try{r=new Function(t.variable||"obj","_",u)}catch(e){throw e.source=u,e}var s=function(e){return r.call(this,e,Y)},a=t.variable||"obj";return s.source="function("+a+"){\n"+u+"}",s}function Pe(e,t,n){E(t)||(t=[t]);var r=t.length;if(!r)return _(n)?n.call(e):n;for(var i=0;i<r;i++){var o=null==e?void 0:e[t[i]];void 0===o&&(o=n,i=r),e=_(o)?o.call(e):o}return e}var Re=0;function Le(e){var t=++Re+"";return e?e+t:t}function qe(e){var t=Y(e);return t._chain=!0,t}function Ie(e,t,n,r,i){if(!(r instanceof t))return e.apply(n,i);var o=ie(e.prototype),s=e.apply(o,i);return u(s)?s:o}var Fe=o((function(e,t){var n=Fe.placeholder,r=function(){for(var i=0,o=t.length,u=Array(o),s=0;s<o;s++)u[s]=t[s]===n?arguments[i++]:t[s];for(;i<arguments.length;)u.push(arguments[i++]);return Ie(e,r,this,this,u)};return r}));Fe.placeholder=Y;var He=Fe,Me=o((function(e,t,n){if(!_(e))throw new TypeError("Bind must be called on a function");var r=o((function(i){return Ie(e,r,t,this,n.concat(i))}));return r}));function Ue(e,t,n,r){if(r=r||[],t||0===t){if(t<=0)return r.concat(e)}else t=1/0;for(var i=r.length,o=0,u=M(e);o<u;o++){var s=e[o];if(U(s)&&(E(s)||D(s)))if(t>1)Ue(s,t-1,n,r),i=r.length;else for(var a=0,c=s.length;a<c;)r[i++]=s[a++];else n||(r[i++]=s)}return r}var Be=o((function(e,t){var n=(t=Ue(t,!1,!1)).length;if(n<1)throw new Error("bindAll must be passed function names");for(;n--;){var r=t[n];e[r]=Me(e[r],e)}return e}));function We(e,t){var n=function(r){var i=n.cache,o=""+(t?t.apply(this,arguments):r);return O(i,o)||(i[o]=e.apply(this,arguments)),i[o]};return n.cache={},n}var $e=o((function(e,t,n){return setTimeout((function(){return e.apply(null,n)}),t)})),Ve=He($e,Y,1);function Ye(e,t,n){var r,i,o,u,s=0;n||(n={});var a=function(){s=!1===n.leading?0:Te(),r=null,u=e.apply(i,o),r||(i=o=null)},c=function(){var c=Te();s||!1!==n.leading||(s=c);var l=t-(c-s);return i=this,o=arguments,l<=0||l>t?(r&&(clearTimeout(r),r=null),s=c,u=e.apply(i,o),r||(i=o=null)):r||!1===n.trailing||(r=setTimeout(a,l)),u};return c.cancel=function(){clearTimeout(r),s=0,r=i=o=null},c}function Xe(e,t,n){var r,i,u=function(t,n){r=null,n&&(i=e.apply(t,n))},s=o((function(o){if(r&&clearTimeout(r),n){var s=!r;r=setTimeout(u,t),s&&(i=e.apply(this,o))}else r=$e(u,t,this,o);return i}));return s.cancel=function(){clearTimeout(r),r=null},s}function ze(e,t){return He(t,e)}function Ge(e){return function(){return!e.apply(this,arguments)}}function Ke(){var e=arguments,t=e.length-1;return function(){for(var n=t,r=e[t].apply(this,arguments);n--;)r=e[n].call(this,r);return r}}function Qe(e,t){return function(){if(--e<1)return t.apply(this,arguments)}}function Je(e,t){var n;return function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=null),n}}var Ze=He(Je,2);function et(e,t,n){t=ve(t,n);for(var r,i=W(e),o=0,u=i.length;o<u;o++)if(t(e[r=i[o]],r,e))return r}function tt(e){return function(t,n,r){n=ve(n,r);for(var i=M(t),o=e>0?0:i-1;o>=0&&o<i;o+=e)if(n(t[o],o,t))return o;return-1}}var nt=tt(1),rt=tt(-1);function it(e,t,n,r){for(var i=(n=ve(n,r,1))(t),o=0,u=M(e);o<u;){var s=Math.floor((o+u)/2);n(e[s])<i?o=s+1:u=s}return o}function ot(e,t,n){return function(r,o,u){var s=0,a=M(r);if("number"==typeof u)e>0?s=u>=0?u:Math.max(u+a,s):a=u>=0?Math.min(u+1,a):u+a+1;else if(n&&u&&a)return r[u=n(r,o)]===o?u:-1;if(o!=o)return(u=t(i.q.call(r,s,a),k))>=0?u+s:-1;for(u=e>0?s:a-1;u>=0&&u<a;u+=e)if(r[u]===o)return u;return-1}}var ut=ot(1,nt,it),st=ot(-1,rt);function at(e,t,n){var r=(U(e)?nt:et)(e,t,n);if(void 0!==r&&-1!==r)return e[r]}function ct(e,t){return at(e,le(t))}function lt(e,t,n){var r,i;if(t=pe(t,n),U(e))for(r=0,i=e.length;r<i;r++)t(e[r],r,e);else{var o=W(e);for(r=0,i=o.length;r<i;r++)t(e[o[r]],o[r],e)}return e}function ft(e,t,n){t=ve(t,n);for(var r=!U(e)&&W(e),i=(r||e).length,o=Array(i),u=0;u<i;u++){var s=r?r[u]:u;o[u]=t(e[s],s,e)}return o}function dt(e){var t=function(t,n,r,i){var o=!U(t)&&W(t),u=(o||t).length,s=e>0?0:u-1;for(i||(r=t[o?o[s]:s],s+=e);s>=0&&s<u;s+=e){var a=o?o[s]:s;r=n(r,t[a],a,t)}return r};return function(e,n,r,i){var o=arguments.length>=3;return t(e,pe(n,i,4),r,o)}}var pt=dt(1),ht=dt(-1);function gt(e,t,n){var r=[];return t=ve(t,n),lt(e,(function(e,n,i){t(e,n,i)&&r.push(e)})),r}function vt(e,t,n){return gt(e,Ge(ve(t)),n)}function mt(e,t,n){t=ve(t,n);for(var r=!U(e)&&W(e),i=(r||e).length,o=0;o<i;o++){var u=r?r[o]:o;if(!t(e[u],u,e))return!1}return!0}function yt(e,t,n){t=ve(t,n);for(var r=!U(e)&&W(e),i=(r||e).length,o=0;o<i;o++){var u=r?r[o]:o;if(t(e[u],u,e))return!0}return!1}function xt(e,t,n,r){return U(e)||(e=K(e)),("number"!=typeof n||r)&&(n=0),ut(e,t,n)>=0}var bt=o((function(e,t,n){var r,i;return _(t)?i=t:E(t)&&(r=t.slice(0,-1),t=t[t.length-1]),ft(e,(function(e){var o=i;if(!o){if(r&&r.length&&(e=fe(e,r)),null==e)return;o=e[t]}return null==o?o:o.apply(e,n)}))}));function wt(e,t){return ft(e,de(t))}function Tt(e,t){return gt(e,le(t))}function St(e,t,n){var r,i,o=-1/0,u=-1/0;if(null==t||"number"==typeof t&&"object"!=typeof e[0]&&null!=e)for(var s=0,a=(e=U(e)?e:K(e)).length;s<a;s++)null!=(r=e[s])&&r>o&&(o=r);else t=ve(t,n),lt(e,(function(e,n,r){((i=t(e,n,r))>u||i===-1/0&&o===-1/0)&&(o=e,u=i)}));return o}function Et(e,t,n){var r,i,o=1/0,u=1/0;if(null==t||"number"==typeof t&&"object"!=typeof e[0]&&null!=e)for(var s=0,a=(e=U(e)?e:K(e)).length;s<a;s++)null!=(r=e[s])&&r<o&&(o=r);else t=ve(t,n),lt(e,(function(e,n,r){((i=t(e,n,r))<u||i===1/0&&o===1/0)&&(o=e,u=i)}));return o}function Nt(e,t,n){if(null==t||n)return U(e)||(e=K(e)),e[we(e.length-1)];var r=U(e)?ue(e):K(e),i=M(r);t=Math.max(Math.min(t,i),0);for(var o=i-1,u=0;u<t;u++){var s=we(u,o),a=r[u];r[u]=r[s],r[s]=a}return r.slice(0,t)}function Ct(e){return Nt(e,1/0)}function _t(e,t,n){var r=0;return t=ve(t,n),wt(ft(e,(function(e,n,i){return{value:e,index:r++,criteria:t(e,n,i)}})).sort((function(e,t){var n=e.criteria,r=t.criteria;if(n!==r){if(n>r||void 0===n)return 1;if(n<r||void 0===r)return-1}return e.index-t.index})),"value")}function Ot(e,t){return function(n,r,i){var o=t?[[],[]]:{};return r=ve(r,i),lt(n,(function(t,i){var u=r(t,i,n);e(o,t,u)})),o}}var At=Ot((function(e,t,n){O(e,n)?e[n].push(t):e[n]=[t]})),Dt=Ot((function(e,t,n){e[n]=t})),jt=Ot((function(e,t,n){O(e,n)?e[n]++:e[n]=1})),kt=Ot((function(e,t,n){e[n?0:1].push(t)}),!0),Pt=/[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g;function Rt(e){return e?E(e)?i.q.call(e):d(e)?e.match(Pt):U(e)?ft(e,ce):K(e):[]}function Lt(e){return null==e?0:U(e)?e.length:W(e).length}function qt(e,t,n){return t in n}var It=o((function(e,t){var n={},r=t[0];if(null==e)return n;_(r)?(t.length>1&&(r=pe(r,t[1])),t=G(e)):(r=qt,t=Ue(t,!1,!1),e=Object(e));for(var i=0,o=t.length;i<o;i++){var u=t[i],s=e[u];r(s,u,e)&&(n[u]=s)}return n})),Ft=o((function(e,t){var n,r=t[0];return _(r)?(r=Ge(r),t.length>1&&(n=t[1])):(t=ft(Ue(t,!1,!1),String),r=function(e,n){return!xt(t,n)}),It(e,r,n)}));function Ht(e,t,n){return i.q.call(e,0,Math.max(0,e.length-(null==t||n?1:t)))}function Mt(e,t,n){return null==e||e.length<1?null==t||n?void 0:[]:null==t||n?e[0]:Ht(e,e.length-t)}function Ut(e,t,n){return i.q.call(e,null==t||n?1:t)}function Bt(e,t,n){return null==e||e.length<1?null==t||n?void 0:[]:null==t||n?e[e.length-1]:Ut(e,Math.max(0,e.length-t))}function Wt(e){return gt(e,Boolean)}function $t(e,t){return Ue(e,t,!1)}var Vt=o((function(e,t){return t=Ue(t,!0,!0),gt(e,(function(e){return!xt(t,e)}))})),Yt=o((function(e,t){return Vt(e,t)}));function Xt(e,t,n,r){c(t)||(r=n,n=t,t=!1),null!=n&&(n=ve(n,r));for(var i=[],o=[],u=0,s=M(e);u<s;u++){var a=e[u],l=n?n(a,u,e):a;t&&!n?(u&&o===l||i.push(a),o=l):n?xt(o,l)||(o.push(l),i.push(a)):xt(i,a)||i.push(a)}return i}var zt=o((function(e){return Xt(Ue(e,!0,!0))}));function Gt(e){for(var t=[],n=arguments.length,r=0,i=M(e);r<i;r++){var o=e[r];if(!xt(t,o)){var u;for(u=1;u<n&&xt(arguments[u],o);u++);u===n&&t.push(o)}}return t}function Kt(e){for(var t=e&&St(e,M).length||0,n=Array(t),r=0;r<t;r++)n[r]=wt(e,r);return n}var Qt=o(Kt);function Jt(e,t){for(var n={},r=0,i=M(e);r<i;r++)t?n[e[r]]=t[r]:n[e[r][0]]=e[r][1];return n}function Zt(e,t,n){null==t&&(t=e||0,e=0),n||(n=t<e?-1:1);for(var r=Math.max(Math.ceil((t-e)/n),0),i=Array(r),o=0;o<r;o++,e+=n)i[o]=e;return i}function en(e,t){if(null==t||t<1)return[];for(var n=[],r=0,o=e.length;r<o;)n.push(i.q.call(e,r,r+=t));return n}function tn(e,t){return e._chain?Y(t).chain():t}function nn(e){return lt(Z(e),(function(t){var n=Y[t]=e[t];Y.prototype[t]=function(){var e=[this._wrapped];return i.o.apply(e,arguments),tn(this,n.apply(Y,e))}})),Y}lt(["pop","push","reverse","shift","sort","splice","unshift"],(function(e){var t=i.a[e];Y.prototype[e]=function(){var n=this._wrapped;return null!=n&&(t.apply(n,arguments),"shift"!==e&&"splice"!==e||0!==n.length||delete n[0]),tn(this,n)}})),lt(["concat","join","slice"],(function(e){var t=i.a[e];Y.prototype[e]=function(){var e=this._wrapped;return null!=e&&(e=t.apply(e,arguments)),tn(this,e)}}));var rn=Y,on=nn(r);on._=on;var un=on}}); //# sourceMappingURL=files_client.js.map \ No newline at end of file diff --git a/core/js/dist/files_client.js.map b/core/js/dist/files_client.js.map index 32f2af9219..dddf6256c9 100644 --- a/core/js/dist/files_client.js.map +++ b/core/js/dist/files_client.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/jquery/dist/jquery.js","webpack:///./node_modules/underscore/modules/_setup.js","webpack:///./node_modules/escape-html/index.js","webpack:///(webpack)/buildin/global.js","webpack:///./core/src/files/client.js","webpack:///./node_modules/underscore/modules/restArguments.js","webpack:///./node_modules/underscore/modules/isObject.js","webpack:///./node_modules/underscore/modules/isNull.js","webpack:///./node_modules/underscore/modules/isUndefined.js","webpack:///./node_modules/underscore/modules/isBoolean.js","webpack:///./node_modules/underscore/modules/isElement.js","webpack:///./node_modules/underscore/modules/_tagTester.js","webpack:///./node_modules/underscore/modules/isString.js","webpack:///./node_modules/underscore/modules/isNumber.js","webpack:///./node_modules/underscore/modules/isDate.js","webpack:///./node_modules/underscore/modules/isRegExp.js","webpack:///./node_modules/underscore/modules/isError.js","webpack:///./node_modules/underscore/modules/isSymbol.js","webpack:///./node_modules/underscore/modules/isMap.js","webpack:///./node_modules/underscore/modules/isWeakMap.js","webpack:///./node_modules/underscore/modules/isSet.js","webpack:///./node_modules/underscore/modules/isWeakSet.js","webpack:///./node_modules/underscore/modules/isArrayBuffer.js","webpack:///./node_modules/underscore/modules/isDataView.js","webpack:///./node_modules/underscore/modules/isArray.js","webpack:///./node_modules/underscore/modules/isFunction.js","webpack:///./node_modules/underscore/modules/_has.js","webpack:///./node_modules/underscore/modules/isArguments.js","webpack:///./node_modules/underscore/modules/isFinite.js","webpack:///./node_modules/underscore/modules/isNaN.js","webpack:///./node_modules/underscore/modules/constant.js","webpack:///./node_modules/underscore/modules/_createSizePropertyCheck.js","webpack:///./node_modules/underscore/modules/_shallowProperty.js","webpack:///./node_modules/underscore/modules/_getByteLength.js","webpack:///./node_modules/underscore/modules/_isBufferLike.js","webpack:///./node_modules/underscore/modules/isTypedArray.js","webpack:///./node_modules/underscore/modules/_getLength.js","webpack:///./node_modules/underscore/modules/_isArrayLike.js","webpack:///./node_modules/underscore/modules/_collectNonEnumProps.js","webpack:///./node_modules/underscore/modules/keys.js","webpack:///./node_modules/underscore/modules/isEmpty.js","webpack:///./node_modules/underscore/modules/isMatch.js","webpack:///./node_modules/underscore/modules/underscore.js","webpack:///./node_modules/underscore/modules/isEqual.js","webpack:///./node_modules/underscore/modules/allKeys.js","webpack:///./node_modules/underscore/modules/values.js","webpack:///./node_modules/underscore/modules/pairs.js","webpack:///./node_modules/underscore/modules/invert.js","webpack:///./node_modules/underscore/modules/functions.js","webpack:///./node_modules/underscore/modules/_createAssigner.js","webpack:///./node_modules/underscore/modules/extend.js","webpack:///./node_modules/underscore/modules/extendOwn.js","webpack:///./node_modules/underscore/modules/defaults.js","webpack:///./node_modules/underscore/modules/_baseCreate.js","webpack:///./node_modules/underscore/modules/create.js","webpack:///./node_modules/underscore/modules/clone.js","webpack:///./node_modules/underscore/modules/tap.js","webpack:///./node_modules/underscore/modules/has.js","webpack:///./node_modules/underscore/modules/identity.js","webpack:///./node_modules/underscore/modules/matcher.js","webpack:///./node_modules/underscore/modules/_deepGet.js","webpack:///./node_modules/underscore/modules/property.js","webpack:///./node_modules/underscore/modules/_optimizeCb.js","webpack:///./node_modules/underscore/modules/_baseIteratee.js","webpack:///./node_modules/underscore/modules/iteratee.js","webpack:///./node_modules/underscore/modules/_cb.js","webpack:///./node_modules/underscore/modules/mapObject.js","webpack:///./node_modules/underscore/modules/noop.js","webpack:///./node_modules/underscore/modules/propertyOf.js","webpack:///./node_modules/underscore/modules/times.js","webpack:///./node_modules/underscore/modules/random.js","webpack:///./node_modules/underscore/modules/now.js","webpack:///./node_modules/underscore/modules/_createEscaper.js","webpack:///./node_modules/underscore/modules/_escapeMap.js","webpack:///./node_modules/underscore/modules/escape.js","webpack:///./node_modules/underscore/modules/unescape.js","webpack:///./node_modules/underscore/modules/_unescapeMap.js","webpack:///./node_modules/underscore/modules/templateSettings.js","webpack:///./node_modules/underscore/modules/template.js","webpack:///./node_modules/underscore/modules/result.js","webpack:///./node_modules/underscore/modules/uniqueId.js","webpack:///./node_modules/underscore/modules/chain.js","webpack:///./node_modules/underscore/modules/_executeBound.js","webpack:///./node_modules/underscore/modules/partial.js","webpack:///./node_modules/underscore/modules/bind.js","webpack:///./node_modules/underscore/modules/_flatten.js","webpack:///./node_modules/underscore/modules/bindAll.js","webpack:///./node_modules/underscore/modules/memoize.js","webpack:///./node_modules/underscore/modules/delay.js","webpack:///./node_modules/underscore/modules/defer.js","webpack:///./node_modules/underscore/modules/throttle.js","webpack:///./node_modules/underscore/modules/debounce.js","webpack:///./node_modules/underscore/modules/wrap.js","webpack:///./node_modules/underscore/modules/negate.js","webpack:///./node_modules/underscore/modules/compose.js","webpack:///./node_modules/underscore/modules/after.js","webpack:///./node_modules/underscore/modules/before.js","webpack:///./node_modules/underscore/modules/once.js","webpack:///./node_modules/underscore/modules/findKey.js","webpack:///./node_modules/underscore/modules/_createPredicateIndexFinder.js","webpack:///./node_modules/underscore/modules/findIndex.js","webpack:///./node_modules/underscore/modules/findLastIndex.js","webpack:///./node_modules/underscore/modules/sortedIndex.js","webpack:///./node_modules/underscore/modules/_createIndexFinder.js","webpack:///./node_modules/underscore/modules/indexOf.js","webpack:///./node_modules/underscore/modules/lastIndexOf.js","webpack:///./node_modules/underscore/modules/find.js","webpack:///./node_modules/underscore/modules/findWhere.js","webpack:///./node_modules/underscore/modules/each.js","webpack:///./node_modules/underscore/modules/map.js","webpack:///./node_modules/underscore/modules/_createReduce.js","webpack:///./node_modules/underscore/modules/reduce.js","webpack:///./node_modules/underscore/modules/reduceRight.js","webpack:///./node_modules/underscore/modules/filter.js","webpack:///./node_modules/underscore/modules/reject.js","webpack:///./node_modules/underscore/modules/every.js","webpack:///./node_modules/underscore/modules/some.js","webpack:///./node_modules/underscore/modules/contains.js","webpack:///./node_modules/underscore/modules/invoke.js","webpack:///./node_modules/underscore/modules/pluck.js","webpack:///./node_modules/underscore/modules/where.js","webpack:///./node_modules/underscore/modules/max.js","webpack:///./node_modules/underscore/modules/min.js","webpack:///./node_modules/underscore/modules/sample.js","webpack:///./node_modules/underscore/modules/shuffle.js","webpack:///./node_modules/underscore/modules/sortBy.js","webpack:///./node_modules/underscore/modules/_group.js","webpack:///./node_modules/underscore/modules/groupBy.js","webpack:///./node_modules/underscore/modules/indexBy.js","webpack:///./node_modules/underscore/modules/countBy.js","webpack:///./node_modules/underscore/modules/partition.js","webpack:///./node_modules/underscore/modules/toArray.js","webpack:///./node_modules/underscore/modules/size.js","webpack:///./node_modules/underscore/modules/_keyInObj.js","webpack:///./node_modules/underscore/modules/pick.js","webpack:///./node_modules/underscore/modules/omit.js","webpack:///./node_modules/underscore/modules/initial.js","webpack:///./node_modules/underscore/modules/first.js","webpack:///./node_modules/underscore/modules/rest.js","webpack:///./node_modules/underscore/modules/last.js","webpack:///./node_modules/underscore/modules/compact.js","webpack:///./node_modules/underscore/modules/flatten.js","webpack:///./node_modules/underscore/modules/difference.js","webpack:///./node_modules/underscore/modules/without.js","webpack:///./node_modules/underscore/modules/uniq.js","webpack:///./node_modules/underscore/modules/union.js","webpack:///./node_modules/underscore/modules/intersection.js","webpack:///./node_modules/underscore/modules/unzip.js","webpack:///./node_modules/underscore/modules/zip.js","webpack:///./node_modules/underscore/modules/object.js","webpack:///./node_modules/underscore/modules/range.js","webpack:///./node_modules/underscore/modules/chunk.js","webpack:///./node_modules/underscore/modules/_chainResult.js","webpack:///./node_modules/underscore/modules/mixin.js","webpack:///./node_modules/underscore/modules/underscore-array-methods.js","webpack:///./node_modules/underscore/modules/index-default.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","global","factory","window","this","noGlobal","arr","document","slice","concat","push","indexOf","class2type","toString","hasOwn","support","jQuery","selector","context","fn","init","rtrim","rmsPrefix","rdashAlpha","fcamelCase","all","letter","toUpperCase","isArrayLike","obj","length","type","isWindow","jquery","constructor","toArray","num","pushStack","elems","ret","merge","prevObject","each","callback","map","elem","apply","arguments","first","eq","last","len","j","end","sort","splice","extend","options","src","copy","copyIsArray","clone","target","deep","isFunction","isPlainObject","isArray","undefined","expando","Math","random","replace","isReady","error","msg","Error","noop","Array","isNumeric","realStringObj","parseFloat","nodeType","isEmptyObject","globalEval","code","script","indirect","eval","trim","createElement","text","head","appendChild","parentNode","removeChild","camelCase","string","nodeName","toLowerCase","makeArray","results","inArray","second","grep","invert","matches","callbackExpect","arg","guid","proxy","tmp","args","now","Date","iterator","split","Sizzle","Expr","getText","isXML","tokenize","compile","select","outermostContext","sortInput","hasDuplicate","setDocument","docElem","documentIsHTML","rbuggyQSA","rbuggyMatches","contains","preferredDoc","dirruns","done","classCache","createCache","tokenCache","compilerCache","sortOrder","a","b","pop","push_native","list","booleans","whitespace","identifier","attributes","pseudos","rwhitespace","RegExp","rcomma","rcombinators","rattributeQuotes","rpseudo","ridentifier","matchExpr","rinputs","rheader","rnative","rquickExpr","rsibling","rescape","runescape","funescape","_","escaped","escapedWhitespace","high","String","fromCharCode","unloadHandler","childNodes","e","els","seed","nid","nidselect","match","groups","newSelector","newContext","ownerDocument","exec","getElementById","id","getElementsByTagName","getElementsByClassName","qsa","test","getAttribute","setAttribute","toSelector","join","testContext","querySelectorAll","qsaError","removeAttribute","keys","cache","cacheLength","shift","markFunction","assert","div","addHandle","attrs","handler","attrHandle","siblingCheck","cur","diff","sourceIndex","nextSibling","createInputPseudo","createButtonPseudo","createPositionalPseudo","argument","matchIndexes","documentElement","node","hasCompare","parent","doc","defaultView","top","addEventListener","attachEvent","className","createComment","getById","getElementsByName","find","filter","attrId","getAttributeNode","tag","innerHTML","input","matchesSelector","webkitMatchesSelector","mozMatchesSelector","oMatchesSelector","msMatchesSelector","disconnectedMatch","compareDocumentPosition","adown","bup","compare","sortDetached","aup","ap","bp","unshift","expr","elements","attr","val","specified","uniqueSort","duplicates","detectDuplicates","sortStable","textContent","firstChild","nodeValue","selectors","createPseudo","relative","dir","preFilter","excess","unquoted","nodeNameSelector","pattern","operator","check","result","what","simple","forward","ofType","xml","uniqueCache","outerCache","nodeIndex","start","useCache","lastChild","uniqueID","pseudo","setFilters","idx","matched","matcher","unmatched","innerText","lang","elemLang","hash","location","activeElement","hasFocus","href","tabIndex","disabled","checked","selected","selectedIndex","radio","checkbox","file","password","image","submit","reset","tokens","addCombinator","combinator","base","checkNonElements","doneName","oldCache","newCache","elementMatcher","matchers","condense","newUnmatched","mapped","setMatcher","postFilter","postFinder","postSelector","temp","preMap","postMap","preexisting","contexts","multipleContexts","matcherIn","matcherOut","matcherFromTokens","checkContext","leadingRelative","implicitRelative","matchContext","matchAnyContext","filters","parseOnly","soFar","preFilters","cached","setMatchers","elementMatchers","bySet","byElement","superMatcher","outermost","matchedCount","setMatched","contextBackup","dirrunsUnique","matcherFromGroupMatchers","token","compiled","div1","defaultValue","unique","isXMLDoc","until","truncate","is","siblings","rneedsContext","needsContext","rsingleTag","risSimple","winnow","qualifier","not","self","rootjQuery","root","parseHTML","ready","rparentsprev","guaranteedUnique","children","contents","next","prev","sibling","has","targets","closest","pos","index","prevAll","add","addBack","parents","parentsUntil","nextAll","nextUntil","prevUntil","contentDocument","reverse","readyList","rnotwhite","completed","removeEventListener","Callbacks","flag","createOptions","firing","memory","fired","locked","queue","firingIndex","fire","once","stopOnFalse","remove","empty","disable","lock","fireWith","Deferred","func","tuples","state","promise","always","deferred","fail","then","fns","newDefer","tuple","returned","progress","notify","resolve","reject","pipe","stateString","when","subordinate","progressValues","progressContexts","resolveContexts","resolveValues","remaining","updateFunc","values","notifyWith","resolveWith","readyWait","holdReady","hold","wait","triggerHandler","off","readyState","doScroll","setTimeout","access","chainable","emptyGet","raw","bulk","acceptData","owner","Data","uid","register","initial","writable","configurable","set","data","prop","stored","camel","hasData","dataPriv","dataUser","rbrace","rmultiDash","dataAttr","parseJSON","removeData","_data","_removeData","camelKey","dequeue","startLength","hooks","_queueHooks","stop","setter","clearQueue","count","defer","pnum","source","rcssNum","cssExpand","isHidden","el","css","adjustCSS","valueParts","tween","adjusted","scale","maxIterations","currentValue","unit","cssNumber","initialInUnit","style","rcheckableType","rtagName","rscriptType","wrapMap","option","thead","col","tr","td","_default","getAll","setGlobalEval","refElements","optgroup","tbody","tfoot","colgroup","caption","th","rhtml","buildFragment","scripts","selection","ignored","wrap","fragment","createDocumentFragment","nodes","htmlPrefilter","createTextNode","checkClone","cloneNode","noCloneChecked","rkeyEvent","rmouseEvent","rtypenamespace","returnTrue","returnFalse","safeActiveElement","err","on","types","one","origFn","event","handleObjIn","eventHandle","events","handleObj","special","handlers","namespaces","origType","elemData","handle","triggered","dispatch","delegateType","bindType","namespace","delegateCount","setup","mappedTypes","origCount","teardown","removeEvent","fix","handlerQueue","delegateTarget","preDispatch","isPropagationStopped","currentTarget","isImmediatePropagationStopped","rnamespace","preventDefault","stopPropagation","postDispatch","sel","isNaN","button","props","fixHooks","keyHooks","original","which","charCode","keyCode","mouseHooks","eventDoc","body","pageX","clientX","scrollLeft","clientLeft","pageY","clientY","scrollTop","clientTop","originalEvent","fixHook","Event","load","noBubble","focus","trigger","blur","click","beforeunload","returnValue","isDefaultPrevented","defaultPrevented","timeStamp","isSimulated","stopImmediatePropagation","mouseenter","mouseleave","pointerenter","pointerleave","orig","related","relatedTarget","rxhtmlTag","rnoInnerhtml","rchecked","rscriptTypeMasked","rcleanScript","manipulationTarget","content","disableScript","restoreScript","cloneCopyEvent","dest","pdataOld","pdataCur","udataOld","udataCur","domManip","collection","hasScripts","iNoClone","html","_evalUrl","keepData","cleanData","dataAndEvents","deepDataAndEvents","srcElements","destElements","inPage","detach","append","prepend","insertBefore","before","after","replaceWith","replaceChild","appendTo","prependTo","insertAfter","replaceAll","insert","iframe","elemdisplay","HTML","BODY","actualDisplay","display","defaultDisplay","write","close","rmargin","rnumnonpx","getStyles","view","opener","getComputedStyle","swap","old","curCSS","computed","width","minWidth","maxWidth","getPropertyValue","pixelMarginRight","addGetHookIf","conditionFn","hookFn","pixelPositionVal","boxSizingReliableVal","pixelMarginRightVal","reliableMarginLeftVal","container","computeStyleTests","cssText","divStyle","marginLeft","marginRight","backgroundClip","clearCloneStyle","pixelPosition","boxSizingReliable","reliableMarginLeft","reliableMarginRight","marginDiv","rdisplayswap","cssShow","position","visibility","cssNormalTransform","letterSpacing","fontWeight","cssPrefixes","emptyStyle","vendorPropName","capName","setPositiveNumber","subtract","max","augmentWidthOrHeight","extra","isBorderBox","styles","getWidthOrHeight","valueIsBorderBox","offsetWidth","offsetHeight","showHide","show","hidden","Tween","easing","cssHooks","opacity","cssProps","origName","isFinite","getBoundingClientRect","left","margin","padding","border","prefix","suffix","expand","expanded","parts","hide","toggle","propHooks","run","percent","eased","duration","step","fx","linear","swing","cos","PI","fxNow","timerId","rfxtypes","rrun","createFxNow","genFx","includeWidth","height","createTween","animation","Animation","tweeners","properties","stopped","prefilters","tick","currentTime","startTime","tweens","opts","specialEasing","originalProperties","originalOptions","gotoEnd","rejectWith","propFilter","timer","anim","complete","tweener","oldfire","dataShow","unqueued","overflow","overflowX","overflowY","prefilter","speed","opt","speeds","fadeTo","to","animate","optall","doAnimation","finish","stopQueue","timers","cssFn","slideDown","slideUp","slideToggle","fadeIn","fadeOut","fadeToggle","interval","setInterval","clearInterval","slow","fast","delay","time","timeout","clearTimeout","checkOn","optSelected","optDisabled","radioValue","boolHook","removeAttr","nType","attrHooks","bool","propName","attrNames","propFix","rfocusable","rclickable","removeProp","tabindex","parseInt","rclass","getClass","addClass","classes","curValue","clazz","finalValue","removeClass","toggleClass","stateVal","classNames","hasClass","rreturn","rspaces","valHooks","optionSet","rfocusMorph","onlyHandlers","bubbleType","ontype","eventPath","isTrigger","parentWindow","simulate","hover","fnOver","fnOut","focusin","attaches","nonce","rquery","JSON","parse","parseXML","DOMParser","parseFromString","rhash","rts","rheaders","rnoContent","rprotocol","transports","allTypes","originAnchor","addToPrefiltersOrTransports","structure","dataTypeExpression","dataType","dataTypes","inspectPrefiltersOrTransports","jqXHR","inspected","seekingTransport","inspect","prefilterOrFactory","dataTypeOrTransport","ajaxExtend","flatOptions","ajaxSettings","active","lastModified","etag","url","isLocal","protocol","processData","async","contentType","accepts","json","responseFields","converters","ajaxSetup","settings","ajaxPrefilter","ajaxTransport","ajax","transport","cacheURL","responseHeadersString","responseHeaders","timeoutTimer","urlAnchor","fireGlobals","callbackContext","globalEventContext","completeDeferred","statusCode","requestHeaders","requestHeadersNames","strAbort","getResponseHeader","getAllResponseHeaders","setRequestHeader","lname","overrideMimeType","mimeType","status","abort","statusText","finalText","success","method","crossDomain","host","param","traditional","hasContent","ifModified","headers","beforeSend","send","nativeStatusText","responses","isSuccess","response","modified","ct","finalDataType","firstDataType","ajaxHandleResponses","conv2","current","conv","dataFilter","throws","ajaxConvert","getJSON","getScript","wrapAll","firstElementChild","wrapInner","unwrap","visible","getClientRects","r20","rbracket","rCRLF","rsubmitterTypes","rsubmittable","buildParams","v","encodeURIComponent","serialize","serializeArray","xhr","XMLHttpRequest","xhrSuccessStatus","0","1223","xhrSupported","cors","errorCallback","open","username","xhrFields","onload","onerror","onabort","onreadystatechange","responseType","responseText","binary","charset","scriptCharset","evt","oldCallbacks","rjsonp","jsonp","jsonpCallback","originalSettings","callbackName","overwritten","responseContainer","jsonProp","keepScripts","parsed","_load","getWindow","params","animated","offset","setOffset","curPosition","curLeft","curCSSTop","curTop","curOffset","curCSSLeft","curElem","using","win","box","pageYOffset","pageXOffset","offsetParent","parentOffset","scrollTo","Height","Width","defaultExtra","funcName","unbind","delegate","undelegate","size","andSelf","_jQuery","_$","$","noConflict","w","VERSION","Function","ArrayProto","ObjProto","SymbolProto","supportsArrayBuffer","ArrayBuffer","nativeIsArray","nativeKeys","nativeCreate","nativeIsView","isView","_isNaN","_isFinite","hasEnumBug","propertyIsEnumerable","nonEnumerableProps","MAX_ARRAY_INDEX","pow","matchHtmlRegExp","escape","str","lastIndex","charCodeAt","substring","g","OC","FileInfo","Client","_root","charAt","substr","PROTOCOL_HTTP","useHTTPS","PROTOCOL_HTTPS","_host","_defaultHeaders","defaultHeaders","requestToken","_baseUrl","clientOptions","baseUrl","xmlNamespaces","userName","_client","dav","xhrProvider","_xhrProvider","_fileInfoParsers","NS_OWNCLOUD","NS_NEXTCLOUD","NS_DAV","NS_OCS","PROPERTY_GETLASTMODIFIED","PROPERTY_GETETAG","PROPERTY_GETCONTENTTYPE","PROPERTY_RESOURCETYPE","PROPERTY_INTERNAL_FILEID","PROPERTY_PERMISSIONS","PROPERTY_SIZE","PROPERTY_GETCONTENTLENGTH","PROPERTY_ISENCRYPTED","PROPERTY_SHARE_PERMISSIONS","_PROPFIND_PROPERTIES","oldOpen","registerXHRForErrorProcessing","_buildUrl","path","_buildPath","joinPaths","sections","_parseHeaders","headersString","headerRows","sepPos","headerName","headerValue","_parseEtag","_parseFileInfo","decodeURIComponent","propStat","dirname","basename","mtime","getTime","etagProp","isUndefined","sizeProp","hasPreviewProp","hasPreview","isEncryptedProp","isEncrypted","isFavouritedProp","isFavourited","mimetype","resType","xmlvalue","namespaceURI","permissions","PERMISSION_NONE","permissionProp","permString","mountType","PERMISSION_CREATE","PERMISSION_READ","PERMISSION_UPDATE","PERMISSION_DELETE","PERMISSION_SHARE","sharePermissionsProp","sharePermissions","mounTypeProp","parserFunction","_parseResult","_isSuccessStatus","_getSabreException","responseXML","messages","getElementsByTagNameNS","exceptions","message","exception","getPropfindProperties","_propfindProperties","propDef","getFolderContents","propFind","includeParent","getFilteredFiles","systemTagIds","favorite","circlesIds","parseClarkNotation","escapeHTML","request","getFileInfo","getFileContents","putFileContents","overwrite","_simpleCall","createDirectory","move","destinationPath","allowOverwrite","Overwrite","addFileInfoParser","getClient","getUserName","getPassword","getBaseUrl","getHost","Files","_defaultClient","client","port","getPort","linkToRemoteBase","getCurrentUser","getProtocol","restArguments","startIndex","rest","isObject","isNull","isBoolean","isElement","tagTester","nodelist","Int8Array","isArguments","isSymbol","isNumber","constant","createSizePropertyCheck","getSizeProperty","sizeProperty","shallowProperty","typedArrayPattern","isDataView","collectNonEnumProps","emulatedSet","nonEnumIdx","proto","isEmpty","isString","isMatch","_keys","_wrapped","aStack","bStack","deepEq","valueOf","DataView","byteLength","getUint8","buffer","areArrays","aCtor","bCtor","isEqual","allKeys","pairs","functions","names","createAssigner","keysFunc","defaults","toJSON","baseCreate","Ctor","extendOwn","tap","interceptor","identity","deepGet","optimizeCb","argCount","accumulator","baseIteratee","Infinity","cb","iteratee","mapObject","currentKey","propertyOf","times","accum","min","floor","createEscaper","escaper","testRegexp","replaceRegexp","templateSettings","evaluate","interpolate","noMatch","escapes","escapeRegExp","escapeChar","oldSettings","render","variable","template","fallback","idCounter","uniqueId","chain","instance","_chain","executeBound","sourceFunc","boundFunc","callingContext","partial","boundArgs","placeholder","bound","TypeError","callArgs","flatten","depth","strict","output","hasher","memoize","address","throttle","previous","later","leading","throttled","_now","trailing","cancel","debounce","immediate","debounced","callNow","wrapper","negate","predicate","compose","memo","findKey","createPredicateIndexFinder","array","low","mid","createIndexFinder","predicateFind","sortedIndex","item","findIndex","findLastIndex","findWhere","createReduce","reducer","every","some","fromIndex","guard","contextPath","pluck","where","lastComputed","sample","rand","shuffle","sortBy","criteria","right","group","behavior","partition","pass","reStrSymbol","keyInObj","pick","compact","Boolean","otherArrays","difference","uniq","isSorted","seen","arrays","intersection","argsLength","unzip","range","ceil","chunk","chainResult","mixin"],"mappings":"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","file":"files_client.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 671);\n","/*!\n * jQuery JavaScript Library v2.2.4\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2016-05-20T17:23Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Support: Firefox 18+\n// Can't be in strict mode, several libs including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n//\"use strict\";\nvar arr = [];\n\nvar document = window.document;\n\nvar slice = arr.slice;\n\nvar concat = arr.concat;\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"2.2.4\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = jQuery.isArray( copy ) ) ) ) {\n\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray( src ) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject( src ) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type( obj ) === \"function\";\n\t},\n\n\tisArray: Array.isArray,\n\n\tisWindow: function( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\tvar realStringObj = obj && obj.toString();\n\t\treturn !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Not plain objects:\n\t\t// - Any object or value whose internal [[Class]] property is not \"[object Object]\"\n\t\t// - DOM nodes\n\t\t// - window\n\t\tif ( jQuery.type( obj ) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Not own constructor property must be Object\n\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call( obj, \"constructor\" ) &&\n\t\t\t\t!hasOwn.call( obj.constructor.prototype || {}, \"isPrototypeOf\" ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\n\t\t// Support: Android<4.0, iOS<6 (functionish RegExp)\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\tglobalEval: function( code ) {\n\t\tvar script,\n\t\t\tindirect = eval;\n\n\t\tcode = jQuery.trim( code );\n\n\t\tif ( code ) {\n\n\t\t\t// If the code includes a valid, prologue position\n\t\t\t// strict mode pragma, execute code by injecting a\n\t\t\t// script tag into the document.\n\t\t\tif ( code.indexOf( \"use strict\" ) === 1 ) {\n\t\t\t\tscript = document.createElement( \"script\" );\n\t\t\t\tscript.text = code;\n\t\t\t\tdocument.head.appendChild( script ).parentNode.removeChild( script );\n\t\t\t} else {\n\n\t\t\t\t// Otherwise, avoid the DOM node creation, insertion\n\t\t\t\t// and removal by using an indirect global eval\n\n\t\t\t\tindirect( code );\n\t\t\t}\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Support: IE9-11+\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar tmp, args, proxy;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: Date.now,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\n// JSHint would error on this code due to the Symbol not being defined in ES5.\n// Defining this global in .jshintrc would create a danger of using the global\n// unguarded in another place, it seems safer to just disable JSHint for these\n// three lines.\n/* jshint ignore: start */\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n/* jshint ignore: end */\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.1\n * http://sizzlejs.com/\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-10-17\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, nidselect, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\n\t\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\t\tsetDocument( context );\n\t\t}\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( (m = match[1]) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( (elem = context.getElementById( m )) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && (elem = newContext.getElementById( m )) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[2] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!compilerCache[ selector + \" \" ] &&\n\t\t\t\t(!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\n\t\t\t\tif ( nodeType !== 1 ) {\n\t\t\t\t\tnewContext = context;\n\t\t\t\t\tnewSelector = selector;\n\n\t\t\t\t// qSA looks outside Element context, which is not what we want\n\t\t\t\t// Thanks to Andrew Dupont for this workaround technique\n\t\t\t\t// Support: IE <=8\n\t\t\t\t// Exclude object elements\n\t\t\t\t} else if ( context.nodeName.toLowerCase() !== \"object\" ) {\n\n\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\tif ( (nid = context.getAttribute( \"id\" )) ) {\n\t\t\t\t\t\tnid = nid.replace( rescape, \"\\\\$&\" );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tcontext.setAttribute( \"id\", (nid = expando) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\tnidselect = ridentifier.test( nid ) ? \"#\" + nid : \"[id='\" + nid + \"']\";\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[i] = nidselect + \" \" + toSelector( groups[i] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\t\t\t\t}\n\n\t\t\t\tif ( newSelector ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t\t);\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9-11, Edge\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\tif ( (parent = document.defaultView) && parent.top !== parent ) {\n\t\t// Support: IE 11\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( document.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\treturn m ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( document.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === document ? -1 :\n\t\t\t\tb === document ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!compilerCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t// but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});\n\n\t\t\t\t\t\tif ( (oldCache = uniqueCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context === document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\tif ( !context && elem.ownerDocument !== document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n * selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n * selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = ( /^<([\\w-]+)\\s*\\/?>(?:<\\/\\1>|)$/ );\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t} );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tlen = this.length,\n\t\t\tret = [],\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\t// Support: Blackberry 4.6\n\t\t\t\t\t// gEBID returns nodes no longer in the document (#6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && ( pos ?\n\t\t\t\t\tpos.index( cur ) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn elem.contentDocument || jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnotwhite = ( /\\S+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( jQuery.isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && jQuery.type( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ) ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis === promise ? newDefer.promise() : this,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add( function() {\n\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 ||\n\t\t\t\t( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred.\n\t\t\t// If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\t\t\t\t\t} else if ( !( --remaining ) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// Add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) )\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// If we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n} );\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n} );\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called\n\t\t// after the browser event has already occurred.\n\t\t// Support: IE9-10 only\n\t\t// Older IE sometimes signals \"interactive\" too soon\n\t\tif ( document.readyState === \"complete\" ||\n\t\t\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\twindow.setTimeout( jQuery.ready );\n\n\t\t} else {\n\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed );\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n// Kick off the DOM ready check even if the user does not\njQuery.ready.promise();\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlen ? fn( elems[ 0 ], key ) : emptyGet;\n};\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t// - Node\n\t// - Node.ELEMENT_NODE\n\t// - Node.DOCUMENT_NODE\n\t// - Object\n\t// - Any\n\t/* jshint -W018 */\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tregister: function( owner, initial ) {\n\t\tvar value = initial || {};\n\n\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t// use plain assignment\n\t\tif ( owner.nodeType ) {\n\t\t\towner[ this.expando ] = value;\n\n\t\t// Otherwise secure it in a non-enumerable, non-writable property\n\t\t// configurability must be true to allow the property to be\n\t\t// deleted with the delete operator\n\t\t} else {\n\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\tvalue: value,\n\t\t\t\twritable: true,\n\t\t\t\tconfigurable: true\n\t\t\t} );\n\t\t}\n\t\treturn owner[ this.expando ];\n\t},\n\tcache: function( owner ) {\n\n\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t// but we should not, see #8335.\n\t\t// Always return an empty object.\n\t\tif ( !acceptData( owner ) ) {\n\t\t\treturn {};\n\t\t}\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ data ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ prop ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\t\t\towner[ this.expando ] && owner[ this.expando ][ key ];\n\t},\n\taccess: function( owner, key, value ) {\n\t\tvar stored;\n\n\t\t// In cases where either:\n\t\t//\n\t\t// 1. No key was specified\n\t\t// 2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t// 1. The entire cache object\n\t\t// 2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\tstored = this.get( owner, key );\n\n\t\t\treturn stored !== undefined ?\n\t\t\t\tstored : this.get( owner, jQuery.camelCase( key ) );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t// 1. An object of properties\n\t\t// 2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i, name, camel,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === undefined ) {\n\t\t\tthis.register( owner );\n\n\t\t} else {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( jQuery.isArray( key ) ) {\n\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = key.concat( key.map( jQuery.camelCase ) );\n\t\t\t} else {\n\t\t\t\tcamel = jQuery.camelCase( key );\n\n\t\t\t\t// Try the string as a key before any manipulation\n\t\t\t\tif ( key in cache ) {\n\t\t\t\t\tname = [ key, camel ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\t\tname = camel;\n\t\t\t\t\tname = name in cache ?\n\t\t\t\t\t\t[ name ] : ( name.match( rnotwhite ) || [] );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\ti = name.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ name[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <= 35-45+\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://code.google.com/p/chromium/issues/detail?id=378607\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data, camelKey;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// with the key as-is\n\t\t\t\tdata = dataUser.get( elem, key ) ||\n\n\t\t\t\t\t// Try to find dashed key if it exists (gh-2779)\n\t\t\t\t\t// This is for 2.2.x only\n\t\t\t\t\tdataUser.get( elem, key.replace( rmultiDash, \"-$&\" ).toLowerCase() );\n\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\tcamelKey = jQuery.camelCase( key );\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// with the key camelized\n\t\t\t\tdata = dataUser.get( elem, camelKey );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, camelKey, undefined );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tcamelKey = jQuery.camelCase( key );\n\t\t\tthis.each( function() {\n\n\t\t\t\t// First, attempt to store a copy or reference of any\n\t\t\t\t// data that might've been store with a camelCased key.\n\t\t\t\tvar data = dataUser.get( this, camelKey );\n\n\t\t\t\t// For HTML5 data-* attribute interop, we have to\n\t\t\t\t// store property names with dashes in a camelCase form.\n\t\t\t\t// This might not apply to all properties...*\n\t\t\t\tdataUser.set( this, camelKey, value );\n\n\t\t\t\t// *... In the case of properties that might _actually_\n\t\t\t\t// have dashes, we need to also store a copy of that\n\t\t\t\t// unchanged property.\n\t\t\t\tif ( key.indexOf( \"-\" ) > -1 && data !== undefined ) {\n\t\t\t\t\tdataUser.set( this, key, value );\n\t\t\t\t}\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" ||\n\t\t\t!jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted,\n\t\tscale = 1,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() { return tween.cur(); } :\n\t\t\tfunction() { return jQuery.css( elem, prop, \"\" ); },\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\tdo {\n\n\t\t\t// If previous iteration zeroed out, double until we get *something*.\n\t\t\t// Use string for doubling so we don't accidentally see scale as unchanged below\n\t\t\tscale = scale || \".5\";\n\n\t\t\t// Adjust and apply\n\t\t\tinitialInUnit = initialInUnit / scale;\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t// Break the loop if scale is unchanged or perfect, or if we've just had enough.\n\t\t} while (\n\t\t\tscale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations\n\t\t);\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([\\w:-]+)/ );\n\nvar rscriptType = ( /^$|\\/(?:java|ecma)script/i );\n\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// Support: IE9\n\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\n// Support: IE9\nwrapMap.optgroup = wrapMap.option;\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE9-11+\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret = typeof context.getElementsByTagName !== \"undefined\" ?\n\t\t\tcontext.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== \"undefined\" ?\n\t\t\t\tcontext.querySelectorAll( tag || \"*\" ) :\n\t\t\t[];\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], ret ) :\n\t\tret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, contains, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( contains ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0-4.3, Safari<=5.1\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Safari<=5.1, Android<4.2\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<=11+\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n} )();\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE9\n// See #13393 for more info\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, j, ret, matched, handleObj,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( dataPriv.get( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or 2) have namespace(s)\n\t\t\t\t// a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, matches, sel, handleObj,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Support (at least): Chrome, IE9\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t//\n\t\t// Support: Firefox<=42+\n\t\t// Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343)\n\t\tif ( delegateCount && cur.nodeType &&\n\t\t\t( event.type !== \"click\" || isNaN( event.button ) || event.button < 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== \"click\" ) ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matches } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: ( \"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase \" +\n\t\t\"metaKey relatedTarget shiftKey target timeStamp view which\" ).split( \" \" ),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split( \" \" ),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: ( \"button buttons clientX clientY offsetX offsetY pageX pageY \" +\n\t\t\t\"screenX screenY toElement\" ).split( \" \" ),\n\t\tfilter: function( event, original ) {\n\t\t\tvar eventDoc, doc, body,\n\t\t\t\tbutton = original.button;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX +\n\t\t\t\t\t( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -\n\t\t\t\t\t( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY +\n\t\t\t\t\t( doc && doc.scrollTop || body && body.scrollTop || 0 ) -\n\t\t\t\t\t( doc && doc.clientTop || body && body.clientTop || 0 );\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: Cordova 2.5 (WebKit) (#13255)\n\t\t// All events should have a target; Cordova deviceready doesn't\n\t\tif ( !event.target ) {\n\t\t\tevent.target = document;\n\t\t}\n\n\t\t// Support: Safari 6.0+, Chrome<28\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\tthis.focus();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this.type === \"checkbox\" && this.click && jQuery.nodeName( this, \"input\" ) ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android<4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://code.google.com/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event ) dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:-]+)[^>]*)\\/>/gi,\n\n\t// Support: IE 10-11, Edge 10240+\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName( \"tbody\" )[ 0 ] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement( \"tbody\" ) ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\n\tif ( match ) {\n\t\telem.type = match[ 1 ];\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.access( src );\n\t\tpdataCur = dataPriv.set( dest, pdataOld );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdelete pdataCur.handle;\n\t\t\tpdataCur.events = {};\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = concat.apply( [], args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tisFunction = jQuery.isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( isFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( isFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tjQuery.globalEval( node.textContent.replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && jQuery.contains( node.ownerDocument, node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html.replace( rxhtmlTag, \"<$1></$2>\" );\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <= 35-45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <= 35-45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\n\t// Keep domManip exposed until 3.0 (gh-2225)\n\tdomManip: domManip,\n\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: QtWebKit\n\t\t\t// .get() because push.apply(_, arraylike) throws\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\n\n\nvar iframe,\n\telemdisplay = {\n\n\t\t// Support: Firefox\n\t\t// We have to pre-define these values for FF (#10227)\n\t\tHTML: \"block\",\n\t\tBODY: \"block\"\n\t};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\tdisplay = jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = ( iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" ) )\n\t\t\t\t.appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = iframe[ 0 ].contentDocument;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\nvar rmargin = ( /^margin/ );\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar documentElement = document.documentElement;\n\n\n\n( function() {\n\tvar pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE9-11+\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tcontainer.style.cssText = \"border:0;width:8px;height:0;top:0;left:-9999px;\" +\n\t\t\"padding:0;margin-top:1px;position:absolute\";\n\tcontainer.appendChild( div );\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\t\tdiv.style.cssText =\n\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;\" +\n\t\t\t\"position:relative;display:block;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"top:1%;width:50%\";\n\t\tdiv.innerHTML = \"\";\n\t\tdocumentElement.appendChild( container );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\t\treliableMarginLeftVal = divStyle.marginLeft === \"2px\";\n\t\tboxSizingReliableVal = divStyle.width === \"4px\";\n\n\t\t// Support: Android 4.0 - 4.3 only\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.marginRight = \"50%\";\n\t\tpixelMarginRightVal = divStyle.marginRight === \"4px\";\n\n\t\tdocumentElement.removeChild( container );\n\t}\n\n\tjQuery.extend( support, {\n\t\tpixelPosition: function() {\n\n\t\t\t// This test is executed only once but we still do memoizing\n\t\t\t// since we can use the boxSizingReliable pre-computing.\n\t\t\t// No need to check if the test was already performed, though.\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelMarginRight: function() {\n\n\t\t\t// Support: Android 4.0-4.3\n\t\t\t// We're checking for boxSizingReliableVal here instead of pixelMarginRightVal\n\t\t\t// since that compresses better and they're computed together anyway.\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelMarginRightVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\n\t\t\t// Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\treliableMarginRight: function() {\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Check if div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container. (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// This support function is only executed once so no memoizing is needed.\n\t\t\tvar ret,\n\t\t\t\tmarginDiv = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tmarginDiv.style.cssText = div.style.cssText =\n\n\t\t\t\t// Support: Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;box-sizing:content-box;\" +\n\t\t\t\t\"display:block;margin:0;border:0;padding:0\";\n\t\t\tmarginDiv.style.marginRight = marginDiv.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\t\t\tdocumentElement.appendChild( container );\n\n\t\t\tret = !parseFloat( window.getComputedStyle( marginDiv ).marginRight );\n\n\t\t\tdocumentElement.removeChild( container );\n\t\t\tdiv.removeChild( marginDiv );\n\n\t\t\treturn ret;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t// Support: Opera 12.1x only\n\t// Fall back to style even without computed\n\t// computed is undefined for elems on document fragments\n\tif ( ( ret === \"\" || ret === undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\tret = jQuery.style( elem, name );\n\t}\n\n\t// Support: IE9\n\t// getPropertyValue is only needed for .css('filter') (#12537)\n\tif ( computed ) {\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// http://dev.w3.org/csswg/cssom/#resolved-values\n\t\tif ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE9-11+\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style;\n\n// Return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( name ) {\n\n\t// Shortcut for names that are not vendor prefixed\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// At this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\n\t\t\t// At this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// At this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// Some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test( val ) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// Check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox &&\n\t\t\t( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// Use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = dataPriv.get( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = dataPriv.access(\n\t\t\t\t\telem,\n\t\t\t\t\t\"olddisplay\",\n\t\t\t\t\tdefaultDisplay( elem.nodeName )\n\t\t\t\t);\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display !== \"none\" || !hidden ) {\n\t\t\t\tdataPriv.set(\n\t\t\t\t\telem,\n\t\t\t\t\t\"olddisplay\",\n\t\t\t\t\thidden ? display : jQuery.css( elem, \"display\" )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t\"float\": \"cssFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] ||\n\t\t\t( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\tif ( type === \"number\" ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tstyle[ name ] = value;\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] ||\n\t\t\t( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\t\t\t\t\telem.offsetWidth === 0 ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = extra && getStyles( elem ),\n\t\t\t\tsubtract = extra && augmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t);\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ name ] = value;\n\t\t\t\tvalue = jQuery.css( elem, name );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// Support: Android 2.3\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 &&\n\t\t\t\t( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE9\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE9-10 do not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tdataPriv.get( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\t\t\tstyle.display = \"inline-block\";\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show\n\t\t\t\t// and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// Store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done( function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t} );\n\t\t}\n\t\tanim.done( function() {\n\t\t\tvar prop;\n\n\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t} );\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( ( display === \"none\" ? defaultDisplay( elem.nodeName ) : display ) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( jQuery.isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tjQuery.proxy( result.stop, result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnotwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ?\n\t\topt.duration : opt.duration in jQuery.fx.speeds ?\n\t\t\tjQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\twindow.clearInterval( timerId );\n\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: iOS<=5.1, Android<=4.2+\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE<=11+\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: Android<=2.3\n\t// Options inside disabled selects are incorrectly marked as disabled\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE<=11+\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tjQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle;\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ name ];\n\t\t\tattrHandle[ name ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tname.toLowerCase() :\n\t\t\t\tnull;\n\t\t\tattrHandle[ name ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\t\trclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t\t0 :\n\t\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( typeof value === \"string\" && value ) {\n\t\t\tclasses = value.match( rnotwhite ) || [];\n\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 &&\n\t\t\t\t\t( \" \" + curValue + \" \" ).replace( rclass, \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tif ( typeof value === \"string\" && value ) {\n\t\t\tclasses = value.match( rnotwhite ) || [];\n\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 &&\n\t\t\t\t\t( \" \" + curValue + \" \" ).replace( rclass, \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( type === \"string\" ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + getClass( elem ) + \" \" ).replace( rclass, \" \" )\n\t\t\t\t\t.indexOf( className ) > -1\n\t\t\t) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g,\n\trspaces = /[\\x20\\t\\r\\n\\f]+/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\n\t\t\t\t\t// Handle most common string cases\n\t\t\t\t\tret.replace( rreturn, \"\" ) :\n\n\t\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) ).replace( rspaces, \" \" );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ?\n\t\t\t\t\t\t\t\t!option.disabled : option.getAttribute( \"disabled\" ) === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/;\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( dataPriv.get( cur, \"events\" ) || {} )[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\telem[ type ]();\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\njQuery.each( ( \"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\" ).split( \" \" ),\n\tfunction( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n} );\n\njQuery.fn.extend( {\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\n\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\n// Support: Firefox\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome, Safari\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = jQuery.now();\n\nvar rquery = ( /\\?/ );\n\n\n\n// Support: Android 2.3\n// Workaround failure to string-cast null input\njQuery.parseJSON = function( data ) {\n\treturn JSON.parse( data + \"\" );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE9\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t * - BEFORE asking for a transport\n\t * - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" ).replace( rhash, \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE8-11+\n\t\t\t// IE throws exception if url is malformed, e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE8-11+\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapAll( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( this[ 0 ] ) {\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each( function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t} ).end();\n\t}\n} );\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\treturn !jQuery.expr.filters.visible( elem );\n};\njQuery.expr.filters.visible = function( elem ) {\n\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\t// Use OR instead of AND as the element is not visible if either is true\n\t// See tickets #10406 and #13132\n\treturn elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0;\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t} ) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE9\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE9\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\" ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = callback( \"error\" );\n\n\t\t\t\t// Support: IE9\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" ).prop( {\n\t\t\t\t\tcharset: s.scriptCharset,\n\t\t\t\t\tsrc: s.url\n\t\t\t\t} ).on(\n\t\t\t\t\t\"load error\",\n\t\t\t\t\tcallback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t);\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = jQuery.trim( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\telem = this[ 0 ],\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\tbox = elem.getBoundingClientRect();\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top + win.pageYOffset - docElem.clientTop,\n\t\t\tleft: box.left + win.pageXOffset - docElem.clientLeft\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// Fixed elements are offset from window (parentOffset = {top:0, left: 0},\n\t\t// because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume getBoundingClientRect is there when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t// documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari<7-8+, Chrome<37-44+\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t} );\n} );\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\tsize: function() {\n\t\treturn this.length;\n\t}\n} );\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( !noGlobal ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\nreturn jQuery;\n}));\n","// Current version.\nexport var VERSION = '1.11.0';\n\n// Establish the root object, `window` (`self`) in the browser, `global`\n// on the server, or `this` in some virtual machines. We use `self`\n// instead of `window` for `WebWorker` support.\nexport var root = typeof self == 'object' && self.self === self && self ||\n typeof global == 'object' && global.global === global && global ||\n Function('return this')() ||\n {};\n\n// Save bytes in the minified (but not gzipped) version:\nexport var ArrayProto = Array.prototype, ObjProto = Object.prototype;\nexport var SymbolProto = typeof Symbol !== 'undefined' ? Symbol.prototype : null;\n\n// Create quick reference variables for speed access to core prototypes.\nexport var push = ArrayProto.push,\n slice = ArrayProto.slice,\n toString = ObjProto.toString,\n hasOwnProperty = ObjProto.hasOwnProperty;\n\n// Modern feature detection.\nexport var supportsArrayBuffer = typeof ArrayBuffer !== 'undefined';\n\n// All **ECMAScript 5+** native function implementations that we hope to use\n// are declared here.\nexport var nativeIsArray = Array.isArray,\n nativeKeys = Object.keys,\n nativeCreate = Object.create,\n nativeIsView = supportsArrayBuffer && ArrayBuffer.isView;\n\n// Create references to these builtin functions because we override them.\nexport var _isNaN = isNaN,\n _isFinite = isFinite;\n\n// Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.\nexport var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');\nexport var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',\n 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];\n\n// The largest integer that can be represented exactly.\nexport var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;\n","/*!\n * escape-html\n * Copyright(c) 2012-2013 TJ Holowaychuk\n * Copyright(c) 2015 Andreas Lubbe\n * Copyright(c) 2015 Tiancheng \"Timothy\" Gu\n * MIT Licensed\n */\n\n'use strict';\n\n/**\n * Module variables.\n * @private\n */\n\nvar matchHtmlRegExp = /[\"'&<>]/;\n\n/**\n * Module exports.\n * @public\n */\n\nmodule.exports = escapeHtml;\n\n/**\n * Escape special characters in the given string of html.\n *\n * @param {string} string The string to escape for inserting into HTML\n * @return {string}\n * @public\n */\n\nfunction escapeHtml(string) {\n var str = '' + string;\n var match = matchHtmlRegExp.exec(str);\n\n if (!match) {\n return str;\n }\n\n var escape;\n var html = '';\n var index = 0;\n var lastIndex = 0;\n\n for (index = match.index; index < str.length; index++) {\n switch (str.charCodeAt(index)) {\n case 34: // \"\n escape = '"';\n break;\n case 38: // &\n escape = '&';\n break;\n case 39: // '\n escape = ''';\n break;\n case 60: // <\n escape = '<';\n break;\n case 62: // >\n escape = '>';\n break;\n default:\n continue;\n }\n\n if (lastIndex !== index) {\n html += str.substring(lastIndex, index);\n }\n\n lastIndex = index + 1;\n html += escape;\n }\n\n return lastIndex !== index\n ? html + str.substring(lastIndex, index)\n : html;\n}\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","/* eslint-disable */\n/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n */\n\nimport escapeHTML from 'escape-html'\n\n/* global dav */\n\n(function(OC, FileInfo) {\n\t/**\n\t * @class OC.Files.Client\n\t * @classdesc Client to access files on the server\n\t *\n\t * @param {Object} options\n\t * @param {String} options.host host name\n\t * @param {int} [options.port] port\n\t * @param {boolean} [options.useHTTPS] whether to use https\n\t * @param {String} [options.root] root path\n\t * @param {String} [options.userName] user name\n\t * @param {String} [options.password] password\n\t *\n\t * @since 8.2\n\t */\n\tvar Client = function(options) {\n\t\tthis._root = options.root\n\t\tif (this._root.charAt(this._root.length - 1) === '/') {\n\t\t\tthis._root = this._root.substr(0, this._root.length - 1)\n\t\t}\n\n\t\tlet url = Client.PROTOCOL_HTTP + '://'\n\t\tif (options.useHTTPS) {\n\t\t\turl = Client.PROTOCOL_HTTPS + '://'\n\t\t}\n\n\t\turl += options.host + this._root\n\t\tthis._host = options.host\n\t\tthis._defaultHeaders = options.defaultHeaders || {\n\t\t\t'X-Requested-With': 'XMLHttpRequest',\n\t\t\t'requesttoken': OC.requestToken,\n\t\t}\n\t\tthis._baseUrl = url\n\n\t\tconst clientOptions = {\n\t\t\tbaseUrl: this._baseUrl,\n\t\t\txmlNamespaces: {\n\t\t\t\t'DAV:': 'd',\n\t\t\t\t'http://owncloud.org/ns': 'oc',\n\t\t\t\t'http://nextcloud.org/ns': 'nc',\n\t\t\t\t'http://open-collaboration-services.org/ns': 'ocs',\n\t\t\t},\n\t\t}\n\t\tif (options.userName) {\n\t\t\tclientOptions.userName = options.userName\n\t\t}\n\t\tif (options.password) {\n\t\t\tclientOptions.password = options.password\n\t\t}\n\t\tthis._client = new dav.Client(clientOptions)\n\t\tthis._client.xhrProvider = _.bind(this._xhrProvider, this)\n\t\tthis._fileInfoParsers = []\n\t}\n\n\tClient.NS_OWNCLOUD = 'http://owncloud.org/ns'\n\tClient.NS_NEXTCLOUD = 'http://nextcloud.org/ns'\n\tClient.NS_DAV = 'DAV:'\n\tClient.NS_OCS = 'http://open-collaboration-services.org/ns'\n\n\tClient.PROPERTY_GETLASTMODIFIED\t= '{' + Client.NS_DAV + '}getlastmodified'\n\tClient.PROPERTY_GETETAG\t= '{' + Client.NS_DAV + '}getetag'\n\tClient.PROPERTY_GETCONTENTTYPE\t= '{' + Client.NS_DAV + '}getcontenttype'\n\tClient.PROPERTY_RESOURCETYPE\t= '{' + Client.NS_DAV + '}resourcetype'\n\tClient.PROPERTY_INTERNAL_FILEID\t= '{' + Client.NS_OWNCLOUD + '}fileid'\n\tClient.PROPERTY_PERMISSIONS\t= '{' + Client.NS_OWNCLOUD + '}permissions'\n\tClient.PROPERTY_SIZE\t= '{' + Client.NS_OWNCLOUD + '}size'\n\tClient.PROPERTY_GETCONTENTLENGTH\t= '{' + Client.NS_DAV + '}getcontentlength'\n\tClient.PROPERTY_ISENCRYPTED\t= '{' + Client.NS_DAV + '}is-encrypted'\n\tClient.PROPERTY_SHARE_PERMISSIONS\t= '{' + Client.NS_OCS + '}share-permissions'\n\n\tClient.PROTOCOL_HTTP\t= 'http'\n\tClient.PROTOCOL_HTTPS\t= 'https'\n\n\tClient._PROPFIND_PROPERTIES = [\n\t\t/**\n\t\t * Modified time\n\t\t */\n\t\t[Client.NS_DAV, 'getlastmodified'],\n\t\t/**\n\t\t * Etag\n\t\t */\n\t\t[Client.NS_DAV, 'getetag'],\n\t\t/**\n\t\t * Mime type\n\t\t */\n\t\t[Client.NS_DAV, 'getcontenttype'],\n\t\t/**\n\t\t * Resource type \"collection\" for folders, empty otherwise\n\t\t */\n\t\t[Client.NS_DAV, 'resourcetype'],\n\t\t/**\n\t\t * File id\n\t\t */\n\t\t[Client.NS_OWNCLOUD, 'fileid'],\n\t\t/**\n\t\t * Letter-coded permissions\n\t\t */\n\t\t[Client.NS_OWNCLOUD, 'permissions'],\n\t\t// [Client.NS_OWNCLOUD, 'downloadURL'],\n\t\t/**\n\t\t * Folder sizes\n\t\t */\n\t\t[Client.NS_OWNCLOUD, 'size'],\n\t\t/**\n\t\t * File sizes\n\t\t */\n\t\t[Client.NS_DAV, 'getcontentlength'],\n\t\t/**\n\t\t * Preview availability\n\t\t */\n\t\t[Client.NS_NEXTCLOUD, 'has-preview'],\n\t\t/**\n\t\t * Mount type\n\t\t */\n\t\t[Client.NS_NEXTCLOUD, 'mount-type'],\n\t\t/**\n\t\t * Encryption state\n\t\t */\n\t\t[Client.NS_NEXTCLOUD, 'is-encrypted'],\n\t\t/**\n\t\t * Share permissions\n\t\t */\n\t\t[Client.NS_OCS, 'share-permissions'],\n\t]\n\n\t/**\n\t * @memberof OC.Files\n\t */\n\tClient.prototype = {\n\n\t\t/**\n\t\t * Root path of the Webdav endpoint\n\t\t *\n\t\t * @type string\n\t\t */\n\t\t_root: null,\n\n\t\t/**\n\t\t * Client from the library\n\t\t *\n\t\t * @type dav.Client\n\t\t */\n\t\t_client: null,\n\n\t\t/**\n\t\t * Array of file info parsing functions.\n\t\t *\n\t\t * @type Array<OC.Files.Client~parseFileInfo>\n\t\t */\n\t\t_fileInfoParsers: [],\n\n\t\t/**\n\t\t * Returns the configured XHR provider for davclient\n\t\t * @returns {XMLHttpRequest}\n\t\t */\n\t\t_xhrProvider: function() {\n\t\t\tconst headers = this._defaultHeaders\n\t\t\tconst xhr = new XMLHttpRequest()\n\t\t\tconst oldOpen = xhr.open\n\t\t\t// override open() method to add headers\n\t\t\txhr.open = function() {\n\t\t\t\tconst result = oldOpen.apply(this, arguments)\n\t\t\t\t_.each(headers, function(value, key) {\n\t\t\t\t\txhr.setRequestHeader(key, value)\n\t\t\t\t})\n\t\t\t\treturn result\n\t\t\t}\n\n\t\t\tOC.registerXHRForErrorProcessing(xhr)\n\t\t\treturn xhr\n\t\t},\n\n\t\t/**\n\t\t * Prepends the base url to the given path sections\n\t\t *\n\t\t * @param {...String} path sections\n\t\t *\n\t\t * @returns {String} base url + joined path, any leading or trailing slash\n\t\t * will be kept\n\t\t */\n\t\t_buildUrl: function() {\n\t\t\tlet path = this._buildPath.apply(this, arguments)\n\t\t\tif (path.charAt([path.length - 1]) === '/') {\n\t\t\t\tpath = path.substr(0, path.length - 1)\n\t\t\t}\n\t\t\tif (path.charAt(0) === '/') {\n\t\t\t\tpath = path.substr(1)\n\t\t\t}\n\t\t\treturn this._baseUrl + '/' + path\n\t\t},\n\n\t\t/**\n\t\t * Append the path to the root and also encode path\n\t\t * sections\n\t\t *\n\t\t * @param {...String} path sections\n\t\t *\n\t\t * @returns {String} joined path, any leading or trailing slash\n\t\t * will be kept\n\t\t */\n\t\t_buildPath: function() {\n\t\t\tlet path = OC.joinPaths.apply(this, arguments)\n\t\t\tconst sections = path.split('/')\n\t\t\tlet i\n\t\t\tfor (i = 0; i < sections.length; i++) {\n\t\t\t\tsections[i] = encodeURIComponent(sections[i])\n\t\t\t}\n\t\t\tpath = sections.join('/')\n\t\t\treturn path\n\t\t},\n\n\t\t/**\n\t\t * Parse headers string into a map\n\t\t *\n\t\t * @param {string} headersString headers list as string\n\t\t *\n\t\t * @returns {Object.<String,Array>} map of header name to header contents\n\t\t */\n\t\t_parseHeaders: function(headersString) {\n\t\t\tconst headerRows = headersString.split('\\n')\n\t\t\tconst headers = {}\n\t\t\tfor (let i = 0; i < headerRows.length; i++) {\n\t\t\t\tconst sepPos = headerRows[i].indexOf(':')\n\t\t\t\tif (sepPos < 0) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tconst headerName = headerRows[i].substr(0, sepPos)\n\t\t\t\tconst headerValue = headerRows[i].substr(sepPos + 2)\n\n\t\t\t\tif (!headers[headerName]) {\n\t\t\t\t\t// make it an array\n\t\t\t\t\theaders[headerName] = []\n\t\t\t\t}\n\n\t\t\t\theaders[headerName].push(headerValue)\n\t\t\t}\n\t\t\treturn headers\n\t\t},\n\n\t\t/**\n\t\t * Parses the etag response which is in double quotes.\n\t\t *\n\t\t * @param {string} etag etag value in double quotes\n\t\t *\n\t\t * @returns {string} etag without double quotes\n\t\t */\n\t\t_parseEtag: function(etag) {\n\t\t\tif (etag.charAt(0) === '\"') {\n\t\t\t\treturn etag.split('\"')[1]\n\t\t\t}\n\t\t\treturn etag\n\t\t},\n\n\t\t/**\n\t\t * Parse Webdav result\n\t\t *\n\t\t * @param {Object} response XML object\n\t\t *\n\t\t * @returns {Array.<FileInfo>} array of file info\n\t\t */\n\t\t_parseFileInfo: function(response) {\n\t\t\tlet path = decodeURIComponent(response.href)\n\t\t\tif (path.substr(0, this._root.length) === this._root) {\n\t\t\t\tpath = path.substr(this._root.length)\n\t\t\t}\n\n\t\t\tif (path.charAt(path.length - 1) === '/') {\n\t\t\t\tpath = path.substr(0, path.length - 1)\n\t\t\t}\n\n\t\t\tif (response.propStat.length === 0 || response.propStat[0].status !== 'HTTP/1.1 200 OK') {\n\t\t\t\treturn null\n\t\t\t}\n\n\t\t\tconst props = response.propStat[0].properties\n\n\t\t\tconst data = {\n\t\t\t\tid: props[Client.PROPERTY_INTERNAL_FILEID],\n\t\t\t\tpath: OC.dirname(path) || '/',\n\t\t\t\tname: OC.basename(path),\n\t\t\t\tmtime: (new Date(props[Client.PROPERTY_GETLASTMODIFIED])).getTime(),\n\t\t\t}\n\n\t\t\tconst etagProp = props[Client.PROPERTY_GETETAG]\n\t\t\tif (!_.isUndefined(etagProp)) {\n\t\t\t\tdata.etag = this._parseEtag(etagProp)\n\t\t\t}\n\n\t\t\tlet sizeProp = props[Client.PROPERTY_GETCONTENTLENGTH]\n\t\t\tif (!_.isUndefined(sizeProp)) {\n\t\t\t\tdata.size = parseInt(sizeProp, 10)\n\t\t\t}\n\n\t\t\tsizeProp = props[Client.PROPERTY_SIZE]\n\t\t\tif (!_.isUndefined(sizeProp)) {\n\t\t\t\tdata.size = parseInt(sizeProp, 10)\n\t\t\t}\n\n\t\t\tconst hasPreviewProp = props['{' + Client.NS_NEXTCLOUD + '}has-preview']\n\t\t\tif (!_.isUndefined(hasPreviewProp)) {\n\t\t\t\tdata.hasPreview = hasPreviewProp === 'true'\n\t\t\t} else {\n\t\t\t\tdata.hasPreview = true\n\t\t\t}\n\n\t\t\tconst isEncryptedProp = props['{' + Client.NS_NEXTCLOUD + '}is-encrypted']\n\t\t\tif (!_.isUndefined(isEncryptedProp)) {\n\t\t\t\tdata.isEncrypted = isEncryptedProp === '1'\n\t\t\t} else {\n\t\t\t\tdata.isEncrypted = false\n\t\t\t}\n\n\t\t\tconst isFavouritedProp = props['{' + Client.NS_OWNCLOUD + '}favorite']\n\t\t\tif (!_.isUndefined(isFavouritedProp)) {\n\t\t\t\tdata.isFavourited = isFavouritedProp === '1'\n\t\t\t} else {\n\t\t\t\tdata.isFavourited = false\n\t\t\t}\n\n\t\t\tconst contentType = props[Client.PROPERTY_GETCONTENTTYPE]\n\t\t\tif (!_.isUndefined(contentType)) {\n\t\t\t\tdata.mimetype = contentType\n\t\t\t}\n\n\t\t\tconst resType = props[Client.PROPERTY_RESOURCETYPE]\n\t\t\tif (!data.mimetype && resType) {\n\t\t\t\tconst xmlvalue = resType[0]\n\t\t\t\tif (xmlvalue.namespaceURI === Client.NS_DAV && xmlvalue.nodeName.split(':')[1] === 'collection') {\n\t\t\t\t\tdata.mimetype = 'httpd/unix-directory'\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdata.permissions = OC.PERMISSION_NONE\n\t\t\tconst permissionProp = props[Client.PROPERTY_PERMISSIONS]\n\t\t\tif (!_.isUndefined(permissionProp)) {\n\t\t\t\tconst permString = permissionProp || ''\n\t\t\t\tdata.mountType = null\n\t\t\t\tfor (let i = 0; i < permString.length; i++) {\n\t\t\t\t\tconst c = permString.charAt(i)\n\t\t\t\t\tswitch (c) {\n\t\t\t\t\t// FIXME: twisted permissions\n\t\t\t\t\tcase 'C':\n\t\t\t\t\tcase 'K':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_CREATE\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'G':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_READ\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'W':\n\t\t\t\t\tcase 'N':\n\t\t\t\t\tcase 'V':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_UPDATE\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'D':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_DELETE\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'R':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_SHARE\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'M':\n\t\t\t\t\t\tif (!data.mountType) {\n\t\t\t\t\t\t\t// TODO: how to identify external-root ?\n\t\t\t\t\t\t\tdata.mountType = 'external'\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'S':\n\t\t\t\t\t\t// TODO: how to identify shared-root ?\n\t\t\t\t\t\tdata.mountType = 'shared'\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tconst sharePermissionsProp = props[Client.PROPERTY_SHARE_PERMISSIONS]\n\t\t\tif (!_.isUndefined(sharePermissionsProp)) {\n\t\t\t\tdata.sharePermissions = parseInt(sharePermissionsProp)\n\t\t\t}\n\n\t\t\tconst mounTypeProp = props['{' + Client.NS_NEXTCLOUD + '}mount-type']\n\t\t\tif (!_.isUndefined(mounTypeProp)) {\n\t\t\t\tdata.mountType = mounTypeProp\n\t\t\t}\n\n\t\t\t// extend the parsed data using the custom parsers\n\t\t\t_.each(this._fileInfoParsers, function(parserFunction) {\n\t\t\t\t_.extend(data, parserFunction(response, data) || {})\n\t\t\t})\n\n\t\t\treturn new FileInfo(data)\n\t\t},\n\n\t\t/**\n\t\t * Parse Webdav multistatus\n\t\t *\n\t\t * @param {Array} responses\n\t\t */\n\t\t_parseResult: function(responses) {\n\t\t\tconst self = this\n\t\t\treturn _.map(responses, function(response) {\n\t\t\t\treturn self._parseFileInfo(response)\n\t\t\t})\n\t\t},\n\n\t\t/**\n\t\t * Returns whether the given status code means success\n\t\t *\n\t\t * @param {int} status status code\n\t\t *\n\t\t * @returns true if status code is between 200 and 299 included\n\t\t */\n\t\t_isSuccessStatus: function(status) {\n\t\t\treturn status >= 200 && status <= 299\n\t\t},\n\n\t\t/**\n\t\t * Parse the Sabre exception out of the given response, if any\n\t\t *\n\t\t * @param {Object} response object\n\t\t * @returns {Object} array of parsed message and exception (only the first one)\n\t\t */\n\t\t_getSabreException: function(response) {\n\t\t\tconst result = {}\n\t\t\tconst xml = response.xhr.responseXML\n\t\t\tif (xml === null) {\n\t\t\t\treturn result\n\t\t\t}\n\t\t\tconst messages = xml.getElementsByTagNameNS('http://sabredav.org/ns', 'message')\n\t\t\tconst exceptions = xml.getElementsByTagNameNS('http://sabredav.org/ns', 'exception')\n\t\t\tif (messages.length) {\n\t\t\t\tresult.message = messages[0].textContent\n\t\t\t}\n\t\t\tif (exceptions.length) {\n\t\t\t\tresult.exception = exceptions[0].textContent\n\t\t\t}\n\t\t\treturn result\n\t\t},\n\n\t\t/**\n\t\t * Returns the default PROPFIND properties to use during a call.\n\t\t *\n\t\t * @returns {Array.<Object>} array of properties\n\t\t */\n\t\tgetPropfindProperties: function() {\n\t\t\tif (!this._propfindProperties) {\n\t\t\t\tthis._propfindProperties = _.map(Client._PROPFIND_PROPERTIES, function(propDef) {\n\t\t\t\t\treturn '{' + propDef[0] + '}' + propDef[1]\n\t\t\t\t})\n\t\t\t}\n\t\t\treturn this._propfindProperties\n\t\t},\n\n\t\t/**\n\t\t * Lists the contents of a directory\n\t\t *\n\t\t * @param {String} path path to retrieve\n\t\t * @param {Object} [options] options\n\t\t * @param {boolean} [options.includeParent=false] set to true to keep\n\t\t * the parent folder in the result list\n\t\t * @param {Array} [options.properties] list of Webdav properties to retrieve\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tgetFolderContents: function(path, options) {\n\t\t\tif (!path) {\n\t\t\t\tpath = ''\n\t\t\t}\n\t\t\toptions = options || {}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\tlet properties\n\t\t\tif (_.isUndefined(options.properties)) {\n\t\t\t\tproperties = this.getPropfindProperties()\n\t\t\t} else {\n\t\t\t\tproperties = options.properties\n\t\t\t}\n\n\t\t\tthis._client.propFind(\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\tproperties,\n\t\t\t\t1\n\t\t\t).then(function(result) {\n\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\tconst results = self._parseResult(result.body)\n\t\t\t\t\tif (!options || !options.includeParent) {\n\t\t\t\t\t\t// remove root dir, the first entry\n\t\t\t\t\t\tresults.shift()\n\t\t\t\t\t}\n\t\t\t\t\tdeferred.resolve(result.status, results)\n\t\t\t\t} else {\n\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t}\n\t\t\t})\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Fetches a flat list of files filtered by a given filter criteria.\n\t\t * (currently system tags and circles are supported)\n\t\t *\n\t\t * @param {Object} filter filter criteria\n\t\t * @param {Object} [filter.systemTagIds] list of system tag ids to filter by\n\t\t * @param {bool} [filter.favorite] set it to filter by favorites\n\t\t * @param {Object} [options] options\n\t\t * @param {Array} [options.properties] list of Webdav properties to retrieve\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tgetFilteredFiles: function(filter, options) {\n\t\t\toptions = options || {}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\tlet properties\n\t\t\tif (_.isUndefined(options.properties)) {\n\t\t\t\tproperties = this.getPropfindProperties()\n\t\t\t} else {\n\t\t\t\tproperties = options.properties\n\t\t\t}\n\n\t\t\tif (!filter\n\t\t\t\t|| (!filter.systemTagIds && _.isUndefined(filter.favorite) && !filter.circlesIds)) {\n\t\t\t\tthrow 'Missing filter argument'\n\t\t\t}\n\n\t\t\t// root element with namespaces\n\t\t\tlet body = '<oc:filter-files '\n\t\t\tlet namespace\n\t\t\tfor (namespace in this._client.xmlNamespaces) {\n\t\t\t\tbody += ' xmlns:' + this._client.xmlNamespaces[namespace] + '=\"' + namespace + '\"'\n\t\t\t}\n\t\t\tbody += '>\\n'\n\n\t\t\t// properties query\n\t\t\tbody += ' <' + this._client.xmlNamespaces['DAV:'] + ':prop>\\n'\n\t\t\t_.each(properties, function(prop) {\n\t\t\t\tconst property = self._client.parseClarkNotation(prop)\n\t\t\t\tbody += ' <' + self._client.xmlNamespaces[property.namespace] + ':' + property.name + ' />\\n'\n\t\t\t})\n\n\t\t\tbody += ' </' + this._client.xmlNamespaces['DAV:'] + ':prop>\\n'\n\n\t\t\t// rules block\n\t\t\tbody +=\t' <oc:filter-rules>\\n'\n\t\t\t_.each(filter.systemTagIds, function(systemTagIds) {\n\t\t\t\tbody += ' <oc:systemtag>' + escapeHTML(systemTagIds) + '</oc:systemtag>\\n'\n\t\t\t})\n\t\t\t_.each(filter.circlesIds, function(circlesIds) {\n\t\t\t\tbody += ' <oc:circle>' + escapeHTML(circlesIds) + '</oc:circle>\\n'\n\t\t\t})\n\t\t\tif (filter.favorite) {\n\t\t\t\tbody += ' <oc:favorite>' + (filter.favorite ? '1' : '0') + '</oc:favorite>\\n'\n\t\t\t}\n\t\t\tbody += ' </oc:filter-rules>\\n'\n\n\t\t\t// end of root\n\t\t\tbody += '</oc:filter-files>\\n'\n\n\t\t\tthis._client.request(\n\t\t\t\t'REPORT',\n\t\t\t\tthis._buildUrl(),\n\t\t\t\t{},\n\t\t\t\tbody\n\t\t\t).then(function(result) {\n\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\tconst results = self._parseResult(result.body)\n\t\t\t\t\tdeferred.resolve(result.status, results)\n\t\t\t\t} else {\n\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t}\n\t\t\t})\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Returns the file info of a given path.\n\t\t *\n\t\t * @param {String} path path\n\t\t * @param {Array} [options.properties] list of Webdav properties to retrieve\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tgetFileInfo: function(path, options) {\n\t\t\tif (!path) {\n\t\t\t\tpath = ''\n\t\t\t}\n\t\t\toptions = options || {}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\tlet properties\n\t\t\tif (_.isUndefined(options.properties)) {\n\t\t\t\tproperties = this.getPropfindProperties()\n\t\t\t} else {\n\t\t\t\tproperties = options.properties\n\t\t\t}\n\n\t\t\t// TODO: headers\n\t\t\tthis._client.propFind(\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\tproperties,\n\t\t\t\t0\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status, self._parseResult([result.body])[0])\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Returns the contents of the given file.\n\t\t *\n\t\t * @param {String} path path to file\n\t\t *\n\t\t * @returns {Promise}\n\t\t */\n\t\tgetFileContents: function(path) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\n\t\t\tthis._client.request(\n\t\t\t\t'GET',\n\t\t\t\tthis._buildUrl(path)\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status, result.body)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Puts the given data into the given file.\n\t\t *\n\t\t * @param {String} path path to file\n\t\t * @param {String} body file body\n\t\t * @param {Object} [options]\n\t\t * @param {String} [options.contentType='text/plain'] content type\n\t\t * @param {bool} [options.overwrite=true] whether to overwrite an existing file\n\t\t *\n\t\t * @returns {Promise}\n\t\t */\n\t\tputFileContents: function(path, body, options) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\toptions = options || {}\n\t\t\tconst headers = {}\n\t\t\tlet contentType = 'text/plain;charset=utf-8'\n\t\t\tif (options.contentType) {\n\t\t\t\tcontentType = options.contentType\n\t\t\t}\n\n\t\t\theaders['Content-Type'] = contentType\n\n\t\t\tif (_.isUndefined(options.overwrite) || options.overwrite) {\n\t\t\t\t// will trigger 412 precondition failed if a file already exists\n\t\t\t\theaders['If-None-Match'] = '*'\n\t\t\t}\n\n\t\t\tthis._client.request(\n\t\t\t\t'PUT',\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\theaders,\n\t\t\t\tbody || ''\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t_simpleCall: function(method, path) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\n\t\t\tthis._client.request(\n\t\t\t\tmethod,\n\t\t\t\tthis._buildUrl(path)\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Creates a directory\n\t\t *\n\t\t * @param {String} path path to create\n\t\t *\n\t\t * @returns {Promise}\n\t\t */\n\t\tcreateDirectory: function(path) {\n\t\t\treturn this._simpleCall('MKCOL', path)\n\t\t},\n\n\t\t/**\n\t\t * Deletes a file or directory\n\t\t *\n\t\t * @param {String} path path to delete\n\t\t *\n\t\t * @returns {Promise}\n\t\t */\n\t\tremove: function(path) {\n\t\t\treturn this._simpleCall('DELETE', path)\n\t\t},\n\n\t\t/**\n\t\t * Moves path to another path\n\t\t *\n\t\t * @param {String} path path to move\n\t\t * @param {String} destinationPath destination path\n\t\t * @param {boolean} [allowOverwrite=false] true to allow overwriting,\n\t\t * false otherwise\n\t\t * @param {Object} [headers=null] additional headers\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tmove: function(path, destinationPath, allowOverwrite, headers) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\t\t\tif (!destinationPath) {\n\t\t\t\tthrow 'Missing argument \"destinationPath\"'\n\t\t\t}\n\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\theaders = _.extend({}, headers, {\n\t\t\t\t'Destination': this._buildUrl(destinationPath),\n\t\t\t})\n\n\t\t\tif (!allowOverwrite) {\n\t\t\t\theaders.Overwrite = 'F'\n\t\t\t}\n\n\t\t\tthis._client.request(\n\t\t\t\t'MOVE',\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\theaders\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Copies path to another path\n\t\t *\n\t\t * @param {String} path path to copy\n\t\t * @param {String} destinationPath destination path\n\t\t * @param {boolean} [allowOverwrite=false] true to allow overwriting,\n\t\t * false otherwise\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tcopy: function(path, destinationPath, allowOverwrite) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\t\t\tif (!destinationPath) {\n\t\t\t\tthrow 'Missing argument \"destinationPath\"'\n\t\t\t}\n\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\tconst headers = {\n\t\t\t\t'Destination': this._buildUrl(destinationPath),\n\t\t\t}\n\n\t\t\tif (!allowOverwrite) {\n\t\t\t\theaders.Overwrite = 'F'\n\t\t\t}\n\n\t\t\tthis._client.request(\n\t\t\t\t'COPY',\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\theaders\n\t\t\t).then(\n\t\t\t\tfunction(response) {\n\t\t\t\t\tif (self._isSuccessStatus(response.status)) {\n\t\t\t\t\t\tdeferred.resolve(response.status)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdeferred.reject(response.status)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Add a file info parser function\n\t\t *\n\t\t * @param {OC.Files.Client~parseFileInfo} parserFunction\n\t\t */\n\t\taddFileInfoParser: function(parserFunction) {\n\t\t\tthis._fileInfoParsers.push(parserFunction)\n\t\t},\n\n\t\t/**\n\t\t * Returns the dav.Client instance used internally\n\t\t *\n\t\t * @since 11.0.0\n\t\t * @returns {dav.Client}\n\t\t */\n\t\tgetClient: function() {\n\t\t\treturn this._client\n\t\t},\n\n\t\t/**\n\t\t * Returns the user name\n\t\t *\n\t\t * @since 11.0.0\n\t\t * @returns {String} userName\n\t\t */\n\t\tgetUserName: function() {\n\t\t\treturn this._client.userName\n\t\t},\n\n\t\t/**\n\t\t * Returns the password\n\t\t *\n\t\t * @since 11.0.0\n\t\t * @returns {String} password\n\t\t */\n\t\tgetPassword: function() {\n\t\t\treturn this._client.password\n\t\t},\n\n\t\t/**\n\t\t * Returns the base URL\n\t\t *\n\t\t * @since 11.0.0\n\t\t * @returns {String} base URL\n\t\t */\n\t\tgetBaseUrl: function() {\n\t\t\treturn this._client.baseUrl\n\t\t},\n\n\t\t/**\n\t\t * Returns the host\n\t\t *\n\t\t * @since 13.0.0\n\t\t * @returns {String} base URL\n\t\t */\n\t\tgetHost: function() {\n\t\t\treturn this._host\n\t\t},\n\t}\n\n\t/**\n\t * File info parser function\n\t *\n\t * This function receives a list of Webdav properties as input and\n\t * should return a hash array of parsed properties, if applicable.\n\t *\n\t * @callback OC.Files.Client~parseFileInfo\n\t * @param {Object} XML Webdav properties\n * @return {Array} array of parsed property values\n\t */\n\n\tif (!OC.Files) {\n\t\t/**\n\t\t * @namespace OC.Files\n\t\t *\n\t\t * @since 8.2\n\t\t */\n\t\tOC.Files = {}\n\t}\n\n\t/**\n\t * Returns the default instance of the files client\n\t *\n\t * @returns {OC.Files.Client} default client\n\t *\n\t * @since 8.2\n\t */\n\tOC.Files.getClient = function() {\n\t\tif (OC.Files._defaultClient) {\n\t\t\treturn OC.Files._defaultClient\n\t\t}\n\n\t\tconst client = new OC.Files.Client({\n\t\t\thost: OC.getHost(),\n\t\t\tport: OC.getPort(),\n\t\t\troot: OC.linkToRemoteBase('dav') + '/files/' + OC.getCurrentUser().uid,\n\t\t\tuseHTTPS: OC.getProtocol() === 'https',\n\t\t})\n\t\tOC.Files._defaultClient = client\n\t\treturn client\n\t}\n\n\tOC.Files.Client = Client\n})(OC, OC.Files.FileInfo)\n","// Some functions take a variable number of arguments, or a few expected\n// arguments at the beginning and then a variable number of values to operate\n// on. This helper accumulates all remaining arguments past the function’s\n// argument length (or an explicit `startIndex`), into an array that becomes\n// the last argument. Similar to ES6’s \"rest parameter\".\nexport default function restArguments(func, startIndex) {\n startIndex = startIndex == null ? func.length - 1 : +startIndex;\n return function() {\n var length = Math.max(arguments.length - startIndex, 0),\n rest = Array(length),\n index = 0;\n for (; index < length; index++) {\n rest[index] = arguments[index + startIndex];\n }\n switch (startIndex) {\n case 0: return func.call(this, rest);\n case 1: return func.call(this, arguments[0], rest);\n case 2: return func.call(this, arguments[0], arguments[1], rest);\n }\n var args = Array(startIndex + 1);\n for (index = 0; index < startIndex; index++) {\n args[index] = arguments[index];\n }\n args[startIndex] = rest;\n return func.apply(this, args);\n };\n}\n","// Is a given variable an object?\nexport default function isObject(obj) {\n var type = typeof obj;\n return type === 'function' || type === 'object' && !!obj;\n}\n","// Is a given value equal to null?\nexport default function isNull(obj) {\n return obj === null;\n}\n","// Is a given variable undefined?\nexport default function isUndefined(obj) {\n return obj === void 0;\n}\n","import { toString } from './_setup.js';\n\n// Is a given value a boolean?\nexport default function isBoolean(obj) {\n return obj === true || obj === false || toString.call(obj) === '[object Boolean]';\n}\n","// Is a given value a DOM element?\nexport default function isElement(obj) {\n return !!(obj && obj.nodeType === 1);\n}\n","import { toString } from './_setup.js';\n\n// Internal function for creating a `toString`-based type tester.\nexport default function tagTester(name) {\n return function(obj) {\n return toString.call(obj) === '[object ' + name + ']';\n };\n}\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('String');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Number');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Date');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('RegExp');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Error');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Symbol');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Map');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('WeakMap');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Set');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('WeakSet');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('ArrayBuffer');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('DataView');\n","import { nativeIsArray } from './_setup.js';\nimport tagTester from './_tagTester.js';\n\n// Is a given value an array?\n// Delegates to ECMA5's native `Array.isArray`.\nexport default nativeIsArray || tagTester('Array');\n","import tagTester from './_tagTester.js';\nimport { root } from './_setup.js';\n\nvar isFunction = tagTester('Function');\n\n// Optimize `isFunction` if appropriate. Work around some `typeof` bugs in old\n// v8, IE 11 (#1621), Safari 8 (#1929), and PhantomJS (#2236).\nvar nodelist = root.document && root.document.childNodes;\nif (typeof /./ != 'function' && typeof Int8Array != 'object' && typeof nodelist != 'function') {\n isFunction = function(obj) {\n return typeof obj == 'function' || false;\n };\n}\n\nexport default isFunction;\n","import { hasOwnProperty } from './_setup.js';\n\n// Internal function to check whether `key` is an own property name of `obj`.\nexport default function has(obj, key) {\n return obj != null && hasOwnProperty.call(obj, key);\n}\n","import tagTester from './_tagTester.js';\nimport has from './_has.js';\n\nvar isArguments = tagTester('Arguments');\n\n// Define a fallback version of the method in browsers (ahem, IE < 9), where\n// there isn't any inspectable \"Arguments\" type.\n(function() {\n if (!isArguments(arguments)) {\n isArguments = function(obj) {\n return has(obj, 'callee');\n };\n }\n}());\n\nexport default isArguments;\n","import { _isFinite } from './_setup.js';\nimport isSymbol from './isSymbol.js';\n\n// Is a given object a finite number?\nexport default function isFinite(obj) {\n return !isSymbol(obj) && _isFinite(obj) && !isNaN(parseFloat(obj));\n}\n","import { _isNaN } from './_setup.js';\nimport isNumber from './isNumber.js';\n\n// Is the given value `NaN`?\nexport default function isNaN(obj) {\n return isNumber(obj) && _isNaN(obj);\n}\n","// Predicate-generating function. Often useful outside of Underscore.\nexport default function constant(value) {\n return function() {\n return value;\n };\n}\n","import { MAX_ARRAY_INDEX } from './_setup.js';\n\n// Common internal logic for `isArrayLike` and `isBufferLike`.\nexport default function createSizePropertyCheck(getSizeProperty) {\n return function(collection) {\n var sizeProperty = getSizeProperty(collection);\n return typeof sizeProperty == 'number' && sizeProperty >= 0 && sizeProperty <= MAX_ARRAY_INDEX;\n }\n}\n","// Internal helper to generate a function to obtain property `key` from `obj`.\nexport default function shallowProperty(key) {\n return function(obj) {\n return obj == null ? void 0 : obj[key];\n };\n}\n","import shallowProperty from './_shallowProperty.js';\n\n// Internal helper to obtain the `byteLength` property of an object.\nexport default shallowProperty('byteLength');\n","import createSizePropertyCheck from './_createSizePropertyCheck.js';\nimport getByteLength from './_getByteLength.js';\n\n// Internal helper to determine whether we should spend extensive checks against\n// `ArrayBuffer` et al.\nexport default createSizePropertyCheck(getByteLength);\n","import { supportsArrayBuffer, nativeIsView, toString } from './_setup.js';\nimport isDataView from './isDataView.js';\nimport constant from './constant.js';\nimport isBufferLike from './_isBufferLike.js';\n\n// Is a given value a typed array?\nvar typedArrayPattern = /\\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\\]/;\nfunction isTypedArray(obj) {\n // `ArrayBuffer.isView` is the most future-proof, so use it when available.\n // Otherwise, fall back on the above regular expression.\n return nativeIsView ? (nativeIsView(obj) && !isDataView(obj)) :\n isBufferLike(obj) && typedArrayPattern.test(toString.call(obj));\n}\n\nexport default supportsArrayBuffer ? isTypedArray : constant(false);\n","import shallowProperty from './_shallowProperty.js';\n\n// Internal helper to obtain the `length` property of an object.\nexport default shallowProperty('length');\n","import createSizePropertyCheck from './_createSizePropertyCheck.js';\nimport getLength from './_getLength.js';\n\n// Internal helper for collection methods to determine whether a collection\n// should be iterated as an array or as an object.\n// Related: https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n// Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094\nexport default createSizePropertyCheck(getLength);\n","import { nonEnumerableProps, ObjProto } from './_setup.js';\nimport isFunction from './isFunction.js';\nimport has from './_has.js';\n\n// Internal helper to create a simple lookup structure.\n// `collectNonEnumProps` used to depend on `_.contains`, but this led to\n// circular imports. `emulatedSet` is a one-off solution that only works for\n// arrays of strings.\nfunction emulatedSet(keys) {\n var hash = {};\n for (var l = keys.length, i = 0; i < l; ++i) hash[keys[i]] = true;\n return {\n contains: function(key) { return hash[key]; },\n push: function(key) {\n hash[key] = true;\n return keys.push(key);\n }\n };\n}\n\n// Internal helper. Checks `keys` for the presence of keys in IE < 9 that won't\n// be iterated by `for key in ...` and thus missed. Extends `keys` in place if\n// needed.\nexport default function collectNonEnumProps(obj, keys) {\n keys = emulatedSet(keys);\n var nonEnumIdx = nonEnumerableProps.length;\n var constructor = obj.constructor;\n var proto = isFunction(constructor) && constructor.prototype || ObjProto;\n\n // Constructor is a special case.\n var prop = 'constructor';\n if (has(obj, prop) && !keys.contains(prop)) keys.push(prop);\n\n while (nonEnumIdx--) {\n prop = nonEnumerableProps[nonEnumIdx];\n if (prop in obj && obj[prop] !== proto[prop] && !keys.contains(prop)) {\n keys.push(prop);\n }\n }\n}\n","import isObject from './isObject.js';\nimport { nativeKeys, hasEnumBug } from './_setup.js';\nimport has from './_has.js';\nimport collectNonEnumProps from './_collectNonEnumProps.js';\n\n// Retrieve the names of an object's own properties.\n// Delegates to **ECMAScript 5**'s native `Object.keys`.\nexport default function keys(obj) {\n if (!isObject(obj)) return [];\n if (nativeKeys) return nativeKeys(obj);\n var keys = [];\n for (var key in obj) if (has(obj, key)) keys.push(key);\n // Ahem, IE < 9.\n if (hasEnumBug) collectNonEnumProps(obj, keys);\n return keys;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport isArray from './isArray.js';\nimport isString from './isString.js';\nimport isArguments from './isArguments.js';\nimport keys from './keys.js';\n\n// Is a given array, string, or object empty?\n// An \"empty\" object has no enumerable own-properties.\nexport default function isEmpty(obj) {\n if (obj == null) return true;\n // Skip the more expensive `toString`-based type checks if `obj` has no\n // `.length`.\n if (isArrayLike(obj) && (isArray(obj) || isString(obj) || isArguments(obj))) return obj.length === 0;\n return keys(obj).length === 0;\n}\n","import keys from './keys.js';\n\n// Returns whether an object has a given set of `key:value` pairs.\nexport default function isMatch(object, attrs) {\n var _keys = keys(attrs), length = _keys.length;\n if (object == null) return !length;\n var obj = Object(object);\n for (var i = 0; i < length; i++) {\n var key = _keys[i];\n if (attrs[key] !== obj[key] || !(key in obj)) return false;\n }\n return true;\n}\n","import { VERSION } from './_setup.js';\n\n// If Underscore is called as a function, it returns a wrapped object that can\n// be used OO-style. This wrapper holds altered versions of all functions added\n// through `_.mixin`. Wrapped objects may be chained.\nexport default function _(obj) {\n if (obj instanceof _) return obj;\n if (!(this instanceof _)) return new _(obj);\n this._wrapped = obj;\n}\n\n_.VERSION = VERSION;\n\n// Extracts the result from a wrapped and chained object.\n_.prototype.value = function() {\n return this._wrapped;\n};\n\n// Provide unwrapping proxies for some methods used in engine operations\n// such as arithmetic and JSON stringification.\n_.prototype.valueOf = _.prototype.toJSON = _.prototype.value;\n\n_.prototype.toString = function() {\n return String(this._wrapped);\n};\n","import _ from './underscore.js';\nimport { toString, SymbolProto } from './_setup.js';\nimport getByteLength from './_getByteLength.js';\nimport isTypedArray from './isTypedArray.js';\nimport isFunction from './isFunction.js';\nimport keys from './keys.js';\nimport has from './_has.js';\n\n// Internal recursive comparison function for `_.isEqual`.\nfunction eq(a, b, aStack, bStack) {\n // Identical objects are equal. `0 === -0`, but they aren't identical.\n // See the [Harmony `egal` proposal](https://wiki.ecmascript.org/doku.php?id=harmony:egal).\n if (a === b) return a !== 0 || 1 / a === 1 / b;\n // `null` or `undefined` only equal to itself (strict comparison).\n if (a == null || b == null) return false;\n // `NaN`s are equivalent, but non-reflexive.\n if (a !== a) return b !== b;\n // Exhaust primitive checks\n var type = typeof a;\n if (type !== 'function' && type !== 'object' && typeof b != 'object') return false;\n return deepEq(a, b, aStack, bStack);\n}\n\n// Internal recursive comparison function for `_.isEqual`.\nfunction deepEq(a, b, aStack, bStack) {\n // Unwrap any wrapped objects.\n if (a instanceof _) a = a._wrapped;\n if (b instanceof _) b = b._wrapped;\n // Compare `[[Class]]` names.\n var className = toString.call(a);\n if (className !== toString.call(b)) return false;\n switch (className) {\n // These types are compared by value.\n case '[object RegExp]':\n // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')\n case '[object String]':\n // Primitives and their corresponding object wrappers are equivalent; thus, `\"5\"` is\n // equivalent to `new String(\"5\")`.\n return '' + a === '' + b;\n case '[object Number]':\n // `NaN`s are equivalent, but non-reflexive.\n // Object(NaN) is equivalent to NaN.\n if (+a !== +a) return +b !== +b;\n // An `egal` comparison is performed for other numeric values.\n return +a === 0 ? 1 / +a === 1 / b : +a === +b;\n case '[object Date]':\n case '[object Boolean]':\n // Coerce dates and booleans to numeric primitive values. Dates are compared by their\n // millisecond representations. Note that invalid dates with millisecond representations\n // of `NaN` are not equivalent.\n return +a === +b;\n case '[object Symbol]':\n return SymbolProto.valueOf.call(a) === SymbolProto.valueOf.call(b);\n case '[object ArrayBuffer]':\n // Coerce to `DataView` so we can fall through to the next case.\n return deepEq(new DataView(a), new DataView(b), aStack, bStack);\n case '[object DataView]':\n var byteLength = getByteLength(a);\n if (byteLength !== getByteLength(b)) {\n return false;\n }\n while (byteLength--) {\n if (a.getUint8(byteLength) !== b.getUint8(byteLength)) {\n return false;\n }\n }\n return true;\n }\n\n if (isTypedArray(a)) {\n // Coerce typed arrays to `DataView`.\n return deepEq(new DataView(a.buffer), new DataView(b.buffer), aStack, bStack);\n }\n\n var areArrays = className === '[object Array]';\n if (!areArrays) {\n if (typeof a != 'object' || typeof b != 'object') return false;\n\n // Objects with different constructors are not equivalent, but `Object`s or `Array`s\n // from different frames are.\n var aCtor = a.constructor, bCtor = b.constructor;\n if (aCtor !== bCtor && !(isFunction(aCtor) && aCtor instanceof aCtor &&\n isFunction(bCtor) && bCtor instanceof bCtor)\n && ('constructor' in a && 'constructor' in b)) {\n return false;\n }\n }\n // Assume equality for cyclic structures. The algorithm for detecting cyclic\n // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.\n\n // Initializing stack of traversed objects.\n // It's done here since we only need them for objects and arrays comparison.\n aStack = aStack || [];\n bStack = bStack || [];\n var length = aStack.length;\n while (length--) {\n // Linear search. Performance is inversely proportional to the number of\n // unique nested structures.\n if (aStack[length] === a) return bStack[length] === b;\n }\n\n // Add the first object to the stack of traversed objects.\n aStack.push(a);\n bStack.push(b);\n\n // Recursively compare objects and arrays.\n if (areArrays) {\n // Compare array lengths to determine if a deep comparison is necessary.\n length = a.length;\n if (length !== b.length) return false;\n // Deep compare the contents, ignoring non-numeric properties.\n while (length--) {\n if (!eq(a[length], b[length], aStack, bStack)) return false;\n }\n } else {\n // Deep compare objects.\n var _keys = keys(a), key;\n length = _keys.length;\n // Ensure that both objects contain the same number of properties before comparing deep equality.\n if (keys(b).length !== length) return false;\n while (length--) {\n // Deep compare each member\n key = _keys[length];\n if (!(has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;\n }\n }\n // Remove the first object from the stack of traversed objects.\n aStack.pop();\n bStack.pop();\n return true;\n}\n\n// Perform a deep comparison to check if two objects are equal.\nexport default function isEqual(a, b) {\n return eq(a, b);\n}\n","import isObject from './isObject.js';\nimport { hasEnumBug } from './_setup.js';\nimport collectNonEnumProps from './_collectNonEnumProps.js';\n\n// Retrieve all the enumerable property names of an object.\nexport default function allKeys(obj) {\n if (!isObject(obj)) return [];\n var keys = [];\n for (var key in obj) keys.push(key);\n // Ahem, IE < 9.\n if (hasEnumBug) collectNonEnumProps(obj, keys);\n return keys;\n}\n","import keys from './keys.js';\n\n// Retrieve the values of an object's properties.\nexport default function values(obj) {\n var _keys = keys(obj);\n var length = _keys.length;\n var values = Array(length);\n for (var i = 0; i < length; i++) {\n values[i] = obj[_keys[i]];\n }\n return values;\n}\n","import keys from './keys.js';\n\n// Convert an object into a list of `[key, value]` pairs.\n// The opposite of `_.object` with one argument.\nexport default function pairs(obj) {\n var _keys = keys(obj);\n var length = _keys.length;\n var pairs = Array(length);\n for (var i = 0; i < length; i++) {\n pairs[i] = [_keys[i], obj[_keys[i]]];\n }\n return pairs;\n}\n","import keys from './keys.js';\n\n// Invert the keys and values of an object. The values must be serializable.\nexport default function invert(obj) {\n var result = {};\n var _keys = keys(obj);\n for (var i = 0, length = _keys.length; i < length; i++) {\n result[obj[_keys[i]]] = _keys[i];\n }\n return result;\n}\n","import isFunction from './isFunction.js';\n\n// Return a sorted list of the function names available on the object.\nexport default function functions(obj) {\n var names = [];\n for (var key in obj) {\n if (isFunction(obj[key])) names.push(key);\n }\n return names.sort();\n}\n","// An internal function for creating assigner functions.\nexport default function createAssigner(keysFunc, defaults) {\n return function(obj) {\n var length = arguments.length;\n if (defaults) obj = Object(obj);\n if (length < 2 || obj == null) return obj;\n for (var index = 1; index < length; index++) {\n var source = arguments[index],\n keys = keysFunc(source),\n l = keys.length;\n for (var i = 0; i < l; i++) {\n var key = keys[i];\n if (!defaults || obj[key] === void 0) obj[key] = source[key];\n }\n }\n return obj;\n };\n}\n","import createAssigner from './_createAssigner.js';\nimport allKeys from './allKeys.js';\n\n// Extend a given object with all the properties in passed-in object(s).\nexport default createAssigner(allKeys);\n","import createAssigner from './_createAssigner.js';\nimport keys from './keys.js';\n\n// Assigns a given object with all the own properties in the passed-in\n// object(s).\n// (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)\nexport default createAssigner(keys);\n","import createAssigner from './_createAssigner.js';\nimport allKeys from './allKeys.js';\n\n// Fill in a given object with default properties.\nexport default createAssigner(allKeys, true);\n","import isObject from './isObject.js';\nimport { nativeCreate } from './_setup.js';\n\n// Create a naked function reference for surrogate-prototype-swapping.\nfunction ctor() {\n return function(){};\n}\n\n// An internal function for creating a new object that inherits from another.\nexport default function baseCreate(prototype) {\n if (!isObject(prototype)) return {};\n if (nativeCreate) return nativeCreate(prototype);\n var Ctor = ctor();\n Ctor.prototype = prototype;\n var result = new Ctor;\n Ctor.prototype = null;\n return result;\n}\n","import baseCreate from './_baseCreate.js';\nimport extendOwn from './extendOwn.js';\n\n// Creates an object that inherits from the given prototype object.\n// If additional properties are provided then they will be added to the\n// created object.\nexport default function create(prototype, props) {\n var result = baseCreate(prototype);\n if (props) extendOwn(result, props);\n return result;\n}\n","import isObject from './isObject.js';\nimport isArray from './isArray.js';\nimport extend from './extend.js';\n\n// Create a (shallow-cloned) duplicate of an object.\nexport default function clone(obj) {\n if (!isObject(obj)) return obj;\n return isArray(obj) ? obj.slice() : extend({}, obj);\n}\n","// Invokes `interceptor` with the `obj` and then returns `obj`.\n// The primary purpose of this method is to \"tap into\" a method chain, in\n// order to perform operations on intermediate results within the chain.\nexport default function tap(obj, interceptor) {\n interceptor(obj);\n return obj;\n}\n","import isArray from './isArray.js';\nimport _has from './_has.js';\nimport { hasOwnProperty } from './_setup.js';\n\n// Shortcut function for checking if an object has a given property directly on\n// itself (in other words, not on a prototype). Unlike the internal `has`\n// function, this public version can also traverse nested properties.\nexport default function has(obj, path) {\n if (!isArray(path)) {\n return _has(obj, path);\n }\n var length = path.length;\n for (var i = 0; i < length; i++) {\n var key = path[i];\n if (obj == null || !hasOwnProperty.call(obj, key)) {\n return false;\n }\n obj = obj[key];\n }\n return !!length;\n}\n","// Keep the identity function around for default iteratees.\nexport default function identity(value) {\n return value;\n}\n","import extendOwn from './extendOwn.js';\nimport isMatch from './isMatch.js';\n\n// Returns a predicate for checking whether an object has a given set of\n// `key:value` pairs.\nexport default function matcher(attrs) {\n attrs = extendOwn({}, attrs);\n return function(obj) {\n return isMatch(obj, attrs);\n };\n}\n","// Internal function to obtain a nested property in `obj` along `path`.\nexport default function deepGet(obj, path) {\n var length = path.length;\n for (var i = 0; i < length; i++) {\n if (obj == null) return void 0;\n obj = obj[path[i]];\n }\n return length ? obj : void 0;\n}\n","import isArray from './isArray.js';\nimport shallowProperty from './_shallowProperty.js';\nimport deepGet from './_deepGet.js';\n\n// Creates a function that, when passed an object, will traverse that object’s\n// properties down the given `path`, specified as an array of keys or indices.\nexport default function property(path) {\n if (!isArray(path)) {\n return shallowProperty(path);\n }\n return function(obj) {\n return deepGet(obj, path);\n };\n}\n","// Internal function that returns an efficient (for current engines) version\n// of the passed-in callback, to be repeatedly applied in other Underscore\n// functions.\nexport default function optimizeCb(func, context, argCount) {\n if (context === void 0) return func;\n switch (argCount == null ? 3 : argCount) {\n case 1: return function(value) {\n return func.call(context, value);\n };\n // The 2-argument case is omitted because we’re not using it.\n case 3: return function(value, index, collection) {\n return func.call(context, value, index, collection);\n };\n case 4: return function(accumulator, value, index, collection) {\n return func.call(context, accumulator, value, index, collection);\n };\n }\n return function() {\n return func.apply(context, arguments);\n };\n}\n","import identity from './identity.js';\nimport isFunction from './isFunction.js';\nimport isObject from './isObject.js';\nimport isArray from './isArray.js';\nimport matcher from './matcher.js';\nimport property from './property.js';\nimport optimizeCb from './_optimizeCb.js';\n\n// An internal function to generate callbacks that can be applied to each\n// element in a collection, returning the desired result — either `_.identity`,\n// an arbitrary callback, a property matcher, or a property accessor.\nexport default function baseIteratee(value, context, argCount) {\n if (value == null) return identity;\n if (isFunction(value)) return optimizeCb(value, context, argCount);\n if (isObject(value) && !isArray(value)) return matcher(value);\n return property(value);\n}\n","import _ from './underscore.js';\nimport baseIteratee from './_baseIteratee.js';\n\n// External wrapper for our callback generator. Users may customize\n// `_.iteratee` if they want additional predicate/iteratee shorthand styles.\n// This abstraction hides the internal-only `argCount` argument.\nexport default function iteratee(value, context) {\n return baseIteratee(value, context, Infinity);\n}\n_.iteratee = iteratee;\n","import _ from './underscore.js';\nimport baseIteratee from './_baseIteratee.js';\nimport iteratee from './iteratee.js';\n\n// The function we call internally to generate a callback. It invokes\n// `_.iteratee` if overridden, otherwise `baseIteratee`.\nexport default function cb(value, context, argCount) {\n if (_.iteratee !== iteratee) return _.iteratee(value, context);\n return baseIteratee(value, context, argCount);\n}\n","import cb from './_cb.js';\nimport keys from './keys.js';\n\n// Returns the results of applying the `iteratee` to each element of `obj`.\n// In contrast to `_.map` it returns an object.\nexport default function mapObject(obj, iteratee, context) {\n iteratee = cb(iteratee, context);\n var _keys = keys(obj),\n length = _keys.length,\n results = {};\n for (var index = 0; index < length; index++) {\n var currentKey = _keys[index];\n results[currentKey] = iteratee(obj[currentKey], currentKey, obj);\n }\n return results;\n}\n","// Predicate-generating function. Often useful outside of Underscore.\nexport default function noop(){}\n","import isArray from './isArray.js';\nimport deepGet from './_deepGet.js';\n\n// Generates a function for a given object that returns a given property.\nexport default function propertyOf(obj) {\n if (obj == null) {\n return function(){};\n }\n return function(path) {\n return !isArray(path) ? obj[path] : deepGet(obj, path);\n };\n}\n","import optimizeCb from './_optimizeCb.js';\n\n// Run a function **n** times.\nexport default function times(n, iteratee, context) {\n var accum = Array(Math.max(0, n));\n iteratee = optimizeCb(iteratee, context, 1);\n for (var i = 0; i < n; i++) accum[i] = iteratee(i);\n return accum;\n}\n","// Return a random integer between `min` and `max` (inclusive).\nexport default function random(min, max) {\n if (max == null) {\n max = min;\n min = 0;\n }\n return min + Math.floor(Math.random() * (max - min + 1));\n}\n","// A (possibly faster) way to get the current timestamp as an integer.\nexport default Date.now || function() {\n return new Date().getTime();\n};\n","import keys from './keys.js';\n\n// Internal helper to generate functions for escaping and unescaping strings\n// to/from HTML interpolation.\nexport default function createEscaper(map) {\n var escaper = function(match) {\n return map[match];\n };\n // Regexes for identifying a key that needs to be escaped.\n var source = '(?:' + keys(map).join('|') + ')';\n var testRegexp = RegExp(source);\n var replaceRegexp = RegExp(source, 'g');\n return function(string) {\n string = string == null ? '' : '' + string;\n return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;\n };\n}\n","// Internal list of HTML entities for escaping.\nexport default {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n \"'\": ''',\n '`': '`'\n};\n","import createEscaper from './_createEscaper.js';\nimport escapeMap from './_escapeMap.js';\n\n// Function for escaping strings to HTML interpolation.\nexport default createEscaper(escapeMap);\n","import createEscaper from './_createEscaper.js';\nimport unescapeMap from './_unescapeMap.js';\n\n// Function for unescaping strings from HTML interpolation.\nexport default createEscaper(unescapeMap);\n","import invert from './invert.js';\nimport escapeMap from './_escapeMap.js';\n\n// Internal list of HTML entities for unescaping.\nexport default invert(escapeMap);\n","import _ from './underscore.js';\n\n// By default, Underscore uses ERB-style template delimiters. Change the\n// following template settings to use alternative delimiters.\nexport default _.templateSettings = {\n evaluate: /<%([\\s\\S]+?)%>/g,\n interpolate: /<%=([\\s\\S]+?)%>/g,\n escape: /<%-([\\s\\S]+?)%>/g\n};\n","import defaults from './defaults.js';\nimport _ from './underscore.js';\nimport './templateSettings.js';\n\n// When customizing `_.templateSettings`, if you don't want to define an\n// interpolation, evaluation or escaping regex, we need one that is\n// guaranteed not to match.\nvar noMatch = /(.)^/;\n\n// Certain characters need to be escaped so that they can be put into a\n// string literal.\nvar escapes = {\n \"'\": \"'\",\n '\\\\': '\\\\',\n '\\r': 'r',\n '\\n': 'n',\n '\\u2028': 'u2028',\n '\\u2029': 'u2029'\n};\n\nvar escapeRegExp = /\\\\|'|\\r|\\n|\\u2028|\\u2029/g;\n\nfunction escapeChar(match) {\n return '\\\\' + escapes[match];\n}\n\n// JavaScript micro-templating, similar to John Resig's implementation.\n// Underscore templating handles arbitrary delimiters, preserves whitespace,\n// and correctly escapes quotes within interpolated code.\n// NB: `oldSettings` only exists for backwards compatibility.\nexport default function template(text, settings, oldSettings) {\n if (!settings && oldSettings) settings = oldSettings;\n settings = defaults({}, settings, _.templateSettings);\n\n // Combine delimiters into one regular expression via alternation.\n var matcher = RegExp([\n (settings.escape || noMatch).source,\n (settings.interpolate || noMatch).source,\n (settings.evaluate || noMatch).source\n ].join('|') + '|$', 'g');\n\n // Compile the template source, escaping string literals appropriately.\n var index = 0;\n var source = \"__p+='\";\n text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {\n source += text.slice(index, offset).replace(escapeRegExp, escapeChar);\n index = offset + match.length;\n\n if (escape) {\n source += \"'+\\n((__t=(\" + escape + \"))==null?'':_.escape(__t))+\\n'\";\n } else if (interpolate) {\n source += \"'+\\n((__t=(\" + interpolate + \"))==null?'':__t)+\\n'\";\n } else if (evaluate) {\n source += \"';\\n\" + evaluate + \"\\n__p+='\";\n }\n\n // Adobe VMs need the match returned to produce the correct offset.\n return match;\n });\n source += \"';\\n\";\n\n // If a variable is not specified, place data values in local scope.\n if (!settings.variable) source = 'with(obj||{}){\\n' + source + '}\\n';\n\n source = \"var __t,__p='',__j=Array.prototype.join,\" +\n \"print=function(){__p+=__j.call(arguments,'');};\\n\" +\n source + 'return __p;\\n';\n\n var render;\n try {\n render = new Function(settings.variable || 'obj', '_', source);\n } catch (e) {\n e.source = source;\n throw e;\n }\n\n var template = function(data) {\n return render.call(this, data, _);\n };\n\n // Provide the compiled source as a convenience for precompilation.\n var argument = settings.variable || 'obj';\n template.source = 'function(' + argument + '){\\n' + source + '}';\n\n return template;\n}\n","import isArray from './isArray.js';\nimport isFunction from './isFunction.js';\n\n// Traverses the children of `obj` along `path`. If a child is a function, it\n// is invoked with its parent as context. Returns the value of the final\n// child, or `fallback` if any child is undefined.\nexport default function result(obj, path, fallback) {\n if (!isArray(path)) path = [path];\n var length = path.length;\n if (!length) {\n return isFunction(fallback) ? fallback.call(obj) : fallback;\n }\n for (var i = 0; i < length; i++) {\n var prop = obj == null ? void 0 : obj[path[i]];\n if (prop === void 0) {\n prop = fallback;\n i = length; // Ensure we don't continue iterating.\n }\n obj = isFunction(prop) ? prop.call(obj) : prop;\n }\n return obj;\n}\n","// Generate a unique integer id (unique within the entire client session).\n// Useful for temporary DOM ids.\nvar idCounter = 0;\nexport default function uniqueId(prefix) {\n var id = ++idCounter + '';\n return prefix ? prefix + id : id;\n}\n","import _ from './underscore.js';\n\n// Start chaining a wrapped Underscore object.\nexport default function chain(obj) {\n var instance = _(obj);\n instance._chain = true;\n return instance;\n}\n","import baseCreate from './_baseCreate.js';\nimport isObject from './isObject.js';\n\n// Internal function to execute `sourceFunc` bound to `context` with optional\n// `args`. Determines whether to execute a function as a constructor or as a\n// normal function.\nexport default function executeBound(sourceFunc, boundFunc, context, callingContext, args) {\n if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);\n var self = baseCreate(sourceFunc.prototype);\n var result = sourceFunc.apply(self, args);\n if (isObject(result)) return result;\n return self;\n}\n","import restArguments from './restArguments.js';\nimport executeBound from './_executeBound.js';\nimport _ from './underscore.js';\n\n// Partially apply a function by creating a version that has had some of its\n// arguments pre-filled, without changing its dynamic `this` context. `_` acts\n// as a placeholder by default, allowing any combination of arguments to be\n// pre-filled. Set `_.partial.placeholder` for a custom placeholder argument.\nvar partial = restArguments(function(func, boundArgs) {\n var placeholder = partial.placeholder;\n var bound = function() {\n var position = 0, length = boundArgs.length;\n var args = Array(length);\n for (var i = 0; i < length; i++) {\n args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i];\n }\n while (position < arguments.length) args.push(arguments[position++]);\n return executeBound(func, bound, this, this, args);\n };\n return bound;\n});\n\npartial.placeholder = _;\nexport default partial;\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport executeBound from './_executeBound.js';\n\n// Create a function bound to a given object (assigning `this`, and arguments,\n// optionally).\nexport default restArguments(function(func, context, args) {\n if (!isFunction(func)) throw new TypeError('Bind must be called on a function');\n var bound = restArguments(function(callArgs) {\n return executeBound(func, bound, context, this, args.concat(callArgs));\n });\n return bound;\n});\n","import getLength from './_getLength.js';\nimport isArrayLike from './_isArrayLike.js';\nimport isArray from './isArray.js';\nimport isArguments from './isArguments.js';\n\n// Internal implementation of a recursive `flatten` function.\nexport default function flatten(input, depth, strict, output) {\n output = output || [];\n if (!depth && depth !== 0) {\n depth = Infinity;\n } else if (depth <= 0) {\n return output.concat(input);\n }\n var idx = output.length;\n for (var i = 0, length = getLength(input); i < length; i++) {\n var value = input[i];\n if (isArrayLike(value) && (isArray(value) || isArguments(value))) {\n // Flatten current level of array or arguments object.\n if (depth > 1) {\n flatten(value, depth - 1, strict, output);\n idx = output.length;\n } else {\n var j = 0, len = value.length;\n while (j < len) output[idx++] = value[j++];\n }\n } else if (!strict) {\n output[idx++] = value;\n }\n }\n return output;\n}\n","import restArguments from './restArguments.js';\nimport flatten from './_flatten.js';\nimport bind from './bind.js';\n\n// Bind a number of an object's methods to that object. Remaining arguments\n// are the method names to be bound. Useful for ensuring that all callbacks\n// defined on an object belong to it.\nexport default restArguments(function(obj, keys) {\n keys = flatten(keys, false, false);\n var index = keys.length;\n if (index < 1) throw new Error('bindAll must be passed function names');\n while (index--) {\n var key = keys[index];\n obj[key] = bind(obj[key], obj);\n }\n return obj;\n});\n","import has from './_has.js';\n\n// Memoize an expensive function by storing its results.\nexport default function memoize(func, hasher) {\n var memoize = function(key) {\n var cache = memoize.cache;\n var address = '' + (hasher ? hasher.apply(this, arguments) : key);\n if (!has(cache, address)) cache[address] = func.apply(this, arguments);\n return cache[address];\n };\n memoize.cache = {};\n return memoize;\n}\n","import restArguments from './restArguments.js';\n\n// Delays a function for the given number of milliseconds, and then calls\n// it with the arguments supplied.\nexport default restArguments(function(func, wait, args) {\n return setTimeout(function() {\n return func.apply(null, args);\n }, wait);\n});\n","import partial from './partial.js';\nimport delay from './delay.js';\nimport _ from './underscore.js';\n\n// Defers a function, scheduling it to run after the current call stack has\n// cleared.\nexport default partial(delay, _, 1);\n","import now from './now.js';\n\n// Returns a function, that, when invoked, will only be triggered at most once\n// during a given window of time. Normally, the throttled function will run\n// as much as it can, without ever going more than once per `wait` duration;\n// but if you'd like to disable the execution on the leading edge, pass\n// `{leading: false}`. To disable execution on the trailing edge, ditto.\nexport default function throttle(func, wait, options) {\n var timeout, context, args, result;\n var previous = 0;\n if (!options) options = {};\n\n var later = function() {\n previous = options.leading === false ? 0 : now();\n timeout = null;\n result = func.apply(context, args);\n if (!timeout) context = args = null;\n };\n\n var throttled = function() {\n var _now = now();\n if (!previous && options.leading === false) previous = _now;\n var remaining = wait - (_now - previous);\n context = this;\n args = arguments;\n if (remaining <= 0 || remaining > wait) {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n previous = _now;\n result = func.apply(context, args);\n if (!timeout) context = args = null;\n } else if (!timeout && options.trailing !== false) {\n timeout = setTimeout(later, remaining);\n }\n return result;\n };\n\n throttled.cancel = function() {\n clearTimeout(timeout);\n previous = 0;\n timeout = context = args = null;\n };\n\n return throttled;\n}\n","import restArguments from './restArguments.js';\nimport delay from './delay.js';\n\n// When a sequence of calls of the returned function ends, the argument\n// function is triggered. The end of a sequence is defined by the `wait`\n// parameter. If `immediate` is passed, the argument function will be\n// triggered at the beginning of the sequence instead of at the end.\nexport default function debounce(func, wait, immediate) {\n var timeout, result;\n\n var later = function(context, args) {\n timeout = null;\n if (args) result = func.apply(context, args);\n };\n\n var debounced = restArguments(function(args) {\n if (timeout) clearTimeout(timeout);\n if (immediate) {\n var callNow = !timeout;\n timeout = setTimeout(later, wait);\n if (callNow) result = func.apply(this, args);\n } else {\n timeout = delay(later, wait, this, args);\n }\n\n return result;\n });\n\n debounced.cancel = function() {\n clearTimeout(timeout);\n timeout = null;\n };\n\n return debounced;\n}\n","import partial from './partial.js';\n\n// Returns the first function passed as an argument to the second,\n// allowing you to adjust arguments, run code before and after, and\n// conditionally execute the original function.\nexport default function wrap(func, wrapper) {\n return partial(wrapper, func);\n}\n","// Returns a negated version of the passed-in predicate.\nexport default function negate(predicate) {\n return function() {\n return !predicate.apply(this, arguments);\n };\n}\n","// Returns a function that is the composition of a list of functions, each\n// consuming the return value of the function that follows.\nexport default function compose() {\n var args = arguments;\n var start = args.length - 1;\n return function() {\n var i = start;\n var result = args[start].apply(this, arguments);\n while (i--) result = args[i].call(this, result);\n return result;\n };\n}\n","// Returns a function that will only be executed on and after the Nth call.\nexport default function after(times, func) {\n return function() {\n if (--times < 1) {\n return func.apply(this, arguments);\n }\n };\n}\n","// Returns a function that will only be executed up to (but not including) the\n// Nth call.\nexport default function before(times, func) {\n var memo;\n return function() {\n if (--times > 0) {\n memo = func.apply(this, arguments);\n }\n if (times <= 1) func = null;\n return memo;\n };\n}\n","import partial from './partial.js';\nimport before from './before.js';\n\n// Returns a function that will be executed at most one time, no matter how\n// often you call it. Useful for lazy initialization.\nexport default partial(before, 2);\n","import cb from './_cb.js';\nimport keys from './keys.js';\n\n// Returns the first key on an object that passes a truth test.\nexport default function findKey(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = keys(obj), key;\n for (var i = 0, length = _keys.length; i < length; i++) {\n key = _keys[i];\n if (predicate(obj[key], key, obj)) return key;\n }\n}\n","import cb from './_cb.js';\nimport getLength from './_getLength.js';\n\n// Internal function to generate `_.findIndex` and `_.findLastIndex`.\nexport default function createPredicateIndexFinder(dir) {\n return function(array, predicate, context) {\n predicate = cb(predicate, context);\n var length = getLength(array);\n var index = dir > 0 ? 0 : length - 1;\n for (; index >= 0 && index < length; index += dir) {\n if (predicate(array[index], index, array)) return index;\n }\n return -1;\n };\n}\n","import createPredicateIndexFinder from './_createPredicateIndexFinder.js';\n\n// Returns the first index on an array-like that passes a truth test.\nexport default createPredicateIndexFinder(1);\n","import createPredicateIndexFinder from './_createPredicateIndexFinder.js';\n\n// Returns the last index on an array-like that passes a truth test.\nexport default createPredicateIndexFinder(-1);\n","import cb from './_cb.js';\nimport getLength from './_getLength.js';\n\n// Use a comparator function to figure out the smallest index at which\n// an object should be inserted so as to maintain order. Uses binary search.\nexport default function sortedIndex(array, obj, iteratee, context) {\n iteratee = cb(iteratee, context, 1);\n var value = iteratee(obj);\n var low = 0, high = getLength(array);\n while (low < high) {\n var mid = Math.floor((low + high) / 2);\n if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;\n }\n return low;\n}\n","import getLength from './_getLength.js';\nimport { slice } from './_setup.js';\nimport isNaN from './isNaN.js';\n\n// Internal function to generate the `_.indexOf` and `_.lastIndexOf` functions.\nexport default function createIndexFinder(dir, predicateFind, sortedIndex) {\n return function(array, item, idx) {\n var i = 0, length = getLength(array);\n if (typeof idx == 'number') {\n if (dir > 0) {\n i = idx >= 0 ? idx : Math.max(idx + length, i);\n } else {\n length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;\n }\n } else if (sortedIndex && idx && length) {\n idx = sortedIndex(array, item);\n return array[idx] === item ? idx : -1;\n }\n if (item !== item) {\n idx = predicateFind(slice.call(array, i, length), isNaN);\n return idx >= 0 ? idx + i : -1;\n }\n for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {\n if (array[idx] === item) return idx;\n }\n return -1;\n };\n}\n","import sortedIndex from './sortedIndex.js';\nimport findIndex from './findIndex.js';\nimport createIndexFinder from './_createIndexFinder.js';\n\n// Return the position of the first occurrence of an item in an array,\n// or -1 if the item is not included in the array.\n// If the array is large and already in sort order, pass `true`\n// for **isSorted** to use binary search.\nexport default createIndexFinder(1, findIndex, sortedIndex);\n","import findLastIndex from './findLastIndex.js';\nimport createIndexFinder from './_createIndexFinder.js';\n\n// Return the position of the last occurrence of an item in an array,\n// or -1 if the item is not included in the array.\nexport default createIndexFinder(-1, findLastIndex);\n","import isArrayLike from './_isArrayLike.js';\nimport findIndex from './findIndex.js';\nimport findKey from './findKey.js';\n\n// Return the first value which passes a truth test.\nexport default function find(obj, predicate, context) {\n var keyFinder = isArrayLike(obj) ? findIndex : findKey;\n var key = keyFinder(obj, predicate, context);\n if (key !== void 0 && key !== -1) return obj[key];\n}\n","import find from './find.js';\nimport matcher from './matcher.js';\n\n// Convenience version of a common use case of `_.find`: getting the first\n// object containing specific `key:value` pairs.\nexport default function findWhere(obj, attrs) {\n return find(obj, matcher(attrs));\n}\n","import optimizeCb from './_optimizeCb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// The cornerstone for collection functions, an `each`\n// implementation, aka `forEach`.\n// Handles raw objects in addition to array-likes. Treats all\n// sparse array-likes as if they were dense.\nexport default function each(obj, iteratee, context) {\n iteratee = optimizeCb(iteratee, context);\n var i, length;\n if (isArrayLike(obj)) {\n for (i = 0, length = obj.length; i < length; i++) {\n iteratee(obj[i], i, obj);\n }\n } else {\n var _keys = keys(obj);\n for (i = 0, length = _keys.length; i < length; i++) {\n iteratee(obj[_keys[i]], _keys[i], obj);\n }\n }\n return obj;\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Return the results of applying the iteratee to each element.\nexport default function map(obj, iteratee, context) {\n iteratee = cb(iteratee, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length,\n results = Array(length);\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n results[index] = iteratee(obj[currentKey], currentKey, obj);\n }\n return results;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\nimport optimizeCb from './_optimizeCb.js';\n\n// Internal helper to create a reducing function, iterating left or right.\nexport default function createReduce(dir) {\n // Wrap code that reassigns argument variables in a separate function than\n // the one that accesses `arguments.length` to avoid a perf hit. (#1991)\n var reducer = function(obj, iteratee, memo, initial) {\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length,\n index = dir > 0 ? 0 : length - 1;\n if (!initial) {\n memo = obj[_keys ? _keys[index] : index];\n index += dir;\n }\n for (; index >= 0 && index < length; index += dir) {\n var currentKey = _keys ? _keys[index] : index;\n memo = iteratee(memo, obj[currentKey], currentKey, obj);\n }\n return memo;\n };\n\n return function(obj, iteratee, memo, context) {\n var initial = arguments.length >= 3;\n return reducer(obj, optimizeCb(iteratee, context, 4), memo, initial);\n };\n}\n","import createReduce from './_createReduce.js';\n\n// **Reduce** builds up a single result from a list of values, aka `inject`,\n// or `foldl`.\nexport default createReduce(1);\n","import createReduce from './_createReduce.js';\n\n// The right-associative version of reduce, also known as `foldr`.\nexport default createReduce(-1);\n","import cb from './_cb.js';\nimport each from './each.js';\n\n// Return all the elements that pass a truth test.\nexport default function filter(obj, predicate, context) {\n var results = [];\n predicate = cb(predicate, context);\n each(obj, function(value, index, list) {\n if (predicate(value, index, list)) results.push(value);\n });\n return results;\n}\n","import filter from './filter.js';\nimport negate from './negate.js';\nimport cb from './_cb.js';\n\n// Return all the elements for which a truth test fails.\nexport default function reject(obj, predicate, context) {\n return filter(obj, negate(cb(predicate)), context);\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Determine whether all of the elements pass a truth test.\nexport default function every(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length;\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n if (!predicate(obj[currentKey], currentKey, obj)) return false;\n }\n return true;\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Determine if at least one element in the object passes a truth test.\nexport default function some(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length;\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n if (predicate(obj[currentKey], currentKey, obj)) return true;\n }\n return false;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport indexOf from './indexOf.js';\n\n// Determine if the array or object contains a given item (using `===`).\nexport default function contains(obj, item, fromIndex, guard) {\n if (!isArrayLike(obj)) obj = values(obj);\n if (typeof fromIndex != 'number' || guard) fromIndex = 0;\n return indexOf(obj, item, fromIndex) >= 0;\n}\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport isArray from './isArray.js';\nimport map from './map.js';\nimport deepGet from './_deepGet.js';\n\n// Invoke a method (with arguments) on every item in a collection.\nexport default restArguments(function(obj, path, args) {\n var contextPath, func;\n if (isFunction(path)) {\n func = path;\n } else if (isArray(path)) {\n contextPath = path.slice(0, -1);\n path = path[path.length - 1];\n }\n return map(obj, function(context) {\n var method = func;\n if (!method) {\n if (contextPath && contextPath.length) {\n context = deepGet(context, contextPath);\n }\n if (context == null) return void 0;\n method = context[path];\n }\n return method == null ? method : method.apply(context, args);\n });\n});\n","import map from './map.js';\nimport property from './property.js';\n\n// Convenience version of a common use case of `_.map`: fetching a property.\nexport default function pluck(obj, key) {\n return map(obj, property(key));\n}\n","import filter from './filter.js';\nimport matcher from './matcher.js';\n\n// Convenience version of a common use case of `_.filter`: selecting only\n// objects containing specific `key:value` pairs.\nexport default function where(obj, attrs) {\n return filter(obj, matcher(attrs));\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport cb from './_cb.js';\nimport each from './each.js';\n\n// Return the maximum element (or element-based computation).\nexport default function max(obj, iteratee, context) {\n var result = -Infinity, lastComputed = -Infinity,\n value, computed;\n if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) {\n obj = isArrayLike(obj) ? obj : values(obj);\n for (var i = 0, length = obj.length; i < length; i++) {\n value = obj[i];\n if (value != null && value > result) {\n result = value;\n }\n }\n } else {\n iteratee = cb(iteratee, context);\n each(obj, function(v, index, list) {\n computed = iteratee(v, index, list);\n if (computed > lastComputed || computed === -Infinity && result === -Infinity) {\n result = v;\n lastComputed = computed;\n }\n });\n }\n return result;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport cb from './_cb.js';\nimport each from './each.js';\n\n// Return the minimum element (or element-based computation).\nexport default function min(obj, iteratee, context) {\n var result = Infinity, lastComputed = Infinity,\n value, computed;\n if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) {\n obj = isArrayLike(obj) ? obj : values(obj);\n for (var i = 0, length = obj.length; i < length; i++) {\n value = obj[i];\n if (value != null && value < result) {\n result = value;\n }\n }\n } else {\n iteratee = cb(iteratee, context);\n each(obj, function(v, index, list) {\n computed = iteratee(v, index, list);\n if (computed < lastComputed || computed === Infinity && result === Infinity) {\n result = v;\n lastComputed = computed;\n }\n });\n }\n return result;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport clone from './clone.js';\nimport values from './values.js';\nimport getLength from './_getLength.js';\nimport random from './random.js';\n\n// Sample **n** random values from a collection using the modern version of the\n// [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher–Yates_shuffle).\n// If **n** is not specified, returns a single random element.\n// The internal `guard` argument allows it to work with `_.map`.\nexport default function sample(obj, n, guard) {\n if (n == null || guard) {\n if (!isArrayLike(obj)) obj = values(obj);\n return obj[random(obj.length - 1)];\n }\n var sample = isArrayLike(obj) ? clone(obj) : values(obj);\n var length = getLength(sample);\n n = Math.max(Math.min(n, length), 0);\n var last = length - 1;\n for (var index = 0; index < n; index++) {\n var rand = random(index, last);\n var temp = sample[index];\n sample[index] = sample[rand];\n sample[rand] = temp;\n }\n return sample.slice(0, n);\n}\n","import sample from './sample.js';\n\n// Shuffle a collection.\nexport default function shuffle(obj) {\n return sample(obj, Infinity);\n}\n","import cb from './_cb.js';\nimport pluck from './pluck.js';\nimport map from './map.js';\n\n// Sort the object's values by a criterion produced by an iteratee.\nexport default function sortBy(obj, iteratee, context) {\n var index = 0;\n iteratee = cb(iteratee, context);\n return pluck(map(obj, function(value, key, list) {\n return {\n value: value,\n index: index++,\n criteria: iteratee(value, key, list)\n };\n }).sort(function(left, right) {\n var a = left.criteria;\n var b = right.criteria;\n if (a !== b) {\n if (a > b || a === void 0) return 1;\n if (a < b || b === void 0) return -1;\n }\n return left.index - right.index;\n }), 'value');\n}\n","import cb from './_cb.js';\nimport each from './each.js';\n\n// An internal function used for aggregate \"group by\" operations.\nexport default function group(behavior, partition) {\n return function(obj, iteratee, context) {\n var result = partition ? [[], []] : {};\n iteratee = cb(iteratee, context);\n each(obj, function(value, index) {\n var key = iteratee(value, index, obj);\n behavior(result, value, key);\n });\n return result;\n };\n}\n","import group from './_group.js';\nimport has from './_has.js';\n\n// Groups the object's values by a criterion. Pass either a string attribute\n// to group by, or a function that returns the criterion.\nexport default group(function(result, value, key) {\n if (has(result, key)) result[key].push(value); else result[key] = [value];\n});\n","import group from './_group.js';\n\n// Indexes the object's values by a criterion, similar to `_.groupBy`, but for\n// when you know that your index values will be unique.\nexport default group(function(result, value, key) {\n result[key] = value;\n});\n","import group from './_group.js';\nimport has from './_has.js';\n\n// Counts instances of an object that group by a certain criterion. Pass\n// either a string attribute to count by, or a function that returns the\n// criterion.\nexport default group(function(result, value, key) {\n if (has(result, key)) result[key]++; else result[key] = 1;\n});\n","import group from './_group.js';\n\n// Split a collection into two arrays: one whose elements all pass the given\n// truth test, and one whose elements all do not pass the truth test.\nexport default group(function(result, value, pass) {\n result[pass ? 0 : 1].push(value);\n}, true);\n","import isArray from './isArray.js';\nimport { slice } from './_setup.js';\nimport isString from './isString.js';\nimport isArrayLike from './_isArrayLike.js';\nimport map from './map.js';\nimport identity from './identity.js';\nimport values from './values.js';\n\n// Safely create a real, live array from anything iterable.\nvar reStrSymbol = /[^\\ud800-\\udfff]|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\ud800-\\udfff]/g;\nexport default function toArray(obj) {\n if (!obj) return [];\n if (isArray(obj)) return slice.call(obj);\n if (isString(obj)) {\n // Keep surrogate pair characters together.\n return obj.match(reStrSymbol);\n }\n if (isArrayLike(obj)) return map(obj, identity);\n return values(obj);\n}\n","import isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Return the number of elements in a collection.\nexport default function size(obj) {\n if (obj == null) return 0;\n return isArrayLike(obj) ? obj.length : keys(obj).length;\n}\n","// Internal `_.pick` helper function to determine whether `key` is an enumerable\n// property name of `obj`.\nexport default function keyInObj(value, key, obj) {\n return key in obj;\n}\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport optimizeCb from './_optimizeCb.js';\nimport allKeys from './allKeys.js';\nimport keyInObj from './_keyInObj.js';\nimport flatten from './_flatten.js';\n\n// Return a copy of the object only containing the allowed properties.\nexport default restArguments(function(obj, keys) {\n var result = {}, iteratee = keys[0];\n if (obj == null) return result;\n if (isFunction(iteratee)) {\n if (keys.length > 1) iteratee = optimizeCb(iteratee, keys[1]);\n keys = allKeys(obj);\n } else {\n iteratee = keyInObj;\n keys = flatten(keys, false, false);\n obj = Object(obj);\n }\n for (var i = 0, length = keys.length; i < length; i++) {\n var key = keys[i];\n var value = obj[key];\n if (iteratee(value, key, obj)) result[key] = value;\n }\n return result;\n});\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport negate from './negate.js';\nimport map from './map.js';\nimport flatten from './_flatten.js';\nimport contains from './contains.js';\nimport pick from './pick.js';\n\n// Return a copy of the object without the disallowed properties.\nexport default restArguments(function(obj, keys) {\n var iteratee = keys[0], context;\n if (isFunction(iteratee)) {\n iteratee = negate(iteratee);\n if (keys.length > 1) context = keys[1];\n } else {\n keys = map(flatten(keys, false, false), String);\n iteratee = function(value, key) {\n return !contains(keys, key);\n };\n }\n return pick(obj, iteratee, context);\n});\n","import { slice } from './_setup.js';\n\n// Returns everything but the last entry of the array. Especially useful on\n// the arguments object. Passing **n** will return all the values in\n// the array, excluding the last N.\nexport default function initial(array, n, guard) {\n return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));\n}\n","import initial from './initial.js';\n\n// Get the first element of an array. Passing **n** will return the first N\n// values in the array. The **guard** check allows it to work with `_.map`.\nexport default function first(array, n, guard) {\n if (array == null || array.length < 1) return n == null || guard ? void 0 : [];\n if (n == null || guard) return array[0];\n return initial(array, array.length - n);\n}\n","import { slice } from './_setup.js';\n\n// Returns everything but the first entry of the `array`. Especially useful on\n// the `arguments` object. Passing an **n** will return the rest N values in the\n// `array`.\nexport default function rest(array, n, guard) {\n return slice.call(array, n == null || guard ? 1 : n);\n}\n","import rest from './rest.js';\n\n// Get the last element of an array. Passing **n** will return the last N\n// values in the array.\nexport default function last(array, n, guard) {\n if (array == null || array.length < 1) return n == null || guard ? void 0 : [];\n if (n == null || guard) return array[array.length - 1];\n return rest(array, Math.max(0, array.length - n));\n}\n","import filter from './filter.js';\n\n// Trim out all falsy values from an array.\nexport default function compact(array) {\n return filter(array, Boolean);\n}\n","import _flatten from './_flatten.js';\n\n// Flatten out an array, either recursively (by default), or up to `depth`.\n// Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively.\nexport default function flatten(array, depth) {\n return _flatten(array, depth, false);\n}\n","import restArguments from './restArguments.js';\nimport flatten from './_flatten.js';\nimport filter from './filter.js';\nimport contains from './contains.js';\n\n// Take the difference between one array and a number of other arrays.\n// Only the elements present in just the first array will remain.\nexport default restArguments(function(array, rest) {\n rest = flatten(rest, true, true);\n return filter(array, function(value){\n return !contains(rest, value);\n });\n});\n","import restArguments from './restArguments.js';\nimport difference from './difference.js';\n\n// Return a version of the array that does not contain the specified value(s).\nexport default restArguments(function(array, otherArrays) {\n return difference(array, otherArrays);\n});\n","import isBoolean from './isBoolean.js';\nimport cb from './_cb.js';\nimport getLength from './_getLength.js';\nimport contains from './contains.js';\n\n// Produce a duplicate-free version of the array. If the array has already\n// been sorted, you have the option of using a faster algorithm.\n// The faster algorithm will not work with an iteratee if the iteratee\n// is not a one-to-one function, so providing an iteratee will disable\n// the faster algorithm.\nexport default function uniq(array, isSorted, iteratee, context) {\n if (!isBoolean(isSorted)) {\n context = iteratee;\n iteratee = isSorted;\n isSorted = false;\n }\n if (iteratee != null) iteratee = cb(iteratee, context);\n var result = [];\n var seen = [];\n for (var i = 0, length = getLength(array); i < length; i++) {\n var value = array[i],\n computed = iteratee ? iteratee(value, i, array) : value;\n if (isSorted && !iteratee) {\n if (!i || seen !== computed) result.push(value);\n seen = computed;\n } else if (iteratee) {\n if (!contains(seen, computed)) {\n seen.push(computed);\n result.push(value);\n }\n } else if (!contains(result, value)) {\n result.push(value);\n }\n }\n return result;\n}\n","import restArguments from './restArguments.js';\nimport uniq from './uniq.js';\nimport flatten from './_flatten.js';\n\n// Produce an array that contains the union: each distinct element from all of\n// the passed-in arrays.\nexport default restArguments(function(arrays) {\n return uniq(flatten(arrays, true, true));\n});\n","import getLength from './_getLength.js';\nimport contains from './contains.js';\n\n// Produce an array that contains every item shared between all the\n// passed-in arrays.\nexport default function intersection(array) {\n var result = [];\n var argsLength = arguments.length;\n for (var i = 0, length = getLength(array); i < length; i++) {\n var item = array[i];\n if (contains(result, item)) continue;\n var j;\n for (j = 1; j < argsLength; j++) {\n if (!contains(arguments[j], item)) break;\n }\n if (j === argsLength) result.push(item);\n }\n return result;\n}\n","import max from './max.js';\nimport getLength from './_getLength.js';\nimport pluck from './pluck.js';\n\n// Complement of zip. Unzip accepts an array of arrays and groups\n// each array's elements on shared indices.\nexport default function unzip(array) {\n var length = array && max(array, getLength).length || 0;\n var result = Array(length);\n\n for (var index = 0; index < length; index++) {\n result[index] = pluck(array, index);\n }\n return result;\n}\n","import restArguments from './restArguments.js';\nimport unzip from './unzip.js';\n\n// Zip together multiple lists into a single array -- elements that share\n// an index go together.\nexport default restArguments(unzip);\n","import getLength from './_getLength.js';\n\n// Converts lists into objects. Pass either a single array of `[key, value]`\n// pairs, or two parallel arrays of the same length -- one of keys, and one of\n// the corresponding values. Passing by pairs is the reverse of `_.pairs`.\nexport default function object(list, values) {\n var result = {};\n for (var i = 0, length = getLength(list); i < length; i++) {\n if (values) {\n result[list[i]] = values[i];\n } else {\n result[list[i][0]] = list[i][1];\n }\n }\n return result;\n}\n","// Generate an integer Array containing an arithmetic progression. A port of\n// the native Python `range()` function. See\n// [the Python documentation](https://docs.python.org/library/functions.html#range).\nexport default function range(start, stop, step) {\n if (stop == null) {\n stop = start || 0;\n start = 0;\n }\n if (!step) {\n step = stop < start ? -1 : 1;\n }\n\n var length = Math.max(Math.ceil((stop - start) / step), 0);\n var range = Array(length);\n\n for (var idx = 0; idx < length; idx++, start += step) {\n range[idx] = start;\n }\n\n return range;\n}\n","import { slice } from './_setup.js';\n\n// Chunk a single array into multiple arrays, each containing `count` or fewer\n// items.\nexport default function chunk(array, count) {\n if (count == null || count < 1) return [];\n var result = [];\n var i = 0, length = array.length;\n while (i < length) {\n result.push(slice.call(array, i, i += count));\n }\n return result;\n}\n","import _ from './underscore.js';\n\n// Helper function to continue chaining intermediate results.\nexport default function chainResult(instance, obj) {\n return instance._chain ? _(obj).chain() : obj;\n}\n","import _ from './underscore.js';\nimport each from './each.js';\nimport functions from './functions.js';\nimport { push } from './_setup.js';\nimport chainResult from './_chainResult.js';\n\n// Add your own custom functions to the Underscore object.\nexport default function mixin(obj) {\n each(functions(obj), function(name) {\n var func = _[name] = obj[name];\n _.prototype[name] = function() {\n var args = [this._wrapped];\n push.apply(args, arguments);\n return chainResult(this, func.apply(_, args));\n };\n });\n return _;\n}\n","import _ from './underscore.js';\nimport each from './each.js';\nimport { ArrayProto } from './_setup.js';\nimport chainResult from './_chainResult.js';\n\n// Add all mutator `Array` functions to the wrapper.\neach(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {\n var method = ArrayProto[name];\n _.prototype[name] = function() {\n var obj = this._wrapped;\n if (obj != null) {\n method.apply(obj, arguments);\n if ((name === 'shift' || name === 'splice') && obj.length === 0) {\n delete obj[0];\n }\n }\n return chainResult(this, obj);\n };\n});\n\n// Add all accessor `Array` functions to the wrapper.\neach(['concat', 'join', 'slice'], function(name) {\n var method = ArrayProto[name];\n _.prototype[name] = function() {\n var obj = this._wrapped;\n if (obj != null) obj = method.apply(obj, arguments);\n return chainResult(this, obj);\n };\n});\n\nexport default _;\n","// Default Export\n// ==============\n// In this module, we mix our bundled exports into the `_` object and export\n// the result. This is analogous to setting `module.exports = _` in CommonJS.\n// Hence, this module is also the entry point of our UMD bundle and the package\n// entry point for CommonJS and AMD users. In other words, this is (the source\n// of) the module you are interfacing with when you do any of the following:\n//\n// ```js\n// // CommonJS\n// var _ = require('underscore');\n//\n// // AMD\n// define(['underscore'], function(_) {...});\n//\n// // UMD in the browser\n// // _ is available as a global variable\n// ```\nimport * as allExports from './index.js';\nimport { mixin } from './index.js';\n\n// Add all of the Underscore functions to the wrapper object.\nvar _ = mixin(allExports);\n// Legacy Node.js API.\n_._ = _;\n// Export the Underscore API.\nexport default _;\n"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/jquery/dist/jquery.js","webpack:///./node_modules/underscore/modules/_setup.js","webpack:///./node_modules/escape-html/index.js","webpack:///(webpack)/buildin/global.js","webpack:///./core/src/files/client.js","webpack:///./node_modules/underscore/modules/restArguments.js","webpack:///./node_modules/underscore/modules/isObject.js","webpack:///./node_modules/underscore/modules/isNull.js","webpack:///./node_modules/underscore/modules/isUndefined.js","webpack:///./node_modules/underscore/modules/isBoolean.js","webpack:///./node_modules/underscore/modules/isElement.js","webpack:///./node_modules/underscore/modules/_tagTester.js","webpack:///./node_modules/underscore/modules/isString.js","webpack:///./node_modules/underscore/modules/isNumber.js","webpack:///./node_modules/underscore/modules/isDate.js","webpack:///./node_modules/underscore/modules/isRegExp.js","webpack:///./node_modules/underscore/modules/isError.js","webpack:///./node_modules/underscore/modules/isSymbol.js","webpack:///./node_modules/underscore/modules/isMap.js","webpack:///./node_modules/underscore/modules/isWeakMap.js","webpack:///./node_modules/underscore/modules/isSet.js","webpack:///./node_modules/underscore/modules/isWeakSet.js","webpack:///./node_modules/underscore/modules/isArrayBuffer.js","webpack:///./node_modules/underscore/modules/isDataView.js","webpack:///./node_modules/underscore/modules/isArray.js","webpack:///./node_modules/underscore/modules/isFunction.js","webpack:///./node_modules/underscore/modules/_has.js","webpack:///./node_modules/underscore/modules/isArguments.js","webpack:///./node_modules/underscore/modules/isFinite.js","webpack:///./node_modules/underscore/modules/isNaN.js","webpack:///./node_modules/underscore/modules/constant.js","webpack:///./node_modules/underscore/modules/_createSizePropertyCheck.js","webpack:///./node_modules/underscore/modules/_shallowProperty.js","webpack:///./node_modules/underscore/modules/_getByteLength.js","webpack:///./node_modules/underscore/modules/_isBufferLike.js","webpack:///./node_modules/underscore/modules/isTypedArray.js","webpack:///./node_modules/underscore/modules/_getLength.js","webpack:///./node_modules/underscore/modules/_isArrayLike.js","webpack:///./node_modules/underscore/modules/_collectNonEnumProps.js","webpack:///./node_modules/underscore/modules/keys.js","webpack:///./node_modules/underscore/modules/isEmpty.js","webpack:///./node_modules/underscore/modules/isMatch.js","webpack:///./node_modules/underscore/modules/underscore.js","webpack:///./node_modules/underscore/modules/isEqual.js","webpack:///./node_modules/underscore/modules/allKeys.js","webpack:///./node_modules/underscore/modules/values.js","webpack:///./node_modules/underscore/modules/pairs.js","webpack:///./node_modules/underscore/modules/invert.js","webpack:///./node_modules/underscore/modules/functions.js","webpack:///./node_modules/underscore/modules/_createAssigner.js","webpack:///./node_modules/underscore/modules/extend.js","webpack:///./node_modules/underscore/modules/extendOwn.js","webpack:///./node_modules/underscore/modules/defaults.js","webpack:///./node_modules/underscore/modules/_baseCreate.js","webpack:///./node_modules/underscore/modules/create.js","webpack:///./node_modules/underscore/modules/clone.js","webpack:///./node_modules/underscore/modules/tap.js","webpack:///./node_modules/underscore/modules/has.js","webpack:///./node_modules/underscore/modules/identity.js","webpack:///./node_modules/underscore/modules/matcher.js","webpack:///./node_modules/underscore/modules/_deepGet.js","webpack:///./node_modules/underscore/modules/property.js","webpack:///./node_modules/underscore/modules/_optimizeCb.js","webpack:///./node_modules/underscore/modules/_baseIteratee.js","webpack:///./node_modules/underscore/modules/iteratee.js","webpack:///./node_modules/underscore/modules/_cb.js","webpack:///./node_modules/underscore/modules/mapObject.js","webpack:///./node_modules/underscore/modules/noop.js","webpack:///./node_modules/underscore/modules/propertyOf.js","webpack:///./node_modules/underscore/modules/times.js","webpack:///./node_modules/underscore/modules/random.js","webpack:///./node_modules/underscore/modules/now.js","webpack:///./node_modules/underscore/modules/_createEscaper.js","webpack:///./node_modules/underscore/modules/_escapeMap.js","webpack:///./node_modules/underscore/modules/escape.js","webpack:///./node_modules/underscore/modules/unescape.js","webpack:///./node_modules/underscore/modules/_unescapeMap.js","webpack:///./node_modules/underscore/modules/templateSettings.js","webpack:///./node_modules/underscore/modules/template.js","webpack:///./node_modules/underscore/modules/result.js","webpack:///./node_modules/underscore/modules/uniqueId.js","webpack:///./node_modules/underscore/modules/chain.js","webpack:///./node_modules/underscore/modules/_executeBound.js","webpack:///./node_modules/underscore/modules/partial.js","webpack:///./node_modules/underscore/modules/bind.js","webpack:///./node_modules/underscore/modules/_flatten.js","webpack:///./node_modules/underscore/modules/bindAll.js","webpack:///./node_modules/underscore/modules/memoize.js","webpack:///./node_modules/underscore/modules/delay.js","webpack:///./node_modules/underscore/modules/defer.js","webpack:///./node_modules/underscore/modules/throttle.js","webpack:///./node_modules/underscore/modules/debounce.js","webpack:///./node_modules/underscore/modules/wrap.js","webpack:///./node_modules/underscore/modules/negate.js","webpack:///./node_modules/underscore/modules/compose.js","webpack:///./node_modules/underscore/modules/after.js","webpack:///./node_modules/underscore/modules/before.js","webpack:///./node_modules/underscore/modules/once.js","webpack:///./node_modules/underscore/modules/findKey.js","webpack:///./node_modules/underscore/modules/_createPredicateIndexFinder.js","webpack:///./node_modules/underscore/modules/findIndex.js","webpack:///./node_modules/underscore/modules/findLastIndex.js","webpack:///./node_modules/underscore/modules/sortedIndex.js","webpack:///./node_modules/underscore/modules/_createIndexFinder.js","webpack:///./node_modules/underscore/modules/indexOf.js","webpack:///./node_modules/underscore/modules/lastIndexOf.js","webpack:///./node_modules/underscore/modules/find.js","webpack:///./node_modules/underscore/modules/findWhere.js","webpack:///./node_modules/underscore/modules/each.js","webpack:///./node_modules/underscore/modules/map.js","webpack:///./node_modules/underscore/modules/_createReduce.js","webpack:///./node_modules/underscore/modules/reduce.js","webpack:///./node_modules/underscore/modules/reduceRight.js","webpack:///./node_modules/underscore/modules/filter.js","webpack:///./node_modules/underscore/modules/reject.js","webpack:///./node_modules/underscore/modules/every.js","webpack:///./node_modules/underscore/modules/some.js","webpack:///./node_modules/underscore/modules/contains.js","webpack:///./node_modules/underscore/modules/invoke.js","webpack:///./node_modules/underscore/modules/pluck.js","webpack:///./node_modules/underscore/modules/where.js","webpack:///./node_modules/underscore/modules/max.js","webpack:///./node_modules/underscore/modules/min.js","webpack:///./node_modules/underscore/modules/sample.js","webpack:///./node_modules/underscore/modules/shuffle.js","webpack:///./node_modules/underscore/modules/sortBy.js","webpack:///./node_modules/underscore/modules/_group.js","webpack:///./node_modules/underscore/modules/groupBy.js","webpack:///./node_modules/underscore/modules/indexBy.js","webpack:///./node_modules/underscore/modules/countBy.js","webpack:///./node_modules/underscore/modules/partition.js","webpack:///./node_modules/underscore/modules/toArray.js","webpack:///./node_modules/underscore/modules/size.js","webpack:///./node_modules/underscore/modules/_keyInObj.js","webpack:///./node_modules/underscore/modules/pick.js","webpack:///./node_modules/underscore/modules/omit.js","webpack:///./node_modules/underscore/modules/initial.js","webpack:///./node_modules/underscore/modules/first.js","webpack:///./node_modules/underscore/modules/rest.js","webpack:///./node_modules/underscore/modules/last.js","webpack:///./node_modules/underscore/modules/compact.js","webpack:///./node_modules/underscore/modules/flatten.js","webpack:///./node_modules/underscore/modules/difference.js","webpack:///./node_modules/underscore/modules/without.js","webpack:///./node_modules/underscore/modules/uniq.js","webpack:///./node_modules/underscore/modules/union.js","webpack:///./node_modules/underscore/modules/intersection.js","webpack:///./node_modules/underscore/modules/unzip.js","webpack:///./node_modules/underscore/modules/zip.js","webpack:///./node_modules/underscore/modules/object.js","webpack:///./node_modules/underscore/modules/range.js","webpack:///./node_modules/underscore/modules/chunk.js","webpack:///./node_modules/underscore/modules/_chainResult.js","webpack:///./node_modules/underscore/modules/mixin.js","webpack:///./node_modules/underscore/modules/underscore-array-methods.js","webpack:///./node_modules/underscore/modules/index-default.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","global","factory","window","this","noGlobal","arr","document","slice","concat","push","indexOf","class2type","toString","hasOwn","support","jQuery","selector","context","fn","init","rtrim","rmsPrefix","rdashAlpha","fcamelCase","all","letter","toUpperCase","isArrayLike","obj","length","type","isWindow","jquery","constructor","toArray","num","pushStack","elems","ret","merge","prevObject","each","callback","map","elem","apply","arguments","first","eq","last","len","j","end","sort","splice","extend","options","src","copy","copyIsArray","clone","target","deep","isFunction","isPlainObject","isArray","undefined","expando","Math","random","replace","isReady","error","msg","Error","noop","Array","isNumeric","realStringObj","parseFloat","nodeType","isEmptyObject","globalEval","code","script","indirect","eval","trim","createElement","text","head","appendChild","parentNode","removeChild","camelCase","string","nodeName","toLowerCase","makeArray","results","inArray","second","grep","invert","matches","callbackExpect","arg","guid","proxy","tmp","args","now","Date","iterator","split","Sizzle","Expr","getText","isXML","tokenize","compile","select","outermostContext","sortInput","hasDuplicate","setDocument","docElem","documentIsHTML","rbuggyQSA","rbuggyMatches","contains","preferredDoc","dirruns","done","classCache","createCache","tokenCache","compilerCache","sortOrder","a","b","pop","push_native","list","booleans","whitespace","identifier","attributes","pseudos","rwhitespace","RegExp","rcomma","rcombinators","rattributeQuotes","rpseudo","ridentifier","matchExpr","rinputs","rheader","rnative","rquickExpr","rsibling","rescape","runescape","funescape","_","escaped","escapedWhitespace","high","String","fromCharCode","unloadHandler","childNodes","e","els","seed","nid","nidselect","match","groups","newSelector","newContext","ownerDocument","exec","getElementById","id","getElementsByTagName","getElementsByClassName","qsa","test","getAttribute","setAttribute","toSelector","join","testContext","querySelectorAll","qsaError","removeAttribute","keys","cache","cacheLength","shift","markFunction","assert","div","addHandle","attrs","handler","attrHandle","siblingCheck","cur","diff","sourceIndex","nextSibling","createInputPseudo","createButtonPseudo","createPositionalPseudo","argument","matchIndexes","documentElement","node","hasCompare","parent","doc","defaultView","top","addEventListener","attachEvent","className","createComment","getById","getElementsByName","find","filter","attrId","getAttributeNode","tag","innerHTML","input","matchesSelector","webkitMatchesSelector","mozMatchesSelector","oMatchesSelector","msMatchesSelector","disconnectedMatch","compareDocumentPosition","adown","bup","compare","sortDetached","aup","ap","bp","unshift","expr","elements","attr","val","specified","uniqueSort","duplicates","detectDuplicates","sortStable","textContent","firstChild","nodeValue","selectors","createPseudo","relative","dir","preFilter","excess","unquoted","nodeNameSelector","pattern","operator","check","result","what","simple","forward","ofType","xml","uniqueCache","outerCache","nodeIndex","start","useCache","lastChild","uniqueID","pseudo","setFilters","idx","matched","matcher","unmatched","innerText","lang","elemLang","hash","location","activeElement","hasFocus","href","tabIndex","disabled","checked","selected","selectedIndex","radio","checkbox","file","password","image","submit","reset","tokens","addCombinator","combinator","base","checkNonElements","doneName","oldCache","newCache","elementMatcher","matchers","condense","newUnmatched","mapped","setMatcher","postFilter","postFinder","postSelector","temp","preMap","postMap","preexisting","contexts","multipleContexts","matcherIn","matcherOut","matcherFromTokens","checkContext","leadingRelative","implicitRelative","matchContext","matchAnyContext","filters","parseOnly","soFar","preFilters","cached","setMatchers","elementMatchers","bySet","byElement","superMatcher","outermost","matchedCount","setMatched","contextBackup","dirrunsUnique","matcherFromGroupMatchers","token","compiled","div1","defaultValue","unique","isXMLDoc","until","truncate","is","siblings","rneedsContext","needsContext","rsingleTag","risSimple","winnow","qualifier","not","self","rootjQuery","root","parseHTML","ready","rparentsprev","guaranteedUnique","children","contents","next","prev","sibling","has","targets","closest","pos","index","prevAll","add","addBack","parents","parentsUntil","nextAll","nextUntil","prevUntil","contentDocument","reverse","readyList","rnotwhite","completed","removeEventListener","Callbacks","flag","createOptions","firing","memory","fired","locked","queue","firingIndex","fire","once","stopOnFalse","remove","empty","disable","lock","fireWith","Deferred","func","tuples","state","promise","always","deferred","fail","then","fns","newDefer","tuple","returned","progress","notify","resolve","reject","pipe","stateString","when","subordinate","progressValues","progressContexts","resolveContexts","resolveValues","remaining","updateFunc","values","notifyWith","resolveWith","readyWait","holdReady","hold","wait","triggerHandler","off","readyState","doScroll","setTimeout","access","chainable","emptyGet","raw","bulk","acceptData","owner","Data","uid","register","initial","writable","configurable","set","data","prop","stored","camel","hasData","dataPriv","dataUser","rbrace","rmultiDash","dataAttr","parseJSON","removeData","_data","_removeData","camelKey","dequeue","startLength","hooks","_queueHooks","stop","setter","clearQueue","count","defer","pnum","source","rcssNum","cssExpand","isHidden","el","css","adjustCSS","valueParts","tween","adjusted","scale","maxIterations","currentValue","unit","cssNumber","initialInUnit","style","rcheckableType","rtagName","rscriptType","wrapMap","option","thead","col","tr","td","_default","getAll","setGlobalEval","refElements","optgroup","tbody","tfoot","colgroup","caption","th","rhtml","buildFragment","scripts","selection","ignored","wrap","fragment","createDocumentFragment","nodes","htmlPrefilter","createTextNode","checkClone","cloneNode","noCloneChecked","rkeyEvent","rmouseEvent","rtypenamespace","returnTrue","returnFalse","safeActiveElement","err","on","types","one","origFn","event","handleObjIn","eventHandle","events","handleObj","special","handlers","namespaces","origType","elemData","handle","triggered","dispatch","delegateType","bindType","namespace","delegateCount","setup","mappedTypes","origCount","teardown","removeEvent","fix","handlerQueue","delegateTarget","preDispatch","isPropagationStopped","currentTarget","isImmediatePropagationStopped","rnamespace","preventDefault","stopPropagation","postDispatch","sel","isNaN","button","props","fixHooks","keyHooks","original","which","charCode","keyCode","mouseHooks","eventDoc","body","pageX","clientX","scrollLeft","clientLeft","pageY","clientY","scrollTop","clientTop","originalEvent","fixHook","Event","load","noBubble","focus","trigger","blur","click","beforeunload","returnValue","isDefaultPrevented","defaultPrevented","timeStamp","isSimulated","stopImmediatePropagation","mouseenter","mouseleave","pointerenter","pointerleave","orig","related","relatedTarget","rxhtmlTag","rnoInnerhtml","rchecked","rscriptTypeMasked","rcleanScript","manipulationTarget","content","disableScript","restoreScript","cloneCopyEvent","dest","pdataOld","pdataCur","udataOld","udataCur","domManip","collection","hasScripts","iNoClone","html","_evalUrl","keepData","cleanData","dataAndEvents","deepDataAndEvents","srcElements","destElements","inPage","detach","append","prepend","insertBefore","before","after","replaceWith","replaceChild","appendTo","prependTo","insertAfter","replaceAll","insert","iframe","elemdisplay","HTML","BODY","actualDisplay","display","defaultDisplay","write","close","rmargin","rnumnonpx","getStyles","view","opener","getComputedStyle","swap","old","curCSS","computed","width","minWidth","maxWidth","getPropertyValue","pixelMarginRight","addGetHookIf","conditionFn","hookFn","pixelPositionVal","boxSizingReliableVal","pixelMarginRightVal","reliableMarginLeftVal","container","computeStyleTests","cssText","divStyle","marginLeft","marginRight","backgroundClip","clearCloneStyle","pixelPosition","boxSizingReliable","reliableMarginLeft","reliableMarginRight","marginDiv","rdisplayswap","cssShow","position","visibility","cssNormalTransform","letterSpacing","fontWeight","cssPrefixes","emptyStyle","vendorPropName","capName","setPositiveNumber","subtract","max","augmentWidthOrHeight","extra","isBorderBox","styles","getWidthOrHeight","valueIsBorderBox","offsetWidth","offsetHeight","showHide","show","hidden","Tween","easing","cssHooks","opacity","cssProps","origName","isFinite","getBoundingClientRect","left","margin","padding","border","prefix","suffix","expand","expanded","parts","hide","toggle","propHooks","run","percent","eased","duration","step","fx","linear","swing","cos","PI","fxNow","timerId","rfxtypes","rrun","createFxNow","genFx","includeWidth","height","createTween","animation","Animation","tweeners","properties","stopped","prefilters","tick","currentTime","startTime","tweens","opts","specialEasing","originalProperties","originalOptions","gotoEnd","rejectWith","propFilter","timer","anim","complete","tweener","oldfire","dataShow","unqueued","overflow","overflowX","overflowY","prefilter","speed","opt","speeds","fadeTo","to","animate","optall","doAnimation","finish","stopQueue","timers","cssFn","slideDown","slideUp","slideToggle","fadeIn","fadeOut","fadeToggle","interval","setInterval","clearInterval","slow","fast","delay","time","timeout","clearTimeout","checkOn","optSelected","optDisabled","radioValue","boolHook","removeAttr","nType","attrHooks","bool","propName","attrNames","propFix","rfocusable","rclickable","removeProp","tabindex","parseInt","rclass","getClass","addClass","classes","curValue","clazz","finalValue","removeClass","toggleClass","stateVal","classNames","hasClass","rreturn","rspaces","valHooks","optionSet","rfocusMorph","onlyHandlers","bubbleType","ontype","eventPath","isTrigger","parentWindow","simulate","hover","fnOver","fnOut","focusin","attaches","nonce","rquery","JSON","parse","parseXML","DOMParser","parseFromString","rhash","rts","rheaders","rnoContent","rprotocol","transports","allTypes","originAnchor","addToPrefiltersOrTransports","structure","dataTypeExpression","dataType","dataTypes","inspectPrefiltersOrTransports","jqXHR","inspected","seekingTransport","inspect","prefilterOrFactory","dataTypeOrTransport","ajaxExtend","flatOptions","ajaxSettings","active","lastModified","etag","url","isLocal","protocol","processData","async","contentType","accepts","json","responseFields","converters","ajaxSetup","settings","ajaxPrefilter","ajaxTransport","ajax","transport","cacheURL","responseHeadersString","responseHeaders","timeoutTimer","urlAnchor","fireGlobals","callbackContext","globalEventContext","completeDeferred","statusCode","requestHeaders","requestHeadersNames","strAbort","getResponseHeader","getAllResponseHeaders","setRequestHeader","lname","overrideMimeType","mimeType","status","abort","statusText","finalText","success","method","crossDomain","host","param","traditional","hasContent","ifModified","headers","beforeSend","send","nativeStatusText","responses","isSuccess","response","modified","ct","finalDataType","firstDataType","ajaxHandleResponses","conv2","current","conv","dataFilter","throws","ajaxConvert","getJSON","getScript","wrapAll","firstElementChild","wrapInner","unwrap","visible","getClientRects","r20","rbracket","rCRLF","rsubmitterTypes","rsubmittable","buildParams","v","encodeURIComponent","serialize","serializeArray","xhr","XMLHttpRequest","xhrSuccessStatus","0","1223","xhrSupported","cors","errorCallback","open","username","xhrFields","onload","onerror","onabort","onreadystatechange","responseType","responseText","binary","charset","scriptCharset","evt","oldCallbacks","rjsonp","jsonp","jsonpCallback","originalSettings","callbackName","overwritten","responseContainer","jsonProp","keepScripts","parsed","_load","getWindow","params","animated","offset","setOffset","curPosition","curLeft","curCSSTop","curTop","curOffset","curCSSLeft","curElem","using","win","box","pageYOffset","pageXOffset","offsetParent","parentOffset","scrollTo","Height","Width","defaultExtra","funcName","unbind","delegate","undelegate","size","andSelf","_jQuery","_$","$","noConflict","w","VERSION","Function","ArrayProto","ObjProto","SymbolProto","supportsArrayBuffer","ArrayBuffer","nativeIsArray","nativeKeys","nativeCreate","nativeIsView","isView","_isNaN","_isFinite","hasEnumBug","propertyIsEnumerable","nonEnumerableProps","MAX_ARRAY_INDEX","pow","matchHtmlRegExp","escape","str","lastIndex","charCodeAt","substring","g","OC","FileInfo","Client","_root","charAt","substr","PROTOCOL_HTTP","useHTTPS","PROTOCOL_HTTPS","_host","_defaultHeaders","defaultHeaders","requestToken","_baseUrl","clientOptions","baseUrl","xmlNamespaces","userName","_client","dav","xhrProvider","_xhrProvider","_fileInfoParsers","NS_OWNCLOUD","NS_NEXTCLOUD","NS_DAV","NS_OCS","PROPERTY_GETLASTMODIFIED","PROPERTY_GETETAG","PROPERTY_GETCONTENTTYPE","PROPERTY_RESOURCETYPE","PROPERTY_INTERNAL_FILEID","PROPERTY_PERMISSIONS","PROPERTY_SIZE","PROPERTY_GETCONTENTLENGTH","PROPERTY_ISENCRYPTED","PROPERTY_SHARE_PERMISSIONS","PROPERTY_QUOTA_AVAILABLE_BYTES","_PROPFIND_PROPERTIES","oldOpen","registerXHRForErrorProcessing","_buildUrl","path","_buildPath","joinPaths","sections","_parseHeaders","headersString","headerRows","sepPos","headerName","headerValue","_parseEtag","_parseFileInfo","decodeURIComponent","propStat","dirname","basename","mtime","getTime","etagProp","isUndefined","sizeProp","hasPreviewProp","hasPreview","isEncryptedProp","isEncrypted","isFavouritedProp","isFavourited","mimetype","resType","xmlvalue","namespaceURI","permissions","PERMISSION_NONE","permissionProp","permString","mountType","PERMISSION_CREATE","PERMISSION_READ","PERMISSION_UPDATE","PERMISSION_DELETE","PERMISSION_SHARE","sharePermissionsProp","sharePermissions","mounTypeProp","quotaAvailableBytes","parserFunction","_parseResult","_isSuccessStatus","_getSabreException","responseXML","messages","getElementsByTagNameNS","exceptions","message","exception","getPropfindProperties","_propfindProperties","propDef","getFolderContents","propFind","includeParent","getFilteredFiles","systemTagIds","favorite","circlesIds","parseClarkNotation","escapeHTML","request","getFileInfo","getFileContents","putFileContents","overwrite","_simpleCall","createDirectory","move","destinationPath","allowOverwrite","Overwrite","addFileInfoParser","getClient","getUserName","getPassword","getBaseUrl","getHost","Files","_defaultClient","client","port","getPort","linkToRemoteBase","getCurrentUser","getProtocol","restArguments","startIndex","rest","isObject","isNull","isBoolean","isElement","tagTester","nodelist","Int8Array","isArguments","isSymbol","isNumber","constant","createSizePropertyCheck","getSizeProperty","sizeProperty","shallowProperty","typedArrayPattern","isDataView","collectNonEnumProps","emulatedSet","nonEnumIdx","proto","isEmpty","isString","isMatch","_keys","_wrapped","aStack","bStack","deepEq","valueOf","DataView","byteLength","getUint8","buffer","areArrays","aCtor","bCtor","isEqual","allKeys","pairs","functions","names","createAssigner","keysFunc","defaults","toJSON","baseCreate","Ctor","extendOwn","tap","interceptor","identity","deepGet","optimizeCb","argCount","accumulator","baseIteratee","Infinity","cb","iteratee","mapObject","currentKey","propertyOf","times","accum","min","floor","createEscaper","escaper","testRegexp","replaceRegexp","templateSettings","evaluate","interpolate","noMatch","escapes","escapeRegExp","escapeChar","oldSettings","render","variable","template","fallback","idCounter","uniqueId","chain","instance","_chain","executeBound","sourceFunc","boundFunc","callingContext","partial","boundArgs","placeholder","bound","TypeError","callArgs","flatten","depth","strict","output","hasher","memoize","address","throttle","previous","later","leading","throttled","_now","trailing","cancel","debounce","immediate","debounced","callNow","wrapper","negate","predicate","compose","memo","findKey","createPredicateIndexFinder","array","low","mid","createIndexFinder","predicateFind","sortedIndex","item","findIndex","findLastIndex","findWhere","createReduce","reducer","every","some","fromIndex","guard","contextPath","pluck","where","lastComputed","sample","rand","shuffle","sortBy","criteria","right","group","behavior","partition","pass","reStrSymbol","keyInObj","pick","compact","Boolean","otherArrays","difference","uniq","isSorted","seen","arrays","intersection","argsLength","unzip","range","ceil","chunk","chainResult","mixin"],"mappings":"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","file":"files_client.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 671);\n","/*!\n * jQuery JavaScript Library v2.2.4\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2016-05-20T17:23Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Support: Firefox 18+\n// Can't be in strict mode, several libs including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n//\"use strict\";\nvar arr = [];\n\nvar document = window.document;\n\nvar slice = arr.slice;\n\nvar concat = arr.concat;\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"2.2.4\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = jQuery.isArray( copy ) ) ) ) {\n\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray( src ) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject( src ) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type( obj ) === \"function\";\n\t},\n\n\tisArray: Array.isArray,\n\n\tisWindow: function( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\tvar realStringObj = obj && obj.toString();\n\t\treturn !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Not plain objects:\n\t\t// - Any object or value whose internal [[Class]] property is not \"[object Object]\"\n\t\t// - DOM nodes\n\t\t// - window\n\t\tif ( jQuery.type( obj ) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Not own constructor property must be Object\n\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call( obj, \"constructor\" ) &&\n\t\t\t\t!hasOwn.call( obj.constructor.prototype || {}, \"isPrototypeOf\" ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\n\t\t// Support: Android<4.0, iOS<6 (functionish RegExp)\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\tglobalEval: function( code ) {\n\t\tvar script,\n\t\t\tindirect = eval;\n\n\t\tcode = jQuery.trim( code );\n\n\t\tif ( code ) {\n\n\t\t\t// If the code includes a valid, prologue position\n\t\t\t// strict mode pragma, execute code by injecting a\n\t\t\t// script tag into the document.\n\t\t\tif ( code.indexOf( \"use strict\" ) === 1 ) {\n\t\t\t\tscript = document.createElement( \"script\" );\n\t\t\t\tscript.text = code;\n\t\t\t\tdocument.head.appendChild( script ).parentNode.removeChild( script );\n\t\t\t} else {\n\n\t\t\t\t// Otherwise, avoid the DOM node creation, insertion\n\t\t\t\t// and removal by using an indirect global eval\n\n\t\t\t\tindirect( code );\n\t\t\t}\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Support: IE9-11+\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar tmp, args, proxy;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: Date.now,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\n// JSHint would error on this code due to the Symbol not being defined in ES5.\n// Defining this global in .jshintrc would create a danger of using the global\n// unguarded in another place, it seems safer to just disable JSHint for these\n// three lines.\n/* jshint ignore: start */\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n/* jshint ignore: end */\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.1\n * http://sizzlejs.com/\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-10-17\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, nidselect, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\n\t\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\t\tsetDocument( context );\n\t\t}\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( (m = match[1]) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( (elem = context.getElementById( m )) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && (elem = newContext.getElementById( m )) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[2] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!compilerCache[ selector + \" \" ] &&\n\t\t\t\t(!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\n\t\t\t\tif ( nodeType !== 1 ) {\n\t\t\t\t\tnewContext = context;\n\t\t\t\t\tnewSelector = selector;\n\n\t\t\t\t// qSA looks outside Element context, which is not what we want\n\t\t\t\t// Thanks to Andrew Dupont for this workaround technique\n\t\t\t\t// Support: IE <=8\n\t\t\t\t// Exclude object elements\n\t\t\t\t} else if ( context.nodeName.toLowerCase() !== \"object\" ) {\n\n\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\tif ( (nid = context.getAttribute( \"id\" )) ) {\n\t\t\t\t\t\tnid = nid.replace( rescape, \"\\\\$&\" );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tcontext.setAttribute( \"id\", (nid = expando) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\tnidselect = ridentifier.test( nid ) ? \"#\" + nid : \"[id='\" + nid + \"']\";\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[i] = nidselect + \" \" + toSelector( groups[i] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\t\t\t\t}\n\n\t\t\t\tif ( newSelector ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t\t);\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9-11, Edge\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\tif ( (parent = document.defaultView) && parent.top !== parent ) {\n\t\t// Support: IE 11\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( document.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\treturn m ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( document.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === document ? -1 :\n\t\t\t\tb === document ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!compilerCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t// but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});\n\n\t\t\t\t\t\tif ( (oldCache = uniqueCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context === document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\tif ( !context && elem.ownerDocument !== document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n * selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n * selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = ( /^<([\\w-]+)\\s*\\/?>(?:<\\/\\1>|)$/ );\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t} );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tlen = this.length,\n\t\t\tret = [],\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\t// Support: Blackberry 4.6\n\t\t\t\t\t// gEBID returns nodes no longer in the document (#6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && ( pos ?\n\t\t\t\t\tpos.index( cur ) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn elem.contentDocument || jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnotwhite = ( /\\S+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( jQuery.isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && jQuery.type( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ) ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis === promise ? newDefer.promise() : this,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add( function() {\n\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 ||\n\t\t\t\t( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred.\n\t\t\t// If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\t\t\t\t\t} else if ( !( --remaining ) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// Add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) )\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// If we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n} );\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n} );\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called\n\t\t// after the browser event has already occurred.\n\t\t// Support: IE9-10 only\n\t\t// Older IE sometimes signals \"interactive\" too soon\n\t\tif ( document.readyState === \"complete\" ||\n\t\t\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\twindow.setTimeout( jQuery.ready );\n\n\t\t} else {\n\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed );\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n// Kick off the DOM ready check even if the user does not\njQuery.ready.promise();\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlen ? fn( elems[ 0 ], key ) : emptyGet;\n};\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t// - Node\n\t// - Node.ELEMENT_NODE\n\t// - Node.DOCUMENT_NODE\n\t// - Object\n\t// - Any\n\t/* jshint -W018 */\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tregister: function( owner, initial ) {\n\t\tvar value = initial || {};\n\n\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t// use plain assignment\n\t\tif ( owner.nodeType ) {\n\t\t\towner[ this.expando ] = value;\n\n\t\t// Otherwise secure it in a non-enumerable, non-writable property\n\t\t// configurability must be true to allow the property to be\n\t\t// deleted with the delete operator\n\t\t} else {\n\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\tvalue: value,\n\t\t\t\twritable: true,\n\t\t\t\tconfigurable: true\n\t\t\t} );\n\t\t}\n\t\treturn owner[ this.expando ];\n\t},\n\tcache: function( owner ) {\n\n\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t// but we should not, see #8335.\n\t\t// Always return an empty object.\n\t\tif ( !acceptData( owner ) ) {\n\t\t\treturn {};\n\t\t}\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ data ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ prop ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\t\t\towner[ this.expando ] && owner[ this.expando ][ key ];\n\t},\n\taccess: function( owner, key, value ) {\n\t\tvar stored;\n\n\t\t// In cases where either:\n\t\t//\n\t\t// 1. No key was specified\n\t\t// 2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t// 1. The entire cache object\n\t\t// 2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\tstored = this.get( owner, key );\n\n\t\t\treturn stored !== undefined ?\n\t\t\t\tstored : this.get( owner, jQuery.camelCase( key ) );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t// 1. An object of properties\n\t\t// 2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i, name, camel,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === undefined ) {\n\t\t\tthis.register( owner );\n\n\t\t} else {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( jQuery.isArray( key ) ) {\n\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = key.concat( key.map( jQuery.camelCase ) );\n\t\t\t} else {\n\t\t\t\tcamel = jQuery.camelCase( key );\n\n\t\t\t\t// Try the string as a key before any manipulation\n\t\t\t\tif ( key in cache ) {\n\t\t\t\t\tname = [ key, camel ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\t\tname = camel;\n\t\t\t\t\tname = name in cache ?\n\t\t\t\t\t\t[ name ] : ( name.match( rnotwhite ) || [] );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\ti = name.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ name[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <= 35-45+\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://code.google.com/p/chromium/issues/detail?id=378607\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data, camelKey;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// with the key as-is\n\t\t\t\tdata = dataUser.get( elem, key ) ||\n\n\t\t\t\t\t// Try to find dashed key if it exists (gh-2779)\n\t\t\t\t\t// This is for 2.2.x only\n\t\t\t\t\tdataUser.get( elem, key.replace( rmultiDash, \"-$&\" ).toLowerCase() );\n\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\tcamelKey = jQuery.camelCase( key );\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// with the key camelized\n\t\t\t\tdata = dataUser.get( elem, camelKey );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, camelKey, undefined );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tcamelKey = jQuery.camelCase( key );\n\t\t\tthis.each( function() {\n\n\t\t\t\t// First, attempt to store a copy or reference of any\n\t\t\t\t// data that might've been store with a camelCased key.\n\t\t\t\tvar data = dataUser.get( this, camelKey );\n\n\t\t\t\t// For HTML5 data-* attribute interop, we have to\n\t\t\t\t// store property names with dashes in a camelCase form.\n\t\t\t\t// This might not apply to all properties...*\n\t\t\t\tdataUser.set( this, camelKey, value );\n\n\t\t\t\t// *... In the case of properties that might _actually_\n\t\t\t\t// have dashes, we need to also store a copy of that\n\t\t\t\t// unchanged property.\n\t\t\t\tif ( key.indexOf( \"-\" ) > -1 && data !== undefined ) {\n\t\t\t\t\tdataUser.set( this, key, value );\n\t\t\t\t}\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" ||\n\t\t\t!jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted,\n\t\tscale = 1,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() { return tween.cur(); } :\n\t\t\tfunction() { return jQuery.css( elem, prop, \"\" ); },\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\tdo {\n\n\t\t\t// If previous iteration zeroed out, double until we get *something*.\n\t\t\t// Use string for doubling so we don't accidentally see scale as unchanged below\n\t\t\tscale = scale || \".5\";\n\n\t\t\t// Adjust and apply\n\t\t\tinitialInUnit = initialInUnit / scale;\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t// Break the loop if scale is unchanged or perfect, or if we've just had enough.\n\t\t} while (\n\t\t\tscale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations\n\t\t);\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([\\w:-]+)/ );\n\nvar rscriptType = ( /^$|\\/(?:java|ecma)script/i );\n\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// Support: IE9\n\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\n// Support: IE9\nwrapMap.optgroup = wrapMap.option;\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE9-11+\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret = typeof context.getElementsByTagName !== \"undefined\" ?\n\t\t\tcontext.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== \"undefined\" ?\n\t\t\t\tcontext.querySelectorAll( tag || \"*\" ) :\n\t\t\t[];\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], ret ) :\n\t\tret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, contains, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( contains ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0-4.3, Safari<=5.1\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Safari<=5.1, Android<4.2\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<=11+\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n} )();\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE9\n// See #13393 for more info\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, j, ret, matched, handleObj,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( dataPriv.get( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or 2) have namespace(s)\n\t\t\t\t// a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, matches, sel, handleObj,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Support (at least): Chrome, IE9\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t//\n\t\t// Support: Firefox<=42+\n\t\t// Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343)\n\t\tif ( delegateCount && cur.nodeType &&\n\t\t\t( event.type !== \"click\" || isNaN( event.button ) || event.button < 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== \"click\" ) ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matches } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: ( \"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase \" +\n\t\t\"metaKey relatedTarget shiftKey target timeStamp view which\" ).split( \" \" ),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split( \" \" ),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: ( \"button buttons clientX clientY offsetX offsetY pageX pageY \" +\n\t\t\t\"screenX screenY toElement\" ).split( \" \" ),\n\t\tfilter: function( event, original ) {\n\t\t\tvar eventDoc, doc, body,\n\t\t\t\tbutton = original.button;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX +\n\t\t\t\t\t( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -\n\t\t\t\t\t( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY +\n\t\t\t\t\t( doc && doc.scrollTop || body && body.scrollTop || 0 ) -\n\t\t\t\t\t( doc && doc.clientTop || body && body.clientTop || 0 );\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: Cordova 2.5 (WebKit) (#13255)\n\t\t// All events should have a target; Cordova deviceready doesn't\n\t\tif ( !event.target ) {\n\t\t\tevent.target = document;\n\t\t}\n\n\t\t// Support: Safari 6.0+, Chrome<28\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\tthis.focus();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this.type === \"checkbox\" && this.click && jQuery.nodeName( this, \"input\" ) ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android<4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://code.google.com/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event ) dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:-]+)[^>]*)\\/>/gi,\n\n\t// Support: IE 10-11, Edge 10240+\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName( \"tbody\" )[ 0 ] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement( \"tbody\" ) ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\n\tif ( match ) {\n\t\telem.type = match[ 1 ];\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.access( src );\n\t\tpdataCur = dataPriv.set( dest, pdataOld );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdelete pdataCur.handle;\n\t\t\tpdataCur.events = {};\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = concat.apply( [], args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tisFunction = jQuery.isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( isFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( isFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tjQuery.globalEval( node.textContent.replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && jQuery.contains( node.ownerDocument, node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html.replace( rxhtmlTag, \"<$1></$2>\" );\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <= 35-45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <= 35-45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\n\t// Keep domManip exposed until 3.0 (gh-2225)\n\tdomManip: domManip,\n\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: QtWebKit\n\t\t\t// .get() because push.apply(_, arraylike) throws\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\n\n\nvar iframe,\n\telemdisplay = {\n\n\t\t// Support: Firefox\n\t\t// We have to pre-define these values for FF (#10227)\n\t\tHTML: \"block\",\n\t\tBODY: \"block\"\n\t};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\tdisplay = jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = ( iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" ) )\n\t\t\t\t.appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = iframe[ 0 ].contentDocument;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\nvar rmargin = ( /^margin/ );\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar documentElement = document.documentElement;\n\n\n\n( function() {\n\tvar pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE9-11+\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tcontainer.style.cssText = \"border:0;width:8px;height:0;top:0;left:-9999px;\" +\n\t\t\"padding:0;margin-top:1px;position:absolute\";\n\tcontainer.appendChild( div );\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\t\tdiv.style.cssText =\n\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;\" +\n\t\t\t\"position:relative;display:block;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"top:1%;width:50%\";\n\t\tdiv.innerHTML = \"\";\n\t\tdocumentElement.appendChild( container );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\t\treliableMarginLeftVal = divStyle.marginLeft === \"2px\";\n\t\tboxSizingReliableVal = divStyle.width === \"4px\";\n\n\t\t// Support: Android 4.0 - 4.3 only\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.marginRight = \"50%\";\n\t\tpixelMarginRightVal = divStyle.marginRight === \"4px\";\n\n\t\tdocumentElement.removeChild( container );\n\t}\n\n\tjQuery.extend( support, {\n\t\tpixelPosition: function() {\n\n\t\t\t// This test is executed only once but we still do memoizing\n\t\t\t// since we can use the boxSizingReliable pre-computing.\n\t\t\t// No need to check if the test was already performed, though.\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelMarginRight: function() {\n\n\t\t\t// Support: Android 4.0-4.3\n\t\t\t// We're checking for boxSizingReliableVal here instead of pixelMarginRightVal\n\t\t\t// since that compresses better and they're computed together anyway.\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelMarginRightVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\n\t\t\t// Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\treliableMarginRight: function() {\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Check if div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container. (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// This support function is only executed once so no memoizing is needed.\n\t\t\tvar ret,\n\t\t\t\tmarginDiv = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tmarginDiv.style.cssText = div.style.cssText =\n\n\t\t\t\t// Support: Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;box-sizing:content-box;\" +\n\t\t\t\t\"display:block;margin:0;border:0;padding:0\";\n\t\t\tmarginDiv.style.marginRight = marginDiv.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\t\t\tdocumentElement.appendChild( container );\n\n\t\t\tret = !parseFloat( window.getComputedStyle( marginDiv ).marginRight );\n\n\t\t\tdocumentElement.removeChild( container );\n\t\t\tdiv.removeChild( marginDiv );\n\n\t\t\treturn ret;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t// Support: Opera 12.1x only\n\t// Fall back to style even without computed\n\t// computed is undefined for elems on document fragments\n\tif ( ( ret === \"\" || ret === undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\tret = jQuery.style( elem, name );\n\t}\n\n\t// Support: IE9\n\t// getPropertyValue is only needed for .css('filter') (#12537)\n\tif ( computed ) {\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// http://dev.w3.org/csswg/cssom/#resolved-values\n\t\tif ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE9-11+\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style;\n\n// Return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( name ) {\n\n\t// Shortcut for names that are not vendor prefixed\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// At this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\n\t\t\t// At this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// At this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// Some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test( val ) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// Check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox &&\n\t\t\t( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// Use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = dataPriv.get( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = dataPriv.access(\n\t\t\t\t\telem,\n\t\t\t\t\t\"olddisplay\",\n\t\t\t\t\tdefaultDisplay( elem.nodeName )\n\t\t\t\t);\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display !== \"none\" || !hidden ) {\n\t\t\t\tdataPriv.set(\n\t\t\t\t\telem,\n\t\t\t\t\t\"olddisplay\",\n\t\t\t\t\thidden ? display : jQuery.css( elem, \"display\" )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t\"float\": \"cssFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] ||\n\t\t\t( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\tif ( type === \"number\" ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tstyle[ name ] = value;\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] ||\n\t\t\t( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\t\t\t\t\telem.offsetWidth === 0 ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = extra && getStyles( elem ),\n\t\t\t\tsubtract = extra && augmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t);\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ name ] = value;\n\t\t\t\tvalue = jQuery.css( elem, name );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// Support: Android 2.3\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 &&\n\t\t\t\t( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE9\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE9-10 do not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tdataPriv.get( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\t\t\tstyle.display = \"inline-block\";\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show\n\t\t\t\t// and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// Store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done( function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t} );\n\t\t}\n\t\tanim.done( function() {\n\t\t\tvar prop;\n\n\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t} );\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( ( display === \"none\" ? defaultDisplay( elem.nodeName ) : display ) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( jQuery.isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tjQuery.proxy( result.stop, result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnotwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ?\n\t\topt.duration : opt.duration in jQuery.fx.speeds ?\n\t\t\tjQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\twindow.clearInterval( timerId );\n\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: iOS<=5.1, Android<=4.2+\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE<=11+\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: Android<=2.3\n\t// Options inside disabled selects are incorrectly marked as disabled\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE<=11+\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tjQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle;\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ name ];\n\t\t\tattrHandle[ name ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tname.toLowerCase() :\n\t\t\t\tnull;\n\t\t\tattrHandle[ name ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\t\trclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t\t0 :\n\t\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( typeof value === \"string\" && value ) {\n\t\t\tclasses = value.match( rnotwhite ) || [];\n\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 &&\n\t\t\t\t\t( \" \" + curValue + \" \" ).replace( rclass, \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tif ( typeof value === \"string\" && value ) {\n\t\t\tclasses = value.match( rnotwhite ) || [];\n\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 &&\n\t\t\t\t\t( \" \" + curValue + \" \" ).replace( rclass, \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( type === \"string\" ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + getClass( elem ) + \" \" ).replace( rclass, \" \" )\n\t\t\t\t\t.indexOf( className ) > -1\n\t\t\t) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g,\n\trspaces = /[\\x20\\t\\r\\n\\f]+/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\n\t\t\t\t\t// Handle most common string cases\n\t\t\t\t\tret.replace( rreturn, \"\" ) :\n\n\t\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) ).replace( rspaces, \" \" );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ?\n\t\t\t\t\t\t\t\t!option.disabled : option.getAttribute( \"disabled\" ) === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/;\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( dataPriv.get( cur, \"events\" ) || {} )[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\telem[ type ]();\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\njQuery.each( ( \"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\" ).split( \" \" ),\n\tfunction( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n} );\n\njQuery.fn.extend( {\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\n\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\n// Support: Firefox\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome, Safari\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = jQuery.now();\n\nvar rquery = ( /\\?/ );\n\n\n\n// Support: Android 2.3\n// Workaround failure to string-cast null input\njQuery.parseJSON = function( data ) {\n\treturn JSON.parse( data + \"\" );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE9\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t * - BEFORE asking for a transport\n\t * - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" ).replace( rhash, \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE8-11+\n\t\t\t// IE throws exception if url is malformed, e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE8-11+\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapAll( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( this[ 0 ] ) {\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each( function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t} ).end();\n\t}\n} );\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\treturn !jQuery.expr.filters.visible( elem );\n};\njQuery.expr.filters.visible = function( elem ) {\n\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\t// Use OR instead of AND as the element is not visible if either is true\n\t// See tickets #10406 and #13132\n\treturn elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0;\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t} ) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE9\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE9\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\" ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = callback( \"error\" );\n\n\t\t\t\t// Support: IE9\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" ).prop( {\n\t\t\t\t\tcharset: s.scriptCharset,\n\t\t\t\t\tsrc: s.url\n\t\t\t\t} ).on(\n\t\t\t\t\t\"load error\",\n\t\t\t\t\tcallback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t);\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = jQuery.trim( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\telem = this[ 0 ],\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\tbox = elem.getBoundingClientRect();\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top + win.pageYOffset - docElem.clientTop,\n\t\t\tleft: box.left + win.pageXOffset - docElem.clientLeft\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// Fixed elements are offset from window (parentOffset = {top:0, left: 0},\n\t\t// because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume getBoundingClientRect is there when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t// documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari<7-8+, Chrome<37-44+\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t} );\n} );\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\tsize: function() {\n\t\treturn this.length;\n\t}\n} );\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( !noGlobal ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\nreturn jQuery;\n}));\n","// Current version.\nexport var VERSION = '1.11.0';\n\n// Establish the root object, `window` (`self`) in the browser, `global`\n// on the server, or `this` in some virtual machines. We use `self`\n// instead of `window` for `WebWorker` support.\nexport var root = typeof self == 'object' && self.self === self && self ||\n typeof global == 'object' && global.global === global && global ||\n Function('return this')() ||\n {};\n\n// Save bytes in the minified (but not gzipped) version:\nexport var ArrayProto = Array.prototype, ObjProto = Object.prototype;\nexport var SymbolProto = typeof Symbol !== 'undefined' ? Symbol.prototype : null;\n\n// Create quick reference variables for speed access to core prototypes.\nexport var push = ArrayProto.push,\n slice = ArrayProto.slice,\n toString = ObjProto.toString,\n hasOwnProperty = ObjProto.hasOwnProperty;\n\n// Modern feature detection.\nexport var supportsArrayBuffer = typeof ArrayBuffer !== 'undefined';\n\n// All **ECMAScript 5+** native function implementations that we hope to use\n// are declared here.\nexport var nativeIsArray = Array.isArray,\n nativeKeys = Object.keys,\n nativeCreate = Object.create,\n nativeIsView = supportsArrayBuffer && ArrayBuffer.isView;\n\n// Create references to these builtin functions because we override them.\nexport var _isNaN = isNaN,\n _isFinite = isFinite;\n\n// Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.\nexport var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');\nexport var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',\n 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];\n\n// The largest integer that can be represented exactly.\nexport var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;\n","/*!\n * escape-html\n * Copyright(c) 2012-2013 TJ Holowaychuk\n * Copyright(c) 2015 Andreas Lubbe\n * Copyright(c) 2015 Tiancheng \"Timothy\" Gu\n * MIT Licensed\n */\n\n'use strict';\n\n/**\n * Module variables.\n * @private\n */\n\nvar matchHtmlRegExp = /[\"'&<>]/;\n\n/**\n * Module exports.\n * @public\n */\n\nmodule.exports = escapeHtml;\n\n/**\n * Escape special characters in the given string of html.\n *\n * @param {string} string The string to escape for inserting into HTML\n * @return {string}\n * @public\n */\n\nfunction escapeHtml(string) {\n var str = '' + string;\n var match = matchHtmlRegExp.exec(str);\n\n if (!match) {\n return str;\n }\n\n var escape;\n var html = '';\n var index = 0;\n var lastIndex = 0;\n\n for (index = match.index; index < str.length; index++) {\n switch (str.charCodeAt(index)) {\n case 34: // \"\n escape = '"';\n break;\n case 38: // &\n escape = '&';\n break;\n case 39: // '\n escape = ''';\n break;\n case 60: // <\n escape = '<';\n break;\n case 62: // >\n escape = '>';\n break;\n default:\n continue;\n }\n\n if (lastIndex !== index) {\n html += str.substring(lastIndex, index);\n }\n\n lastIndex = index + 1;\n html += escape;\n }\n\n return lastIndex !== index\n ? html + str.substring(lastIndex, index)\n : html;\n}\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","/* eslint-disable */\n/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n */\n\nimport escapeHTML from 'escape-html'\n\n/* global dav */\n\n(function(OC, FileInfo) {\n\t/**\n\t * @class OC.Files.Client\n\t * @classdesc Client to access files on the server\n\t *\n\t * @param {Object} options\n\t * @param {String} options.host host name\n\t * @param {int} [options.port] port\n\t * @param {boolean} [options.useHTTPS] whether to use https\n\t * @param {String} [options.root] root path\n\t * @param {String} [options.userName] user name\n\t * @param {String} [options.password] password\n\t *\n\t * @since 8.2\n\t */\n\tvar Client = function(options) {\n\t\tthis._root = options.root\n\t\tif (this._root.charAt(this._root.length - 1) === '/') {\n\t\t\tthis._root = this._root.substr(0, this._root.length - 1)\n\t\t}\n\n\t\tlet url = Client.PROTOCOL_HTTP + '://'\n\t\tif (options.useHTTPS) {\n\t\t\turl = Client.PROTOCOL_HTTPS + '://'\n\t\t}\n\n\t\turl += options.host + this._root\n\t\tthis._host = options.host\n\t\tthis._defaultHeaders = options.defaultHeaders || {\n\t\t\t'X-Requested-With': 'XMLHttpRequest',\n\t\t\t'requesttoken': OC.requestToken,\n\t\t}\n\t\tthis._baseUrl = url\n\n\t\tconst clientOptions = {\n\t\t\tbaseUrl: this._baseUrl,\n\t\t\txmlNamespaces: {\n\t\t\t\t'DAV:': 'd',\n\t\t\t\t'http://owncloud.org/ns': 'oc',\n\t\t\t\t'http://nextcloud.org/ns': 'nc',\n\t\t\t\t'http://open-collaboration-services.org/ns': 'ocs',\n\t\t\t},\n\t\t}\n\t\tif (options.userName) {\n\t\t\tclientOptions.userName = options.userName\n\t\t}\n\t\tif (options.password) {\n\t\t\tclientOptions.password = options.password\n\t\t}\n\t\tthis._client = new dav.Client(clientOptions)\n\t\tthis._client.xhrProvider = _.bind(this._xhrProvider, this)\n\t\tthis._fileInfoParsers = []\n\t}\n\n\tClient.NS_OWNCLOUD = 'http://owncloud.org/ns'\n\tClient.NS_NEXTCLOUD = 'http://nextcloud.org/ns'\n\tClient.NS_DAV = 'DAV:'\n\tClient.NS_OCS = 'http://open-collaboration-services.org/ns'\n\n\tClient.PROPERTY_GETLASTMODIFIED\t= '{' + Client.NS_DAV + '}getlastmodified'\n\tClient.PROPERTY_GETETAG\t= '{' + Client.NS_DAV + '}getetag'\n\tClient.PROPERTY_GETCONTENTTYPE\t= '{' + Client.NS_DAV + '}getcontenttype'\n\tClient.PROPERTY_RESOURCETYPE\t= '{' + Client.NS_DAV + '}resourcetype'\n\tClient.PROPERTY_INTERNAL_FILEID\t= '{' + Client.NS_OWNCLOUD + '}fileid'\n\tClient.PROPERTY_PERMISSIONS\t= '{' + Client.NS_OWNCLOUD + '}permissions'\n\tClient.PROPERTY_SIZE\t= '{' + Client.NS_OWNCLOUD + '}size'\n\tClient.PROPERTY_GETCONTENTLENGTH\t= '{' + Client.NS_DAV + '}getcontentlength'\n\tClient.PROPERTY_ISENCRYPTED\t= '{' + Client.NS_DAV + '}is-encrypted'\n\tClient.PROPERTY_SHARE_PERMISSIONS\t= '{' + Client.NS_OCS + '}share-permissions'\n\tClient.PROPERTY_QUOTA_AVAILABLE_BYTES\t= '{' + Client.NS_DAV + '}quota-available-bytes'\n\n\tClient.PROTOCOL_HTTP\t= 'http'\n\tClient.PROTOCOL_HTTPS\t= 'https'\n\n\tClient._PROPFIND_PROPERTIES = [\n\t\t/**\n\t\t * Modified time\n\t\t */\n\t\t[Client.NS_DAV, 'getlastmodified'],\n\t\t/**\n\t\t * Etag\n\t\t */\n\t\t[Client.NS_DAV, 'getetag'],\n\t\t/**\n\t\t * Mime type\n\t\t */\n\t\t[Client.NS_DAV, 'getcontenttype'],\n\t\t/**\n\t\t * Resource type \"collection\" for folders, empty otherwise\n\t\t */\n\t\t[Client.NS_DAV, 'resourcetype'],\n\t\t/**\n\t\t * File id\n\t\t */\n\t\t[Client.NS_OWNCLOUD, 'fileid'],\n\t\t/**\n\t\t * Letter-coded permissions\n\t\t */\n\t\t[Client.NS_OWNCLOUD, 'permissions'],\n\t\t// [Client.NS_OWNCLOUD, 'downloadURL'],\n\t\t/**\n\t\t * Folder sizes\n\t\t */\n\t\t[Client.NS_OWNCLOUD, 'size'],\n\t\t/**\n\t\t * File sizes\n\t\t */\n\t\t[Client.NS_DAV, 'getcontentlength'],\n\t\t[Client.NS_DAV, 'quota-available-bytes'],\n\t\t/**\n\t\t * Preview availability\n\t\t */\n\t\t[Client.NS_NEXTCLOUD, 'has-preview'],\n\t\t/**\n\t\t * Mount type\n\t\t */\n\t\t[Client.NS_NEXTCLOUD, 'mount-type'],\n\t\t/**\n\t\t * Encryption state\n\t\t */\n\t\t[Client.NS_NEXTCLOUD, 'is-encrypted'],\n\t\t/**\n\t\t * Share permissions\n\t\t */\n\t\t[Client.NS_OCS, 'share-permissions'],\n\t]\n\n\t/**\n\t * @memberof OC.Files\n\t */\n\tClient.prototype = {\n\n\t\t/**\n\t\t * Root path of the Webdav endpoint\n\t\t *\n\t\t * @type string\n\t\t */\n\t\t_root: null,\n\n\t\t/**\n\t\t * Client from the library\n\t\t *\n\t\t * @type dav.Client\n\t\t */\n\t\t_client: null,\n\n\t\t/**\n\t\t * Array of file info parsing functions.\n\t\t *\n\t\t * @type Array<OC.Files.Client~parseFileInfo>\n\t\t */\n\t\t_fileInfoParsers: [],\n\n\t\t/**\n\t\t * Returns the configured XHR provider for davclient\n\t\t * @returns {XMLHttpRequest}\n\t\t */\n\t\t_xhrProvider: function() {\n\t\t\tconst headers = this._defaultHeaders\n\t\t\tconst xhr = new XMLHttpRequest()\n\t\t\tconst oldOpen = xhr.open\n\t\t\t// override open() method to add headers\n\t\t\txhr.open = function() {\n\t\t\t\tconst result = oldOpen.apply(this, arguments)\n\t\t\t\t_.each(headers, function(value, key) {\n\t\t\t\t\txhr.setRequestHeader(key, value)\n\t\t\t\t})\n\t\t\t\treturn result\n\t\t\t}\n\n\t\t\tOC.registerXHRForErrorProcessing(xhr)\n\t\t\treturn xhr\n\t\t},\n\n\t\t/**\n\t\t * Prepends the base url to the given path sections\n\t\t *\n\t\t * @param {...String} path sections\n\t\t *\n\t\t * @returns {String} base url + joined path, any leading or trailing slash\n\t\t * will be kept\n\t\t */\n\t\t_buildUrl: function() {\n\t\t\tlet path = this._buildPath.apply(this, arguments)\n\t\t\tif (path.charAt([path.length - 1]) === '/') {\n\t\t\t\tpath = path.substr(0, path.length - 1)\n\t\t\t}\n\t\t\tif (path.charAt(0) === '/') {\n\t\t\t\tpath = path.substr(1)\n\t\t\t}\n\t\t\treturn this._baseUrl + '/' + path\n\t\t},\n\n\t\t/**\n\t\t * Append the path to the root and also encode path\n\t\t * sections\n\t\t *\n\t\t * @param {...String} path sections\n\t\t *\n\t\t * @returns {String} joined path, any leading or trailing slash\n\t\t * will be kept\n\t\t */\n\t\t_buildPath: function() {\n\t\t\tlet path = OC.joinPaths.apply(this, arguments)\n\t\t\tconst sections = path.split('/')\n\t\t\tlet i\n\t\t\tfor (i = 0; i < sections.length; i++) {\n\t\t\t\tsections[i] = encodeURIComponent(sections[i])\n\t\t\t}\n\t\t\tpath = sections.join('/')\n\t\t\treturn path\n\t\t},\n\n\t\t/**\n\t\t * Parse headers string into a map\n\t\t *\n\t\t * @param {string} headersString headers list as string\n\t\t *\n\t\t * @returns {Object.<String,Array>} map of header name to header contents\n\t\t */\n\t\t_parseHeaders: function(headersString) {\n\t\t\tconst headerRows = headersString.split('\\n')\n\t\t\tconst headers = {}\n\t\t\tfor (let i = 0; i < headerRows.length; i++) {\n\t\t\t\tconst sepPos = headerRows[i].indexOf(':')\n\t\t\t\tif (sepPos < 0) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tconst headerName = headerRows[i].substr(0, sepPos)\n\t\t\t\tconst headerValue = headerRows[i].substr(sepPos + 2)\n\n\t\t\t\tif (!headers[headerName]) {\n\t\t\t\t\t// make it an array\n\t\t\t\t\theaders[headerName] = []\n\t\t\t\t}\n\n\t\t\t\theaders[headerName].push(headerValue)\n\t\t\t}\n\t\t\treturn headers\n\t\t},\n\n\t\t/**\n\t\t * Parses the etag response which is in double quotes.\n\t\t *\n\t\t * @param {string} etag etag value in double quotes\n\t\t *\n\t\t * @returns {string} etag without double quotes\n\t\t */\n\t\t_parseEtag: function(etag) {\n\t\t\tif (etag.charAt(0) === '\"') {\n\t\t\t\treturn etag.split('\"')[1]\n\t\t\t}\n\t\t\treturn etag\n\t\t},\n\n\t\t/**\n\t\t * Parse Webdav result\n\t\t *\n\t\t * @param {Object} response XML object\n\t\t *\n\t\t * @returns {Array.<FileInfo>} array of file info\n\t\t */\n\t\t_parseFileInfo: function(response) {\n\t\t\tlet path = decodeURIComponent(response.href)\n\t\t\tif (path.substr(0, this._root.length) === this._root) {\n\t\t\t\tpath = path.substr(this._root.length)\n\t\t\t}\n\n\t\t\tif (path.charAt(path.length - 1) === '/') {\n\t\t\t\tpath = path.substr(0, path.length - 1)\n\t\t\t}\n\n\t\t\tif (response.propStat.length === 0 || response.propStat[0].status !== 'HTTP/1.1 200 OK') {\n\t\t\t\treturn null\n\t\t\t}\n\n\t\t\tconst props = response.propStat[0].properties\n\n\t\t\tconst data = {\n\t\t\t\tid: props[Client.PROPERTY_INTERNAL_FILEID],\n\t\t\t\tpath: OC.dirname(path) || '/',\n\t\t\t\tname: OC.basename(path),\n\t\t\t\tmtime: (new Date(props[Client.PROPERTY_GETLASTMODIFIED])).getTime(),\n\t\t\t}\n\n\t\t\tconst etagProp = props[Client.PROPERTY_GETETAG]\n\t\t\tif (!_.isUndefined(etagProp)) {\n\t\t\t\tdata.etag = this._parseEtag(etagProp)\n\t\t\t}\n\n\t\t\tlet sizeProp = props[Client.PROPERTY_GETCONTENTLENGTH]\n\t\t\tif (!_.isUndefined(sizeProp)) {\n\t\t\t\tdata.size = parseInt(sizeProp, 10)\n\t\t\t}\n\n\t\t\tsizeProp = props[Client.PROPERTY_SIZE]\n\t\t\tif (!_.isUndefined(sizeProp)) {\n\t\t\t\tdata.size = parseInt(sizeProp, 10)\n\t\t\t}\n\n\t\t\tconst hasPreviewProp = props['{' + Client.NS_NEXTCLOUD + '}has-preview']\n\t\t\tif (!_.isUndefined(hasPreviewProp)) {\n\t\t\t\tdata.hasPreview = hasPreviewProp === 'true'\n\t\t\t} else {\n\t\t\t\tdata.hasPreview = true\n\t\t\t}\n\n\t\t\tconst isEncryptedProp = props['{' + Client.NS_NEXTCLOUD + '}is-encrypted']\n\t\t\tif (!_.isUndefined(isEncryptedProp)) {\n\t\t\t\tdata.isEncrypted = isEncryptedProp === '1'\n\t\t\t} else {\n\t\t\t\tdata.isEncrypted = false\n\t\t\t}\n\n\t\t\tconst isFavouritedProp = props['{' + Client.NS_OWNCLOUD + '}favorite']\n\t\t\tif (!_.isUndefined(isFavouritedProp)) {\n\t\t\t\tdata.isFavourited = isFavouritedProp === '1'\n\t\t\t} else {\n\t\t\t\tdata.isFavourited = false\n\t\t\t}\n\n\t\t\tconst contentType = props[Client.PROPERTY_GETCONTENTTYPE]\n\t\t\tif (!_.isUndefined(contentType)) {\n\t\t\t\tdata.mimetype = contentType\n\t\t\t}\n\n\t\t\tconst resType = props[Client.PROPERTY_RESOURCETYPE]\n\t\t\tif (!data.mimetype && resType) {\n\t\t\t\tconst xmlvalue = resType[0]\n\t\t\t\tif (xmlvalue.namespaceURI === Client.NS_DAV && xmlvalue.nodeName.split(':')[1] === 'collection') {\n\t\t\t\t\tdata.mimetype = 'httpd/unix-directory'\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdata.permissions = OC.PERMISSION_NONE\n\t\t\tconst permissionProp = props[Client.PROPERTY_PERMISSIONS]\n\t\t\tif (!_.isUndefined(permissionProp)) {\n\t\t\t\tconst permString = permissionProp || ''\n\t\t\t\tdata.mountType = null\n\t\t\t\tfor (let i = 0; i < permString.length; i++) {\n\t\t\t\t\tconst c = permString.charAt(i)\n\t\t\t\t\tswitch (c) {\n\t\t\t\t\t// FIXME: twisted permissions\n\t\t\t\t\tcase 'C':\n\t\t\t\t\tcase 'K':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_CREATE\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'G':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_READ\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'W':\n\t\t\t\t\tcase 'N':\n\t\t\t\t\tcase 'V':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_UPDATE\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'D':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_DELETE\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'R':\n\t\t\t\t\t\tdata.permissions |= OC.PERMISSION_SHARE\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'M':\n\t\t\t\t\t\tif (!data.mountType) {\n\t\t\t\t\t\t\t// TODO: how to identify external-root ?\n\t\t\t\t\t\t\tdata.mountType = 'external'\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 'S':\n\t\t\t\t\t\t// TODO: how to identify shared-root ?\n\t\t\t\t\t\tdata.mountType = 'shared'\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tconst sharePermissionsProp = props[Client.PROPERTY_SHARE_PERMISSIONS]\n\t\t\tif (!_.isUndefined(sharePermissionsProp)) {\n\t\t\t\tdata.sharePermissions = parseInt(sharePermissionsProp)\n\t\t\t}\n\n\t\t\tconst mounTypeProp = props['{' + Client.NS_NEXTCLOUD + '}mount-type']\n\t\t\tif (!_.isUndefined(mounTypeProp)) {\n\t\t\t\tdata.mountType = mounTypeProp\n\t\t\t}\n\n\t\t\tconst quotaAvailableBytes = props['{' + Client.NS_DAV + '}quota-available-bytes']\n\t\t\tif (!_.isUndefined(quotaAvailableBytes)) {\n\t\t\t\tdata.quotaAvailableBytes = quotaAvailableBytes\n\t\t\t}\n\n\t\t\t// extend the parsed data using the custom parsers\n\t\t\t_.each(this._fileInfoParsers, function(parserFunction) {\n\t\t\t\t_.extend(data, parserFunction(response, data) || {})\n\t\t\t})\n\n\t\t\treturn new FileInfo(data)\n\t\t},\n\n\t\t/**\n\t\t * Parse Webdav multistatus\n\t\t *\n\t\t * @param {Array} responses\n\t\t */\n\t\t_parseResult: function(responses) {\n\t\t\tconst self = this\n\t\t\treturn _.map(responses, function(response) {\n\t\t\t\treturn self._parseFileInfo(response)\n\t\t\t})\n\t\t},\n\n\t\t/**\n\t\t * Returns whether the given status code means success\n\t\t *\n\t\t * @param {int} status status code\n\t\t *\n\t\t * @returns true if status code is between 200 and 299 included\n\t\t */\n\t\t_isSuccessStatus: function(status) {\n\t\t\treturn status >= 200 && status <= 299\n\t\t},\n\n\t\t/**\n\t\t * Parse the Sabre exception out of the given response, if any\n\t\t *\n\t\t * @param {Object} response object\n\t\t * @returns {Object} array of parsed message and exception (only the first one)\n\t\t */\n\t\t_getSabreException: function(response) {\n\t\t\tconst result = {}\n\t\t\tconst xml = response.xhr.responseXML\n\t\t\tif (xml === null) {\n\t\t\t\treturn result\n\t\t\t}\n\t\t\tconst messages = xml.getElementsByTagNameNS('http://sabredav.org/ns', 'message')\n\t\t\tconst exceptions = xml.getElementsByTagNameNS('http://sabredav.org/ns', 'exception')\n\t\t\tif (messages.length) {\n\t\t\t\tresult.message = messages[0].textContent\n\t\t\t}\n\t\t\tif (exceptions.length) {\n\t\t\t\tresult.exception = exceptions[0].textContent\n\t\t\t}\n\t\t\treturn result\n\t\t},\n\n\t\t/**\n\t\t * Returns the default PROPFIND properties to use during a call.\n\t\t *\n\t\t * @returns {Array.<Object>} array of properties\n\t\t */\n\t\tgetPropfindProperties: function() {\n\t\t\tif (!this._propfindProperties) {\n\t\t\t\tthis._propfindProperties = _.map(Client._PROPFIND_PROPERTIES, function(propDef) {\n\t\t\t\t\treturn '{' + propDef[0] + '}' + propDef[1]\n\t\t\t\t})\n\t\t\t}\n\t\t\treturn this._propfindProperties\n\t\t},\n\n\t\t/**\n\t\t * Lists the contents of a directory\n\t\t *\n\t\t * @param {String} path path to retrieve\n\t\t * @param {Object} [options] options\n\t\t * @param {boolean} [options.includeParent=false] set to true to keep\n\t\t * the parent folder in the result list\n\t\t * @param {Array} [options.properties] list of Webdav properties to retrieve\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tgetFolderContents: function(path, options) {\n\t\t\tif (!path) {\n\t\t\t\tpath = ''\n\t\t\t}\n\t\t\toptions = options || {}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\tlet properties\n\t\t\tif (_.isUndefined(options.properties)) {\n\t\t\t\tproperties = this.getPropfindProperties()\n\t\t\t} else {\n\t\t\t\tproperties = options.properties\n\t\t\t}\n\n\t\t\tthis._client.propFind(\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\tproperties,\n\t\t\t\t1\n\t\t\t).then(function(result) {\n\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\tconst results = self._parseResult(result.body)\n\t\t\t\t\tif (!options || !options.includeParent) {\n\t\t\t\t\t\t// remove root dir, the first entry\n\t\t\t\t\t\tresults.shift()\n\t\t\t\t\t}\n\t\t\t\t\tdeferred.resolve(result.status, results)\n\t\t\t\t} else {\n\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t}\n\t\t\t})\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Fetches a flat list of files filtered by a given filter criteria.\n\t\t * (currently system tags and circles are supported)\n\t\t *\n\t\t * @param {Object} filter filter criteria\n\t\t * @param {Object} [filter.systemTagIds] list of system tag ids to filter by\n\t\t * @param {bool} [filter.favorite] set it to filter by favorites\n\t\t * @param {Object} [options] options\n\t\t * @param {Array} [options.properties] list of Webdav properties to retrieve\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tgetFilteredFiles: function(filter, options) {\n\t\t\toptions = options || {}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\tlet properties\n\t\t\tif (_.isUndefined(options.properties)) {\n\t\t\t\tproperties = this.getPropfindProperties()\n\t\t\t} else {\n\t\t\t\tproperties = options.properties\n\t\t\t}\n\n\t\t\tif (!filter\n\t\t\t\t|| (!filter.systemTagIds && _.isUndefined(filter.favorite) && !filter.circlesIds)) {\n\t\t\t\tthrow 'Missing filter argument'\n\t\t\t}\n\n\t\t\t// root element with namespaces\n\t\t\tlet body = '<oc:filter-files '\n\t\t\tlet namespace\n\t\t\tfor (namespace in this._client.xmlNamespaces) {\n\t\t\t\tbody += ' xmlns:' + this._client.xmlNamespaces[namespace] + '=\"' + namespace + '\"'\n\t\t\t}\n\t\t\tbody += '>\\n'\n\n\t\t\t// properties query\n\t\t\tbody += ' <' + this._client.xmlNamespaces['DAV:'] + ':prop>\\n'\n\t\t\t_.each(properties, function(prop) {\n\t\t\t\tconst property = self._client.parseClarkNotation(prop)\n\t\t\t\tbody += ' <' + self._client.xmlNamespaces[property.namespace] + ':' + property.name + ' />\\n'\n\t\t\t})\n\n\t\t\tbody += ' </' + this._client.xmlNamespaces['DAV:'] + ':prop>\\n'\n\n\t\t\t// rules block\n\t\t\tbody +=\t' <oc:filter-rules>\\n'\n\t\t\t_.each(filter.systemTagIds, function(systemTagIds) {\n\t\t\t\tbody += ' <oc:systemtag>' + escapeHTML(systemTagIds) + '</oc:systemtag>\\n'\n\t\t\t})\n\t\t\t_.each(filter.circlesIds, function(circlesIds) {\n\t\t\t\tbody += ' <oc:circle>' + escapeHTML(circlesIds) + '</oc:circle>\\n'\n\t\t\t})\n\t\t\tif (filter.favorite) {\n\t\t\t\tbody += ' <oc:favorite>' + (filter.favorite ? '1' : '0') + '</oc:favorite>\\n'\n\t\t\t}\n\t\t\tbody += ' </oc:filter-rules>\\n'\n\n\t\t\t// end of root\n\t\t\tbody += '</oc:filter-files>\\n'\n\n\t\t\tthis._client.request(\n\t\t\t\t'REPORT',\n\t\t\t\tthis._buildUrl(),\n\t\t\t\t{},\n\t\t\t\tbody\n\t\t\t).then(function(result) {\n\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\tconst results = self._parseResult(result.body)\n\t\t\t\t\tdeferred.resolve(result.status, results)\n\t\t\t\t} else {\n\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t}\n\t\t\t})\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Returns the file info of a given path.\n\t\t *\n\t\t * @param {String} path path\n\t\t * @param {Array} [options.properties] list of Webdav properties to retrieve\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tgetFileInfo: function(path, options) {\n\t\t\tif (!path) {\n\t\t\t\tpath = ''\n\t\t\t}\n\t\t\toptions = options || {}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\tlet properties\n\t\t\tif (_.isUndefined(options.properties)) {\n\t\t\t\tproperties = this.getPropfindProperties()\n\t\t\t} else {\n\t\t\t\tproperties = options.properties\n\t\t\t}\n\n\t\t\t// TODO: headers\n\t\t\tthis._client.propFind(\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\tproperties,\n\t\t\t\t0\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status, self._parseResult([result.body])[0])\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Returns the contents of the given file.\n\t\t *\n\t\t * @param {String} path path to file\n\t\t *\n\t\t * @returns {Promise}\n\t\t */\n\t\tgetFileContents: function(path) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\n\t\t\tthis._client.request(\n\t\t\t\t'GET',\n\t\t\t\tthis._buildUrl(path)\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status, result.body)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Puts the given data into the given file.\n\t\t *\n\t\t * @param {String} path path to file\n\t\t * @param {String} body file body\n\t\t * @param {Object} [options]\n\t\t * @param {String} [options.contentType='text/plain'] content type\n\t\t * @param {bool} [options.overwrite=true] whether to overwrite an existing file\n\t\t *\n\t\t * @returns {Promise}\n\t\t */\n\t\tputFileContents: function(path, body, options) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\toptions = options || {}\n\t\t\tconst headers = {}\n\t\t\tlet contentType = 'text/plain;charset=utf-8'\n\t\t\tif (options.contentType) {\n\t\t\t\tcontentType = options.contentType\n\t\t\t}\n\n\t\t\theaders['Content-Type'] = contentType\n\n\t\t\tif (_.isUndefined(options.overwrite) || options.overwrite) {\n\t\t\t\t// will trigger 412 precondition failed if a file already exists\n\t\t\t\theaders['If-None-Match'] = '*'\n\t\t\t}\n\n\t\t\tthis._client.request(\n\t\t\t\t'PUT',\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\theaders,\n\t\t\t\tbody || ''\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t_simpleCall: function(method, path) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\n\t\t\tthis._client.request(\n\t\t\t\tmethod,\n\t\t\t\tthis._buildUrl(path)\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Creates a directory\n\t\t *\n\t\t * @param {String} path path to create\n\t\t *\n\t\t * @returns {Promise}\n\t\t */\n\t\tcreateDirectory: function(path) {\n\t\t\treturn this._simpleCall('MKCOL', path)\n\t\t},\n\n\t\t/**\n\t\t * Deletes a file or directory\n\t\t *\n\t\t * @param {String} path path to delete\n\t\t *\n\t\t * @returns {Promise}\n\t\t */\n\t\tremove: function(path) {\n\t\t\treturn this._simpleCall('DELETE', path)\n\t\t},\n\n\t\t/**\n\t\t * Moves path to another path\n\t\t *\n\t\t * @param {String} path path to move\n\t\t * @param {String} destinationPath destination path\n\t\t * @param {boolean} [allowOverwrite=false] true to allow overwriting,\n\t\t * false otherwise\n\t\t * @param {Object} [headers=null] additional headers\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tmove: function(path, destinationPath, allowOverwrite, headers) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\t\t\tif (!destinationPath) {\n\t\t\t\tthrow 'Missing argument \"destinationPath\"'\n\t\t\t}\n\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\theaders = _.extend({}, headers, {\n\t\t\t\t'Destination': this._buildUrl(destinationPath),\n\t\t\t})\n\n\t\t\tif (!allowOverwrite) {\n\t\t\t\theaders.Overwrite = 'F'\n\t\t\t}\n\n\t\t\tthis._client.request(\n\t\t\t\t'MOVE',\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\theaders\n\t\t\t).then(\n\t\t\t\tfunction(result) {\n\t\t\t\t\tif (self._isSuccessStatus(result.status)) {\n\t\t\t\t\t\tdeferred.resolve(result.status)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = _.extend(result, self._getSabreException(result))\n\t\t\t\t\t\tdeferred.reject(result.status, result)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Copies path to another path\n\t\t *\n\t\t * @param {String} path path to copy\n\t\t * @param {String} destinationPath destination path\n\t\t * @param {boolean} [allowOverwrite=false] true to allow overwriting,\n\t\t * false otherwise\n\t\t *\n\t\t * @returns {Promise} promise\n\t\t */\n\t\tcopy: function(path, destinationPath, allowOverwrite) {\n\t\t\tif (!path) {\n\t\t\t\tthrow 'Missing argument \"path\"'\n\t\t\t}\n\t\t\tif (!destinationPath) {\n\t\t\t\tthrow 'Missing argument \"destinationPath\"'\n\t\t\t}\n\n\t\t\tconst self = this\n\t\t\tconst deferred = $.Deferred()\n\t\t\tconst promise = deferred.promise()\n\t\t\tconst headers = {\n\t\t\t\t'Destination': this._buildUrl(destinationPath),\n\t\t\t}\n\n\t\t\tif (!allowOverwrite) {\n\t\t\t\theaders.Overwrite = 'F'\n\t\t\t}\n\n\t\t\tthis._client.request(\n\t\t\t\t'COPY',\n\t\t\t\tthis._buildUrl(path),\n\t\t\t\theaders\n\t\t\t).then(\n\t\t\t\tfunction(response) {\n\t\t\t\t\tif (self._isSuccessStatus(response.status)) {\n\t\t\t\t\t\tdeferred.resolve(response.status)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdeferred.reject(response.status)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t)\n\t\t\treturn promise\n\t\t},\n\n\t\t/**\n\t\t * Add a file info parser function\n\t\t *\n\t\t * @param {OC.Files.Client~parseFileInfo} parserFunction\n\t\t */\n\t\taddFileInfoParser: function(parserFunction) {\n\t\t\tthis._fileInfoParsers.push(parserFunction)\n\t\t},\n\n\t\t/**\n\t\t * Returns the dav.Client instance used internally\n\t\t *\n\t\t * @since 11.0.0\n\t\t * @returns {dav.Client}\n\t\t */\n\t\tgetClient: function() {\n\t\t\treturn this._client\n\t\t},\n\n\t\t/**\n\t\t * Returns the user name\n\t\t *\n\t\t * @since 11.0.0\n\t\t * @returns {String} userName\n\t\t */\n\t\tgetUserName: function() {\n\t\t\treturn this._client.userName\n\t\t},\n\n\t\t/**\n\t\t * Returns the password\n\t\t *\n\t\t * @since 11.0.0\n\t\t * @returns {String} password\n\t\t */\n\t\tgetPassword: function() {\n\t\t\treturn this._client.password\n\t\t},\n\n\t\t/**\n\t\t * Returns the base URL\n\t\t *\n\t\t * @since 11.0.0\n\t\t * @returns {String} base URL\n\t\t */\n\t\tgetBaseUrl: function() {\n\t\t\treturn this._client.baseUrl\n\t\t},\n\n\t\t/**\n\t\t * Returns the host\n\t\t *\n\t\t * @since 13.0.0\n\t\t * @returns {String} base URL\n\t\t */\n\t\tgetHost: function() {\n\t\t\treturn this._host\n\t\t},\n\t}\n\n\t/**\n\t * File info parser function\n\t *\n\t * This function receives a list of Webdav properties as input and\n\t * should return a hash array of parsed properties, if applicable.\n\t *\n\t * @callback OC.Files.Client~parseFileInfo\n\t * @param {Object} XML Webdav properties\n * @return {Array} array of parsed property values\n\t */\n\n\tif (!OC.Files) {\n\t\t/**\n\t\t * @namespace OC.Files\n\t\t *\n\t\t * @since 8.2\n\t\t */\n\t\tOC.Files = {}\n\t}\n\n\t/**\n\t * Returns the default instance of the files client\n\t *\n\t * @returns {OC.Files.Client} default client\n\t *\n\t * @since 8.2\n\t */\n\tOC.Files.getClient = function() {\n\t\tif (OC.Files._defaultClient) {\n\t\t\treturn OC.Files._defaultClient\n\t\t}\n\n\t\tconst client = new OC.Files.Client({\n\t\t\thost: OC.getHost(),\n\t\t\tport: OC.getPort(),\n\t\t\troot: OC.linkToRemoteBase('dav') + '/files/' + OC.getCurrentUser().uid,\n\t\t\tuseHTTPS: OC.getProtocol() === 'https',\n\t\t})\n\t\tOC.Files._defaultClient = client\n\t\treturn client\n\t}\n\n\tOC.Files.Client = Client\n})(OC, OC.Files.FileInfo)\n","// Some functions take a variable number of arguments, or a few expected\n// arguments at the beginning and then a variable number of values to operate\n// on. This helper accumulates all remaining arguments past the function’s\n// argument length (or an explicit `startIndex`), into an array that becomes\n// the last argument. Similar to ES6’s \"rest parameter\".\nexport default function restArguments(func, startIndex) {\n startIndex = startIndex == null ? func.length - 1 : +startIndex;\n return function() {\n var length = Math.max(arguments.length - startIndex, 0),\n rest = Array(length),\n index = 0;\n for (; index < length; index++) {\n rest[index] = arguments[index + startIndex];\n }\n switch (startIndex) {\n case 0: return func.call(this, rest);\n case 1: return func.call(this, arguments[0], rest);\n case 2: return func.call(this, arguments[0], arguments[1], rest);\n }\n var args = Array(startIndex + 1);\n for (index = 0; index < startIndex; index++) {\n args[index] = arguments[index];\n }\n args[startIndex] = rest;\n return func.apply(this, args);\n };\n}\n","// Is a given variable an object?\nexport default function isObject(obj) {\n var type = typeof obj;\n return type === 'function' || type === 'object' && !!obj;\n}\n","// Is a given value equal to null?\nexport default function isNull(obj) {\n return obj === null;\n}\n","// Is a given variable undefined?\nexport default function isUndefined(obj) {\n return obj === void 0;\n}\n","import { toString } from './_setup.js';\n\n// Is a given value a boolean?\nexport default function isBoolean(obj) {\n return obj === true || obj === false || toString.call(obj) === '[object Boolean]';\n}\n","// Is a given value a DOM element?\nexport default function isElement(obj) {\n return !!(obj && obj.nodeType === 1);\n}\n","import { toString } from './_setup.js';\n\n// Internal function for creating a `toString`-based type tester.\nexport default function tagTester(name) {\n return function(obj) {\n return toString.call(obj) === '[object ' + name + ']';\n };\n}\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('String');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Number');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Date');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('RegExp');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Error');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Symbol');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Map');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('WeakMap');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Set');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('WeakSet');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('ArrayBuffer');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('DataView');\n","import { nativeIsArray } from './_setup.js';\nimport tagTester from './_tagTester.js';\n\n// Is a given value an array?\n// Delegates to ECMA5's native `Array.isArray`.\nexport default nativeIsArray || tagTester('Array');\n","import tagTester from './_tagTester.js';\nimport { root } from './_setup.js';\n\nvar isFunction = tagTester('Function');\n\n// Optimize `isFunction` if appropriate. Work around some `typeof` bugs in old\n// v8, IE 11 (#1621), Safari 8 (#1929), and PhantomJS (#2236).\nvar nodelist = root.document && root.document.childNodes;\nif (typeof /./ != 'function' && typeof Int8Array != 'object' && typeof nodelist != 'function') {\n isFunction = function(obj) {\n return typeof obj == 'function' || false;\n };\n}\n\nexport default isFunction;\n","import { hasOwnProperty } from './_setup.js';\n\n// Internal function to check whether `key` is an own property name of `obj`.\nexport default function has(obj, key) {\n return obj != null && hasOwnProperty.call(obj, key);\n}\n","import tagTester from './_tagTester.js';\nimport has from './_has.js';\n\nvar isArguments = tagTester('Arguments');\n\n// Define a fallback version of the method in browsers (ahem, IE < 9), where\n// there isn't any inspectable \"Arguments\" type.\n(function() {\n if (!isArguments(arguments)) {\n isArguments = function(obj) {\n return has(obj, 'callee');\n };\n }\n}());\n\nexport default isArguments;\n","import { _isFinite } from './_setup.js';\nimport isSymbol from './isSymbol.js';\n\n// Is a given object a finite number?\nexport default function isFinite(obj) {\n return !isSymbol(obj) && _isFinite(obj) && !isNaN(parseFloat(obj));\n}\n","import { _isNaN } from './_setup.js';\nimport isNumber from './isNumber.js';\n\n// Is the given value `NaN`?\nexport default function isNaN(obj) {\n return isNumber(obj) && _isNaN(obj);\n}\n","// Predicate-generating function. Often useful outside of Underscore.\nexport default function constant(value) {\n return function() {\n return value;\n };\n}\n","import { MAX_ARRAY_INDEX } from './_setup.js';\n\n// Common internal logic for `isArrayLike` and `isBufferLike`.\nexport default function createSizePropertyCheck(getSizeProperty) {\n return function(collection) {\n var sizeProperty = getSizeProperty(collection);\n return typeof sizeProperty == 'number' && sizeProperty >= 0 && sizeProperty <= MAX_ARRAY_INDEX;\n }\n}\n","// Internal helper to generate a function to obtain property `key` from `obj`.\nexport default function shallowProperty(key) {\n return function(obj) {\n return obj == null ? void 0 : obj[key];\n };\n}\n","import shallowProperty from './_shallowProperty.js';\n\n// Internal helper to obtain the `byteLength` property of an object.\nexport default shallowProperty('byteLength');\n","import createSizePropertyCheck from './_createSizePropertyCheck.js';\nimport getByteLength from './_getByteLength.js';\n\n// Internal helper to determine whether we should spend extensive checks against\n// `ArrayBuffer` et al.\nexport default createSizePropertyCheck(getByteLength);\n","import { supportsArrayBuffer, nativeIsView, toString } from './_setup.js';\nimport isDataView from './isDataView.js';\nimport constant from './constant.js';\nimport isBufferLike from './_isBufferLike.js';\n\n// Is a given value a typed array?\nvar typedArrayPattern = /\\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\\]/;\nfunction isTypedArray(obj) {\n // `ArrayBuffer.isView` is the most future-proof, so use it when available.\n // Otherwise, fall back on the above regular expression.\n return nativeIsView ? (nativeIsView(obj) && !isDataView(obj)) :\n isBufferLike(obj) && typedArrayPattern.test(toString.call(obj));\n}\n\nexport default supportsArrayBuffer ? isTypedArray : constant(false);\n","import shallowProperty from './_shallowProperty.js';\n\n// Internal helper to obtain the `length` property of an object.\nexport default shallowProperty('length');\n","import createSizePropertyCheck from './_createSizePropertyCheck.js';\nimport getLength from './_getLength.js';\n\n// Internal helper for collection methods to determine whether a collection\n// should be iterated as an array or as an object.\n// Related: https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n// Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094\nexport default createSizePropertyCheck(getLength);\n","import { nonEnumerableProps, ObjProto } from './_setup.js';\nimport isFunction from './isFunction.js';\nimport has from './_has.js';\n\n// Internal helper to create a simple lookup structure.\n// `collectNonEnumProps` used to depend on `_.contains`, but this led to\n// circular imports. `emulatedSet` is a one-off solution that only works for\n// arrays of strings.\nfunction emulatedSet(keys) {\n var hash = {};\n for (var l = keys.length, i = 0; i < l; ++i) hash[keys[i]] = true;\n return {\n contains: function(key) { return hash[key]; },\n push: function(key) {\n hash[key] = true;\n return keys.push(key);\n }\n };\n}\n\n// Internal helper. Checks `keys` for the presence of keys in IE < 9 that won't\n// be iterated by `for key in ...` and thus missed. Extends `keys` in place if\n// needed.\nexport default function collectNonEnumProps(obj, keys) {\n keys = emulatedSet(keys);\n var nonEnumIdx = nonEnumerableProps.length;\n var constructor = obj.constructor;\n var proto = isFunction(constructor) && constructor.prototype || ObjProto;\n\n // Constructor is a special case.\n var prop = 'constructor';\n if (has(obj, prop) && !keys.contains(prop)) keys.push(prop);\n\n while (nonEnumIdx--) {\n prop = nonEnumerableProps[nonEnumIdx];\n if (prop in obj && obj[prop] !== proto[prop] && !keys.contains(prop)) {\n keys.push(prop);\n }\n }\n}\n","import isObject from './isObject.js';\nimport { nativeKeys, hasEnumBug } from './_setup.js';\nimport has from './_has.js';\nimport collectNonEnumProps from './_collectNonEnumProps.js';\n\n// Retrieve the names of an object's own properties.\n// Delegates to **ECMAScript 5**'s native `Object.keys`.\nexport default function keys(obj) {\n if (!isObject(obj)) return [];\n if (nativeKeys) return nativeKeys(obj);\n var keys = [];\n for (var key in obj) if (has(obj, key)) keys.push(key);\n // Ahem, IE < 9.\n if (hasEnumBug) collectNonEnumProps(obj, keys);\n return keys;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport isArray from './isArray.js';\nimport isString from './isString.js';\nimport isArguments from './isArguments.js';\nimport keys from './keys.js';\n\n// Is a given array, string, or object empty?\n// An \"empty\" object has no enumerable own-properties.\nexport default function isEmpty(obj) {\n if (obj == null) return true;\n // Skip the more expensive `toString`-based type checks if `obj` has no\n // `.length`.\n if (isArrayLike(obj) && (isArray(obj) || isString(obj) || isArguments(obj))) return obj.length === 0;\n return keys(obj).length === 0;\n}\n","import keys from './keys.js';\n\n// Returns whether an object has a given set of `key:value` pairs.\nexport default function isMatch(object, attrs) {\n var _keys = keys(attrs), length = _keys.length;\n if (object == null) return !length;\n var obj = Object(object);\n for (var i = 0; i < length; i++) {\n var key = _keys[i];\n if (attrs[key] !== obj[key] || !(key in obj)) return false;\n }\n return true;\n}\n","import { VERSION } from './_setup.js';\n\n// If Underscore is called as a function, it returns a wrapped object that can\n// be used OO-style. This wrapper holds altered versions of all functions added\n// through `_.mixin`. Wrapped objects may be chained.\nexport default function _(obj) {\n if (obj instanceof _) return obj;\n if (!(this instanceof _)) return new _(obj);\n this._wrapped = obj;\n}\n\n_.VERSION = VERSION;\n\n// Extracts the result from a wrapped and chained object.\n_.prototype.value = function() {\n return this._wrapped;\n};\n\n// Provide unwrapping proxies for some methods used in engine operations\n// such as arithmetic and JSON stringification.\n_.prototype.valueOf = _.prototype.toJSON = _.prototype.value;\n\n_.prototype.toString = function() {\n return String(this._wrapped);\n};\n","import _ from './underscore.js';\nimport { toString, SymbolProto } from './_setup.js';\nimport getByteLength from './_getByteLength.js';\nimport isTypedArray from './isTypedArray.js';\nimport isFunction from './isFunction.js';\nimport keys from './keys.js';\nimport has from './_has.js';\n\n// Internal recursive comparison function for `_.isEqual`.\nfunction eq(a, b, aStack, bStack) {\n // Identical objects are equal. `0 === -0`, but they aren't identical.\n // See the [Harmony `egal` proposal](https://wiki.ecmascript.org/doku.php?id=harmony:egal).\n if (a === b) return a !== 0 || 1 / a === 1 / b;\n // `null` or `undefined` only equal to itself (strict comparison).\n if (a == null || b == null) return false;\n // `NaN`s are equivalent, but non-reflexive.\n if (a !== a) return b !== b;\n // Exhaust primitive checks\n var type = typeof a;\n if (type !== 'function' && type !== 'object' && typeof b != 'object') return false;\n return deepEq(a, b, aStack, bStack);\n}\n\n// Internal recursive comparison function for `_.isEqual`.\nfunction deepEq(a, b, aStack, bStack) {\n // Unwrap any wrapped objects.\n if (a instanceof _) a = a._wrapped;\n if (b instanceof _) b = b._wrapped;\n // Compare `[[Class]]` names.\n var className = toString.call(a);\n if (className !== toString.call(b)) return false;\n switch (className) {\n // These types are compared by value.\n case '[object RegExp]':\n // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')\n case '[object String]':\n // Primitives and their corresponding object wrappers are equivalent; thus, `\"5\"` is\n // equivalent to `new String(\"5\")`.\n return '' + a === '' + b;\n case '[object Number]':\n // `NaN`s are equivalent, but non-reflexive.\n // Object(NaN) is equivalent to NaN.\n if (+a !== +a) return +b !== +b;\n // An `egal` comparison is performed for other numeric values.\n return +a === 0 ? 1 / +a === 1 / b : +a === +b;\n case '[object Date]':\n case '[object Boolean]':\n // Coerce dates and booleans to numeric primitive values. Dates are compared by their\n // millisecond representations. Note that invalid dates with millisecond representations\n // of `NaN` are not equivalent.\n return +a === +b;\n case '[object Symbol]':\n return SymbolProto.valueOf.call(a) === SymbolProto.valueOf.call(b);\n case '[object ArrayBuffer]':\n // Coerce to `DataView` so we can fall through to the next case.\n return deepEq(new DataView(a), new DataView(b), aStack, bStack);\n case '[object DataView]':\n var byteLength = getByteLength(a);\n if (byteLength !== getByteLength(b)) {\n return false;\n }\n while (byteLength--) {\n if (a.getUint8(byteLength) !== b.getUint8(byteLength)) {\n return false;\n }\n }\n return true;\n }\n\n if (isTypedArray(a)) {\n // Coerce typed arrays to `DataView`.\n return deepEq(new DataView(a.buffer), new DataView(b.buffer), aStack, bStack);\n }\n\n var areArrays = className === '[object Array]';\n if (!areArrays) {\n if (typeof a != 'object' || typeof b != 'object') return false;\n\n // Objects with different constructors are not equivalent, but `Object`s or `Array`s\n // from different frames are.\n var aCtor = a.constructor, bCtor = b.constructor;\n if (aCtor !== bCtor && !(isFunction(aCtor) && aCtor instanceof aCtor &&\n isFunction(bCtor) && bCtor instanceof bCtor)\n && ('constructor' in a && 'constructor' in b)) {\n return false;\n }\n }\n // Assume equality for cyclic structures. The algorithm for detecting cyclic\n // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.\n\n // Initializing stack of traversed objects.\n // It's done here since we only need them for objects and arrays comparison.\n aStack = aStack || [];\n bStack = bStack || [];\n var length = aStack.length;\n while (length--) {\n // Linear search. Performance is inversely proportional to the number of\n // unique nested structures.\n if (aStack[length] === a) return bStack[length] === b;\n }\n\n // Add the first object to the stack of traversed objects.\n aStack.push(a);\n bStack.push(b);\n\n // Recursively compare objects and arrays.\n if (areArrays) {\n // Compare array lengths to determine if a deep comparison is necessary.\n length = a.length;\n if (length !== b.length) return false;\n // Deep compare the contents, ignoring non-numeric properties.\n while (length--) {\n if (!eq(a[length], b[length], aStack, bStack)) return false;\n }\n } else {\n // Deep compare objects.\n var _keys = keys(a), key;\n length = _keys.length;\n // Ensure that both objects contain the same number of properties before comparing deep equality.\n if (keys(b).length !== length) return false;\n while (length--) {\n // Deep compare each member\n key = _keys[length];\n if (!(has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;\n }\n }\n // Remove the first object from the stack of traversed objects.\n aStack.pop();\n bStack.pop();\n return true;\n}\n\n// Perform a deep comparison to check if two objects are equal.\nexport default function isEqual(a, b) {\n return eq(a, b);\n}\n","import isObject from './isObject.js';\nimport { hasEnumBug } from './_setup.js';\nimport collectNonEnumProps from './_collectNonEnumProps.js';\n\n// Retrieve all the enumerable property names of an object.\nexport default function allKeys(obj) {\n if (!isObject(obj)) return [];\n var keys = [];\n for (var key in obj) keys.push(key);\n // Ahem, IE < 9.\n if (hasEnumBug) collectNonEnumProps(obj, keys);\n return keys;\n}\n","import keys from './keys.js';\n\n// Retrieve the values of an object's properties.\nexport default function values(obj) {\n var _keys = keys(obj);\n var length = _keys.length;\n var values = Array(length);\n for (var i = 0; i < length; i++) {\n values[i] = obj[_keys[i]];\n }\n return values;\n}\n","import keys from './keys.js';\n\n// Convert an object into a list of `[key, value]` pairs.\n// The opposite of `_.object` with one argument.\nexport default function pairs(obj) {\n var _keys = keys(obj);\n var length = _keys.length;\n var pairs = Array(length);\n for (var i = 0; i < length; i++) {\n pairs[i] = [_keys[i], obj[_keys[i]]];\n }\n return pairs;\n}\n","import keys from './keys.js';\n\n// Invert the keys and values of an object. The values must be serializable.\nexport default function invert(obj) {\n var result = {};\n var _keys = keys(obj);\n for (var i = 0, length = _keys.length; i < length; i++) {\n result[obj[_keys[i]]] = _keys[i];\n }\n return result;\n}\n","import isFunction from './isFunction.js';\n\n// Return a sorted list of the function names available on the object.\nexport default function functions(obj) {\n var names = [];\n for (var key in obj) {\n if (isFunction(obj[key])) names.push(key);\n }\n return names.sort();\n}\n","// An internal function for creating assigner functions.\nexport default function createAssigner(keysFunc, defaults) {\n return function(obj) {\n var length = arguments.length;\n if (defaults) obj = Object(obj);\n if (length < 2 || obj == null) return obj;\n for (var index = 1; index < length; index++) {\n var source = arguments[index],\n keys = keysFunc(source),\n l = keys.length;\n for (var i = 0; i < l; i++) {\n var key = keys[i];\n if (!defaults || obj[key] === void 0) obj[key] = source[key];\n }\n }\n return obj;\n };\n}\n","import createAssigner from './_createAssigner.js';\nimport allKeys from './allKeys.js';\n\n// Extend a given object with all the properties in passed-in object(s).\nexport default createAssigner(allKeys);\n","import createAssigner from './_createAssigner.js';\nimport keys from './keys.js';\n\n// Assigns a given object with all the own properties in the passed-in\n// object(s).\n// (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)\nexport default createAssigner(keys);\n","import createAssigner from './_createAssigner.js';\nimport allKeys from './allKeys.js';\n\n// Fill in a given object with default properties.\nexport default createAssigner(allKeys, true);\n","import isObject from './isObject.js';\nimport { nativeCreate } from './_setup.js';\n\n// Create a naked function reference for surrogate-prototype-swapping.\nfunction ctor() {\n return function(){};\n}\n\n// An internal function for creating a new object that inherits from another.\nexport default function baseCreate(prototype) {\n if (!isObject(prototype)) return {};\n if (nativeCreate) return nativeCreate(prototype);\n var Ctor = ctor();\n Ctor.prototype = prototype;\n var result = new Ctor;\n Ctor.prototype = null;\n return result;\n}\n","import baseCreate from './_baseCreate.js';\nimport extendOwn from './extendOwn.js';\n\n// Creates an object that inherits from the given prototype object.\n// If additional properties are provided then they will be added to the\n// created object.\nexport default function create(prototype, props) {\n var result = baseCreate(prototype);\n if (props) extendOwn(result, props);\n return result;\n}\n","import isObject from './isObject.js';\nimport isArray from './isArray.js';\nimport extend from './extend.js';\n\n// Create a (shallow-cloned) duplicate of an object.\nexport default function clone(obj) {\n if (!isObject(obj)) return obj;\n return isArray(obj) ? obj.slice() : extend({}, obj);\n}\n","// Invokes `interceptor` with the `obj` and then returns `obj`.\n// The primary purpose of this method is to \"tap into\" a method chain, in\n// order to perform operations on intermediate results within the chain.\nexport default function tap(obj, interceptor) {\n interceptor(obj);\n return obj;\n}\n","import isArray from './isArray.js';\nimport _has from './_has.js';\nimport { hasOwnProperty } from './_setup.js';\n\n// Shortcut function for checking if an object has a given property directly on\n// itself (in other words, not on a prototype). Unlike the internal `has`\n// function, this public version can also traverse nested properties.\nexport default function has(obj, path) {\n if (!isArray(path)) {\n return _has(obj, path);\n }\n var length = path.length;\n for (var i = 0; i < length; i++) {\n var key = path[i];\n if (obj == null || !hasOwnProperty.call(obj, key)) {\n return false;\n }\n obj = obj[key];\n }\n return !!length;\n}\n","// Keep the identity function around for default iteratees.\nexport default function identity(value) {\n return value;\n}\n","import extendOwn from './extendOwn.js';\nimport isMatch from './isMatch.js';\n\n// Returns a predicate for checking whether an object has a given set of\n// `key:value` pairs.\nexport default function matcher(attrs) {\n attrs = extendOwn({}, attrs);\n return function(obj) {\n return isMatch(obj, attrs);\n };\n}\n","// Internal function to obtain a nested property in `obj` along `path`.\nexport default function deepGet(obj, path) {\n var length = path.length;\n for (var i = 0; i < length; i++) {\n if (obj == null) return void 0;\n obj = obj[path[i]];\n }\n return length ? obj : void 0;\n}\n","import isArray from './isArray.js';\nimport shallowProperty from './_shallowProperty.js';\nimport deepGet from './_deepGet.js';\n\n// Creates a function that, when passed an object, will traverse that object’s\n// properties down the given `path`, specified as an array of keys or indices.\nexport default function property(path) {\n if (!isArray(path)) {\n return shallowProperty(path);\n }\n return function(obj) {\n return deepGet(obj, path);\n };\n}\n","// Internal function that returns an efficient (for current engines) version\n// of the passed-in callback, to be repeatedly applied in other Underscore\n// functions.\nexport default function optimizeCb(func, context, argCount) {\n if (context === void 0) return func;\n switch (argCount == null ? 3 : argCount) {\n case 1: return function(value) {\n return func.call(context, value);\n };\n // The 2-argument case is omitted because we’re not using it.\n case 3: return function(value, index, collection) {\n return func.call(context, value, index, collection);\n };\n case 4: return function(accumulator, value, index, collection) {\n return func.call(context, accumulator, value, index, collection);\n };\n }\n return function() {\n return func.apply(context, arguments);\n };\n}\n","import identity from './identity.js';\nimport isFunction from './isFunction.js';\nimport isObject from './isObject.js';\nimport isArray from './isArray.js';\nimport matcher from './matcher.js';\nimport property from './property.js';\nimport optimizeCb from './_optimizeCb.js';\n\n// An internal function to generate callbacks that can be applied to each\n// element in a collection, returning the desired result — either `_.identity`,\n// an arbitrary callback, a property matcher, or a property accessor.\nexport default function baseIteratee(value, context, argCount) {\n if (value == null) return identity;\n if (isFunction(value)) return optimizeCb(value, context, argCount);\n if (isObject(value) && !isArray(value)) return matcher(value);\n return property(value);\n}\n","import _ from './underscore.js';\nimport baseIteratee from './_baseIteratee.js';\n\n// External wrapper for our callback generator. Users may customize\n// `_.iteratee` if they want additional predicate/iteratee shorthand styles.\n// This abstraction hides the internal-only `argCount` argument.\nexport default function iteratee(value, context) {\n return baseIteratee(value, context, Infinity);\n}\n_.iteratee = iteratee;\n","import _ from './underscore.js';\nimport baseIteratee from './_baseIteratee.js';\nimport iteratee from './iteratee.js';\n\n// The function we call internally to generate a callback. It invokes\n// `_.iteratee` if overridden, otherwise `baseIteratee`.\nexport default function cb(value, context, argCount) {\n if (_.iteratee !== iteratee) return _.iteratee(value, context);\n return baseIteratee(value, context, argCount);\n}\n","import cb from './_cb.js';\nimport keys from './keys.js';\n\n// Returns the results of applying the `iteratee` to each element of `obj`.\n// In contrast to `_.map` it returns an object.\nexport default function mapObject(obj, iteratee, context) {\n iteratee = cb(iteratee, context);\n var _keys = keys(obj),\n length = _keys.length,\n results = {};\n for (var index = 0; index < length; index++) {\n var currentKey = _keys[index];\n results[currentKey] = iteratee(obj[currentKey], currentKey, obj);\n }\n return results;\n}\n","// Predicate-generating function. Often useful outside of Underscore.\nexport default function noop(){}\n","import isArray from './isArray.js';\nimport deepGet from './_deepGet.js';\n\n// Generates a function for a given object that returns a given property.\nexport default function propertyOf(obj) {\n if (obj == null) {\n return function(){};\n }\n return function(path) {\n return !isArray(path) ? obj[path] : deepGet(obj, path);\n };\n}\n","import optimizeCb from './_optimizeCb.js';\n\n// Run a function **n** times.\nexport default function times(n, iteratee, context) {\n var accum = Array(Math.max(0, n));\n iteratee = optimizeCb(iteratee, context, 1);\n for (var i = 0; i < n; i++) accum[i] = iteratee(i);\n return accum;\n}\n","// Return a random integer between `min` and `max` (inclusive).\nexport default function random(min, max) {\n if (max == null) {\n max = min;\n min = 0;\n }\n return min + Math.floor(Math.random() * (max - min + 1));\n}\n","// A (possibly faster) way to get the current timestamp as an integer.\nexport default Date.now || function() {\n return new Date().getTime();\n};\n","import keys from './keys.js';\n\n// Internal helper to generate functions for escaping and unescaping strings\n// to/from HTML interpolation.\nexport default function createEscaper(map) {\n var escaper = function(match) {\n return map[match];\n };\n // Regexes for identifying a key that needs to be escaped.\n var source = '(?:' + keys(map).join('|') + ')';\n var testRegexp = RegExp(source);\n var replaceRegexp = RegExp(source, 'g');\n return function(string) {\n string = string == null ? '' : '' + string;\n return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;\n };\n}\n","// Internal list of HTML entities for escaping.\nexport default {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n \"'\": ''',\n '`': '`'\n};\n","import createEscaper from './_createEscaper.js';\nimport escapeMap from './_escapeMap.js';\n\n// Function for escaping strings to HTML interpolation.\nexport default createEscaper(escapeMap);\n","import createEscaper from './_createEscaper.js';\nimport unescapeMap from './_unescapeMap.js';\n\n// Function for unescaping strings from HTML interpolation.\nexport default createEscaper(unescapeMap);\n","import invert from './invert.js';\nimport escapeMap from './_escapeMap.js';\n\n// Internal list of HTML entities for unescaping.\nexport default invert(escapeMap);\n","import _ from './underscore.js';\n\n// By default, Underscore uses ERB-style template delimiters. Change the\n// following template settings to use alternative delimiters.\nexport default _.templateSettings = {\n evaluate: /<%([\\s\\S]+?)%>/g,\n interpolate: /<%=([\\s\\S]+?)%>/g,\n escape: /<%-([\\s\\S]+?)%>/g\n};\n","import defaults from './defaults.js';\nimport _ from './underscore.js';\nimport './templateSettings.js';\n\n// When customizing `_.templateSettings`, if you don't want to define an\n// interpolation, evaluation or escaping regex, we need one that is\n// guaranteed not to match.\nvar noMatch = /(.)^/;\n\n// Certain characters need to be escaped so that they can be put into a\n// string literal.\nvar escapes = {\n \"'\": \"'\",\n '\\\\': '\\\\',\n '\\r': 'r',\n '\\n': 'n',\n '\\u2028': 'u2028',\n '\\u2029': 'u2029'\n};\n\nvar escapeRegExp = /\\\\|'|\\r|\\n|\\u2028|\\u2029/g;\n\nfunction escapeChar(match) {\n return '\\\\' + escapes[match];\n}\n\n// JavaScript micro-templating, similar to John Resig's implementation.\n// Underscore templating handles arbitrary delimiters, preserves whitespace,\n// and correctly escapes quotes within interpolated code.\n// NB: `oldSettings` only exists for backwards compatibility.\nexport default function template(text, settings, oldSettings) {\n if (!settings && oldSettings) settings = oldSettings;\n settings = defaults({}, settings, _.templateSettings);\n\n // Combine delimiters into one regular expression via alternation.\n var matcher = RegExp([\n (settings.escape || noMatch).source,\n (settings.interpolate || noMatch).source,\n (settings.evaluate || noMatch).source\n ].join('|') + '|$', 'g');\n\n // Compile the template source, escaping string literals appropriately.\n var index = 0;\n var source = \"__p+='\";\n text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {\n source += text.slice(index, offset).replace(escapeRegExp, escapeChar);\n index = offset + match.length;\n\n if (escape) {\n source += \"'+\\n((__t=(\" + escape + \"))==null?'':_.escape(__t))+\\n'\";\n } else if (interpolate) {\n source += \"'+\\n((__t=(\" + interpolate + \"))==null?'':__t)+\\n'\";\n } else if (evaluate) {\n source += \"';\\n\" + evaluate + \"\\n__p+='\";\n }\n\n // Adobe VMs need the match returned to produce the correct offset.\n return match;\n });\n source += \"';\\n\";\n\n // If a variable is not specified, place data values in local scope.\n if (!settings.variable) source = 'with(obj||{}){\\n' + source + '}\\n';\n\n source = \"var __t,__p='',__j=Array.prototype.join,\" +\n \"print=function(){__p+=__j.call(arguments,'');};\\n\" +\n source + 'return __p;\\n';\n\n var render;\n try {\n render = new Function(settings.variable || 'obj', '_', source);\n } catch (e) {\n e.source = source;\n throw e;\n }\n\n var template = function(data) {\n return render.call(this, data, _);\n };\n\n // Provide the compiled source as a convenience for precompilation.\n var argument = settings.variable || 'obj';\n template.source = 'function(' + argument + '){\\n' + source + '}';\n\n return template;\n}\n","import isArray from './isArray.js';\nimport isFunction from './isFunction.js';\n\n// Traverses the children of `obj` along `path`. If a child is a function, it\n// is invoked with its parent as context. Returns the value of the final\n// child, or `fallback` if any child is undefined.\nexport default function result(obj, path, fallback) {\n if (!isArray(path)) path = [path];\n var length = path.length;\n if (!length) {\n return isFunction(fallback) ? fallback.call(obj) : fallback;\n }\n for (var i = 0; i < length; i++) {\n var prop = obj == null ? void 0 : obj[path[i]];\n if (prop === void 0) {\n prop = fallback;\n i = length; // Ensure we don't continue iterating.\n }\n obj = isFunction(prop) ? prop.call(obj) : prop;\n }\n return obj;\n}\n","// Generate a unique integer id (unique within the entire client session).\n// Useful for temporary DOM ids.\nvar idCounter = 0;\nexport default function uniqueId(prefix) {\n var id = ++idCounter + '';\n return prefix ? prefix + id : id;\n}\n","import _ from './underscore.js';\n\n// Start chaining a wrapped Underscore object.\nexport default function chain(obj) {\n var instance = _(obj);\n instance._chain = true;\n return instance;\n}\n","import baseCreate from './_baseCreate.js';\nimport isObject from './isObject.js';\n\n// Internal function to execute `sourceFunc` bound to `context` with optional\n// `args`. Determines whether to execute a function as a constructor or as a\n// normal function.\nexport default function executeBound(sourceFunc, boundFunc, context, callingContext, args) {\n if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);\n var self = baseCreate(sourceFunc.prototype);\n var result = sourceFunc.apply(self, args);\n if (isObject(result)) return result;\n return self;\n}\n","import restArguments from './restArguments.js';\nimport executeBound from './_executeBound.js';\nimport _ from './underscore.js';\n\n// Partially apply a function by creating a version that has had some of its\n// arguments pre-filled, without changing its dynamic `this` context. `_` acts\n// as a placeholder by default, allowing any combination of arguments to be\n// pre-filled. Set `_.partial.placeholder` for a custom placeholder argument.\nvar partial = restArguments(function(func, boundArgs) {\n var placeholder = partial.placeholder;\n var bound = function() {\n var position = 0, length = boundArgs.length;\n var args = Array(length);\n for (var i = 0; i < length; i++) {\n args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i];\n }\n while (position < arguments.length) args.push(arguments[position++]);\n return executeBound(func, bound, this, this, args);\n };\n return bound;\n});\n\npartial.placeholder = _;\nexport default partial;\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport executeBound from './_executeBound.js';\n\n// Create a function bound to a given object (assigning `this`, and arguments,\n// optionally).\nexport default restArguments(function(func, context, args) {\n if (!isFunction(func)) throw new TypeError('Bind must be called on a function');\n var bound = restArguments(function(callArgs) {\n return executeBound(func, bound, context, this, args.concat(callArgs));\n });\n return bound;\n});\n","import getLength from './_getLength.js';\nimport isArrayLike from './_isArrayLike.js';\nimport isArray from './isArray.js';\nimport isArguments from './isArguments.js';\n\n// Internal implementation of a recursive `flatten` function.\nexport default function flatten(input, depth, strict, output) {\n output = output || [];\n if (!depth && depth !== 0) {\n depth = Infinity;\n } else if (depth <= 0) {\n return output.concat(input);\n }\n var idx = output.length;\n for (var i = 0, length = getLength(input); i < length; i++) {\n var value = input[i];\n if (isArrayLike(value) && (isArray(value) || isArguments(value))) {\n // Flatten current level of array or arguments object.\n if (depth > 1) {\n flatten(value, depth - 1, strict, output);\n idx = output.length;\n } else {\n var j = 0, len = value.length;\n while (j < len) output[idx++] = value[j++];\n }\n } else if (!strict) {\n output[idx++] = value;\n }\n }\n return output;\n}\n","import restArguments from './restArguments.js';\nimport flatten from './_flatten.js';\nimport bind from './bind.js';\n\n// Bind a number of an object's methods to that object. Remaining arguments\n// are the method names to be bound. Useful for ensuring that all callbacks\n// defined on an object belong to it.\nexport default restArguments(function(obj, keys) {\n keys = flatten(keys, false, false);\n var index = keys.length;\n if (index < 1) throw new Error('bindAll must be passed function names');\n while (index--) {\n var key = keys[index];\n obj[key] = bind(obj[key], obj);\n }\n return obj;\n});\n","import has from './_has.js';\n\n// Memoize an expensive function by storing its results.\nexport default function memoize(func, hasher) {\n var memoize = function(key) {\n var cache = memoize.cache;\n var address = '' + (hasher ? hasher.apply(this, arguments) : key);\n if (!has(cache, address)) cache[address] = func.apply(this, arguments);\n return cache[address];\n };\n memoize.cache = {};\n return memoize;\n}\n","import restArguments from './restArguments.js';\n\n// Delays a function for the given number of milliseconds, and then calls\n// it with the arguments supplied.\nexport default restArguments(function(func, wait, args) {\n return setTimeout(function() {\n return func.apply(null, args);\n }, wait);\n});\n","import partial from './partial.js';\nimport delay from './delay.js';\nimport _ from './underscore.js';\n\n// Defers a function, scheduling it to run after the current call stack has\n// cleared.\nexport default partial(delay, _, 1);\n","import now from './now.js';\n\n// Returns a function, that, when invoked, will only be triggered at most once\n// during a given window of time. Normally, the throttled function will run\n// as much as it can, without ever going more than once per `wait` duration;\n// but if you'd like to disable the execution on the leading edge, pass\n// `{leading: false}`. To disable execution on the trailing edge, ditto.\nexport default function throttle(func, wait, options) {\n var timeout, context, args, result;\n var previous = 0;\n if (!options) options = {};\n\n var later = function() {\n previous = options.leading === false ? 0 : now();\n timeout = null;\n result = func.apply(context, args);\n if (!timeout) context = args = null;\n };\n\n var throttled = function() {\n var _now = now();\n if (!previous && options.leading === false) previous = _now;\n var remaining = wait - (_now - previous);\n context = this;\n args = arguments;\n if (remaining <= 0 || remaining > wait) {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n previous = _now;\n result = func.apply(context, args);\n if (!timeout) context = args = null;\n } else if (!timeout && options.trailing !== false) {\n timeout = setTimeout(later, remaining);\n }\n return result;\n };\n\n throttled.cancel = function() {\n clearTimeout(timeout);\n previous = 0;\n timeout = context = args = null;\n };\n\n return throttled;\n}\n","import restArguments from './restArguments.js';\nimport delay from './delay.js';\n\n// When a sequence of calls of the returned function ends, the argument\n// function is triggered. The end of a sequence is defined by the `wait`\n// parameter. If `immediate` is passed, the argument function will be\n// triggered at the beginning of the sequence instead of at the end.\nexport default function debounce(func, wait, immediate) {\n var timeout, result;\n\n var later = function(context, args) {\n timeout = null;\n if (args) result = func.apply(context, args);\n };\n\n var debounced = restArguments(function(args) {\n if (timeout) clearTimeout(timeout);\n if (immediate) {\n var callNow = !timeout;\n timeout = setTimeout(later, wait);\n if (callNow) result = func.apply(this, args);\n } else {\n timeout = delay(later, wait, this, args);\n }\n\n return result;\n });\n\n debounced.cancel = function() {\n clearTimeout(timeout);\n timeout = null;\n };\n\n return debounced;\n}\n","import partial from './partial.js';\n\n// Returns the first function passed as an argument to the second,\n// allowing you to adjust arguments, run code before and after, and\n// conditionally execute the original function.\nexport default function wrap(func, wrapper) {\n return partial(wrapper, func);\n}\n","// Returns a negated version of the passed-in predicate.\nexport default function negate(predicate) {\n return function() {\n return !predicate.apply(this, arguments);\n };\n}\n","// Returns a function that is the composition of a list of functions, each\n// consuming the return value of the function that follows.\nexport default function compose() {\n var args = arguments;\n var start = args.length - 1;\n return function() {\n var i = start;\n var result = args[start].apply(this, arguments);\n while (i--) result = args[i].call(this, result);\n return result;\n };\n}\n","// Returns a function that will only be executed on and after the Nth call.\nexport default function after(times, func) {\n return function() {\n if (--times < 1) {\n return func.apply(this, arguments);\n }\n };\n}\n","// Returns a function that will only be executed up to (but not including) the\n// Nth call.\nexport default function before(times, func) {\n var memo;\n return function() {\n if (--times > 0) {\n memo = func.apply(this, arguments);\n }\n if (times <= 1) func = null;\n return memo;\n };\n}\n","import partial from './partial.js';\nimport before from './before.js';\n\n// Returns a function that will be executed at most one time, no matter how\n// often you call it. Useful for lazy initialization.\nexport default partial(before, 2);\n","import cb from './_cb.js';\nimport keys from './keys.js';\n\n// Returns the first key on an object that passes a truth test.\nexport default function findKey(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = keys(obj), key;\n for (var i = 0, length = _keys.length; i < length; i++) {\n key = _keys[i];\n if (predicate(obj[key], key, obj)) return key;\n }\n}\n","import cb from './_cb.js';\nimport getLength from './_getLength.js';\n\n// Internal function to generate `_.findIndex` and `_.findLastIndex`.\nexport default function createPredicateIndexFinder(dir) {\n return function(array, predicate, context) {\n predicate = cb(predicate, context);\n var length = getLength(array);\n var index = dir > 0 ? 0 : length - 1;\n for (; index >= 0 && index < length; index += dir) {\n if (predicate(array[index], index, array)) return index;\n }\n return -1;\n };\n}\n","import createPredicateIndexFinder from './_createPredicateIndexFinder.js';\n\n// Returns the first index on an array-like that passes a truth test.\nexport default createPredicateIndexFinder(1);\n","import createPredicateIndexFinder from './_createPredicateIndexFinder.js';\n\n// Returns the last index on an array-like that passes a truth test.\nexport default createPredicateIndexFinder(-1);\n","import cb from './_cb.js';\nimport getLength from './_getLength.js';\n\n// Use a comparator function to figure out the smallest index at which\n// an object should be inserted so as to maintain order. Uses binary search.\nexport default function sortedIndex(array, obj, iteratee, context) {\n iteratee = cb(iteratee, context, 1);\n var value = iteratee(obj);\n var low = 0, high = getLength(array);\n while (low < high) {\n var mid = Math.floor((low + high) / 2);\n if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;\n }\n return low;\n}\n","import getLength from './_getLength.js';\nimport { slice } from './_setup.js';\nimport isNaN from './isNaN.js';\n\n// Internal function to generate the `_.indexOf` and `_.lastIndexOf` functions.\nexport default function createIndexFinder(dir, predicateFind, sortedIndex) {\n return function(array, item, idx) {\n var i = 0, length = getLength(array);\n if (typeof idx == 'number') {\n if (dir > 0) {\n i = idx >= 0 ? idx : Math.max(idx + length, i);\n } else {\n length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;\n }\n } else if (sortedIndex && idx && length) {\n idx = sortedIndex(array, item);\n return array[idx] === item ? idx : -1;\n }\n if (item !== item) {\n idx = predicateFind(slice.call(array, i, length), isNaN);\n return idx >= 0 ? idx + i : -1;\n }\n for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {\n if (array[idx] === item) return idx;\n }\n return -1;\n };\n}\n","import sortedIndex from './sortedIndex.js';\nimport findIndex from './findIndex.js';\nimport createIndexFinder from './_createIndexFinder.js';\n\n// Return the position of the first occurrence of an item in an array,\n// or -1 if the item is not included in the array.\n// If the array is large and already in sort order, pass `true`\n// for **isSorted** to use binary search.\nexport default createIndexFinder(1, findIndex, sortedIndex);\n","import findLastIndex from './findLastIndex.js';\nimport createIndexFinder from './_createIndexFinder.js';\n\n// Return the position of the last occurrence of an item in an array,\n// or -1 if the item is not included in the array.\nexport default createIndexFinder(-1, findLastIndex);\n","import isArrayLike from './_isArrayLike.js';\nimport findIndex from './findIndex.js';\nimport findKey from './findKey.js';\n\n// Return the first value which passes a truth test.\nexport default function find(obj, predicate, context) {\n var keyFinder = isArrayLike(obj) ? findIndex : findKey;\n var key = keyFinder(obj, predicate, context);\n if (key !== void 0 && key !== -1) return obj[key];\n}\n","import find from './find.js';\nimport matcher from './matcher.js';\n\n// Convenience version of a common use case of `_.find`: getting the first\n// object containing specific `key:value` pairs.\nexport default function findWhere(obj, attrs) {\n return find(obj, matcher(attrs));\n}\n","import optimizeCb from './_optimizeCb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// The cornerstone for collection functions, an `each`\n// implementation, aka `forEach`.\n// Handles raw objects in addition to array-likes. Treats all\n// sparse array-likes as if they were dense.\nexport default function each(obj, iteratee, context) {\n iteratee = optimizeCb(iteratee, context);\n var i, length;\n if (isArrayLike(obj)) {\n for (i = 0, length = obj.length; i < length; i++) {\n iteratee(obj[i], i, obj);\n }\n } else {\n var _keys = keys(obj);\n for (i = 0, length = _keys.length; i < length; i++) {\n iteratee(obj[_keys[i]], _keys[i], obj);\n }\n }\n return obj;\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Return the results of applying the iteratee to each element.\nexport default function map(obj, iteratee, context) {\n iteratee = cb(iteratee, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length,\n results = Array(length);\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n results[index] = iteratee(obj[currentKey], currentKey, obj);\n }\n return results;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\nimport optimizeCb from './_optimizeCb.js';\n\n// Internal helper to create a reducing function, iterating left or right.\nexport default function createReduce(dir) {\n // Wrap code that reassigns argument variables in a separate function than\n // the one that accesses `arguments.length` to avoid a perf hit. (#1991)\n var reducer = function(obj, iteratee, memo, initial) {\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length,\n index = dir > 0 ? 0 : length - 1;\n if (!initial) {\n memo = obj[_keys ? _keys[index] : index];\n index += dir;\n }\n for (; index >= 0 && index < length; index += dir) {\n var currentKey = _keys ? _keys[index] : index;\n memo = iteratee(memo, obj[currentKey], currentKey, obj);\n }\n return memo;\n };\n\n return function(obj, iteratee, memo, context) {\n var initial = arguments.length >= 3;\n return reducer(obj, optimizeCb(iteratee, context, 4), memo, initial);\n };\n}\n","import createReduce from './_createReduce.js';\n\n// **Reduce** builds up a single result from a list of values, aka `inject`,\n// or `foldl`.\nexport default createReduce(1);\n","import createReduce from './_createReduce.js';\n\n// The right-associative version of reduce, also known as `foldr`.\nexport default createReduce(-1);\n","import cb from './_cb.js';\nimport each from './each.js';\n\n// Return all the elements that pass a truth test.\nexport default function filter(obj, predicate, context) {\n var results = [];\n predicate = cb(predicate, context);\n each(obj, function(value, index, list) {\n if (predicate(value, index, list)) results.push(value);\n });\n return results;\n}\n","import filter from './filter.js';\nimport negate from './negate.js';\nimport cb from './_cb.js';\n\n// Return all the elements for which a truth test fails.\nexport default function reject(obj, predicate, context) {\n return filter(obj, negate(cb(predicate)), context);\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Determine whether all of the elements pass a truth test.\nexport default function every(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length;\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n if (!predicate(obj[currentKey], currentKey, obj)) return false;\n }\n return true;\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Determine if at least one element in the object passes a truth test.\nexport default function some(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length;\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n if (predicate(obj[currentKey], currentKey, obj)) return true;\n }\n return false;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport indexOf from './indexOf.js';\n\n// Determine if the array or object contains a given item (using `===`).\nexport default function contains(obj, item, fromIndex, guard) {\n if (!isArrayLike(obj)) obj = values(obj);\n if (typeof fromIndex != 'number' || guard) fromIndex = 0;\n return indexOf(obj, item, fromIndex) >= 0;\n}\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport isArray from './isArray.js';\nimport map from './map.js';\nimport deepGet from './_deepGet.js';\n\n// Invoke a method (with arguments) on every item in a collection.\nexport default restArguments(function(obj, path, args) {\n var contextPath, func;\n if (isFunction(path)) {\n func = path;\n } else if (isArray(path)) {\n contextPath = path.slice(0, -1);\n path = path[path.length - 1];\n }\n return map(obj, function(context) {\n var method = func;\n if (!method) {\n if (contextPath && contextPath.length) {\n context = deepGet(context, contextPath);\n }\n if (context == null) return void 0;\n method = context[path];\n }\n return method == null ? method : method.apply(context, args);\n });\n});\n","import map from './map.js';\nimport property from './property.js';\n\n// Convenience version of a common use case of `_.map`: fetching a property.\nexport default function pluck(obj, key) {\n return map(obj, property(key));\n}\n","import filter from './filter.js';\nimport matcher from './matcher.js';\n\n// Convenience version of a common use case of `_.filter`: selecting only\n// objects containing specific `key:value` pairs.\nexport default function where(obj, attrs) {\n return filter(obj, matcher(attrs));\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport cb from './_cb.js';\nimport each from './each.js';\n\n// Return the maximum element (or element-based computation).\nexport default function max(obj, iteratee, context) {\n var result = -Infinity, lastComputed = -Infinity,\n value, computed;\n if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) {\n obj = isArrayLike(obj) ? obj : values(obj);\n for (var i = 0, length = obj.length; i < length; i++) {\n value = obj[i];\n if (value != null && value > result) {\n result = value;\n }\n }\n } else {\n iteratee = cb(iteratee, context);\n each(obj, function(v, index, list) {\n computed = iteratee(v, index, list);\n if (computed > lastComputed || computed === -Infinity && result === -Infinity) {\n result = v;\n lastComputed = computed;\n }\n });\n }\n return result;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport cb from './_cb.js';\nimport each from './each.js';\n\n// Return the minimum element (or element-based computation).\nexport default function min(obj, iteratee, context) {\n var result = Infinity, lastComputed = Infinity,\n value, computed;\n if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) {\n obj = isArrayLike(obj) ? obj : values(obj);\n for (var i = 0, length = obj.length; i < length; i++) {\n value = obj[i];\n if (value != null && value < result) {\n result = value;\n }\n }\n } else {\n iteratee = cb(iteratee, context);\n each(obj, function(v, index, list) {\n computed = iteratee(v, index, list);\n if (computed < lastComputed || computed === Infinity && result === Infinity) {\n result = v;\n lastComputed = computed;\n }\n });\n }\n return result;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport clone from './clone.js';\nimport values from './values.js';\nimport getLength from './_getLength.js';\nimport random from './random.js';\n\n// Sample **n** random values from a collection using the modern version of the\n// [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher–Yates_shuffle).\n// If **n** is not specified, returns a single random element.\n// The internal `guard` argument allows it to work with `_.map`.\nexport default function sample(obj, n, guard) {\n if (n == null || guard) {\n if (!isArrayLike(obj)) obj = values(obj);\n return obj[random(obj.length - 1)];\n }\n var sample = isArrayLike(obj) ? clone(obj) : values(obj);\n var length = getLength(sample);\n n = Math.max(Math.min(n, length), 0);\n var last = length - 1;\n for (var index = 0; index < n; index++) {\n var rand = random(index, last);\n var temp = sample[index];\n sample[index] = sample[rand];\n sample[rand] = temp;\n }\n return sample.slice(0, n);\n}\n","import sample from './sample.js';\n\n// Shuffle a collection.\nexport default function shuffle(obj) {\n return sample(obj, Infinity);\n}\n","import cb from './_cb.js';\nimport pluck from './pluck.js';\nimport map from './map.js';\n\n// Sort the object's values by a criterion produced by an iteratee.\nexport default function sortBy(obj, iteratee, context) {\n var index = 0;\n iteratee = cb(iteratee, context);\n return pluck(map(obj, function(value, key, list) {\n return {\n value: value,\n index: index++,\n criteria: iteratee(value, key, list)\n };\n }).sort(function(left, right) {\n var a = left.criteria;\n var b = right.criteria;\n if (a !== b) {\n if (a > b || a === void 0) return 1;\n if (a < b || b === void 0) return -1;\n }\n return left.index - right.index;\n }), 'value');\n}\n","import cb from './_cb.js';\nimport each from './each.js';\n\n// An internal function used for aggregate \"group by\" operations.\nexport default function group(behavior, partition) {\n return function(obj, iteratee, context) {\n var result = partition ? [[], []] : {};\n iteratee = cb(iteratee, context);\n each(obj, function(value, index) {\n var key = iteratee(value, index, obj);\n behavior(result, value, key);\n });\n return result;\n };\n}\n","import group from './_group.js';\nimport has from './_has.js';\n\n// Groups the object's values by a criterion. Pass either a string attribute\n// to group by, or a function that returns the criterion.\nexport default group(function(result, value, key) {\n if (has(result, key)) result[key].push(value); else result[key] = [value];\n});\n","import group from './_group.js';\n\n// Indexes the object's values by a criterion, similar to `_.groupBy`, but for\n// when you know that your index values will be unique.\nexport default group(function(result, value, key) {\n result[key] = value;\n});\n","import group from './_group.js';\nimport has from './_has.js';\n\n// Counts instances of an object that group by a certain criterion. Pass\n// either a string attribute to count by, or a function that returns the\n// criterion.\nexport default group(function(result, value, key) {\n if (has(result, key)) result[key]++; else result[key] = 1;\n});\n","import group from './_group.js';\n\n// Split a collection into two arrays: one whose elements all pass the given\n// truth test, and one whose elements all do not pass the truth test.\nexport default group(function(result, value, pass) {\n result[pass ? 0 : 1].push(value);\n}, true);\n","import isArray from './isArray.js';\nimport { slice } from './_setup.js';\nimport isString from './isString.js';\nimport isArrayLike from './_isArrayLike.js';\nimport map from './map.js';\nimport identity from './identity.js';\nimport values from './values.js';\n\n// Safely create a real, live array from anything iterable.\nvar reStrSymbol = /[^\\ud800-\\udfff]|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\ud800-\\udfff]/g;\nexport default function toArray(obj) {\n if (!obj) return [];\n if (isArray(obj)) return slice.call(obj);\n if (isString(obj)) {\n // Keep surrogate pair characters together.\n return obj.match(reStrSymbol);\n }\n if (isArrayLike(obj)) return map(obj, identity);\n return values(obj);\n}\n","import isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Return the number of elements in a collection.\nexport default function size(obj) {\n if (obj == null) return 0;\n return isArrayLike(obj) ? obj.length : keys(obj).length;\n}\n","// Internal `_.pick` helper function to determine whether `key` is an enumerable\n// property name of `obj`.\nexport default function keyInObj(value, key, obj) {\n return key in obj;\n}\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport optimizeCb from './_optimizeCb.js';\nimport allKeys from './allKeys.js';\nimport keyInObj from './_keyInObj.js';\nimport flatten from './_flatten.js';\n\n// Return a copy of the object only containing the allowed properties.\nexport default restArguments(function(obj, keys) {\n var result = {}, iteratee = keys[0];\n if (obj == null) return result;\n if (isFunction(iteratee)) {\n if (keys.length > 1) iteratee = optimizeCb(iteratee, keys[1]);\n keys = allKeys(obj);\n } else {\n iteratee = keyInObj;\n keys = flatten(keys, false, false);\n obj = Object(obj);\n }\n for (var i = 0, length = keys.length; i < length; i++) {\n var key = keys[i];\n var value = obj[key];\n if (iteratee(value, key, obj)) result[key] = value;\n }\n return result;\n});\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport negate from './negate.js';\nimport map from './map.js';\nimport flatten from './_flatten.js';\nimport contains from './contains.js';\nimport pick from './pick.js';\n\n// Return a copy of the object without the disallowed properties.\nexport default restArguments(function(obj, keys) {\n var iteratee = keys[0], context;\n if (isFunction(iteratee)) {\n iteratee = negate(iteratee);\n if (keys.length > 1) context = keys[1];\n } else {\n keys = map(flatten(keys, false, false), String);\n iteratee = function(value, key) {\n return !contains(keys, key);\n };\n }\n return pick(obj, iteratee, context);\n});\n","import { slice } from './_setup.js';\n\n// Returns everything but the last entry of the array. Especially useful on\n// the arguments object. Passing **n** will return all the values in\n// the array, excluding the last N.\nexport default function initial(array, n, guard) {\n return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));\n}\n","import initial from './initial.js';\n\n// Get the first element of an array. Passing **n** will return the first N\n// values in the array. The **guard** check allows it to work with `_.map`.\nexport default function first(array, n, guard) {\n if (array == null || array.length < 1) return n == null || guard ? void 0 : [];\n if (n == null || guard) return array[0];\n return initial(array, array.length - n);\n}\n","import { slice } from './_setup.js';\n\n// Returns everything but the first entry of the `array`. Especially useful on\n// the `arguments` object. Passing an **n** will return the rest N values in the\n// `array`.\nexport default function rest(array, n, guard) {\n return slice.call(array, n == null || guard ? 1 : n);\n}\n","import rest from './rest.js';\n\n// Get the last element of an array. Passing **n** will return the last N\n// values in the array.\nexport default function last(array, n, guard) {\n if (array == null || array.length < 1) return n == null || guard ? void 0 : [];\n if (n == null || guard) return array[array.length - 1];\n return rest(array, Math.max(0, array.length - n));\n}\n","import filter from './filter.js';\n\n// Trim out all falsy values from an array.\nexport default function compact(array) {\n return filter(array, Boolean);\n}\n","import _flatten from './_flatten.js';\n\n// Flatten out an array, either recursively (by default), or up to `depth`.\n// Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively.\nexport default function flatten(array, depth) {\n return _flatten(array, depth, false);\n}\n","import restArguments from './restArguments.js';\nimport flatten from './_flatten.js';\nimport filter from './filter.js';\nimport contains from './contains.js';\n\n// Take the difference between one array and a number of other arrays.\n// Only the elements present in just the first array will remain.\nexport default restArguments(function(array, rest) {\n rest = flatten(rest, true, true);\n return filter(array, function(value){\n return !contains(rest, value);\n });\n});\n","import restArguments from './restArguments.js';\nimport difference from './difference.js';\n\n// Return a version of the array that does not contain the specified value(s).\nexport default restArguments(function(array, otherArrays) {\n return difference(array, otherArrays);\n});\n","import isBoolean from './isBoolean.js';\nimport cb from './_cb.js';\nimport getLength from './_getLength.js';\nimport contains from './contains.js';\n\n// Produce a duplicate-free version of the array. If the array has already\n// been sorted, you have the option of using a faster algorithm.\n// The faster algorithm will not work with an iteratee if the iteratee\n// is not a one-to-one function, so providing an iteratee will disable\n// the faster algorithm.\nexport default function uniq(array, isSorted, iteratee, context) {\n if (!isBoolean(isSorted)) {\n context = iteratee;\n iteratee = isSorted;\n isSorted = false;\n }\n if (iteratee != null) iteratee = cb(iteratee, context);\n var result = [];\n var seen = [];\n for (var i = 0, length = getLength(array); i < length; i++) {\n var value = array[i],\n computed = iteratee ? iteratee(value, i, array) : value;\n if (isSorted && !iteratee) {\n if (!i || seen !== computed) result.push(value);\n seen = computed;\n } else if (iteratee) {\n if (!contains(seen, computed)) {\n seen.push(computed);\n result.push(value);\n }\n } else if (!contains(result, value)) {\n result.push(value);\n }\n }\n return result;\n}\n","import restArguments from './restArguments.js';\nimport uniq from './uniq.js';\nimport flatten from './_flatten.js';\n\n// Produce an array that contains the union: each distinct element from all of\n// the passed-in arrays.\nexport default restArguments(function(arrays) {\n return uniq(flatten(arrays, true, true));\n});\n","import getLength from './_getLength.js';\nimport contains from './contains.js';\n\n// Produce an array that contains every item shared between all the\n// passed-in arrays.\nexport default function intersection(array) {\n var result = [];\n var argsLength = arguments.length;\n for (var i = 0, length = getLength(array); i < length; i++) {\n var item = array[i];\n if (contains(result, item)) continue;\n var j;\n for (j = 1; j < argsLength; j++) {\n if (!contains(arguments[j], item)) break;\n }\n if (j === argsLength) result.push(item);\n }\n return result;\n}\n","import max from './max.js';\nimport getLength from './_getLength.js';\nimport pluck from './pluck.js';\n\n// Complement of zip. Unzip accepts an array of arrays and groups\n// each array's elements on shared indices.\nexport default function unzip(array) {\n var length = array && max(array, getLength).length || 0;\n var result = Array(length);\n\n for (var index = 0; index < length; index++) {\n result[index] = pluck(array, index);\n }\n return result;\n}\n","import restArguments from './restArguments.js';\nimport unzip from './unzip.js';\n\n// Zip together multiple lists into a single array -- elements that share\n// an index go together.\nexport default restArguments(unzip);\n","import getLength from './_getLength.js';\n\n// Converts lists into objects. Pass either a single array of `[key, value]`\n// pairs, or two parallel arrays of the same length -- one of keys, and one of\n// the corresponding values. Passing by pairs is the reverse of `_.pairs`.\nexport default function object(list, values) {\n var result = {};\n for (var i = 0, length = getLength(list); i < length; i++) {\n if (values) {\n result[list[i]] = values[i];\n } else {\n result[list[i][0]] = list[i][1];\n }\n }\n return result;\n}\n","// Generate an integer Array containing an arithmetic progression. A port of\n// the native Python `range()` function. See\n// [the Python documentation](https://docs.python.org/library/functions.html#range).\nexport default function range(start, stop, step) {\n if (stop == null) {\n stop = start || 0;\n start = 0;\n }\n if (!step) {\n step = stop < start ? -1 : 1;\n }\n\n var length = Math.max(Math.ceil((stop - start) / step), 0);\n var range = Array(length);\n\n for (var idx = 0; idx < length; idx++, start += step) {\n range[idx] = start;\n }\n\n return range;\n}\n","import { slice } from './_setup.js';\n\n// Chunk a single array into multiple arrays, each containing `count` or fewer\n// items.\nexport default function chunk(array, count) {\n if (count == null || count < 1) return [];\n var result = [];\n var i = 0, length = array.length;\n while (i < length) {\n result.push(slice.call(array, i, i += count));\n }\n return result;\n}\n","import _ from './underscore.js';\n\n// Helper function to continue chaining intermediate results.\nexport default function chainResult(instance, obj) {\n return instance._chain ? _(obj).chain() : obj;\n}\n","import _ from './underscore.js';\nimport each from './each.js';\nimport functions from './functions.js';\nimport { push } from './_setup.js';\nimport chainResult from './_chainResult.js';\n\n// Add your own custom functions to the Underscore object.\nexport default function mixin(obj) {\n each(functions(obj), function(name) {\n var func = _[name] = obj[name];\n _.prototype[name] = function() {\n var args = [this._wrapped];\n push.apply(args, arguments);\n return chainResult(this, func.apply(_, args));\n };\n });\n return _;\n}\n","import _ from './underscore.js';\nimport each from './each.js';\nimport { ArrayProto } from './_setup.js';\nimport chainResult from './_chainResult.js';\n\n// Add all mutator `Array` functions to the wrapper.\neach(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {\n var method = ArrayProto[name];\n _.prototype[name] = function() {\n var obj = this._wrapped;\n if (obj != null) {\n method.apply(obj, arguments);\n if ((name === 'shift' || name === 'splice') && obj.length === 0) {\n delete obj[0];\n }\n }\n return chainResult(this, obj);\n };\n});\n\n// Add all accessor `Array` functions to the wrapper.\neach(['concat', 'join', 'slice'], function(name) {\n var method = ArrayProto[name];\n _.prototype[name] = function() {\n var obj = this._wrapped;\n if (obj != null) obj = method.apply(obj, arguments);\n return chainResult(this, obj);\n };\n});\n\nexport default _;\n","// Default Export\n// ==============\n// In this module, we mix our bundled exports into the `_` object and export\n// the result. This is analogous to setting `module.exports = _` in CommonJS.\n// Hence, this module is also the entry point of our UMD bundle and the package\n// entry point for CommonJS and AMD users. In other words, this is (the source\n// of) the module you are interfacing with when you do any of the following:\n//\n// ```js\n// // CommonJS\n// var _ = require('underscore');\n//\n// // AMD\n// define(['underscore'], function(_) {...});\n//\n// // UMD in the browser\n// // _ is available as a global variable\n// ```\nimport * as allExports from './index.js';\nimport { mixin } from './index.js';\n\n// Add all of the Underscore functions to the wrapper object.\nvar _ = mixin(allExports);\n// Legacy Node.js API.\n_._ = _;\n// Export the Underscore API.\nexport default _;\n"],"sourceRoot":""} \ No newline at end of file diff --git a/core/js/dist/files_fileinfo.js b/core/js/dist/files_fileinfo.js index 0194ab6a95..eee933a308 100644 --- a/core/js/dist/files_fileinfo.js +++ b/core/js/dist/files_fileinfo.js @@ -1,2 +1,2 @@ -!function(n){var t={};function r(u){if(t[u])return t[u].exports;var e=t[u]={i:u,l:!1,exports:{}};return n[u].call(e.exports,e,e.exports,r),e.l=!0,e.exports}r.m=n,r.c=t,r.d=function(n,t,u){r.o(n,t)||Object.defineProperty(n,t,{enumerable:!0,get:u})},r.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},r.t=function(n,t){if(1&t&&(n=r(n)),8&t)return n;if(4&t&&"object"==typeof n&&n&&n.__esModule)return n;var u=Object.create(null);if(r.r(u),Object.defineProperty(u,"default",{enumerable:!0,value:n}),2&t&&"string"!=typeof n)for(var e in n)r.d(u,e,function(t){return n[t]}.bind(null,e));return u},r.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return r.d(t,"a",t),t},r.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r.p="",r(r.s=672)}({1:function(n,t,r){"use strict";(function(n){r.d(t,"e",(function(){return u})),r.d(t,"p",(function(){return e})),r.d(t,"a",(function(){return i})),r.d(t,"c",(function(){return o})),r.d(t,"d",(function(){return c})),r.d(t,"o",(function(){return f})),r.d(t,"q",(function(){return a})),r.d(t,"s",(function(){return d})),r.d(t,"i",(function(){return l})),r.d(t,"r",(function(){return s})),r.d(t,"k",(function(){return p})),r.d(t,"m",(function(){return h})),r.d(t,"j",(function(){return v})),r.d(t,"l",(function(){return y})),r.d(t,"g",(function(){return g})),r.d(t,"f",(function(){return m})),r.d(t,"h",(function(){return b})),r.d(t,"n",(function(){return j})),r.d(t,"b",(function(){return w}));var u="1.11.0",e="object"==typeof self&&self.self===self&&self||"object"==typeof n&&n.global===n&&n||Function("return this")()||{},i=Array.prototype,o=Object.prototype,c="undefined"!=typeof Symbol?Symbol.prototype:null,f=i.push,a=i.slice,d=o.toString,l=o.hasOwnProperty,s="undefined"!=typeof ArrayBuffer,p=Array.isArray,h=Object.keys,v=Object.create,y=s&&ArrayBuffer.isView,g=isNaN,m=isFinite,b=!{toString:null}.propertyIsEnumerable("toString"),j=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],w=Math.pow(2,53)-1}).call(this,r(20))},20:function(n,t){var r;r=function(){return this}();try{r=r||new Function("return this")()}catch(n){"object"==typeof window&&(r=window)}n.exports=r},672:function(n,t,r){(function(n){!function(t){var r=function(t){var r=this;n.each(t,(function(t,u){n.isFunction(t)||(r[u]=t)})),n.isUndefined(this.id)||(this.id=parseInt(t.id,10)),this.path=t.path||"","dir"===this.type?this.mimetype="httpd/unix-directory":this.mimetype=this.mimetype||"application/octet-stream",this.type||("httpd/unix-directory"===this.mimetype?this.type="dir":this.type="file")};r.prototype={id:null,name:null,path:null,mimetype:null,icon:null,type:null,permissions:null,mtime:null,etag:null,mountType:null,hasPreview:!0,sharePermissions:null},t.Files||(t.Files={}),t.Files.FileInfo=r}(OC)}).call(this,r(7))},7:function(n,t,r){"use strict";r.r(t),r.d(t,"default",(function(){return or})),r.d(t,"VERSION",(function(){return e.e})),r.d(t,"restArguments",(function(){return i})),r.d(t,"isObject",(function(){return o})),r.d(t,"isNull",(function(){return c})),r.d(t,"isUndefined",(function(){return f})),r.d(t,"isBoolean",(function(){return a})),r.d(t,"isElement",(function(){return d})),r.d(t,"isString",(function(){return s})),r.d(t,"isNumber",(function(){return p})),r.d(t,"isDate",(function(){return h})),r.d(t,"isRegExp",(function(){return v})),r.d(t,"isError",(function(){return y})),r.d(t,"isSymbol",(function(){return g})),r.d(t,"isMap",(function(){return m})),r.d(t,"isWeakMap",(function(){return b})),r.d(t,"isSet",(function(){return j})),r.d(t,"isWeakSet",(function(){return w})),r.d(t,"isArrayBuffer",(function(){return x})),r.d(t,"isDataView",(function(){return _})),r.d(t,"isArray",(function(){return O})),r.d(t,"isFunction",(function(){return M})),r.d(t,"isArguments",(function(){return B})),r.d(t,"isFinite",(function(){return I})),r.d(t,"isNaN",(function(){return N})),r.d(t,"isTypedArray",(function(){return P})),r.d(t,"isEmpty",(function(){return L})),r.d(t,"isMatch",(function(){return C})),r.d(t,"isEqual",(function(){return G})),r.d(t,"keys",(function(){return K})),r.d(t,"allKeys",(function(){return H})),r.d(t,"values",(function(){return Q})),r.d(t,"pairs",(function(){return X})),r.d(t,"invert",(function(){return Y})),r.d(t,"functions",(function(){return Z})),r.d(t,"methods",(function(){return Z})),r.d(t,"extend",(function(){return tn})),r.d(t,"extendOwn",(function(){return rn})),r.d(t,"assign",(function(){return rn})),r.d(t,"defaults",(function(){return un})),r.d(t,"create",(function(){return on})),r.d(t,"clone",(function(){return cn})),r.d(t,"tap",(function(){return fn})),r.d(t,"has",(function(){return an})),r.d(t,"mapObject",(function(){return mn})),r.d(t,"identity",(function(){return dn})),r.d(t,"constant",(function(){return F})),r.d(t,"noop",(function(){return bn})),r.d(t,"property",(function(){return pn})),r.d(t,"propertyOf",(function(){return jn})),r.d(t,"matcher",(function(){return ln})),r.d(t,"matches",(function(){return ln})),r.d(t,"times",(function(){return wn})),r.d(t,"random",(function(){return xn})),r.d(t,"now",(function(){return _n})),r.d(t,"escape",(function(){return An})),r.d(t,"unescape",(function(){return Mn})),r.d(t,"templateSettings",(function(){return En})),r.d(t,"template",(function(){return Fn})),r.d(t,"result",(function(){return qn})),r.d(t,"uniqueId",(function(){return Dn})),r.d(t,"chain",(function(){return Rn})),r.d(t,"iteratee",(function(){return yn})),r.d(t,"partial",(function(){return zn})),r.d(t,"bind",(function(){return Un})),r.d(t,"bindAll",(function(){return Kn})),r.d(t,"memoize",(function(){return Ln})),r.d(t,"delay",(function(){return Cn})),r.d(t,"defer",(function(){return Jn})),r.d(t,"throttle",(function(){return $n})),r.d(t,"debounce",(function(){return Gn})),r.d(t,"wrap",(function(){return Hn})),r.d(t,"negate",(function(){return Qn})),r.d(t,"compose",(function(){return Xn})),r.d(t,"after",(function(){return Yn})),r.d(t,"before",(function(){return Zn})),r.d(t,"once",(function(){return nt})),r.d(t,"findKey",(function(){return tt})),r.d(t,"findIndex",(function(){return ut})),r.d(t,"findLastIndex",(function(){return et})),r.d(t,"sortedIndex",(function(){return it})),r.d(t,"indexOf",(function(){return ct})),r.d(t,"lastIndexOf",(function(){return ft})),r.d(t,"find",(function(){return at})),r.d(t,"detect",(function(){return at})),r.d(t,"findWhere",(function(){return dt})),r.d(t,"each",(function(){return lt})),r.d(t,"forEach",(function(){return lt})),r.d(t,"map",(function(){return st})),r.d(t,"collect",(function(){return st})),r.d(t,"reduce",(function(){return ht})),r.d(t,"foldl",(function(){return ht})),r.d(t,"inject",(function(){return ht})),r.d(t,"reduceRight",(function(){return vt})),r.d(t,"foldr",(function(){return vt})),r.d(t,"filter",(function(){return yt})),r.d(t,"select",(function(){return yt})),r.d(t,"reject",(function(){return gt})),r.d(t,"every",(function(){return mt})),r.d(t,"all",(function(){return mt})),r.d(t,"some",(function(){return bt})),r.d(t,"any",(function(){return bt})),r.d(t,"contains",(function(){return jt})),r.d(t,"includes",(function(){return jt})),r.d(t,"include",(function(){return jt})),r.d(t,"invoke",(function(){return wt})),r.d(t,"pluck",(function(){return xt})),r.d(t,"where",(function(){return _t})),r.d(t,"max",(function(){return Ot})),r.d(t,"min",(function(){return St})),r.d(t,"shuffle",(function(){return Mt})),r.d(t,"sample",(function(){return At})),r.d(t,"sortBy",(function(){return Et})),r.d(t,"groupBy",(function(){return Bt})),r.d(t,"indexBy",(function(){return It})),r.d(t,"countBy",(function(){return Nt})),r.d(t,"partition",(function(){return Ft})),r.d(t,"toArray",(function(){return Tt})),r.d(t,"size",(function(){return Dt})),r.d(t,"pick",(function(){return Vt})),r.d(t,"omit",(function(){return Pt})),r.d(t,"first",(function(){return Ut})),r.d(t,"head",(function(){return Ut})),r.d(t,"take",(function(){return Ut})),r.d(t,"initial",(function(){return zt})),r.d(t,"last",(function(){return Kt})),r.d(t,"rest",(function(){return Wt})),r.d(t,"tail",(function(){return Wt})),r.d(t,"drop",(function(){return Wt})),r.d(t,"compact",(function(){return Lt})),r.d(t,"flatten",(function(){return Ct})),r.d(t,"without",(function(){return $t})),r.d(t,"uniq",(function(){return Gt})),r.d(t,"unique",(function(){return Gt})),r.d(t,"union",(function(){return Ht})),r.d(t,"intersection",(function(){return Qt})),r.d(t,"difference",(function(){return Jt})),r.d(t,"unzip",(function(){return Xt})),r.d(t,"transpose",(function(){return Xt})),r.d(t,"zip",(function(){return Yt})),r.d(t,"object",(function(){return Zt})),r.d(t,"range",(function(){return nr})),r.d(t,"chunk",(function(){return tr})),r.d(t,"mixin",(function(){return ur}));var u={};r.r(u),r.d(u,"VERSION",(function(){return e.e})),r.d(u,"restArguments",(function(){return i})),r.d(u,"isObject",(function(){return o})),r.d(u,"isNull",(function(){return c})),r.d(u,"isUndefined",(function(){return f})),r.d(u,"isBoolean",(function(){return a})),r.d(u,"isElement",(function(){return d})),r.d(u,"isString",(function(){return s})),r.d(u,"isNumber",(function(){return p})),r.d(u,"isDate",(function(){return h})),r.d(u,"isRegExp",(function(){return v})),r.d(u,"isError",(function(){return y})),r.d(u,"isSymbol",(function(){return g})),r.d(u,"isMap",(function(){return m})),r.d(u,"isWeakMap",(function(){return b})),r.d(u,"isSet",(function(){return j})),r.d(u,"isWeakSet",(function(){return w})),r.d(u,"isArrayBuffer",(function(){return x})),r.d(u,"isDataView",(function(){return _})),r.d(u,"isArray",(function(){return O})),r.d(u,"isFunction",(function(){return M})),r.d(u,"isArguments",(function(){return B})),r.d(u,"isFinite",(function(){return I})),r.d(u,"isNaN",(function(){return N})),r.d(u,"isTypedArray",(function(){return P})),r.d(u,"isEmpty",(function(){return L})),r.d(u,"isMatch",(function(){return C})),r.d(u,"isEqual",(function(){return G})),r.d(u,"keys",(function(){return K})),r.d(u,"allKeys",(function(){return H})),r.d(u,"values",(function(){return Q})),r.d(u,"pairs",(function(){return X})),r.d(u,"invert",(function(){return Y})),r.d(u,"functions",(function(){return Z})),r.d(u,"methods",(function(){return Z})),r.d(u,"extend",(function(){return tn})),r.d(u,"extendOwn",(function(){return rn})),r.d(u,"assign",(function(){return rn})),r.d(u,"defaults",(function(){return un})),r.d(u,"create",(function(){return on})),r.d(u,"clone",(function(){return cn})),r.d(u,"tap",(function(){return fn})),r.d(u,"has",(function(){return an})),r.d(u,"mapObject",(function(){return mn})),r.d(u,"identity",(function(){return dn})),r.d(u,"constant",(function(){return F})),r.d(u,"noop",(function(){return bn})),r.d(u,"property",(function(){return pn})),r.d(u,"propertyOf",(function(){return jn})),r.d(u,"matcher",(function(){return ln})),r.d(u,"matches",(function(){return ln})),r.d(u,"times",(function(){return wn})),r.d(u,"random",(function(){return xn})),r.d(u,"now",(function(){return _n})),r.d(u,"escape",(function(){return An})),r.d(u,"unescape",(function(){return Mn})),r.d(u,"templateSettings",(function(){return En})),r.d(u,"template",(function(){return Fn})),r.d(u,"result",(function(){return qn})),r.d(u,"uniqueId",(function(){return Dn})),r.d(u,"chain",(function(){return Rn})),r.d(u,"iteratee",(function(){return yn})),r.d(u,"partial",(function(){return zn})),r.d(u,"bind",(function(){return Un})),r.d(u,"bindAll",(function(){return Kn})),r.d(u,"memoize",(function(){return Ln})),r.d(u,"delay",(function(){return Cn})),r.d(u,"defer",(function(){return Jn})),r.d(u,"throttle",(function(){return $n})),r.d(u,"debounce",(function(){return Gn})),r.d(u,"wrap",(function(){return Hn})),r.d(u,"negate",(function(){return Qn})),r.d(u,"compose",(function(){return Xn})),r.d(u,"after",(function(){return Yn})),r.d(u,"before",(function(){return Zn})),r.d(u,"once",(function(){return nt})),r.d(u,"findKey",(function(){return tt})),r.d(u,"findIndex",(function(){return ut})),r.d(u,"findLastIndex",(function(){return et})),r.d(u,"sortedIndex",(function(){return it})),r.d(u,"indexOf",(function(){return ct})),r.d(u,"lastIndexOf",(function(){return ft})),r.d(u,"find",(function(){return at})),r.d(u,"detect",(function(){return at})),r.d(u,"findWhere",(function(){return dt})),r.d(u,"each",(function(){return lt})),r.d(u,"forEach",(function(){return lt})),r.d(u,"map",(function(){return st})),r.d(u,"collect",(function(){return st})),r.d(u,"reduce",(function(){return ht})),r.d(u,"foldl",(function(){return ht})),r.d(u,"inject",(function(){return ht})),r.d(u,"reduceRight",(function(){return vt})),r.d(u,"foldr",(function(){return vt})),r.d(u,"filter",(function(){return yt})),r.d(u,"select",(function(){return yt})),r.d(u,"reject",(function(){return gt})),r.d(u,"every",(function(){return mt})),r.d(u,"all",(function(){return mt})),r.d(u,"some",(function(){return bt})),r.d(u,"any",(function(){return bt})),r.d(u,"contains",(function(){return jt})),r.d(u,"includes",(function(){return jt})),r.d(u,"include",(function(){return jt})),r.d(u,"invoke",(function(){return wt})),r.d(u,"pluck",(function(){return xt})),r.d(u,"where",(function(){return _t})),r.d(u,"max",(function(){return Ot})),r.d(u,"min",(function(){return St})),r.d(u,"shuffle",(function(){return Mt})),r.d(u,"sample",(function(){return At})),r.d(u,"sortBy",(function(){return Et})),r.d(u,"groupBy",(function(){return Bt})),r.d(u,"indexBy",(function(){return It})),r.d(u,"countBy",(function(){return Nt})),r.d(u,"partition",(function(){return Ft})),r.d(u,"toArray",(function(){return Tt})),r.d(u,"size",(function(){return Dt})),r.d(u,"pick",(function(){return Vt})),r.d(u,"omit",(function(){return Pt})),r.d(u,"first",(function(){return Ut})),r.d(u,"head",(function(){return Ut})),r.d(u,"take",(function(){return Ut})),r.d(u,"initial",(function(){return zt})),r.d(u,"last",(function(){return Kt})),r.d(u,"rest",(function(){return Wt})),r.d(u,"tail",(function(){return Wt})),r.d(u,"drop",(function(){return Wt})),r.d(u,"compact",(function(){return Lt})),r.d(u,"flatten",(function(){return Ct})),r.d(u,"without",(function(){return $t})),r.d(u,"uniq",(function(){return Gt})),r.d(u,"unique",(function(){return Gt})),r.d(u,"union",(function(){return Ht})),r.d(u,"intersection",(function(){return Qt})),r.d(u,"difference",(function(){return Jt})),r.d(u,"unzip",(function(){return Xt})),r.d(u,"transpose",(function(){return Xt})),r.d(u,"zip",(function(){return Yt})),r.d(u,"object",(function(){return Zt})),r.d(u,"range",(function(){return nr})),r.d(u,"chunk",(function(){return tr})),r.d(u,"mixin",(function(){return ur})),r.d(u,"default",(function(){return er}));var e=r(1);function i(n,t){return t=null==t?n.length-1:+t,function(){for(var r=Math.max(arguments.length-t,0),u=Array(r),e=0;e<r;e++)u[e]=arguments[e+t];switch(t){case 0:return n.call(this,u);case 1:return n.call(this,arguments[0],u);case 2:return n.call(this,arguments[0],arguments[1],u)}var i=Array(t+1);for(e=0;e<t;e++)i[e]=arguments[e];return i[t]=u,n.apply(this,i)}}function o(n){var t=typeof n;return"function"===t||"object"===t&&!!n}function c(n){return null===n}function f(n){return void 0===n}function a(n){return!0===n||!1===n||"[object Boolean]"===e.s.call(n)}function d(n){return!(!n||1!==n.nodeType)}function l(n){return function(t){return e.s.call(t)==="[object "+n+"]"}}var s=l("String"),p=l("Number"),h=l("Date"),v=l("RegExp"),y=l("Error"),g=l("Symbol"),m=l("Map"),b=l("WeakMap"),j=l("Set"),w=l("WeakSet"),x=l("ArrayBuffer"),_=l("DataView"),O=e.k||l("Array"),S=l("Function"),A=e.p.document&&e.p.document.childNodes;"object"!=typeof Int8Array&&"function"!=typeof A&&(S=function(n){return"function"==typeof n||!1});var M=S;function E(n,t){return null!=n&&e.i.call(n,t)}var k=l("Arguments");!function(){k(arguments)||(k=function(n){return E(n,"callee")})}();var B=k;function I(n){return!g(n)&&Object(e.f)(n)&&!isNaN(parseFloat(n))}function N(n){return p(n)&&Object(e.g)(n)}function F(n){return function(){return n}}function q(n){return function(t){var r=n(t);return"number"==typeof r&&r>=0&&r<=e.b}}function T(n){return function(t){return null==t?void 0:t[n]}}var D=T("byteLength"),R=q(D),V=/\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/;var P=e.r?function(n){return e.l?Object(e.l)(n)&&!_(n):R(n)&&V.test(e.s.call(n))}:F(!1),z=T("length"),U=q(z);function W(n,t){t=function(n){for(var t={},r=n.length,u=0;u<r;++u)t[n[u]]=!0;return{contains:function(n){return t[n]},push:function(r){return t[r]=!0,n.push(r)}}}(t);var r=e.n.length,u=n.constructor,i=M(u)&&u.prototype||e.c,o="constructor";for(E(n,o)&&!t.contains(o)&&t.push(o);r--;)(o=e.n[r])in n&&n[o]!==i[o]&&!t.contains(o)&&t.push(o)}function K(n){if(!o(n))return[];if(e.m)return Object(e.m)(n);var t=[];for(var r in n)E(n,r)&&t.push(r);return e.h&&W(n,t),t}function L(n){return null==n||(U(n)&&(O(n)||s(n)||B(n))?0===n.length:0===K(n).length)}function C(n,t){var r=K(t),u=r.length;if(null==n)return!u;for(var e=Object(n),i=0;i<u;i++){var o=r[i];if(t[o]!==e[o]||!(o in e))return!1}return!0}function J(n){return n instanceof J?n:this instanceof J?void(this._wrapped=n):new J(n)}function $(n,t,r,u){if(n===t)return 0!==n||1/n==1/t;if(null==n||null==t)return!1;if(n!=n)return t!=t;var i=typeof n;return("function"===i||"object"===i||"object"==typeof t)&&function n(t,r,u,i){t instanceof J&&(t=t._wrapped);r instanceof J&&(r=r._wrapped);var o=e.s.call(t);if(o!==e.s.call(r))return!1;switch(o){case"[object RegExp]":case"[object String]":return""+t==""+r;case"[object Number]":return+t!=+t?+r!=+r:0==+t?1/+t==1/r:+t==+r;case"[object Date]":case"[object Boolean]":return+t==+r;case"[object Symbol]":return e.d.valueOf.call(t)===e.d.valueOf.call(r);case"[object ArrayBuffer]":return n(new DataView(t),new DataView(r),u,i);case"[object DataView]":var c=D(t);if(c!==D(r))return!1;for(;c--;)if(t.getUint8(c)!==r.getUint8(c))return!1;return!0}if(P(t))return n(new DataView(t.buffer),new DataView(r.buffer),u,i);var f="[object Array]"===o;if(!f){if("object"!=typeof t||"object"!=typeof r)return!1;var a=t.constructor,d=r.constructor;if(a!==d&&!(M(a)&&a instanceof a&&M(d)&&d instanceof d)&&"constructor"in t&&"constructor"in r)return!1}i=i||[];var l=(u=u||[]).length;for(;l--;)if(u[l]===t)return i[l]===r;if(u.push(t),i.push(r),f){if((l=t.length)!==r.length)return!1;for(;l--;)if(!$(t[l],r[l],u,i))return!1}else{var s,p=K(t);if(l=p.length,K(r).length!==l)return!1;for(;l--;)if(s=p[l],!E(r,s)||!$(t[s],r[s],u,i))return!1}return u.pop(),i.pop(),!0}(n,t,r,u)}function G(n,t){return $(n,t)}function H(n){if(!o(n))return[];var t=[];for(var r in n)t.push(r);return e.h&&W(n,t),t}function Q(n){for(var t=K(n),r=t.length,u=Array(r),e=0;e<r;e++)u[e]=n[t[e]];return u}function X(n){for(var t=K(n),r=t.length,u=Array(r),e=0;e<r;e++)u[e]=[t[e],n[t[e]]];return u}function Y(n){for(var t={},r=K(n),u=0,e=r.length;u<e;u++)t[n[r[u]]]=r[u];return t}function Z(n){var t=[];for(var r in n)M(n[r])&&t.push(r);return t.sort()}function nn(n,t){return function(r){var u=arguments.length;if(t&&(r=Object(r)),u<2||null==r)return r;for(var e=1;e<u;e++)for(var i=arguments[e],o=n(i),c=o.length,f=0;f<c;f++){var a=o[f];t&&void 0!==r[a]||(r[a]=i[a])}return r}}J.VERSION=e.e,J.prototype.value=function(){return this._wrapped},J.prototype.valueOf=J.prototype.toJSON=J.prototype.value,J.prototype.toString=function(){return String(this._wrapped)};var tn=nn(H),rn=nn(K),un=nn(H,!0);function en(n){if(!o(n))return{};if(e.j)return Object(e.j)(n);var t=function(){};t.prototype=n;var r=new t;return t.prototype=null,r}function on(n,t){var r=en(n);return t&&rn(r,t),r}function cn(n){return o(n)?O(n)?n.slice():tn({},n):n}function fn(n,t){return t(n),n}function an(n,t){if(!O(t))return E(n,t);for(var r=t.length,u=0;u<r;u++){var i=t[u];if(null==n||!e.i.call(n,i))return!1;n=n[i]}return!!r}function dn(n){return n}function ln(n){return n=rn({},n),function(t){return C(t,n)}}function sn(n,t){for(var r=t.length,u=0;u<r;u++){if(null==n)return;n=n[t[u]]}return r?n:void 0}function pn(n){return O(n)?function(t){return sn(t,n)}:T(n)}function hn(n,t,r){if(void 0===t)return n;switch(null==r?3:r){case 1:return function(r){return n.call(t,r)};case 3:return function(r,u,e){return n.call(t,r,u,e)};case 4:return function(r,u,e,i){return n.call(t,r,u,e,i)}}return function(){return n.apply(t,arguments)}}function vn(n,t,r){return null==n?dn:M(n)?hn(n,t,r):o(n)&&!O(n)?ln(n):pn(n)}function yn(n,t){return vn(n,t,1/0)}function gn(n,t,r){return J.iteratee!==yn?J.iteratee(n,t):vn(n,t,r)}function mn(n,t,r){t=gn(t,r);for(var u=K(n),e=u.length,i={},o=0;o<e;o++){var c=u[o];i[c]=t(n[c],c,n)}return i}function bn(){}function jn(n){return null==n?function(){}:function(t){return O(t)?sn(n,t):n[t]}}function wn(n,t,r){var u=Array(Math.max(0,n));t=hn(t,r,1);for(var e=0;e<n;e++)u[e]=t(e);return u}function xn(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))}J.iteratee=yn;var _n=Date.now||function(){return(new Date).getTime()};function On(n){var t=function(t){return n[t]},r="(?:"+K(n).join("|")+")",u=RegExp(r),e=RegExp(r,"g");return function(n){return n=null==n?"":""+n,u.test(n)?n.replace(e,t):n}}var Sn={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},An=On(Sn),Mn=On(Y(Sn)),En=J.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g},kn=/(.)^/,Bn={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},In=/\\|'|\r|\n|\u2028|\u2029/g;function Nn(n){return"\\"+Bn[n]}function Fn(n,t,r){!t&&r&&(t=r),t=un({},t,J.templateSettings);var u,e=RegExp([(t.escape||kn).source,(t.interpolate||kn).source,(t.evaluate||kn).source].join("|")+"|$","g"),i=0,o="__p+='";n.replace(e,(function(t,r,u,e,c){return o+=n.slice(i,c).replace(In,Nn),i=c+t.length,r?o+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":u?o+="'+\n((__t=("+u+"))==null?'':__t)+\n'":e&&(o+="';\n"+e+"\n__p+='"),t})),o+="';\n",t.variable||(o="with(obj||{}){\n"+o+"}\n"),o="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+o+"return __p;\n";try{u=new Function(t.variable||"obj","_",o)}catch(n){throw n.source=o,n}var c=function(n){return u.call(this,n,J)},f=t.variable||"obj";return c.source="function("+f+"){\n"+o+"}",c}function qn(n,t,r){O(t)||(t=[t]);var u=t.length;if(!u)return M(r)?r.call(n):r;for(var e=0;e<u;e++){var i=null==n?void 0:n[t[e]];void 0===i&&(i=r,e=u),n=M(i)?i.call(n):i}return n}var Tn=0;function Dn(n){var t=++Tn+"";return n?n+t:t}function Rn(n){var t=J(n);return t._chain=!0,t}function Vn(n,t,r,u,e){if(!(u instanceof t))return n.apply(r,e);var i=en(n.prototype),c=n.apply(i,e);return o(c)?c:i}var Pn=i((function(n,t){var r=Pn.placeholder,u=function(){for(var e=0,i=t.length,o=Array(i),c=0;c<i;c++)o[c]=t[c]===r?arguments[e++]:t[c];for(;e<arguments.length;)o.push(arguments[e++]);return Vn(n,u,this,this,o)};return u}));Pn.placeholder=J;var zn=Pn,Un=i((function(n,t,r){if(!M(n))throw new TypeError("Bind must be called on a function");var u=i((function(e){return Vn(n,u,t,this,r.concat(e))}));return u}));function Wn(n,t,r,u){if(u=u||[],t||0===t){if(t<=0)return u.concat(n)}else t=1/0;for(var e=u.length,i=0,o=z(n);i<o;i++){var c=n[i];if(U(c)&&(O(c)||B(c)))if(t>1)Wn(c,t-1,r,u),e=u.length;else for(var f=0,a=c.length;f<a;)u[e++]=c[f++];else r||(u[e++]=c)}return u}var Kn=i((function(n,t){var r=(t=Wn(t,!1,!1)).length;if(r<1)throw new Error("bindAll must be passed function names");for(;r--;){var u=t[r];n[u]=Un(n[u],n)}return n}));function Ln(n,t){var r=function(u){var e=r.cache,i=""+(t?t.apply(this,arguments):u);return E(e,i)||(e[i]=n.apply(this,arguments)),e[i]};return r.cache={},r}var Cn=i((function(n,t,r){return setTimeout((function(){return n.apply(null,r)}),t)})),Jn=zn(Cn,J,1);function $n(n,t,r){var u,e,i,o,c=0;r||(r={});var f=function(){c=!1===r.leading?0:_n(),u=null,o=n.apply(e,i),u||(e=i=null)},a=function(){var a=_n();c||!1!==r.leading||(c=a);var d=t-(a-c);return e=this,i=arguments,d<=0||d>t?(u&&(clearTimeout(u),u=null),c=a,o=n.apply(e,i),u||(e=i=null)):u||!1===r.trailing||(u=setTimeout(f,d)),o};return a.cancel=function(){clearTimeout(u),c=0,u=e=i=null},a}function Gn(n,t,r){var u,e,o=function(t,r){u=null,r&&(e=n.apply(t,r))},c=i((function(i){if(u&&clearTimeout(u),r){var c=!u;u=setTimeout(o,t),c&&(e=n.apply(this,i))}else u=Cn(o,t,this,i);return e}));return c.cancel=function(){clearTimeout(u),u=null},c}function Hn(n,t){return zn(t,n)}function Qn(n){return function(){return!n.apply(this,arguments)}}function Xn(){var n=arguments,t=n.length-1;return function(){for(var r=t,u=n[t].apply(this,arguments);r--;)u=n[r].call(this,u);return u}}function Yn(n,t){return function(){if(--n<1)return t.apply(this,arguments)}}function Zn(n,t){var r;return function(){return--n>0&&(r=t.apply(this,arguments)),n<=1&&(t=null),r}}var nt=zn(Zn,2);function tt(n,t,r){t=gn(t,r);for(var u,e=K(n),i=0,o=e.length;i<o;i++)if(t(n[u=e[i]],u,n))return u}function rt(n){return function(t,r,u){r=gn(r,u);for(var e=z(t),i=n>0?0:e-1;i>=0&&i<e;i+=n)if(r(t[i],i,t))return i;return-1}}var ut=rt(1),et=rt(-1);function it(n,t,r,u){for(var e=(r=gn(r,u,1))(t),i=0,o=z(n);i<o;){var c=Math.floor((i+o)/2);r(n[c])<e?i=c+1:o=c}return i}function ot(n,t,r){return function(u,i,o){var c=0,f=z(u);if("number"==typeof o)n>0?c=o>=0?o:Math.max(o+f,c):f=o>=0?Math.min(o+1,f):o+f+1;else if(r&&o&&f)return u[o=r(u,i)]===i?o:-1;if(i!=i)return(o=t(e.q.call(u,c,f),N))>=0?o+c:-1;for(o=n>0?c:f-1;o>=0&&o<f;o+=n)if(u[o]===i)return o;return-1}}var ct=ot(1,ut,it),ft=ot(-1,et);function at(n,t,r){var u=(U(n)?ut:tt)(n,t,r);if(void 0!==u&&-1!==u)return n[u]}function dt(n,t){return at(n,ln(t))}function lt(n,t,r){var u,e;if(t=hn(t,r),U(n))for(u=0,e=n.length;u<e;u++)t(n[u],u,n);else{var i=K(n);for(u=0,e=i.length;u<e;u++)t(n[i[u]],i[u],n)}return n}function st(n,t,r){t=gn(t,r);for(var u=!U(n)&&K(n),e=(u||n).length,i=Array(e),o=0;o<e;o++){var c=u?u[o]:o;i[o]=t(n[c],c,n)}return i}function pt(n){var t=function(t,r,u,e){var i=!U(t)&&K(t),o=(i||t).length,c=n>0?0:o-1;for(e||(u=t[i?i[c]:c],c+=n);c>=0&&c<o;c+=n){var f=i?i[c]:c;u=r(u,t[f],f,t)}return u};return function(n,r,u,e){var i=arguments.length>=3;return t(n,hn(r,e,4),u,i)}}var ht=pt(1),vt=pt(-1);function yt(n,t,r){var u=[];return t=gn(t,r),lt(n,(function(n,r,e){t(n,r,e)&&u.push(n)})),u}function gt(n,t,r){return yt(n,Qn(gn(t)),r)}function mt(n,t,r){t=gn(t,r);for(var u=!U(n)&&K(n),e=(u||n).length,i=0;i<e;i++){var o=u?u[i]:i;if(!t(n[o],o,n))return!1}return!0}function bt(n,t,r){t=gn(t,r);for(var u=!U(n)&&K(n),e=(u||n).length,i=0;i<e;i++){var o=u?u[i]:i;if(t(n[o],o,n))return!0}return!1}function jt(n,t,r,u){return U(n)||(n=Q(n)),("number"!=typeof r||u)&&(r=0),ct(n,t,r)>=0}var wt=i((function(n,t,r){var u,e;return M(t)?e=t:O(t)&&(u=t.slice(0,-1),t=t[t.length-1]),st(n,(function(n){var i=e;if(!i){if(u&&u.length&&(n=sn(n,u)),null==n)return;i=n[t]}return null==i?i:i.apply(n,r)}))}));function xt(n,t){return st(n,pn(t))}function _t(n,t){return yt(n,ln(t))}function Ot(n,t,r){var u,e,i=-1/0,o=-1/0;if(null==t||"number"==typeof t&&"object"!=typeof n[0]&&null!=n)for(var c=0,f=(n=U(n)?n:Q(n)).length;c<f;c++)null!=(u=n[c])&&u>i&&(i=u);else t=gn(t,r),lt(n,(function(n,r,u){((e=t(n,r,u))>o||e===-1/0&&i===-1/0)&&(i=n,o=e)}));return i}function St(n,t,r){var u,e,i=1/0,o=1/0;if(null==t||"number"==typeof t&&"object"!=typeof n[0]&&null!=n)for(var c=0,f=(n=U(n)?n:Q(n)).length;c<f;c++)null!=(u=n[c])&&u<i&&(i=u);else t=gn(t,r),lt(n,(function(n,r,u){((e=t(n,r,u))<o||e===1/0&&i===1/0)&&(i=n,o=e)}));return i}function At(n,t,r){if(null==t||r)return U(n)||(n=Q(n)),n[xn(n.length-1)];var u=U(n)?cn(n):Q(n),e=z(u);t=Math.max(Math.min(t,e),0);for(var i=e-1,o=0;o<t;o++){var c=xn(o,i),f=u[o];u[o]=u[c],u[c]=f}return u.slice(0,t)}function Mt(n){return At(n,1/0)}function Et(n,t,r){var u=0;return t=gn(t,r),xt(st(n,(function(n,r,e){return{value:n,index:u++,criteria:t(n,r,e)}})).sort((function(n,t){var r=n.criteria,u=t.criteria;if(r!==u){if(r>u||void 0===r)return 1;if(r<u||void 0===u)return-1}return n.index-t.index})),"value")}function kt(n,t){return function(r,u,e){var i=t?[[],[]]:{};return u=gn(u,e),lt(r,(function(t,e){var o=u(t,e,r);n(i,t,o)})),i}}var Bt=kt((function(n,t,r){E(n,r)?n[r].push(t):n[r]=[t]})),It=kt((function(n,t,r){n[r]=t})),Nt=kt((function(n,t,r){E(n,r)?n[r]++:n[r]=1})),Ft=kt((function(n,t,r){n[r?0:1].push(t)}),!0),qt=/[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g;function Tt(n){return n?O(n)?e.q.call(n):s(n)?n.match(qt):U(n)?st(n,dn):Q(n):[]}function Dt(n){return null==n?0:U(n)?n.length:K(n).length}function Rt(n,t,r){return t in r}var Vt=i((function(n,t){var r={},u=t[0];if(null==n)return r;M(u)?(t.length>1&&(u=hn(u,t[1])),t=H(n)):(u=Rt,t=Wn(t,!1,!1),n=Object(n));for(var e=0,i=t.length;e<i;e++){var o=t[e],c=n[o];u(c,o,n)&&(r[o]=c)}return r})),Pt=i((function(n,t){var r,u=t[0];return M(u)?(u=Qn(u),t.length>1&&(r=t[1])):(t=st(Wn(t,!1,!1),String),u=function(n,r){return!jt(t,r)}),Vt(n,u,r)}));function zt(n,t,r){return e.q.call(n,0,Math.max(0,n.length-(null==t||r?1:t)))}function Ut(n,t,r){return null==n||n.length<1?null==t||r?void 0:[]:null==t||r?n[0]:zt(n,n.length-t)}function Wt(n,t,r){return e.q.call(n,null==t||r?1:t)}function Kt(n,t,r){return null==n||n.length<1?null==t||r?void 0:[]:null==t||r?n[n.length-1]:Wt(n,Math.max(0,n.length-t))}function Lt(n){return yt(n,Boolean)}function Ct(n,t){return Wn(n,t,!1)}var Jt=i((function(n,t){return t=Wn(t,!0,!0),yt(n,(function(n){return!jt(t,n)}))})),$t=i((function(n,t){return Jt(n,t)}));function Gt(n,t,r,u){a(t)||(u=r,r=t,t=!1),null!=r&&(r=gn(r,u));for(var e=[],i=[],o=0,c=z(n);o<c;o++){var f=n[o],d=r?r(f,o,n):f;t&&!r?(o&&i===d||e.push(f),i=d):r?jt(i,d)||(i.push(d),e.push(f)):jt(e,f)||e.push(f)}return e}var Ht=i((function(n){return Gt(Wn(n,!0,!0))}));function Qt(n){for(var t=[],r=arguments.length,u=0,e=z(n);u<e;u++){var i=n[u];if(!jt(t,i)){var o;for(o=1;o<r&&jt(arguments[o],i);o++);o===r&&t.push(i)}}return t}function Xt(n){for(var t=n&&Ot(n,z).length||0,r=Array(t),u=0;u<t;u++)r[u]=xt(n,u);return r}var Yt=i(Xt);function Zt(n,t){for(var r={},u=0,e=z(n);u<e;u++)t?r[n[u]]=t[u]:r[n[u][0]]=n[u][1];return r}function nr(n,t,r){null==t&&(t=n||0,n=0),r||(r=t<n?-1:1);for(var u=Math.max(Math.ceil((t-n)/r),0),e=Array(u),i=0;i<u;i++,n+=r)e[i]=n;return e}function tr(n,t){if(null==t||t<1)return[];for(var r=[],u=0,i=n.length;u<i;)r.push(e.q.call(n,u,u+=t));return r}function rr(n,t){return n._chain?J(t).chain():t}function ur(n){return lt(Z(n),(function(t){var r=J[t]=n[t];J.prototype[t]=function(){var n=[this._wrapped];return e.o.apply(n,arguments),rr(this,r.apply(J,n))}})),J}lt(["pop","push","reverse","shift","sort","splice","unshift"],(function(n){var t=e.a[n];J.prototype[n]=function(){var r=this._wrapped;return null!=r&&(t.apply(r,arguments),"shift"!==n&&"splice"!==n||0!==r.length||delete r[0]),rr(this,r)}})),lt(["concat","join","slice"],(function(n){var t=e.a[n];J.prototype[n]=function(){var n=this._wrapped;return null!=n&&(n=t.apply(n,arguments)),rr(this,n)}}));var er=J,ir=ur(u);ir._=ir;var or=ir}}); +!function(n){var t={};function r(u){if(t[u])return t[u].exports;var e=t[u]={i:u,l:!1,exports:{}};return n[u].call(e.exports,e,e.exports,r),e.l=!0,e.exports}r.m=n,r.c=t,r.d=function(n,t,u){r.o(n,t)||Object.defineProperty(n,t,{enumerable:!0,get:u})},r.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},r.t=function(n,t){if(1&t&&(n=r(n)),8&t)return n;if(4&t&&"object"==typeof n&&n&&n.__esModule)return n;var u=Object.create(null);if(r.r(u),Object.defineProperty(u,"default",{enumerable:!0,value:n}),2&t&&"string"!=typeof n)for(var e in n)r.d(u,e,function(t){return n[t]}.bind(null,e));return u},r.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return r.d(t,"a",t),t},r.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r.p="",r(r.s=672)}({1:function(n,t,r){"use strict";(function(n){r.d(t,"e",(function(){return u})),r.d(t,"p",(function(){return e})),r.d(t,"a",(function(){return i})),r.d(t,"c",(function(){return o})),r.d(t,"d",(function(){return c})),r.d(t,"o",(function(){return f})),r.d(t,"q",(function(){return a})),r.d(t,"s",(function(){return d})),r.d(t,"i",(function(){return l})),r.d(t,"r",(function(){return s})),r.d(t,"k",(function(){return p})),r.d(t,"m",(function(){return h})),r.d(t,"j",(function(){return v})),r.d(t,"l",(function(){return y})),r.d(t,"g",(function(){return g})),r.d(t,"f",(function(){return m})),r.d(t,"h",(function(){return b})),r.d(t,"n",(function(){return j})),r.d(t,"b",(function(){return w}));var u="1.11.0",e="object"==typeof self&&self.self===self&&self||"object"==typeof n&&n.global===n&&n||Function("return this")()||{},i=Array.prototype,o=Object.prototype,c="undefined"!=typeof Symbol?Symbol.prototype:null,f=i.push,a=i.slice,d=o.toString,l=o.hasOwnProperty,s="undefined"!=typeof ArrayBuffer,p=Array.isArray,h=Object.keys,v=Object.create,y=s&&ArrayBuffer.isView,g=isNaN,m=isFinite,b=!{toString:null}.propertyIsEnumerable("toString"),j=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],w=Math.pow(2,53)-1}).call(this,r(20))},20:function(n,t){var r;r=function(){return this}();try{r=r||new Function("return this")()}catch(n){"object"==typeof window&&(r=window)}n.exports=r},672:function(n,t,r){(function(n){!function(t){var r=function(t){var r=this;n.each(t,(function(t,u){n.isFunction(t)||(r[u]=t)})),n.isUndefined(this.id)||(this.id=parseInt(t.id,10)),this.path=t.path||"","dir"===this.type?this.mimetype="httpd/unix-directory":this.mimetype=this.mimetype||"application/octet-stream",this.type||("httpd/unix-directory"===this.mimetype?this.type="dir":this.type="file")};r.prototype={id:null,name:null,path:null,mimetype:null,icon:null,type:null,permissions:null,mtime:null,etag:null,mountType:null,hasPreview:!0,sharePermissions:null,quotaAvailableBytes:-1},t.Files||(t.Files={}),t.Files.FileInfo=r}(OC)}).call(this,r(7))},7:function(n,t,r){"use strict";r.r(t),r.d(t,"default",(function(){return or})),r.d(t,"VERSION",(function(){return e.e})),r.d(t,"restArguments",(function(){return i})),r.d(t,"isObject",(function(){return o})),r.d(t,"isNull",(function(){return c})),r.d(t,"isUndefined",(function(){return f})),r.d(t,"isBoolean",(function(){return a})),r.d(t,"isElement",(function(){return d})),r.d(t,"isString",(function(){return s})),r.d(t,"isNumber",(function(){return p})),r.d(t,"isDate",(function(){return h})),r.d(t,"isRegExp",(function(){return v})),r.d(t,"isError",(function(){return y})),r.d(t,"isSymbol",(function(){return g})),r.d(t,"isMap",(function(){return m})),r.d(t,"isWeakMap",(function(){return b})),r.d(t,"isSet",(function(){return j})),r.d(t,"isWeakSet",(function(){return w})),r.d(t,"isArrayBuffer",(function(){return x})),r.d(t,"isDataView",(function(){return _})),r.d(t,"isArray",(function(){return O})),r.d(t,"isFunction",(function(){return M})),r.d(t,"isArguments",(function(){return k})),r.d(t,"isFinite",(function(){return I})),r.d(t,"isNaN",(function(){return N})),r.d(t,"isTypedArray",(function(){return P})),r.d(t,"isEmpty",(function(){return L})),r.d(t,"isMatch",(function(){return C})),r.d(t,"isEqual",(function(){return G})),r.d(t,"keys",(function(){return K})),r.d(t,"allKeys",(function(){return H})),r.d(t,"values",(function(){return Q})),r.d(t,"pairs",(function(){return X})),r.d(t,"invert",(function(){return Y})),r.d(t,"functions",(function(){return Z})),r.d(t,"methods",(function(){return Z})),r.d(t,"extend",(function(){return tn})),r.d(t,"extendOwn",(function(){return rn})),r.d(t,"assign",(function(){return rn})),r.d(t,"defaults",(function(){return un})),r.d(t,"create",(function(){return on})),r.d(t,"clone",(function(){return cn})),r.d(t,"tap",(function(){return fn})),r.d(t,"has",(function(){return an})),r.d(t,"mapObject",(function(){return mn})),r.d(t,"identity",(function(){return dn})),r.d(t,"constant",(function(){return q})),r.d(t,"noop",(function(){return bn})),r.d(t,"property",(function(){return pn})),r.d(t,"propertyOf",(function(){return jn})),r.d(t,"matcher",(function(){return ln})),r.d(t,"matches",(function(){return ln})),r.d(t,"times",(function(){return wn})),r.d(t,"random",(function(){return xn})),r.d(t,"now",(function(){return _n})),r.d(t,"escape",(function(){return An})),r.d(t,"unescape",(function(){return Mn})),r.d(t,"templateSettings",(function(){return En})),r.d(t,"template",(function(){return qn})),r.d(t,"result",(function(){return Fn})),r.d(t,"uniqueId",(function(){return Dn})),r.d(t,"chain",(function(){return Rn})),r.d(t,"iteratee",(function(){return yn})),r.d(t,"partial",(function(){return zn})),r.d(t,"bind",(function(){return Un})),r.d(t,"bindAll",(function(){return Kn})),r.d(t,"memoize",(function(){return Ln})),r.d(t,"delay",(function(){return Cn})),r.d(t,"defer",(function(){return Jn})),r.d(t,"throttle",(function(){return $n})),r.d(t,"debounce",(function(){return Gn})),r.d(t,"wrap",(function(){return Hn})),r.d(t,"negate",(function(){return Qn})),r.d(t,"compose",(function(){return Xn})),r.d(t,"after",(function(){return Yn})),r.d(t,"before",(function(){return Zn})),r.d(t,"once",(function(){return nt})),r.d(t,"findKey",(function(){return tt})),r.d(t,"findIndex",(function(){return ut})),r.d(t,"findLastIndex",(function(){return et})),r.d(t,"sortedIndex",(function(){return it})),r.d(t,"indexOf",(function(){return ct})),r.d(t,"lastIndexOf",(function(){return ft})),r.d(t,"find",(function(){return at})),r.d(t,"detect",(function(){return at})),r.d(t,"findWhere",(function(){return dt})),r.d(t,"each",(function(){return lt})),r.d(t,"forEach",(function(){return lt})),r.d(t,"map",(function(){return st})),r.d(t,"collect",(function(){return st})),r.d(t,"reduce",(function(){return ht})),r.d(t,"foldl",(function(){return ht})),r.d(t,"inject",(function(){return ht})),r.d(t,"reduceRight",(function(){return vt})),r.d(t,"foldr",(function(){return vt})),r.d(t,"filter",(function(){return yt})),r.d(t,"select",(function(){return yt})),r.d(t,"reject",(function(){return gt})),r.d(t,"every",(function(){return mt})),r.d(t,"all",(function(){return mt})),r.d(t,"some",(function(){return bt})),r.d(t,"any",(function(){return bt})),r.d(t,"contains",(function(){return jt})),r.d(t,"includes",(function(){return jt})),r.d(t,"include",(function(){return jt})),r.d(t,"invoke",(function(){return wt})),r.d(t,"pluck",(function(){return xt})),r.d(t,"where",(function(){return _t})),r.d(t,"max",(function(){return Ot})),r.d(t,"min",(function(){return St})),r.d(t,"shuffle",(function(){return Mt})),r.d(t,"sample",(function(){return At})),r.d(t,"sortBy",(function(){return Et})),r.d(t,"groupBy",(function(){return kt})),r.d(t,"indexBy",(function(){return It})),r.d(t,"countBy",(function(){return Nt})),r.d(t,"partition",(function(){return qt})),r.d(t,"toArray",(function(){return Tt})),r.d(t,"size",(function(){return Dt})),r.d(t,"pick",(function(){return Vt})),r.d(t,"omit",(function(){return Pt})),r.d(t,"first",(function(){return Ut})),r.d(t,"head",(function(){return Ut})),r.d(t,"take",(function(){return Ut})),r.d(t,"initial",(function(){return zt})),r.d(t,"last",(function(){return Kt})),r.d(t,"rest",(function(){return Wt})),r.d(t,"tail",(function(){return Wt})),r.d(t,"drop",(function(){return Wt})),r.d(t,"compact",(function(){return Lt})),r.d(t,"flatten",(function(){return Ct})),r.d(t,"without",(function(){return $t})),r.d(t,"uniq",(function(){return Gt})),r.d(t,"unique",(function(){return Gt})),r.d(t,"union",(function(){return Ht})),r.d(t,"intersection",(function(){return Qt})),r.d(t,"difference",(function(){return Jt})),r.d(t,"unzip",(function(){return Xt})),r.d(t,"transpose",(function(){return Xt})),r.d(t,"zip",(function(){return Yt})),r.d(t,"object",(function(){return Zt})),r.d(t,"range",(function(){return nr})),r.d(t,"chunk",(function(){return tr})),r.d(t,"mixin",(function(){return ur}));var u={};r.r(u),r.d(u,"VERSION",(function(){return e.e})),r.d(u,"restArguments",(function(){return i})),r.d(u,"isObject",(function(){return o})),r.d(u,"isNull",(function(){return c})),r.d(u,"isUndefined",(function(){return f})),r.d(u,"isBoolean",(function(){return a})),r.d(u,"isElement",(function(){return d})),r.d(u,"isString",(function(){return s})),r.d(u,"isNumber",(function(){return p})),r.d(u,"isDate",(function(){return h})),r.d(u,"isRegExp",(function(){return v})),r.d(u,"isError",(function(){return y})),r.d(u,"isSymbol",(function(){return g})),r.d(u,"isMap",(function(){return m})),r.d(u,"isWeakMap",(function(){return b})),r.d(u,"isSet",(function(){return j})),r.d(u,"isWeakSet",(function(){return w})),r.d(u,"isArrayBuffer",(function(){return x})),r.d(u,"isDataView",(function(){return _})),r.d(u,"isArray",(function(){return O})),r.d(u,"isFunction",(function(){return M})),r.d(u,"isArguments",(function(){return k})),r.d(u,"isFinite",(function(){return I})),r.d(u,"isNaN",(function(){return N})),r.d(u,"isTypedArray",(function(){return P})),r.d(u,"isEmpty",(function(){return L})),r.d(u,"isMatch",(function(){return C})),r.d(u,"isEqual",(function(){return G})),r.d(u,"keys",(function(){return K})),r.d(u,"allKeys",(function(){return H})),r.d(u,"values",(function(){return Q})),r.d(u,"pairs",(function(){return X})),r.d(u,"invert",(function(){return Y})),r.d(u,"functions",(function(){return Z})),r.d(u,"methods",(function(){return Z})),r.d(u,"extend",(function(){return tn})),r.d(u,"extendOwn",(function(){return rn})),r.d(u,"assign",(function(){return rn})),r.d(u,"defaults",(function(){return un})),r.d(u,"create",(function(){return on})),r.d(u,"clone",(function(){return cn})),r.d(u,"tap",(function(){return fn})),r.d(u,"has",(function(){return an})),r.d(u,"mapObject",(function(){return mn})),r.d(u,"identity",(function(){return dn})),r.d(u,"constant",(function(){return q})),r.d(u,"noop",(function(){return bn})),r.d(u,"property",(function(){return pn})),r.d(u,"propertyOf",(function(){return jn})),r.d(u,"matcher",(function(){return ln})),r.d(u,"matches",(function(){return ln})),r.d(u,"times",(function(){return wn})),r.d(u,"random",(function(){return xn})),r.d(u,"now",(function(){return _n})),r.d(u,"escape",(function(){return An})),r.d(u,"unescape",(function(){return Mn})),r.d(u,"templateSettings",(function(){return En})),r.d(u,"template",(function(){return qn})),r.d(u,"result",(function(){return Fn})),r.d(u,"uniqueId",(function(){return Dn})),r.d(u,"chain",(function(){return Rn})),r.d(u,"iteratee",(function(){return yn})),r.d(u,"partial",(function(){return zn})),r.d(u,"bind",(function(){return Un})),r.d(u,"bindAll",(function(){return Kn})),r.d(u,"memoize",(function(){return Ln})),r.d(u,"delay",(function(){return Cn})),r.d(u,"defer",(function(){return Jn})),r.d(u,"throttle",(function(){return $n})),r.d(u,"debounce",(function(){return Gn})),r.d(u,"wrap",(function(){return Hn})),r.d(u,"negate",(function(){return Qn})),r.d(u,"compose",(function(){return Xn})),r.d(u,"after",(function(){return Yn})),r.d(u,"before",(function(){return Zn})),r.d(u,"once",(function(){return nt})),r.d(u,"findKey",(function(){return tt})),r.d(u,"findIndex",(function(){return ut})),r.d(u,"findLastIndex",(function(){return et})),r.d(u,"sortedIndex",(function(){return it})),r.d(u,"indexOf",(function(){return ct})),r.d(u,"lastIndexOf",(function(){return ft})),r.d(u,"find",(function(){return at})),r.d(u,"detect",(function(){return at})),r.d(u,"findWhere",(function(){return dt})),r.d(u,"each",(function(){return lt})),r.d(u,"forEach",(function(){return lt})),r.d(u,"map",(function(){return st})),r.d(u,"collect",(function(){return st})),r.d(u,"reduce",(function(){return ht})),r.d(u,"foldl",(function(){return ht})),r.d(u,"inject",(function(){return ht})),r.d(u,"reduceRight",(function(){return vt})),r.d(u,"foldr",(function(){return vt})),r.d(u,"filter",(function(){return yt})),r.d(u,"select",(function(){return yt})),r.d(u,"reject",(function(){return gt})),r.d(u,"every",(function(){return mt})),r.d(u,"all",(function(){return mt})),r.d(u,"some",(function(){return bt})),r.d(u,"any",(function(){return bt})),r.d(u,"contains",(function(){return jt})),r.d(u,"includes",(function(){return jt})),r.d(u,"include",(function(){return jt})),r.d(u,"invoke",(function(){return wt})),r.d(u,"pluck",(function(){return xt})),r.d(u,"where",(function(){return _t})),r.d(u,"max",(function(){return Ot})),r.d(u,"min",(function(){return St})),r.d(u,"shuffle",(function(){return Mt})),r.d(u,"sample",(function(){return At})),r.d(u,"sortBy",(function(){return Et})),r.d(u,"groupBy",(function(){return kt})),r.d(u,"indexBy",(function(){return It})),r.d(u,"countBy",(function(){return Nt})),r.d(u,"partition",(function(){return qt})),r.d(u,"toArray",(function(){return Tt})),r.d(u,"size",(function(){return Dt})),r.d(u,"pick",(function(){return Vt})),r.d(u,"omit",(function(){return Pt})),r.d(u,"first",(function(){return Ut})),r.d(u,"head",(function(){return Ut})),r.d(u,"take",(function(){return Ut})),r.d(u,"initial",(function(){return zt})),r.d(u,"last",(function(){return Kt})),r.d(u,"rest",(function(){return Wt})),r.d(u,"tail",(function(){return Wt})),r.d(u,"drop",(function(){return Wt})),r.d(u,"compact",(function(){return Lt})),r.d(u,"flatten",(function(){return Ct})),r.d(u,"without",(function(){return $t})),r.d(u,"uniq",(function(){return Gt})),r.d(u,"unique",(function(){return Gt})),r.d(u,"union",(function(){return Ht})),r.d(u,"intersection",(function(){return Qt})),r.d(u,"difference",(function(){return Jt})),r.d(u,"unzip",(function(){return Xt})),r.d(u,"transpose",(function(){return Xt})),r.d(u,"zip",(function(){return Yt})),r.d(u,"object",(function(){return Zt})),r.d(u,"range",(function(){return nr})),r.d(u,"chunk",(function(){return tr})),r.d(u,"mixin",(function(){return ur})),r.d(u,"default",(function(){return er}));var e=r(1);function i(n,t){return t=null==t?n.length-1:+t,function(){for(var r=Math.max(arguments.length-t,0),u=Array(r),e=0;e<r;e++)u[e]=arguments[e+t];switch(t){case 0:return n.call(this,u);case 1:return n.call(this,arguments[0],u);case 2:return n.call(this,arguments[0],arguments[1],u)}var i=Array(t+1);for(e=0;e<t;e++)i[e]=arguments[e];return i[t]=u,n.apply(this,i)}}function o(n){var t=typeof n;return"function"===t||"object"===t&&!!n}function c(n){return null===n}function f(n){return void 0===n}function a(n){return!0===n||!1===n||"[object Boolean]"===e.s.call(n)}function d(n){return!(!n||1!==n.nodeType)}function l(n){return function(t){return e.s.call(t)==="[object "+n+"]"}}var s=l("String"),p=l("Number"),h=l("Date"),v=l("RegExp"),y=l("Error"),g=l("Symbol"),m=l("Map"),b=l("WeakMap"),j=l("Set"),w=l("WeakSet"),x=l("ArrayBuffer"),_=l("DataView"),O=e.k||l("Array"),S=l("Function"),A=e.p.document&&e.p.document.childNodes;"object"!=typeof Int8Array&&"function"!=typeof A&&(S=function(n){return"function"==typeof n||!1});var M=S;function E(n,t){return null!=n&&e.i.call(n,t)}var B=l("Arguments");!function(){B(arguments)||(B=function(n){return E(n,"callee")})}();var k=B;function I(n){return!g(n)&&Object(e.f)(n)&&!isNaN(parseFloat(n))}function N(n){return p(n)&&Object(e.g)(n)}function q(n){return function(){return n}}function F(n){return function(t){var r=n(t);return"number"==typeof r&&r>=0&&r<=e.b}}function T(n){return function(t){return null==t?void 0:t[n]}}var D=T("byteLength"),R=F(D),V=/\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/;var P=e.r?function(n){return e.l?Object(e.l)(n)&&!_(n):R(n)&&V.test(e.s.call(n))}:q(!1),z=T("length"),U=F(z);function W(n,t){t=function(n){for(var t={},r=n.length,u=0;u<r;++u)t[n[u]]=!0;return{contains:function(n){return t[n]},push:function(r){return t[r]=!0,n.push(r)}}}(t);var r=e.n.length,u=n.constructor,i=M(u)&&u.prototype||e.c,o="constructor";for(E(n,o)&&!t.contains(o)&&t.push(o);r--;)(o=e.n[r])in n&&n[o]!==i[o]&&!t.contains(o)&&t.push(o)}function K(n){if(!o(n))return[];if(e.m)return Object(e.m)(n);var t=[];for(var r in n)E(n,r)&&t.push(r);return e.h&&W(n,t),t}function L(n){return null==n||(U(n)&&(O(n)||s(n)||k(n))?0===n.length:0===K(n).length)}function C(n,t){var r=K(t),u=r.length;if(null==n)return!u;for(var e=Object(n),i=0;i<u;i++){var o=r[i];if(t[o]!==e[o]||!(o in e))return!1}return!0}function J(n){return n instanceof J?n:this instanceof J?void(this._wrapped=n):new J(n)}function $(n,t,r,u){if(n===t)return 0!==n||1/n==1/t;if(null==n||null==t)return!1;if(n!=n)return t!=t;var i=typeof n;return("function"===i||"object"===i||"object"==typeof t)&&function n(t,r,u,i){t instanceof J&&(t=t._wrapped);r instanceof J&&(r=r._wrapped);var o=e.s.call(t);if(o!==e.s.call(r))return!1;switch(o){case"[object RegExp]":case"[object String]":return""+t==""+r;case"[object Number]":return+t!=+t?+r!=+r:0==+t?1/+t==1/r:+t==+r;case"[object Date]":case"[object Boolean]":return+t==+r;case"[object Symbol]":return e.d.valueOf.call(t)===e.d.valueOf.call(r);case"[object ArrayBuffer]":return n(new DataView(t),new DataView(r),u,i);case"[object DataView]":var c=D(t);if(c!==D(r))return!1;for(;c--;)if(t.getUint8(c)!==r.getUint8(c))return!1;return!0}if(P(t))return n(new DataView(t.buffer),new DataView(r.buffer),u,i);var f="[object Array]"===o;if(!f){if("object"!=typeof t||"object"!=typeof r)return!1;var a=t.constructor,d=r.constructor;if(a!==d&&!(M(a)&&a instanceof a&&M(d)&&d instanceof d)&&"constructor"in t&&"constructor"in r)return!1}i=i||[];var l=(u=u||[]).length;for(;l--;)if(u[l]===t)return i[l]===r;if(u.push(t),i.push(r),f){if((l=t.length)!==r.length)return!1;for(;l--;)if(!$(t[l],r[l],u,i))return!1}else{var s,p=K(t);if(l=p.length,K(r).length!==l)return!1;for(;l--;)if(s=p[l],!E(r,s)||!$(t[s],r[s],u,i))return!1}return u.pop(),i.pop(),!0}(n,t,r,u)}function G(n,t){return $(n,t)}function H(n){if(!o(n))return[];var t=[];for(var r in n)t.push(r);return e.h&&W(n,t),t}function Q(n){for(var t=K(n),r=t.length,u=Array(r),e=0;e<r;e++)u[e]=n[t[e]];return u}function X(n){for(var t=K(n),r=t.length,u=Array(r),e=0;e<r;e++)u[e]=[t[e],n[t[e]]];return u}function Y(n){for(var t={},r=K(n),u=0,e=r.length;u<e;u++)t[n[r[u]]]=r[u];return t}function Z(n){var t=[];for(var r in n)M(n[r])&&t.push(r);return t.sort()}function nn(n,t){return function(r){var u=arguments.length;if(t&&(r=Object(r)),u<2||null==r)return r;for(var e=1;e<u;e++)for(var i=arguments[e],o=n(i),c=o.length,f=0;f<c;f++){var a=o[f];t&&void 0!==r[a]||(r[a]=i[a])}return r}}J.VERSION=e.e,J.prototype.value=function(){return this._wrapped},J.prototype.valueOf=J.prototype.toJSON=J.prototype.value,J.prototype.toString=function(){return String(this._wrapped)};var tn=nn(H),rn=nn(K),un=nn(H,!0);function en(n){if(!o(n))return{};if(e.j)return Object(e.j)(n);var t=function(){};t.prototype=n;var r=new t;return t.prototype=null,r}function on(n,t){var r=en(n);return t&&rn(r,t),r}function cn(n){return o(n)?O(n)?n.slice():tn({},n):n}function fn(n,t){return t(n),n}function an(n,t){if(!O(t))return E(n,t);for(var r=t.length,u=0;u<r;u++){var i=t[u];if(null==n||!e.i.call(n,i))return!1;n=n[i]}return!!r}function dn(n){return n}function ln(n){return n=rn({},n),function(t){return C(t,n)}}function sn(n,t){for(var r=t.length,u=0;u<r;u++){if(null==n)return;n=n[t[u]]}return r?n:void 0}function pn(n){return O(n)?function(t){return sn(t,n)}:T(n)}function hn(n,t,r){if(void 0===t)return n;switch(null==r?3:r){case 1:return function(r){return n.call(t,r)};case 3:return function(r,u,e){return n.call(t,r,u,e)};case 4:return function(r,u,e,i){return n.call(t,r,u,e,i)}}return function(){return n.apply(t,arguments)}}function vn(n,t,r){return null==n?dn:M(n)?hn(n,t,r):o(n)&&!O(n)?ln(n):pn(n)}function yn(n,t){return vn(n,t,1/0)}function gn(n,t,r){return J.iteratee!==yn?J.iteratee(n,t):vn(n,t,r)}function mn(n,t,r){t=gn(t,r);for(var u=K(n),e=u.length,i={},o=0;o<e;o++){var c=u[o];i[c]=t(n[c],c,n)}return i}function bn(){}function jn(n){return null==n?function(){}:function(t){return O(t)?sn(n,t):n[t]}}function wn(n,t,r){var u=Array(Math.max(0,n));t=hn(t,r,1);for(var e=0;e<n;e++)u[e]=t(e);return u}function xn(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))}J.iteratee=yn;var _n=Date.now||function(){return(new Date).getTime()};function On(n){var t=function(t){return n[t]},r="(?:"+K(n).join("|")+")",u=RegExp(r),e=RegExp(r,"g");return function(n){return n=null==n?"":""+n,u.test(n)?n.replace(e,t):n}}var Sn={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},An=On(Sn),Mn=On(Y(Sn)),En=J.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g},Bn=/(.)^/,kn={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},In=/\\|'|\r|\n|\u2028|\u2029/g;function Nn(n){return"\\"+kn[n]}function qn(n,t,r){!t&&r&&(t=r),t=un({},t,J.templateSettings);var u,e=RegExp([(t.escape||Bn).source,(t.interpolate||Bn).source,(t.evaluate||Bn).source].join("|")+"|$","g"),i=0,o="__p+='";n.replace(e,(function(t,r,u,e,c){return o+=n.slice(i,c).replace(In,Nn),i=c+t.length,r?o+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":u?o+="'+\n((__t=("+u+"))==null?'':__t)+\n'":e&&(o+="';\n"+e+"\n__p+='"),t})),o+="';\n",t.variable||(o="with(obj||{}){\n"+o+"}\n"),o="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+o+"return __p;\n";try{u=new Function(t.variable||"obj","_",o)}catch(n){throw n.source=o,n}var c=function(n){return u.call(this,n,J)},f=t.variable||"obj";return c.source="function("+f+"){\n"+o+"}",c}function Fn(n,t,r){O(t)||(t=[t]);var u=t.length;if(!u)return M(r)?r.call(n):r;for(var e=0;e<u;e++){var i=null==n?void 0:n[t[e]];void 0===i&&(i=r,e=u),n=M(i)?i.call(n):i}return n}var Tn=0;function Dn(n){var t=++Tn+"";return n?n+t:t}function Rn(n){var t=J(n);return t._chain=!0,t}function Vn(n,t,r,u,e){if(!(u instanceof t))return n.apply(r,e);var i=en(n.prototype),c=n.apply(i,e);return o(c)?c:i}var Pn=i((function(n,t){var r=Pn.placeholder,u=function(){for(var e=0,i=t.length,o=Array(i),c=0;c<i;c++)o[c]=t[c]===r?arguments[e++]:t[c];for(;e<arguments.length;)o.push(arguments[e++]);return Vn(n,u,this,this,o)};return u}));Pn.placeholder=J;var zn=Pn,Un=i((function(n,t,r){if(!M(n))throw new TypeError("Bind must be called on a function");var u=i((function(e){return Vn(n,u,t,this,r.concat(e))}));return u}));function Wn(n,t,r,u){if(u=u||[],t||0===t){if(t<=0)return u.concat(n)}else t=1/0;for(var e=u.length,i=0,o=z(n);i<o;i++){var c=n[i];if(U(c)&&(O(c)||k(c)))if(t>1)Wn(c,t-1,r,u),e=u.length;else for(var f=0,a=c.length;f<a;)u[e++]=c[f++];else r||(u[e++]=c)}return u}var Kn=i((function(n,t){var r=(t=Wn(t,!1,!1)).length;if(r<1)throw new Error("bindAll must be passed function names");for(;r--;){var u=t[r];n[u]=Un(n[u],n)}return n}));function Ln(n,t){var r=function(u){var e=r.cache,i=""+(t?t.apply(this,arguments):u);return E(e,i)||(e[i]=n.apply(this,arguments)),e[i]};return r.cache={},r}var Cn=i((function(n,t,r){return setTimeout((function(){return n.apply(null,r)}),t)})),Jn=zn(Cn,J,1);function $n(n,t,r){var u,e,i,o,c=0;r||(r={});var f=function(){c=!1===r.leading?0:_n(),u=null,o=n.apply(e,i),u||(e=i=null)},a=function(){var a=_n();c||!1!==r.leading||(c=a);var d=t-(a-c);return e=this,i=arguments,d<=0||d>t?(u&&(clearTimeout(u),u=null),c=a,o=n.apply(e,i),u||(e=i=null)):u||!1===r.trailing||(u=setTimeout(f,d)),o};return a.cancel=function(){clearTimeout(u),c=0,u=e=i=null},a}function Gn(n,t,r){var u,e,o=function(t,r){u=null,r&&(e=n.apply(t,r))},c=i((function(i){if(u&&clearTimeout(u),r){var c=!u;u=setTimeout(o,t),c&&(e=n.apply(this,i))}else u=Cn(o,t,this,i);return e}));return c.cancel=function(){clearTimeout(u),u=null},c}function Hn(n,t){return zn(t,n)}function Qn(n){return function(){return!n.apply(this,arguments)}}function Xn(){var n=arguments,t=n.length-1;return function(){for(var r=t,u=n[t].apply(this,arguments);r--;)u=n[r].call(this,u);return u}}function Yn(n,t){return function(){if(--n<1)return t.apply(this,arguments)}}function Zn(n,t){var r;return function(){return--n>0&&(r=t.apply(this,arguments)),n<=1&&(t=null),r}}var nt=zn(Zn,2);function tt(n,t,r){t=gn(t,r);for(var u,e=K(n),i=0,o=e.length;i<o;i++)if(t(n[u=e[i]],u,n))return u}function rt(n){return function(t,r,u){r=gn(r,u);for(var e=z(t),i=n>0?0:e-1;i>=0&&i<e;i+=n)if(r(t[i],i,t))return i;return-1}}var ut=rt(1),et=rt(-1);function it(n,t,r,u){for(var e=(r=gn(r,u,1))(t),i=0,o=z(n);i<o;){var c=Math.floor((i+o)/2);r(n[c])<e?i=c+1:o=c}return i}function ot(n,t,r){return function(u,i,o){var c=0,f=z(u);if("number"==typeof o)n>0?c=o>=0?o:Math.max(o+f,c):f=o>=0?Math.min(o+1,f):o+f+1;else if(r&&o&&f)return u[o=r(u,i)]===i?o:-1;if(i!=i)return(o=t(e.q.call(u,c,f),N))>=0?o+c:-1;for(o=n>0?c:f-1;o>=0&&o<f;o+=n)if(u[o]===i)return o;return-1}}var ct=ot(1,ut,it),ft=ot(-1,et);function at(n,t,r){var u=(U(n)?ut:tt)(n,t,r);if(void 0!==u&&-1!==u)return n[u]}function dt(n,t){return at(n,ln(t))}function lt(n,t,r){var u,e;if(t=hn(t,r),U(n))for(u=0,e=n.length;u<e;u++)t(n[u],u,n);else{var i=K(n);for(u=0,e=i.length;u<e;u++)t(n[i[u]],i[u],n)}return n}function st(n,t,r){t=gn(t,r);for(var u=!U(n)&&K(n),e=(u||n).length,i=Array(e),o=0;o<e;o++){var c=u?u[o]:o;i[o]=t(n[c],c,n)}return i}function pt(n){var t=function(t,r,u,e){var i=!U(t)&&K(t),o=(i||t).length,c=n>0?0:o-1;for(e||(u=t[i?i[c]:c],c+=n);c>=0&&c<o;c+=n){var f=i?i[c]:c;u=r(u,t[f],f,t)}return u};return function(n,r,u,e){var i=arguments.length>=3;return t(n,hn(r,e,4),u,i)}}var ht=pt(1),vt=pt(-1);function yt(n,t,r){var u=[];return t=gn(t,r),lt(n,(function(n,r,e){t(n,r,e)&&u.push(n)})),u}function gt(n,t,r){return yt(n,Qn(gn(t)),r)}function mt(n,t,r){t=gn(t,r);for(var u=!U(n)&&K(n),e=(u||n).length,i=0;i<e;i++){var o=u?u[i]:i;if(!t(n[o],o,n))return!1}return!0}function bt(n,t,r){t=gn(t,r);for(var u=!U(n)&&K(n),e=(u||n).length,i=0;i<e;i++){var o=u?u[i]:i;if(t(n[o],o,n))return!0}return!1}function jt(n,t,r,u){return U(n)||(n=Q(n)),("number"!=typeof r||u)&&(r=0),ct(n,t,r)>=0}var wt=i((function(n,t,r){var u,e;return M(t)?e=t:O(t)&&(u=t.slice(0,-1),t=t[t.length-1]),st(n,(function(n){var i=e;if(!i){if(u&&u.length&&(n=sn(n,u)),null==n)return;i=n[t]}return null==i?i:i.apply(n,r)}))}));function xt(n,t){return st(n,pn(t))}function _t(n,t){return yt(n,ln(t))}function Ot(n,t,r){var u,e,i=-1/0,o=-1/0;if(null==t||"number"==typeof t&&"object"!=typeof n[0]&&null!=n)for(var c=0,f=(n=U(n)?n:Q(n)).length;c<f;c++)null!=(u=n[c])&&u>i&&(i=u);else t=gn(t,r),lt(n,(function(n,r,u){((e=t(n,r,u))>o||e===-1/0&&i===-1/0)&&(i=n,o=e)}));return i}function St(n,t,r){var u,e,i=1/0,o=1/0;if(null==t||"number"==typeof t&&"object"!=typeof n[0]&&null!=n)for(var c=0,f=(n=U(n)?n:Q(n)).length;c<f;c++)null!=(u=n[c])&&u<i&&(i=u);else t=gn(t,r),lt(n,(function(n,r,u){((e=t(n,r,u))<o||e===1/0&&i===1/0)&&(i=n,o=e)}));return i}function At(n,t,r){if(null==t||r)return U(n)||(n=Q(n)),n[xn(n.length-1)];var u=U(n)?cn(n):Q(n),e=z(u);t=Math.max(Math.min(t,e),0);for(var i=e-1,o=0;o<t;o++){var c=xn(o,i),f=u[o];u[o]=u[c],u[c]=f}return u.slice(0,t)}function Mt(n){return At(n,1/0)}function Et(n,t,r){var u=0;return t=gn(t,r),xt(st(n,(function(n,r,e){return{value:n,index:u++,criteria:t(n,r,e)}})).sort((function(n,t){var r=n.criteria,u=t.criteria;if(r!==u){if(r>u||void 0===r)return 1;if(r<u||void 0===u)return-1}return n.index-t.index})),"value")}function Bt(n,t){return function(r,u,e){var i=t?[[],[]]:{};return u=gn(u,e),lt(r,(function(t,e){var o=u(t,e,r);n(i,t,o)})),i}}var kt=Bt((function(n,t,r){E(n,r)?n[r].push(t):n[r]=[t]})),It=Bt((function(n,t,r){n[r]=t})),Nt=Bt((function(n,t,r){E(n,r)?n[r]++:n[r]=1})),qt=Bt((function(n,t,r){n[r?0:1].push(t)}),!0),Ft=/[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g;function Tt(n){return n?O(n)?e.q.call(n):s(n)?n.match(Ft):U(n)?st(n,dn):Q(n):[]}function Dt(n){return null==n?0:U(n)?n.length:K(n).length}function Rt(n,t,r){return t in r}var Vt=i((function(n,t){var r={},u=t[0];if(null==n)return r;M(u)?(t.length>1&&(u=hn(u,t[1])),t=H(n)):(u=Rt,t=Wn(t,!1,!1),n=Object(n));for(var e=0,i=t.length;e<i;e++){var o=t[e],c=n[o];u(c,o,n)&&(r[o]=c)}return r})),Pt=i((function(n,t){var r,u=t[0];return M(u)?(u=Qn(u),t.length>1&&(r=t[1])):(t=st(Wn(t,!1,!1),String),u=function(n,r){return!jt(t,r)}),Vt(n,u,r)}));function zt(n,t,r){return e.q.call(n,0,Math.max(0,n.length-(null==t||r?1:t)))}function Ut(n,t,r){return null==n||n.length<1?null==t||r?void 0:[]:null==t||r?n[0]:zt(n,n.length-t)}function Wt(n,t,r){return e.q.call(n,null==t||r?1:t)}function Kt(n,t,r){return null==n||n.length<1?null==t||r?void 0:[]:null==t||r?n[n.length-1]:Wt(n,Math.max(0,n.length-t))}function Lt(n){return yt(n,Boolean)}function Ct(n,t){return Wn(n,t,!1)}var Jt=i((function(n,t){return t=Wn(t,!0,!0),yt(n,(function(n){return!jt(t,n)}))})),$t=i((function(n,t){return Jt(n,t)}));function Gt(n,t,r,u){a(t)||(u=r,r=t,t=!1),null!=r&&(r=gn(r,u));for(var e=[],i=[],o=0,c=z(n);o<c;o++){var f=n[o],d=r?r(f,o,n):f;t&&!r?(o&&i===d||e.push(f),i=d):r?jt(i,d)||(i.push(d),e.push(f)):jt(e,f)||e.push(f)}return e}var Ht=i((function(n){return Gt(Wn(n,!0,!0))}));function Qt(n){for(var t=[],r=arguments.length,u=0,e=z(n);u<e;u++){var i=n[u];if(!jt(t,i)){var o;for(o=1;o<r&&jt(arguments[o],i);o++);o===r&&t.push(i)}}return t}function Xt(n){for(var t=n&&Ot(n,z).length||0,r=Array(t),u=0;u<t;u++)r[u]=xt(n,u);return r}var Yt=i(Xt);function Zt(n,t){for(var r={},u=0,e=z(n);u<e;u++)t?r[n[u]]=t[u]:r[n[u][0]]=n[u][1];return r}function nr(n,t,r){null==t&&(t=n||0,n=0),r||(r=t<n?-1:1);for(var u=Math.max(Math.ceil((t-n)/r),0),e=Array(u),i=0;i<u;i++,n+=r)e[i]=n;return e}function tr(n,t){if(null==t||t<1)return[];for(var r=[],u=0,i=n.length;u<i;)r.push(e.q.call(n,u,u+=t));return r}function rr(n,t){return n._chain?J(t).chain():t}function ur(n){return lt(Z(n),(function(t){var r=J[t]=n[t];J.prototype[t]=function(){var n=[this._wrapped];return e.o.apply(n,arguments),rr(this,r.apply(J,n))}})),J}lt(["pop","push","reverse","shift","sort","splice","unshift"],(function(n){var t=e.a[n];J.prototype[n]=function(){var r=this._wrapped;return null!=r&&(t.apply(r,arguments),"shift"!==n&&"splice"!==n||0!==r.length||delete r[0]),rr(this,r)}})),lt(["concat","join","slice"],(function(n){var t=e.a[n];J.prototype[n]=function(){var n=this._wrapped;return null!=n&&(n=t.apply(n,arguments)),rr(this,n)}}));var er=J,ir=ur(u);ir._=ir;var or=ir}}); //# sourceMappingURL=files_fileinfo.js.map \ No newline at end of file diff --git a/core/js/dist/files_fileinfo.js.map b/core/js/dist/files_fileinfo.js.map index 43f1eaf7bb..41cf1fc255 100644 --- a/core/js/dist/files_fileinfo.js.map +++ b/core/js/dist/files_fileinfo.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/underscore/modules/_setup.js","webpack:///(webpack)/buildin/global.js","webpack:///./core/src/files/fileinfo.js","webpack:///./node_modules/underscore/modules/restArguments.js","webpack:///./node_modules/underscore/modules/isObject.js","webpack:///./node_modules/underscore/modules/isNull.js","webpack:///./node_modules/underscore/modules/isUndefined.js","webpack:///./node_modules/underscore/modules/isBoolean.js","webpack:///./node_modules/underscore/modules/isElement.js","webpack:///./node_modules/underscore/modules/_tagTester.js","webpack:///./node_modules/underscore/modules/isString.js","webpack:///./node_modules/underscore/modules/isNumber.js","webpack:///./node_modules/underscore/modules/isDate.js","webpack:///./node_modules/underscore/modules/isRegExp.js","webpack:///./node_modules/underscore/modules/isError.js","webpack:///./node_modules/underscore/modules/isSymbol.js","webpack:///./node_modules/underscore/modules/isMap.js","webpack:///./node_modules/underscore/modules/isWeakMap.js","webpack:///./node_modules/underscore/modules/isSet.js","webpack:///./node_modules/underscore/modules/isWeakSet.js","webpack:///./node_modules/underscore/modules/isArrayBuffer.js","webpack:///./node_modules/underscore/modules/isDataView.js","webpack:///./node_modules/underscore/modules/isArray.js","webpack:///./node_modules/underscore/modules/isFunction.js","webpack:///./node_modules/underscore/modules/_has.js","webpack:///./node_modules/underscore/modules/isArguments.js","webpack:///./node_modules/underscore/modules/isFinite.js","webpack:///./node_modules/underscore/modules/isNaN.js","webpack:///./node_modules/underscore/modules/constant.js","webpack:///./node_modules/underscore/modules/_createSizePropertyCheck.js","webpack:///./node_modules/underscore/modules/_shallowProperty.js","webpack:///./node_modules/underscore/modules/_getByteLength.js","webpack:///./node_modules/underscore/modules/_isBufferLike.js","webpack:///./node_modules/underscore/modules/isTypedArray.js","webpack:///./node_modules/underscore/modules/_getLength.js","webpack:///./node_modules/underscore/modules/_isArrayLike.js","webpack:///./node_modules/underscore/modules/_collectNonEnumProps.js","webpack:///./node_modules/underscore/modules/keys.js","webpack:///./node_modules/underscore/modules/isEmpty.js","webpack:///./node_modules/underscore/modules/isMatch.js","webpack:///./node_modules/underscore/modules/underscore.js","webpack:///./node_modules/underscore/modules/isEqual.js","webpack:///./node_modules/underscore/modules/allKeys.js","webpack:///./node_modules/underscore/modules/values.js","webpack:///./node_modules/underscore/modules/pairs.js","webpack:///./node_modules/underscore/modules/invert.js","webpack:///./node_modules/underscore/modules/functions.js","webpack:///./node_modules/underscore/modules/_createAssigner.js","webpack:///./node_modules/underscore/modules/extend.js","webpack:///./node_modules/underscore/modules/extendOwn.js","webpack:///./node_modules/underscore/modules/defaults.js","webpack:///./node_modules/underscore/modules/_baseCreate.js","webpack:///./node_modules/underscore/modules/create.js","webpack:///./node_modules/underscore/modules/clone.js","webpack:///./node_modules/underscore/modules/tap.js","webpack:///./node_modules/underscore/modules/has.js","webpack:///./node_modules/underscore/modules/identity.js","webpack:///./node_modules/underscore/modules/matcher.js","webpack:///./node_modules/underscore/modules/_deepGet.js","webpack:///./node_modules/underscore/modules/property.js","webpack:///./node_modules/underscore/modules/_optimizeCb.js","webpack:///./node_modules/underscore/modules/_baseIteratee.js","webpack:///./node_modules/underscore/modules/iteratee.js","webpack:///./node_modules/underscore/modules/_cb.js","webpack:///./node_modules/underscore/modules/mapObject.js","webpack:///./node_modules/underscore/modules/noop.js","webpack:///./node_modules/underscore/modules/propertyOf.js","webpack:///./node_modules/underscore/modules/times.js","webpack:///./node_modules/underscore/modules/random.js","webpack:///./node_modules/underscore/modules/now.js","webpack:///./node_modules/underscore/modules/_createEscaper.js","webpack:///./node_modules/underscore/modules/_escapeMap.js","webpack:///./node_modules/underscore/modules/escape.js","webpack:///./node_modules/underscore/modules/unescape.js","webpack:///./node_modules/underscore/modules/_unescapeMap.js","webpack:///./node_modules/underscore/modules/templateSettings.js","webpack:///./node_modules/underscore/modules/template.js","webpack:///./node_modules/underscore/modules/result.js","webpack:///./node_modules/underscore/modules/uniqueId.js","webpack:///./node_modules/underscore/modules/chain.js","webpack:///./node_modules/underscore/modules/_executeBound.js","webpack:///./node_modules/underscore/modules/partial.js","webpack:///./node_modules/underscore/modules/bind.js","webpack:///./node_modules/underscore/modules/_flatten.js","webpack:///./node_modules/underscore/modules/bindAll.js","webpack:///./node_modules/underscore/modules/memoize.js","webpack:///./node_modules/underscore/modules/delay.js","webpack:///./node_modules/underscore/modules/defer.js","webpack:///./node_modules/underscore/modules/throttle.js","webpack:///./node_modules/underscore/modules/debounce.js","webpack:///./node_modules/underscore/modules/wrap.js","webpack:///./node_modules/underscore/modules/negate.js","webpack:///./node_modules/underscore/modules/compose.js","webpack:///./node_modules/underscore/modules/after.js","webpack:///./node_modules/underscore/modules/before.js","webpack:///./node_modules/underscore/modules/once.js","webpack:///./node_modules/underscore/modules/findKey.js","webpack:///./node_modules/underscore/modules/_createPredicateIndexFinder.js","webpack:///./node_modules/underscore/modules/findIndex.js","webpack:///./node_modules/underscore/modules/findLastIndex.js","webpack:///./node_modules/underscore/modules/sortedIndex.js","webpack:///./node_modules/underscore/modules/_createIndexFinder.js","webpack:///./node_modules/underscore/modules/indexOf.js","webpack:///./node_modules/underscore/modules/lastIndexOf.js","webpack:///./node_modules/underscore/modules/find.js","webpack:///./node_modules/underscore/modules/findWhere.js","webpack:///./node_modules/underscore/modules/each.js","webpack:///./node_modules/underscore/modules/map.js","webpack:///./node_modules/underscore/modules/_createReduce.js","webpack:///./node_modules/underscore/modules/reduce.js","webpack:///./node_modules/underscore/modules/reduceRight.js","webpack:///./node_modules/underscore/modules/filter.js","webpack:///./node_modules/underscore/modules/reject.js","webpack:///./node_modules/underscore/modules/every.js","webpack:///./node_modules/underscore/modules/some.js","webpack:///./node_modules/underscore/modules/contains.js","webpack:///./node_modules/underscore/modules/invoke.js","webpack:///./node_modules/underscore/modules/pluck.js","webpack:///./node_modules/underscore/modules/where.js","webpack:///./node_modules/underscore/modules/max.js","webpack:///./node_modules/underscore/modules/min.js","webpack:///./node_modules/underscore/modules/sample.js","webpack:///./node_modules/underscore/modules/shuffle.js","webpack:///./node_modules/underscore/modules/sortBy.js","webpack:///./node_modules/underscore/modules/_group.js","webpack:///./node_modules/underscore/modules/groupBy.js","webpack:///./node_modules/underscore/modules/indexBy.js","webpack:///./node_modules/underscore/modules/countBy.js","webpack:///./node_modules/underscore/modules/partition.js","webpack:///./node_modules/underscore/modules/toArray.js","webpack:///./node_modules/underscore/modules/size.js","webpack:///./node_modules/underscore/modules/_keyInObj.js","webpack:///./node_modules/underscore/modules/pick.js","webpack:///./node_modules/underscore/modules/omit.js","webpack:///./node_modules/underscore/modules/initial.js","webpack:///./node_modules/underscore/modules/first.js","webpack:///./node_modules/underscore/modules/rest.js","webpack:///./node_modules/underscore/modules/last.js","webpack:///./node_modules/underscore/modules/compact.js","webpack:///./node_modules/underscore/modules/flatten.js","webpack:///./node_modules/underscore/modules/difference.js","webpack:///./node_modules/underscore/modules/without.js","webpack:///./node_modules/underscore/modules/uniq.js","webpack:///./node_modules/underscore/modules/union.js","webpack:///./node_modules/underscore/modules/intersection.js","webpack:///./node_modules/underscore/modules/unzip.js","webpack:///./node_modules/underscore/modules/zip.js","webpack:///./node_modules/underscore/modules/object.js","webpack:///./node_modules/underscore/modules/range.js","webpack:///./node_modules/underscore/modules/chunk.js","webpack:///./node_modules/underscore/modules/_chainResult.js","webpack:///./node_modules/underscore/modules/mixin.js","webpack:///./node_modules/underscore/modules/underscore-array-methods.js","webpack:///./node_modules/underscore/modules/index-default.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","VERSION","root","self","global","Function","ArrayProto","Array","ObjProto","SymbolProto","push","slice","toString","supportsArrayBuffer","ArrayBuffer","nativeIsArray","isArray","nativeKeys","keys","nativeCreate","nativeIsView","isView","_isNaN","isNaN","_isFinite","isFinite","hasEnumBug","propertyIsEnumerable","nonEnumerableProps","MAX_ARRAY_INDEX","Math","pow","g","this","e","window","OC","FileInfo","data","_","each","isFunction","isUndefined","id","parseInt","path","type","mimetype","icon","permissions","mtime","etag","mountType","hasPreview","sharePermissions","Files","restArguments","func","startIndex","length","max","arguments","rest","index","args","apply","isObject","obj","isNull","isBoolean","isElement","nodeType","tagTester","nodelist","document","childNodes","Int8Array","has","isArguments","isSymbol","parseFloat","isNumber","constant","createSizePropertyCheck","getSizeProperty","collection","sizeProperty","shallowProperty","typedArrayPattern","isDataView","test","collectNonEnumProps","hash","contains","emulatedSet","nonEnumIdx","constructor","proto","prop","isEmpty","isString","isMatch","attrs","_keys","_wrapped","eq","a","b","aStack","bStack","deepEq","className","valueOf","DataView","byteLength","getUint8","buffer","areArrays","aCtor","bCtor","pop","isEqual","allKeys","values","pairs","invert","result","functions","names","sort","createAssigner","keysFunc","defaults","source","toJSON","String","baseCreate","Ctor","props","extendOwn","clone","extend","tap","interceptor","identity","deepGet","optimizeCb","context","argCount","accumulator","baseIteratee","Infinity","cb","iteratee","mapObject","results","currentKey","noop","propertyOf","times","accum","random","min","floor","Date","getTime","createEscaper","map","escaper","match","join","testRegexp","RegExp","replaceRegexp","string","replace","templateSettings","evaluate","interpolate","escape","noMatch","escapes","escapeRegExp","escapeChar","text","settings","oldSettings","render","matcher","offset","variable","template","argument","fallback","idCounter","uniqueId","prefix","chain","instance","_chain","executeBound","sourceFunc","boundFunc","callingContext","partial","boundArgs","placeholder","bound","position","TypeError","callArgs","concat","flatten","input","depth","strict","output","idx","j","len","Error","hasher","memoize","cache","address","wait","setTimeout","delay","throttle","options","timeout","previous","later","leading","now","throttled","_now","remaining","clearTimeout","trailing","cancel","debounce","immediate","debounced","callNow","wrap","wrapper","negate","predicate","compose","start","after","before","memo","findKey","createPredicateIndexFinder","dir","array","low","high","mid","createIndexFinder","predicateFind","sortedIndex","item","findIndex","findLastIndex","find","findWhere","createReduce","reducer","initial","filter","list","reject","every","some","fromIndex","guard","indexOf","contextPath","method","pluck","where","computed","lastComputed","v","sample","last","rand","temp","shuffle","sortBy","criteria","left","right","group","behavior","partition","pass","reStrSymbol","toArray","size","keyInObj","pick","first","compact","Boolean","otherArrays","difference","uniq","isSorted","seen","arrays","intersection","argsLength","unzip","range","stop","step","ceil","chunk","count","chainResult","mixin"],"mappings":"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","file":"files_fileinfo.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 672);\n","// Current version.\nexport var VERSION = '1.11.0';\n\n// Establish the root object, `window` (`self`) in the browser, `global`\n// on the server, or `this` in some virtual machines. We use `self`\n// instead of `window` for `WebWorker` support.\nexport var root = typeof self == 'object' && self.self === self && self ||\n typeof global == 'object' && global.global === global && global ||\n Function('return this')() ||\n {};\n\n// Save bytes in the minified (but not gzipped) version:\nexport var ArrayProto = Array.prototype, ObjProto = Object.prototype;\nexport var SymbolProto = typeof Symbol !== 'undefined' ? Symbol.prototype : null;\n\n// Create quick reference variables for speed access to core prototypes.\nexport var push = ArrayProto.push,\n slice = ArrayProto.slice,\n toString = ObjProto.toString,\n hasOwnProperty = ObjProto.hasOwnProperty;\n\n// Modern feature detection.\nexport var supportsArrayBuffer = typeof ArrayBuffer !== 'undefined';\n\n// All **ECMAScript 5+** native function implementations that we hope to use\n// are declared here.\nexport var nativeIsArray = Array.isArray,\n nativeKeys = Object.keys,\n nativeCreate = Object.create,\n nativeIsView = supportsArrayBuffer && ArrayBuffer.isView;\n\n// Create references to these builtin functions because we override them.\nexport var _isNaN = isNaN,\n _isFinite = isFinite;\n\n// Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.\nexport var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');\nexport var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',\n 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];\n\n// The largest integer that can be represented exactly.\nexport var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","/* eslint-disable */\n/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n */\n\n(function(OC) {\n\n\t/**\n\t * @class OC.Files.FileInfo\n\t * @classdesc File information\n\t *\n\t * @param {Object} data file data, see attributes for details\n\t *\n\t * @since 8.2\n\t */\n\tconst FileInfo = function(data) {\n\t\tconst self = this\n\t\t_.each(data, function(value, key) {\n\t\t\tif (!_.isFunction(value)) {\n\t\t\t\tself[key] = value\n\t\t\t}\n\t\t})\n\n\t\tif (!_.isUndefined(this.id)) {\n\t\t\tthis.id = parseInt(data.id, 10)\n\t\t}\n\n\t\t// TODO: normalize path\n\t\tthis.path = data.path || ''\n\n\t\tif (this.type === 'dir') {\n\t\t\tthis.mimetype = 'httpd/unix-directory'\n\t\t} else {\n\t\t\tthis.mimetype = this.mimetype || 'application/octet-stream'\n\t\t}\n\n\t\tif (!this.type) {\n\t\t\tif (this.mimetype === 'httpd/unix-directory') {\n\t\t\t\tthis.type = 'dir'\n\t\t\t} else {\n\t\t\t\tthis.type = 'file'\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * @memberof OC.Files\n\t */\n\tFileInfo.prototype = {\n\t\t/**\n\t\t * File id\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tid: null,\n\n\t\t/**\n\t\t * File name\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tname: null,\n\n\t\t/**\n\t\t * Path leading to the file, without the file name,\n\t\t * and with a leading slash.\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tpath: null,\n\n\t\t/**\n\t\t * Mime type\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tmimetype: null,\n\n\t\t/**\n\t\t * Icon URL.\n\t\t *\n\t\t * Can be used to override the mime type icon.\n\t\t *\n\t\t * @type String\n\t\t */\n\t\ticon: null,\n\n\t\t/**\n\t\t * File type. 'file' for files, 'dir' for directories.\n\t\t *\n\t\t * @type String\n\t\t * @deprecated rely on mimetype instead\n\t\t */\n\t\ttype: null,\n\n\t\t/**\n\t\t * Permissions.\n\t\t *\n\t\t * @see OC#PERMISSION_ALL for permissions\n\t\t * @type int\n\t\t */\n\t\tpermissions: null,\n\n\t\t/**\n\t\t * Modification time\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tmtime: null,\n\n\t\t/**\n\t\t * Etag\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tetag: null,\n\n\t\t/**\n\t\t * Mount type.\n\t\t *\n\t\t * One of null, \"external-root\", \"shared\" or \"shared-root\"\n\t\t *\n\t\t * @type string\n\t\t */\n\t\tmountType: null,\n\n\t\t/**\n\t\t * @type boolean\n\t\t */\n\t\thasPreview: true,\n\n\t\t/**\n\t\t * @type int\n\t\t */\n\t\tsharePermissions: null,\n\t}\n\n\tif (!OC.Files) {\n\t\tOC.Files = {}\n\t}\n\tOC.Files.FileInfo = FileInfo\n})(OC)\n","// Some functions take a variable number of arguments, or a few expected\n// arguments at the beginning and then a variable number of values to operate\n// on. This helper accumulates all remaining arguments past the function’s\n// argument length (or an explicit `startIndex`), into an array that becomes\n// the last argument. Similar to ES6’s \"rest parameter\".\nexport default function restArguments(func, startIndex) {\n startIndex = startIndex == null ? func.length - 1 : +startIndex;\n return function() {\n var length = Math.max(arguments.length - startIndex, 0),\n rest = Array(length),\n index = 0;\n for (; index < length; index++) {\n rest[index] = arguments[index + startIndex];\n }\n switch (startIndex) {\n case 0: return func.call(this, rest);\n case 1: return func.call(this, arguments[0], rest);\n case 2: return func.call(this, arguments[0], arguments[1], rest);\n }\n var args = Array(startIndex + 1);\n for (index = 0; index < startIndex; index++) {\n args[index] = arguments[index];\n }\n args[startIndex] = rest;\n return func.apply(this, args);\n };\n}\n","// Is a given variable an object?\nexport default function isObject(obj) {\n var type = typeof obj;\n return type === 'function' || type === 'object' && !!obj;\n}\n","// Is a given value equal to null?\nexport default function isNull(obj) {\n return obj === null;\n}\n","// Is a given variable undefined?\nexport default function isUndefined(obj) {\n return obj === void 0;\n}\n","import { toString } from './_setup.js';\n\n// Is a given value a boolean?\nexport default function isBoolean(obj) {\n return obj === true || obj === false || toString.call(obj) === '[object Boolean]';\n}\n","// Is a given value a DOM element?\nexport default function isElement(obj) {\n return !!(obj && obj.nodeType === 1);\n}\n","import { toString } from './_setup.js';\n\n// Internal function for creating a `toString`-based type tester.\nexport default function tagTester(name) {\n return function(obj) {\n return toString.call(obj) === '[object ' + name + ']';\n };\n}\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('String');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Number');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Date');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('RegExp');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Error');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Symbol');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Map');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('WeakMap');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Set');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('WeakSet');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('ArrayBuffer');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('DataView');\n","import { nativeIsArray } from './_setup.js';\nimport tagTester from './_tagTester.js';\n\n// Is a given value an array?\n// Delegates to ECMA5's native `Array.isArray`.\nexport default nativeIsArray || tagTester('Array');\n","import tagTester from './_tagTester.js';\nimport { root } from './_setup.js';\n\nvar isFunction = tagTester('Function');\n\n// Optimize `isFunction` if appropriate. Work around some `typeof` bugs in old\n// v8, IE 11 (#1621), Safari 8 (#1929), and PhantomJS (#2236).\nvar nodelist = root.document && root.document.childNodes;\nif (typeof /./ != 'function' && typeof Int8Array != 'object' && typeof nodelist != 'function') {\n isFunction = function(obj) {\n return typeof obj == 'function' || false;\n };\n}\n\nexport default isFunction;\n","import { hasOwnProperty } from './_setup.js';\n\n// Internal function to check whether `key` is an own property name of `obj`.\nexport default function has(obj, key) {\n return obj != null && hasOwnProperty.call(obj, key);\n}\n","import tagTester from './_tagTester.js';\nimport has from './_has.js';\n\nvar isArguments = tagTester('Arguments');\n\n// Define a fallback version of the method in browsers (ahem, IE < 9), where\n// there isn't any inspectable \"Arguments\" type.\n(function() {\n if (!isArguments(arguments)) {\n isArguments = function(obj) {\n return has(obj, 'callee');\n };\n }\n}());\n\nexport default isArguments;\n","import { _isFinite } from './_setup.js';\nimport isSymbol from './isSymbol.js';\n\n// Is a given object a finite number?\nexport default function isFinite(obj) {\n return !isSymbol(obj) && _isFinite(obj) && !isNaN(parseFloat(obj));\n}\n","import { _isNaN } from './_setup.js';\nimport isNumber from './isNumber.js';\n\n// Is the given value `NaN`?\nexport default function isNaN(obj) {\n return isNumber(obj) && _isNaN(obj);\n}\n","// Predicate-generating function. Often useful outside of Underscore.\nexport default function constant(value) {\n return function() {\n return value;\n };\n}\n","import { MAX_ARRAY_INDEX } from './_setup.js';\n\n// Common internal logic for `isArrayLike` and `isBufferLike`.\nexport default function createSizePropertyCheck(getSizeProperty) {\n return function(collection) {\n var sizeProperty = getSizeProperty(collection);\n return typeof sizeProperty == 'number' && sizeProperty >= 0 && sizeProperty <= MAX_ARRAY_INDEX;\n }\n}\n","// Internal helper to generate a function to obtain property `key` from `obj`.\nexport default function shallowProperty(key) {\n return function(obj) {\n return obj == null ? void 0 : obj[key];\n };\n}\n","import shallowProperty from './_shallowProperty.js';\n\n// Internal helper to obtain the `byteLength` property of an object.\nexport default shallowProperty('byteLength');\n","import createSizePropertyCheck from './_createSizePropertyCheck.js';\nimport getByteLength from './_getByteLength.js';\n\n// Internal helper to determine whether we should spend extensive checks against\n// `ArrayBuffer` et al.\nexport default createSizePropertyCheck(getByteLength);\n","import { supportsArrayBuffer, nativeIsView, toString } from './_setup.js';\nimport isDataView from './isDataView.js';\nimport constant from './constant.js';\nimport isBufferLike from './_isBufferLike.js';\n\n// Is a given value a typed array?\nvar typedArrayPattern = /\\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\\]/;\nfunction isTypedArray(obj) {\n // `ArrayBuffer.isView` is the most future-proof, so use it when available.\n // Otherwise, fall back on the above regular expression.\n return nativeIsView ? (nativeIsView(obj) && !isDataView(obj)) :\n isBufferLike(obj) && typedArrayPattern.test(toString.call(obj));\n}\n\nexport default supportsArrayBuffer ? isTypedArray : constant(false);\n","import shallowProperty from './_shallowProperty.js';\n\n// Internal helper to obtain the `length` property of an object.\nexport default shallowProperty('length');\n","import createSizePropertyCheck from './_createSizePropertyCheck.js';\nimport getLength from './_getLength.js';\n\n// Internal helper for collection methods to determine whether a collection\n// should be iterated as an array or as an object.\n// Related: https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n// Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094\nexport default createSizePropertyCheck(getLength);\n","import { nonEnumerableProps, ObjProto } from './_setup.js';\nimport isFunction from './isFunction.js';\nimport has from './_has.js';\n\n// Internal helper to create a simple lookup structure.\n// `collectNonEnumProps` used to depend on `_.contains`, but this led to\n// circular imports. `emulatedSet` is a one-off solution that only works for\n// arrays of strings.\nfunction emulatedSet(keys) {\n var hash = {};\n for (var l = keys.length, i = 0; i < l; ++i) hash[keys[i]] = true;\n return {\n contains: function(key) { return hash[key]; },\n push: function(key) {\n hash[key] = true;\n return keys.push(key);\n }\n };\n}\n\n// Internal helper. Checks `keys` for the presence of keys in IE < 9 that won't\n// be iterated by `for key in ...` and thus missed. Extends `keys` in place if\n// needed.\nexport default function collectNonEnumProps(obj, keys) {\n keys = emulatedSet(keys);\n var nonEnumIdx = nonEnumerableProps.length;\n var constructor = obj.constructor;\n var proto = isFunction(constructor) && constructor.prototype || ObjProto;\n\n // Constructor is a special case.\n var prop = 'constructor';\n if (has(obj, prop) && !keys.contains(prop)) keys.push(prop);\n\n while (nonEnumIdx--) {\n prop = nonEnumerableProps[nonEnumIdx];\n if (prop in obj && obj[prop] !== proto[prop] && !keys.contains(prop)) {\n keys.push(prop);\n }\n }\n}\n","import isObject from './isObject.js';\nimport { nativeKeys, hasEnumBug } from './_setup.js';\nimport has from './_has.js';\nimport collectNonEnumProps from './_collectNonEnumProps.js';\n\n// Retrieve the names of an object's own properties.\n// Delegates to **ECMAScript 5**'s native `Object.keys`.\nexport default function keys(obj) {\n if (!isObject(obj)) return [];\n if (nativeKeys) return nativeKeys(obj);\n var keys = [];\n for (var key in obj) if (has(obj, key)) keys.push(key);\n // Ahem, IE < 9.\n if (hasEnumBug) collectNonEnumProps(obj, keys);\n return keys;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport isArray from './isArray.js';\nimport isString from './isString.js';\nimport isArguments from './isArguments.js';\nimport keys from './keys.js';\n\n// Is a given array, string, or object empty?\n// An \"empty\" object has no enumerable own-properties.\nexport default function isEmpty(obj) {\n if (obj == null) return true;\n // Skip the more expensive `toString`-based type checks if `obj` has no\n // `.length`.\n if (isArrayLike(obj) && (isArray(obj) || isString(obj) || isArguments(obj))) return obj.length === 0;\n return keys(obj).length === 0;\n}\n","import keys from './keys.js';\n\n// Returns whether an object has a given set of `key:value` pairs.\nexport default function isMatch(object, attrs) {\n var _keys = keys(attrs), length = _keys.length;\n if (object == null) return !length;\n var obj = Object(object);\n for (var i = 0; i < length; i++) {\n var key = _keys[i];\n if (attrs[key] !== obj[key] || !(key in obj)) return false;\n }\n return true;\n}\n","import { VERSION } from './_setup.js';\n\n// If Underscore is called as a function, it returns a wrapped object that can\n// be used OO-style. This wrapper holds altered versions of all functions added\n// through `_.mixin`. Wrapped objects may be chained.\nexport default function _(obj) {\n if (obj instanceof _) return obj;\n if (!(this instanceof _)) return new _(obj);\n this._wrapped = obj;\n}\n\n_.VERSION = VERSION;\n\n// Extracts the result from a wrapped and chained object.\n_.prototype.value = function() {\n return this._wrapped;\n};\n\n// Provide unwrapping proxies for some methods used in engine operations\n// such as arithmetic and JSON stringification.\n_.prototype.valueOf = _.prototype.toJSON = _.prototype.value;\n\n_.prototype.toString = function() {\n return String(this._wrapped);\n};\n","import _ from './underscore.js';\nimport { toString, SymbolProto } from './_setup.js';\nimport getByteLength from './_getByteLength.js';\nimport isTypedArray from './isTypedArray.js';\nimport isFunction from './isFunction.js';\nimport keys from './keys.js';\nimport has from './_has.js';\n\n// Internal recursive comparison function for `_.isEqual`.\nfunction eq(a, b, aStack, bStack) {\n // Identical objects are equal. `0 === -0`, but they aren't identical.\n // See the [Harmony `egal` proposal](https://wiki.ecmascript.org/doku.php?id=harmony:egal).\n if (a === b) return a !== 0 || 1 / a === 1 / b;\n // `null` or `undefined` only equal to itself (strict comparison).\n if (a == null || b == null) return false;\n // `NaN`s are equivalent, but non-reflexive.\n if (a !== a) return b !== b;\n // Exhaust primitive checks\n var type = typeof a;\n if (type !== 'function' && type !== 'object' && typeof b != 'object') return false;\n return deepEq(a, b, aStack, bStack);\n}\n\n// Internal recursive comparison function for `_.isEqual`.\nfunction deepEq(a, b, aStack, bStack) {\n // Unwrap any wrapped objects.\n if (a instanceof _) a = a._wrapped;\n if (b instanceof _) b = b._wrapped;\n // Compare `[[Class]]` names.\n var className = toString.call(a);\n if (className !== toString.call(b)) return false;\n switch (className) {\n // These types are compared by value.\n case '[object RegExp]':\n // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')\n case '[object String]':\n // Primitives and their corresponding object wrappers are equivalent; thus, `\"5\"` is\n // equivalent to `new String(\"5\")`.\n return '' + a === '' + b;\n case '[object Number]':\n // `NaN`s are equivalent, but non-reflexive.\n // Object(NaN) is equivalent to NaN.\n if (+a !== +a) return +b !== +b;\n // An `egal` comparison is performed for other numeric values.\n return +a === 0 ? 1 / +a === 1 / b : +a === +b;\n case '[object Date]':\n case '[object Boolean]':\n // Coerce dates and booleans to numeric primitive values. Dates are compared by their\n // millisecond representations. Note that invalid dates with millisecond representations\n // of `NaN` are not equivalent.\n return +a === +b;\n case '[object Symbol]':\n return SymbolProto.valueOf.call(a) === SymbolProto.valueOf.call(b);\n case '[object ArrayBuffer]':\n // Coerce to `DataView` so we can fall through to the next case.\n return deepEq(new DataView(a), new DataView(b), aStack, bStack);\n case '[object DataView]':\n var byteLength = getByteLength(a);\n if (byteLength !== getByteLength(b)) {\n return false;\n }\n while (byteLength--) {\n if (a.getUint8(byteLength) !== b.getUint8(byteLength)) {\n return false;\n }\n }\n return true;\n }\n\n if (isTypedArray(a)) {\n // Coerce typed arrays to `DataView`.\n return deepEq(new DataView(a.buffer), new DataView(b.buffer), aStack, bStack);\n }\n\n var areArrays = className === '[object Array]';\n if (!areArrays) {\n if (typeof a != 'object' || typeof b != 'object') return false;\n\n // Objects with different constructors are not equivalent, but `Object`s or `Array`s\n // from different frames are.\n var aCtor = a.constructor, bCtor = b.constructor;\n if (aCtor !== bCtor && !(isFunction(aCtor) && aCtor instanceof aCtor &&\n isFunction(bCtor) && bCtor instanceof bCtor)\n && ('constructor' in a && 'constructor' in b)) {\n return false;\n }\n }\n // Assume equality for cyclic structures. The algorithm for detecting cyclic\n // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.\n\n // Initializing stack of traversed objects.\n // It's done here since we only need them for objects and arrays comparison.\n aStack = aStack || [];\n bStack = bStack || [];\n var length = aStack.length;\n while (length--) {\n // Linear search. Performance is inversely proportional to the number of\n // unique nested structures.\n if (aStack[length] === a) return bStack[length] === b;\n }\n\n // Add the first object to the stack of traversed objects.\n aStack.push(a);\n bStack.push(b);\n\n // Recursively compare objects and arrays.\n if (areArrays) {\n // Compare array lengths to determine if a deep comparison is necessary.\n length = a.length;\n if (length !== b.length) return false;\n // Deep compare the contents, ignoring non-numeric properties.\n while (length--) {\n if (!eq(a[length], b[length], aStack, bStack)) return false;\n }\n } else {\n // Deep compare objects.\n var _keys = keys(a), key;\n length = _keys.length;\n // Ensure that both objects contain the same number of properties before comparing deep equality.\n if (keys(b).length !== length) return false;\n while (length--) {\n // Deep compare each member\n key = _keys[length];\n if (!(has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;\n }\n }\n // Remove the first object from the stack of traversed objects.\n aStack.pop();\n bStack.pop();\n return true;\n}\n\n// Perform a deep comparison to check if two objects are equal.\nexport default function isEqual(a, b) {\n return eq(a, b);\n}\n","import isObject from './isObject.js';\nimport { hasEnumBug } from './_setup.js';\nimport collectNonEnumProps from './_collectNonEnumProps.js';\n\n// Retrieve all the enumerable property names of an object.\nexport default function allKeys(obj) {\n if (!isObject(obj)) return [];\n var keys = [];\n for (var key in obj) keys.push(key);\n // Ahem, IE < 9.\n if (hasEnumBug) collectNonEnumProps(obj, keys);\n return keys;\n}\n","import keys from './keys.js';\n\n// Retrieve the values of an object's properties.\nexport default function values(obj) {\n var _keys = keys(obj);\n var length = _keys.length;\n var values = Array(length);\n for (var i = 0; i < length; i++) {\n values[i] = obj[_keys[i]];\n }\n return values;\n}\n","import keys from './keys.js';\n\n// Convert an object into a list of `[key, value]` pairs.\n// The opposite of `_.object` with one argument.\nexport default function pairs(obj) {\n var _keys = keys(obj);\n var length = _keys.length;\n var pairs = Array(length);\n for (var i = 0; i < length; i++) {\n pairs[i] = [_keys[i], obj[_keys[i]]];\n }\n return pairs;\n}\n","import keys from './keys.js';\n\n// Invert the keys and values of an object. The values must be serializable.\nexport default function invert(obj) {\n var result = {};\n var _keys = keys(obj);\n for (var i = 0, length = _keys.length; i < length; i++) {\n result[obj[_keys[i]]] = _keys[i];\n }\n return result;\n}\n","import isFunction from './isFunction.js';\n\n// Return a sorted list of the function names available on the object.\nexport default function functions(obj) {\n var names = [];\n for (var key in obj) {\n if (isFunction(obj[key])) names.push(key);\n }\n return names.sort();\n}\n","// An internal function for creating assigner functions.\nexport default function createAssigner(keysFunc, defaults) {\n return function(obj) {\n var length = arguments.length;\n if (defaults) obj = Object(obj);\n if (length < 2 || obj == null) return obj;\n for (var index = 1; index < length; index++) {\n var source = arguments[index],\n keys = keysFunc(source),\n l = keys.length;\n for (var i = 0; i < l; i++) {\n var key = keys[i];\n if (!defaults || obj[key] === void 0) obj[key] = source[key];\n }\n }\n return obj;\n };\n}\n","import createAssigner from './_createAssigner.js';\nimport allKeys from './allKeys.js';\n\n// Extend a given object with all the properties in passed-in object(s).\nexport default createAssigner(allKeys);\n","import createAssigner from './_createAssigner.js';\nimport keys from './keys.js';\n\n// Assigns a given object with all the own properties in the passed-in\n// object(s).\n// (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)\nexport default createAssigner(keys);\n","import createAssigner from './_createAssigner.js';\nimport allKeys from './allKeys.js';\n\n// Fill in a given object with default properties.\nexport default createAssigner(allKeys, true);\n","import isObject from './isObject.js';\nimport { nativeCreate } from './_setup.js';\n\n// Create a naked function reference for surrogate-prototype-swapping.\nfunction ctor() {\n return function(){};\n}\n\n// An internal function for creating a new object that inherits from another.\nexport default function baseCreate(prototype) {\n if (!isObject(prototype)) return {};\n if (nativeCreate) return nativeCreate(prototype);\n var Ctor = ctor();\n Ctor.prototype = prototype;\n var result = new Ctor;\n Ctor.prototype = null;\n return result;\n}\n","import baseCreate from './_baseCreate.js';\nimport extendOwn from './extendOwn.js';\n\n// Creates an object that inherits from the given prototype object.\n// If additional properties are provided then they will be added to the\n// created object.\nexport default function create(prototype, props) {\n var result = baseCreate(prototype);\n if (props) extendOwn(result, props);\n return result;\n}\n","import isObject from './isObject.js';\nimport isArray from './isArray.js';\nimport extend from './extend.js';\n\n// Create a (shallow-cloned) duplicate of an object.\nexport default function clone(obj) {\n if (!isObject(obj)) return obj;\n return isArray(obj) ? obj.slice() : extend({}, obj);\n}\n","// Invokes `interceptor` with the `obj` and then returns `obj`.\n// The primary purpose of this method is to \"tap into\" a method chain, in\n// order to perform operations on intermediate results within the chain.\nexport default function tap(obj, interceptor) {\n interceptor(obj);\n return obj;\n}\n","import isArray from './isArray.js';\nimport _has from './_has.js';\nimport { hasOwnProperty } from './_setup.js';\n\n// Shortcut function for checking if an object has a given property directly on\n// itself (in other words, not on a prototype). Unlike the internal `has`\n// function, this public version can also traverse nested properties.\nexport default function has(obj, path) {\n if (!isArray(path)) {\n return _has(obj, path);\n }\n var length = path.length;\n for (var i = 0; i < length; i++) {\n var key = path[i];\n if (obj == null || !hasOwnProperty.call(obj, key)) {\n return false;\n }\n obj = obj[key];\n }\n return !!length;\n}\n","// Keep the identity function around for default iteratees.\nexport default function identity(value) {\n return value;\n}\n","import extendOwn from './extendOwn.js';\nimport isMatch from './isMatch.js';\n\n// Returns a predicate for checking whether an object has a given set of\n// `key:value` pairs.\nexport default function matcher(attrs) {\n attrs = extendOwn({}, attrs);\n return function(obj) {\n return isMatch(obj, attrs);\n };\n}\n","// Internal function to obtain a nested property in `obj` along `path`.\nexport default function deepGet(obj, path) {\n var length = path.length;\n for (var i = 0; i < length; i++) {\n if (obj == null) return void 0;\n obj = obj[path[i]];\n }\n return length ? obj : void 0;\n}\n","import isArray from './isArray.js';\nimport shallowProperty from './_shallowProperty.js';\nimport deepGet from './_deepGet.js';\n\n// Creates a function that, when passed an object, will traverse that object’s\n// properties down the given `path`, specified as an array of keys or indices.\nexport default function property(path) {\n if (!isArray(path)) {\n return shallowProperty(path);\n }\n return function(obj) {\n return deepGet(obj, path);\n };\n}\n","// Internal function that returns an efficient (for current engines) version\n// of the passed-in callback, to be repeatedly applied in other Underscore\n// functions.\nexport default function optimizeCb(func, context, argCount) {\n if (context === void 0) return func;\n switch (argCount == null ? 3 : argCount) {\n case 1: return function(value) {\n return func.call(context, value);\n };\n // The 2-argument case is omitted because we’re not using it.\n case 3: return function(value, index, collection) {\n return func.call(context, value, index, collection);\n };\n case 4: return function(accumulator, value, index, collection) {\n return func.call(context, accumulator, value, index, collection);\n };\n }\n return function() {\n return func.apply(context, arguments);\n };\n}\n","import identity from './identity.js';\nimport isFunction from './isFunction.js';\nimport isObject from './isObject.js';\nimport isArray from './isArray.js';\nimport matcher from './matcher.js';\nimport property from './property.js';\nimport optimizeCb from './_optimizeCb.js';\n\n// An internal function to generate callbacks that can be applied to each\n// element in a collection, returning the desired result — either `_.identity`,\n// an arbitrary callback, a property matcher, or a property accessor.\nexport default function baseIteratee(value, context, argCount) {\n if (value == null) return identity;\n if (isFunction(value)) return optimizeCb(value, context, argCount);\n if (isObject(value) && !isArray(value)) return matcher(value);\n return property(value);\n}\n","import _ from './underscore.js';\nimport baseIteratee from './_baseIteratee.js';\n\n// External wrapper for our callback generator. Users may customize\n// `_.iteratee` if they want additional predicate/iteratee shorthand styles.\n// This abstraction hides the internal-only `argCount` argument.\nexport default function iteratee(value, context) {\n return baseIteratee(value, context, Infinity);\n}\n_.iteratee = iteratee;\n","import _ from './underscore.js';\nimport baseIteratee from './_baseIteratee.js';\nimport iteratee from './iteratee.js';\n\n// The function we call internally to generate a callback. It invokes\n// `_.iteratee` if overridden, otherwise `baseIteratee`.\nexport default function cb(value, context, argCount) {\n if (_.iteratee !== iteratee) return _.iteratee(value, context);\n return baseIteratee(value, context, argCount);\n}\n","import cb from './_cb.js';\nimport keys from './keys.js';\n\n// Returns the results of applying the `iteratee` to each element of `obj`.\n// In contrast to `_.map` it returns an object.\nexport default function mapObject(obj, iteratee, context) {\n iteratee = cb(iteratee, context);\n var _keys = keys(obj),\n length = _keys.length,\n results = {};\n for (var index = 0; index < length; index++) {\n var currentKey = _keys[index];\n results[currentKey] = iteratee(obj[currentKey], currentKey, obj);\n }\n return results;\n}\n","// Predicate-generating function. Often useful outside of Underscore.\nexport default function noop(){}\n","import isArray from './isArray.js';\nimport deepGet from './_deepGet.js';\n\n// Generates a function for a given object that returns a given property.\nexport default function propertyOf(obj) {\n if (obj == null) {\n return function(){};\n }\n return function(path) {\n return !isArray(path) ? obj[path] : deepGet(obj, path);\n };\n}\n","import optimizeCb from './_optimizeCb.js';\n\n// Run a function **n** times.\nexport default function times(n, iteratee, context) {\n var accum = Array(Math.max(0, n));\n iteratee = optimizeCb(iteratee, context, 1);\n for (var i = 0; i < n; i++) accum[i] = iteratee(i);\n return accum;\n}\n","// Return a random integer between `min` and `max` (inclusive).\nexport default function random(min, max) {\n if (max == null) {\n max = min;\n min = 0;\n }\n return min + Math.floor(Math.random() * (max - min + 1));\n}\n","// A (possibly faster) way to get the current timestamp as an integer.\nexport default Date.now || function() {\n return new Date().getTime();\n};\n","import keys from './keys.js';\n\n// Internal helper to generate functions for escaping and unescaping strings\n// to/from HTML interpolation.\nexport default function createEscaper(map) {\n var escaper = function(match) {\n return map[match];\n };\n // Regexes for identifying a key that needs to be escaped.\n var source = '(?:' + keys(map).join('|') + ')';\n var testRegexp = RegExp(source);\n var replaceRegexp = RegExp(source, 'g');\n return function(string) {\n string = string == null ? '' : '' + string;\n return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;\n };\n}\n","// Internal list of HTML entities for escaping.\nexport default {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n \"'\": ''',\n '`': '`'\n};\n","import createEscaper from './_createEscaper.js';\nimport escapeMap from './_escapeMap.js';\n\n// Function for escaping strings to HTML interpolation.\nexport default createEscaper(escapeMap);\n","import createEscaper from './_createEscaper.js';\nimport unescapeMap from './_unescapeMap.js';\n\n// Function for unescaping strings from HTML interpolation.\nexport default createEscaper(unescapeMap);\n","import invert from './invert.js';\nimport escapeMap from './_escapeMap.js';\n\n// Internal list of HTML entities for unescaping.\nexport default invert(escapeMap);\n","import _ from './underscore.js';\n\n// By default, Underscore uses ERB-style template delimiters. Change the\n// following template settings to use alternative delimiters.\nexport default _.templateSettings = {\n evaluate: /<%([\\s\\S]+?)%>/g,\n interpolate: /<%=([\\s\\S]+?)%>/g,\n escape: /<%-([\\s\\S]+?)%>/g\n};\n","import defaults from './defaults.js';\nimport _ from './underscore.js';\nimport './templateSettings.js';\n\n// When customizing `_.templateSettings`, if you don't want to define an\n// interpolation, evaluation or escaping regex, we need one that is\n// guaranteed not to match.\nvar noMatch = /(.)^/;\n\n// Certain characters need to be escaped so that they can be put into a\n// string literal.\nvar escapes = {\n \"'\": \"'\",\n '\\\\': '\\\\',\n '\\r': 'r',\n '\\n': 'n',\n '\\u2028': 'u2028',\n '\\u2029': 'u2029'\n};\n\nvar escapeRegExp = /\\\\|'|\\r|\\n|\\u2028|\\u2029/g;\n\nfunction escapeChar(match) {\n return '\\\\' + escapes[match];\n}\n\n// JavaScript micro-templating, similar to John Resig's implementation.\n// Underscore templating handles arbitrary delimiters, preserves whitespace,\n// and correctly escapes quotes within interpolated code.\n// NB: `oldSettings` only exists for backwards compatibility.\nexport default function template(text, settings, oldSettings) {\n if (!settings && oldSettings) settings = oldSettings;\n settings = defaults({}, settings, _.templateSettings);\n\n // Combine delimiters into one regular expression via alternation.\n var matcher = RegExp([\n (settings.escape || noMatch).source,\n (settings.interpolate || noMatch).source,\n (settings.evaluate || noMatch).source\n ].join('|') + '|$', 'g');\n\n // Compile the template source, escaping string literals appropriately.\n var index = 0;\n var source = \"__p+='\";\n text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {\n source += text.slice(index, offset).replace(escapeRegExp, escapeChar);\n index = offset + match.length;\n\n if (escape) {\n source += \"'+\\n((__t=(\" + escape + \"))==null?'':_.escape(__t))+\\n'\";\n } else if (interpolate) {\n source += \"'+\\n((__t=(\" + interpolate + \"))==null?'':__t)+\\n'\";\n } else if (evaluate) {\n source += \"';\\n\" + evaluate + \"\\n__p+='\";\n }\n\n // Adobe VMs need the match returned to produce the correct offset.\n return match;\n });\n source += \"';\\n\";\n\n // If a variable is not specified, place data values in local scope.\n if (!settings.variable) source = 'with(obj||{}){\\n' + source + '}\\n';\n\n source = \"var __t,__p='',__j=Array.prototype.join,\" +\n \"print=function(){__p+=__j.call(arguments,'');};\\n\" +\n source + 'return __p;\\n';\n\n var render;\n try {\n render = new Function(settings.variable || 'obj', '_', source);\n } catch (e) {\n e.source = source;\n throw e;\n }\n\n var template = function(data) {\n return render.call(this, data, _);\n };\n\n // Provide the compiled source as a convenience for precompilation.\n var argument = settings.variable || 'obj';\n template.source = 'function(' + argument + '){\\n' + source + '}';\n\n return template;\n}\n","import isArray from './isArray.js';\nimport isFunction from './isFunction.js';\n\n// Traverses the children of `obj` along `path`. If a child is a function, it\n// is invoked with its parent as context. Returns the value of the final\n// child, or `fallback` if any child is undefined.\nexport default function result(obj, path, fallback) {\n if (!isArray(path)) path = [path];\n var length = path.length;\n if (!length) {\n return isFunction(fallback) ? fallback.call(obj) : fallback;\n }\n for (var i = 0; i < length; i++) {\n var prop = obj == null ? void 0 : obj[path[i]];\n if (prop === void 0) {\n prop = fallback;\n i = length; // Ensure we don't continue iterating.\n }\n obj = isFunction(prop) ? prop.call(obj) : prop;\n }\n return obj;\n}\n","// Generate a unique integer id (unique within the entire client session).\n// Useful for temporary DOM ids.\nvar idCounter = 0;\nexport default function uniqueId(prefix) {\n var id = ++idCounter + '';\n return prefix ? prefix + id : id;\n}\n","import _ from './underscore.js';\n\n// Start chaining a wrapped Underscore object.\nexport default function chain(obj) {\n var instance = _(obj);\n instance._chain = true;\n return instance;\n}\n","import baseCreate from './_baseCreate.js';\nimport isObject from './isObject.js';\n\n// Internal function to execute `sourceFunc` bound to `context` with optional\n// `args`. Determines whether to execute a function as a constructor or as a\n// normal function.\nexport default function executeBound(sourceFunc, boundFunc, context, callingContext, args) {\n if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);\n var self = baseCreate(sourceFunc.prototype);\n var result = sourceFunc.apply(self, args);\n if (isObject(result)) return result;\n return self;\n}\n","import restArguments from './restArguments.js';\nimport executeBound from './_executeBound.js';\nimport _ from './underscore.js';\n\n// Partially apply a function by creating a version that has had some of its\n// arguments pre-filled, without changing its dynamic `this` context. `_` acts\n// as a placeholder by default, allowing any combination of arguments to be\n// pre-filled. Set `_.partial.placeholder` for a custom placeholder argument.\nvar partial = restArguments(function(func, boundArgs) {\n var placeholder = partial.placeholder;\n var bound = function() {\n var position = 0, length = boundArgs.length;\n var args = Array(length);\n for (var i = 0; i < length; i++) {\n args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i];\n }\n while (position < arguments.length) args.push(arguments[position++]);\n return executeBound(func, bound, this, this, args);\n };\n return bound;\n});\n\npartial.placeholder = _;\nexport default partial;\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport executeBound from './_executeBound.js';\n\n// Create a function bound to a given object (assigning `this`, and arguments,\n// optionally).\nexport default restArguments(function(func, context, args) {\n if (!isFunction(func)) throw new TypeError('Bind must be called on a function');\n var bound = restArguments(function(callArgs) {\n return executeBound(func, bound, context, this, args.concat(callArgs));\n });\n return bound;\n});\n","import getLength from './_getLength.js';\nimport isArrayLike from './_isArrayLike.js';\nimport isArray from './isArray.js';\nimport isArguments from './isArguments.js';\n\n// Internal implementation of a recursive `flatten` function.\nexport default function flatten(input, depth, strict, output) {\n output = output || [];\n if (!depth && depth !== 0) {\n depth = Infinity;\n } else if (depth <= 0) {\n return output.concat(input);\n }\n var idx = output.length;\n for (var i = 0, length = getLength(input); i < length; i++) {\n var value = input[i];\n if (isArrayLike(value) && (isArray(value) || isArguments(value))) {\n // Flatten current level of array or arguments object.\n if (depth > 1) {\n flatten(value, depth - 1, strict, output);\n idx = output.length;\n } else {\n var j = 0, len = value.length;\n while (j < len) output[idx++] = value[j++];\n }\n } else if (!strict) {\n output[idx++] = value;\n }\n }\n return output;\n}\n","import restArguments from './restArguments.js';\nimport flatten from './_flatten.js';\nimport bind from './bind.js';\n\n// Bind a number of an object's methods to that object. Remaining arguments\n// are the method names to be bound. Useful for ensuring that all callbacks\n// defined on an object belong to it.\nexport default restArguments(function(obj, keys) {\n keys = flatten(keys, false, false);\n var index = keys.length;\n if (index < 1) throw new Error('bindAll must be passed function names');\n while (index--) {\n var key = keys[index];\n obj[key] = bind(obj[key], obj);\n }\n return obj;\n});\n","import has from './_has.js';\n\n// Memoize an expensive function by storing its results.\nexport default function memoize(func, hasher) {\n var memoize = function(key) {\n var cache = memoize.cache;\n var address = '' + (hasher ? hasher.apply(this, arguments) : key);\n if (!has(cache, address)) cache[address] = func.apply(this, arguments);\n return cache[address];\n };\n memoize.cache = {};\n return memoize;\n}\n","import restArguments from './restArguments.js';\n\n// Delays a function for the given number of milliseconds, and then calls\n// it with the arguments supplied.\nexport default restArguments(function(func, wait, args) {\n return setTimeout(function() {\n return func.apply(null, args);\n }, wait);\n});\n","import partial from './partial.js';\nimport delay from './delay.js';\nimport _ from './underscore.js';\n\n// Defers a function, scheduling it to run after the current call stack has\n// cleared.\nexport default partial(delay, _, 1);\n","import now from './now.js';\n\n// Returns a function, that, when invoked, will only be triggered at most once\n// during a given window of time. Normally, the throttled function will run\n// as much as it can, without ever going more than once per `wait` duration;\n// but if you'd like to disable the execution on the leading edge, pass\n// `{leading: false}`. To disable execution on the trailing edge, ditto.\nexport default function throttle(func, wait, options) {\n var timeout, context, args, result;\n var previous = 0;\n if (!options) options = {};\n\n var later = function() {\n previous = options.leading === false ? 0 : now();\n timeout = null;\n result = func.apply(context, args);\n if (!timeout) context = args = null;\n };\n\n var throttled = function() {\n var _now = now();\n if (!previous && options.leading === false) previous = _now;\n var remaining = wait - (_now - previous);\n context = this;\n args = arguments;\n if (remaining <= 0 || remaining > wait) {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n previous = _now;\n result = func.apply(context, args);\n if (!timeout) context = args = null;\n } else if (!timeout && options.trailing !== false) {\n timeout = setTimeout(later, remaining);\n }\n return result;\n };\n\n throttled.cancel = function() {\n clearTimeout(timeout);\n previous = 0;\n timeout = context = args = null;\n };\n\n return throttled;\n}\n","import restArguments from './restArguments.js';\nimport delay from './delay.js';\n\n// When a sequence of calls of the returned function ends, the argument\n// function is triggered. The end of a sequence is defined by the `wait`\n// parameter. If `immediate` is passed, the argument function will be\n// triggered at the beginning of the sequence instead of at the end.\nexport default function debounce(func, wait, immediate) {\n var timeout, result;\n\n var later = function(context, args) {\n timeout = null;\n if (args) result = func.apply(context, args);\n };\n\n var debounced = restArguments(function(args) {\n if (timeout) clearTimeout(timeout);\n if (immediate) {\n var callNow = !timeout;\n timeout = setTimeout(later, wait);\n if (callNow) result = func.apply(this, args);\n } else {\n timeout = delay(later, wait, this, args);\n }\n\n return result;\n });\n\n debounced.cancel = function() {\n clearTimeout(timeout);\n timeout = null;\n };\n\n return debounced;\n}\n","import partial from './partial.js';\n\n// Returns the first function passed as an argument to the second,\n// allowing you to adjust arguments, run code before and after, and\n// conditionally execute the original function.\nexport default function wrap(func, wrapper) {\n return partial(wrapper, func);\n}\n","// Returns a negated version of the passed-in predicate.\nexport default function negate(predicate) {\n return function() {\n return !predicate.apply(this, arguments);\n };\n}\n","// Returns a function that is the composition of a list of functions, each\n// consuming the return value of the function that follows.\nexport default function compose() {\n var args = arguments;\n var start = args.length - 1;\n return function() {\n var i = start;\n var result = args[start].apply(this, arguments);\n while (i--) result = args[i].call(this, result);\n return result;\n };\n}\n","// Returns a function that will only be executed on and after the Nth call.\nexport default function after(times, func) {\n return function() {\n if (--times < 1) {\n return func.apply(this, arguments);\n }\n };\n}\n","// Returns a function that will only be executed up to (but not including) the\n// Nth call.\nexport default function before(times, func) {\n var memo;\n return function() {\n if (--times > 0) {\n memo = func.apply(this, arguments);\n }\n if (times <= 1) func = null;\n return memo;\n };\n}\n","import partial from './partial.js';\nimport before from './before.js';\n\n// Returns a function that will be executed at most one time, no matter how\n// often you call it. Useful for lazy initialization.\nexport default partial(before, 2);\n","import cb from './_cb.js';\nimport keys from './keys.js';\n\n// Returns the first key on an object that passes a truth test.\nexport default function findKey(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = keys(obj), key;\n for (var i = 0, length = _keys.length; i < length; i++) {\n key = _keys[i];\n if (predicate(obj[key], key, obj)) return key;\n }\n}\n","import cb from './_cb.js';\nimport getLength from './_getLength.js';\n\n// Internal function to generate `_.findIndex` and `_.findLastIndex`.\nexport default function createPredicateIndexFinder(dir) {\n return function(array, predicate, context) {\n predicate = cb(predicate, context);\n var length = getLength(array);\n var index = dir > 0 ? 0 : length - 1;\n for (; index >= 0 && index < length; index += dir) {\n if (predicate(array[index], index, array)) return index;\n }\n return -1;\n };\n}\n","import createPredicateIndexFinder from './_createPredicateIndexFinder.js';\n\n// Returns the first index on an array-like that passes a truth test.\nexport default createPredicateIndexFinder(1);\n","import createPredicateIndexFinder from './_createPredicateIndexFinder.js';\n\n// Returns the last index on an array-like that passes a truth test.\nexport default createPredicateIndexFinder(-1);\n","import cb from './_cb.js';\nimport getLength from './_getLength.js';\n\n// Use a comparator function to figure out the smallest index at which\n// an object should be inserted so as to maintain order. Uses binary search.\nexport default function sortedIndex(array, obj, iteratee, context) {\n iteratee = cb(iteratee, context, 1);\n var value = iteratee(obj);\n var low = 0, high = getLength(array);\n while (low < high) {\n var mid = Math.floor((low + high) / 2);\n if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;\n }\n return low;\n}\n","import getLength from './_getLength.js';\nimport { slice } from './_setup.js';\nimport isNaN from './isNaN.js';\n\n// Internal function to generate the `_.indexOf` and `_.lastIndexOf` functions.\nexport default function createIndexFinder(dir, predicateFind, sortedIndex) {\n return function(array, item, idx) {\n var i = 0, length = getLength(array);\n if (typeof idx == 'number') {\n if (dir > 0) {\n i = idx >= 0 ? idx : Math.max(idx + length, i);\n } else {\n length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;\n }\n } else if (sortedIndex && idx && length) {\n idx = sortedIndex(array, item);\n return array[idx] === item ? idx : -1;\n }\n if (item !== item) {\n idx = predicateFind(slice.call(array, i, length), isNaN);\n return idx >= 0 ? idx + i : -1;\n }\n for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {\n if (array[idx] === item) return idx;\n }\n return -1;\n };\n}\n","import sortedIndex from './sortedIndex.js';\nimport findIndex from './findIndex.js';\nimport createIndexFinder from './_createIndexFinder.js';\n\n// Return the position of the first occurrence of an item in an array,\n// or -1 if the item is not included in the array.\n// If the array is large and already in sort order, pass `true`\n// for **isSorted** to use binary search.\nexport default createIndexFinder(1, findIndex, sortedIndex);\n","import findLastIndex from './findLastIndex.js';\nimport createIndexFinder from './_createIndexFinder.js';\n\n// Return the position of the last occurrence of an item in an array,\n// or -1 if the item is not included in the array.\nexport default createIndexFinder(-1, findLastIndex);\n","import isArrayLike from './_isArrayLike.js';\nimport findIndex from './findIndex.js';\nimport findKey from './findKey.js';\n\n// Return the first value which passes a truth test.\nexport default function find(obj, predicate, context) {\n var keyFinder = isArrayLike(obj) ? findIndex : findKey;\n var key = keyFinder(obj, predicate, context);\n if (key !== void 0 && key !== -1) return obj[key];\n}\n","import find from './find.js';\nimport matcher from './matcher.js';\n\n// Convenience version of a common use case of `_.find`: getting the first\n// object containing specific `key:value` pairs.\nexport default function findWhere(obj, attrs) {\n return find(obj, matcher(attrs));\n}\n","import optimizeCb from './_optimizeCb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// The cornerstone for collection functions, an `each`\n// implementation, aka `forEach`.\n// Handles raw objects in addition to array-likes. Treats all\n// sparse array-likes as if they were dense.\nexport default function each(obj, iteratee, context) {\n iteratee = optimizeCb(iteratee, context);\n var i, length;\n if (isArrayLike(obj)) {\n for (i = 0, length = obj.length; i < length; i++) {\n iteratee(obj[i], i, obj);\n }\n } else {\n var _keys = keys(obj);\n for (i = 0, length = _keys.length; i < length; i++) {\n iteratee(obj[_keys[i]], _keys[i], obj);\n }\n }\n return obj;\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Return the results of applying the iteratee to each element.\nexport default function map(obj, iteratee, context) {\n iteratee = cb(iteratee, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length,\n results = Array(length);\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n results[index] = iteratee(obj[currentKey], currentKey, obj);\n }\n return results;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\nimport optimizeCb from './_optimizeCb.js';\n\n// Internal helper to create a reducing function, iterating left or right.\nexport default function createReduce(dir) {\n // Wrap code that reassigns argument variables in a separate function than\n // the one that accesses `arguments.length` to avoid a perf hit. (#1991)\n var reducer = function(obj, iteratee, memo, initial) {\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length,\n index = dir > 0 ? 0 : length - 1;\n if (!initial) {\n memo = obj[_keys ? _keys[index] : index];\n index += dir;\n }\n for (; index >= 0 && index < length; index += dir) {\n var currentKey = _keys ? _keys[index] : index;\n memo = iteratee(memo, obj[currentKey], currentKey, obj);\n }\n return memo;\n };\n\n return function(obj, iteratee, memo, context) {\n var initial = arguments.length >= 3;\n return reducer(obj, optimizeCb(iteratee, context, 4), memo, initial);\n };\n}\n","import createReduce from './_createReduce.js';\n\n// **Reduce** builds up a single result from a list of values, aka `inject`,\n// or `foldl`.\nexport default createReduce(1);\n","import createReduce from './_createReduce.js';\n\n// The right-associative version of reduce, also known as `foldr`.\nexport default createReduce(-1);\n","import cb from './_cb.js';\nimport each from './each.js';\n\n// Return all the elements that pass a truth test.\nexport default function filter(obj, predicate, context) {\n var results = [];\n predicate = cb(predicate, context);\n each(obj, function(value, index, list) {\n if (predicate(value, index, list)) results.push(value);\n });\n return results;\n}\n","import filter from './filter.js';\nimport negate from './negate.js';\nimport cb from './_cb.js';\n\n// Return all the elements for which a truth test fails.\nexport default function reject(obj, predicate, context) {\n return filter(obj, negate(cb(predicate)), context);\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Determine whether all of the elements pass a truth test.\nexport default function every(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length;\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n if (!predicate(obj[currentKey], currentKey, obj)) return false;\n }\n return true;\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Determine if at least one element in the object passes a truth test.\nexport default function some(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length;\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n if (predicate(obj[currentKey], currentKey, obj)) return true;\n }\n return false;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport indexOf from './indexOf.js';\n\n// Determine if the array or object contains a given item (using `===`).\nexport default function contains(obj, item, fromIndex, guard) {\n if (!isArrayLike(obj)) obj = values(obj);\n if (typeof fromIndex != 'number' || guard) fromIndex = 0;\n return indexOf(obj, item, fromIndex) >= 0;\n}\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport isArray from './isArray.js';\nimport map from './map.js';\nimport deepGet from './_deepGet.js';\n\n// Invoke a method (with arguments) on every item in a collection.\nexport default restArguments(function(obj, path, args) {\n var contextPath, func;\n if (isFunction(path)) {\n func = path;\n } else if (isArray(path)) {\n contextPath = path.slice(0, -1);\n path = path[path.length - 1];\n }\n return map(obj, function(context) {\n var method = func;\n if (!method) {\n if (contextPath && contextPath.length) {\n context = deepGet(context, contextPath);\n }\n if (context == null) return void 0;\n method = context[path];\n }\n return method == null ? method : method.apply(context, args);\n });\n});\n","import map from './map.js';\nimport property from './property.js';\n\n// Convenience version of a common use case of `_.map`: fetching a property.\nexport default function pluck(obj, key) {\n return map(obj, property(key));\n}\n","import filter from './filter.js';\nimport matcher from './matcher.js';\n\n// Convenience version of a common use case of `_.filter`: selecting only\n// objects containing specific `key:value` pairs.\nexport default function where(obj, attrs) {\n return filter(obj, matcher(attrs));\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport cb from './_cb.js';\nimport each from './each.js';\n\n// Return the maximum element (or element-based computation).\nexport default function max(obj, iteratee, context) {\n var result = -Infinity, lastComputed = -Infinity,\n value, computed;\n if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) {\n obj = isArrayLike(obj) ? obj : values(obj);\n for (var i = 0, length = obj.length; i < length; i++) {\n value = obj[i];\n if (value != null && value > result) {\n result = value;\n }\n }\n } else {\n iteratee = cb(iteratee, context);\n each(obj, function(v, index, list) {\n computed = iteratee(v, index, list);\n if (computed > lastComputed || computed === -Infinity && result === -Infinity) {\n result = v;\n lastComputed = computed;\n }\n });\n }\n return result;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport cb from './_cb.js';\nimport each from './each.js';\n\n// Return the minimum element (or element-based computation).\nexport default function min(obj, iteratee, context) {\n var result = Infinity, lastComputed = Infinity,\n value, computed;\n if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) {\n obj = isArrayLike(obj) ? obj : values(obj);\n for (var i = 0, length = obj.length; i < length; i++) {\n value = obj[i];\n if (value != null && value < result) {\n result = value;\n }\n }\n } else {\n iteratee = cb(iteratee, context);\n each(obj, function(v, index, list) {\n computed = iteratee(v, index, list);\n if (computed < lastComputed || computed === Infinity && result === Infinity) {\n result = v;\n lastComputed = computed;\n }\n });\n }\n return result;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport clone from './clone.js';\nimport values from './values.js';\nimport getLength from './_getLength.js';\nimport random from './random.js';\n\n// Sample **n** random values from a collection using the modern version of the\n// [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher–Yates_shuffle).\n// If **n** is not specified, returns a single random element.\n// The internal `guard` argument allows it to work with `_.map`.\nexport default function sample(obj, n, guard) {\n if (n == null || guard) {\n if (!isArrayLike(obj)) obj = values(obj);\n return obj[random(obj.length - 1)];\n }\n var sample = isArrayLike(obj) ? clone(obj) : values(obj);\n var length = getLength(sample);\n n = Math.max(Math.min(n, length), 0);\n var last = length - 1;\n for (var index = 0; index < n; index++) {\n var rand = random(index, last);\n var temp = sample[index];\n sample[index] = sample[rand];\n sample[rand] = temp;\n }\n return sample.slice(0, n);\n}\n","import sample from './sample.js';\n\n// Shuffle a collection.\nexport default function shuffle(obj) {\n return sample(obj, Infinity);\n}\n","import cb from './_cb.js';\nimport pluck from './pluck.js';\nimport map from './map.js';\n\n// Sort the object's values by a criterion produced by an iteratee.\nexport default function sortBy(obj, iteratee, context) {\n var index = 0;\n iteratee = cb(iteratee, context);\n return pluck(map(obj, function(value, key, list) {\n return {\n value: value,\n index: index++,\n criteria: iteratee(value, key, list)\n };\n }).sort(function(left, right) {\n var a = left.criteria;\n var b = right.criteria;\n if (a !== b) {\n if (a > b || a === void 0) return 1;\n if (a < b || b === void 0) return -1;\n }\n return left.index - right.index;\n }), 'value');\n}\n","import cb from './_cb.js';\nimport each from './each.js';\n\n// An internal function used for aggregate \"group by\" operations.\nexport default function group(behavior, partition) {\n return function(obj, iteratee, context) {\n var result = partition ? [[], []] : {};\n iteratee = cb(iteratee, context);\n each(obj, function(value, index) {\n var key = iteratee(value, index, obj);\n behavior(result, value, key);\n });\n return result;\n };\n}\n","import group from './_group.js';\nimport has from './_has.js';\n\n// Groups the object's values by a criterion. Pass either a string attribute\n// to group by, or a function that returns the criterion.\nexport default group(function(result, value, key) {\n if (has(result, key)) result[key].push(value); else result[key] = [value];\n});\n","import group from './_group.js';\n\n// Indexes the object's values by a criterion, similar to `_.groupBy`, but for\n// when you know that your index values will be unique.\nexport default group(function(result, value, key) {\n result[key] = value;\n});\n","import group from './_group.js';\nimport has from './_has.js';\n\n// Counts instances of an object that group by a certain criterion. Pass\n// either a string attribute to count by, or a function that returns the\n// criterion.\nexport default group(function(result, value, key) {\n if (has(result, key)) result[key]++; else result[key] = 1;\n});\n","import group from './_group.js';\n\n// Split a collection into two arrays: one whose elements all pass the given\n// truth test, and one whose elements all do not pass the truth test.\nexport default group(function(result, value, pass) {\n result[pass ? 0 : 1].push(value);\n}, true);\n","import isArray from './isArray.js';\nimport { slice } from './_setup.js';\nimport isString from './isString.js';\nimport isArrayLike from './_isArrayLike.js';\nimport map from './map.js';\nimport identity from './identity.js';\nimport values from './values.js';\n\n// Safely create a real, live array from anything iterable.\nvar reStrSymbol = /[^\\ud800-\\udfff]|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\ud800-\\udfff]/g;\nexport default function toArray(obj) {\n if (!obj) return [];\n if (isArray(obj)) return slice.call(obj);\n if (isString(obj)) {\n // Keep surrogate pair characters together.\n return obj.match(reStrSymbol);\n }\n if (isArrayLike(obj)) return map(obj, identity);\n return values(obj);\n}\n","import isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Return the number of elements in a collection.\nexport default function size(obj) {\n if (obj == null) return 0;\n return isArrayLike(obj) ? obj.length : keys(obj).length;\n}\n","// Internal `_.pick` helper function to determine whether `key` is an enumerable\n// property name of `obj`.\nexport default function keyInObj(value, key, obj) {\n return key in obj;\n}\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport optimizeCb from './_optimizeCb.js';\nimport allKeys from './allKeys.js';\nimport keyInObj from './_keyInObj.js';\nimport flatten from './_flatten.js';\n\n// Return a copy of the object only containing the allowed properties.\nexport default restArguments(function(obj, keys) {\n var result = {}, iteratee = keys[0];\n if (obj == null) return result;\n if (isFunction(iteratee)) {\n if (keys.length > 1) iteratee = optimizeCb(iteratee, keys[1]);\n keys = allKeys(obj);\n } else {\n iteratee = keyInObj;\n keys = flatten(keys, false, false);\n obj = Object(obj);\n }\n for (var i = 0, length = keys.length; i < length; i++) {\n var key = keys[i];\n var value = obj[key];\n if (iteratee(value, key, obj)) result[key] = value;\n }\n return result;\n});\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport negate from './negate.js';\nimport map from './map.js';\nimport flatten from './_flatten.js';\nimport contains from './contains.js';\nimport pick from './pick.js';\n\n// Return a copy of the object without the disallowed properties.\nexport default restArguments(function(obj, keys) {\n var iteratee = keys[0], context;\n if (isFunction(iteratee)) {\n iteratee = negate(iteratee);\n if (keys.length > 1) context = keys[1];\n } else {\n keys = map(flatten(keys, false, false), String);\n iteratee = function(value, key) {\n return !contains(keys, key);\n };\n }\n return pick(obj, iteratee, context);\n});\n","import { slice } from './_setup.js';\n\n// Returns everything but the last entry of the array. Especially useful on\n// the arguments object. Passing **n** will return all the values in\n// the array, excluding the last N.\nexport default function initial(array, n, guard) {\n return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));\n}\n","import initial from './initial.js';\n\n// Get the first element of an array. Passing **n** will return the first N\n// values in the array. The **guard** check allows it to work with `_.map`.\nexport default function first(array, n, guard) {\n if (array == null || array.length < 1) return n == null || guard ? void 0 : [];\n if (n == null || guard) return array[0];\n return initial(array, array.length - n);\n}\n","import { slice } from './_setup.js';\n\n// Returns everything but the first entry of the `array`. Especially useful on\n// the `arguments` object. Passing an **n** will return the rest N values in the\n// `array`.\nexport default function rest(array, n, guard) {\n return slice.call(array, n == null || guard ? 1 : n);\n}\n","import rest from './rest.js';\n\n// Get the last element of an array. Passing **n** will return the last N\n// values in the array.\nexport default function last(array, n, guard) {\n if (array == null || array.length < 1) return n == null || guard ? void 0 : [];\n if (n == null || guard) return array[array.length - 1];\n return rest(array, Math.max(0, array.length - n));\n}\n","import filter from './filter.js';\n\n// Trim out all falsy values from an array.\nexport default function compact(array) {\n return filter(array, Boolean);\n}\n","import _flatten from './_flatten.js';\n\n// Flatten out an array, either recursively (by default), or up to `depth`.\n// Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively.\nexport default function flatten(array, depth) {\n return _flatten(array, depth, false);\n}\n","import restArguments from './restArguments.js';\nimport flatten from './_flatten.js';\nimport filter from './filter.js';\nimport contains from './contains.js';\n\n// Take the difference between one array and a number of other arrays.\n// Only the elements present in just the first array will remain.\nexport default restArguments(function(array, rest) {\n rest = flatten(rest, true, true);\n return filter(array, function(value){\n return !contains(rest, value);\n });\n});\n","import restArguments from './restArguments.js';\nimport difference from './difference.js';\n\n// Return a version of the array that does not contain the specified value(s).\nexport default restArguments(function(array, otherArrays) {\n return difference(array, otherArrays);\n});\n","import isBoolean from './isBoolean.js';\nimport cb from './_cb.js';\nimport getLength from './_getLength.js';\nimport contains from './contains.js';\n\n// Produce a duplicate-free version of the array. If the array has already\n// been sorted, you have the option of using a faster algorithm.\n// The faster algorithm will not work with an iteratee if the iteratee\n// is not a one-to-one function, so providing an iteratee will disable\n// the faster algorithm.\nexport default function uniq(array, isSorted, iteratee, context) {\n if (!isBoolean(isSorted)) {\n context = iteratee;\n iteratee = isSorted;\n isSorted = false;\n }\n if (iteratee != null) iteratee = cb(iteratee, context);\n var result = [];\n var seen = [];\n for (var i = 0, length = getLength(array); i < length; i++) {\n var value = array[i],\n computed = iteratee ? iteratee(value, i, array) : value;\n if (isSorted && !iteratee) {\n if (!i || seen !== computed) result.push(value);\n seen = computed;\n } else if (iteratee) {\n if (!contains(seen, computed)) {\n seen.push(computed);\n result.push(value);\n }\n } else if (!contains(result, value)) {\n result.push(value);\n }\n }\n return result;\n}\n","import restArguments from './restArguments.js';\nimport uniq from './uniq.js';\nimport flatten from './_flatten.js';\n\n// Produce an array that contains the union: each distinct element from all of\n// the passed-in arrays.\nexport default restArguments(function(arrays) {\n return uniq(flatten(arrays, true, true));\n});\n","import getLength from './_getLength.js';\nimport contains from './contains.js';\n\n// Produce an array that contains every item shared between all the\n// passed-in arrays.\nexport default function intersection(array) {\n var result = [];\n var argsLength = arguments.length;\n for (var i = 0, length = getLength(array); i < length; i++) {\n var item = array[i];\n if (contains(result, item)) continue;\n var j;\n for (j = 1; j < argsLength; j++) {\n if (!contains(arguments[j], item)) break;\n }\n if (j === argsLength) result.push(item);\n }\n return result;\n}\n","import max from './max.js';\nimport getLength from './_getLength.js';\nimport pluck from './pluck.js';\n\n// Complement of zip. Unzip accepts an array of arrays and groups\n// each array's elements on shared indices.\nexport default function unzip(array) {\n var length = array && max(array, getLength).length || 0;\n var result = Array(length);\n\n for (var index = 0; index < length; index++) {\n result[index] = pluck(array, index);\n }\n return result;\n}\n","import restArguments from './restArguments.js';\nimport unzip from './unzip.js';\n\n// Zip together multiple lists into a single array -- elements that share\n// an index go together.\nexport default restArguments(unzip);\n","import getLength from './_getLength.js';\n\n// Converts lists into objects. Pass either a single array of `[key, value]`\n// pairs, or two parallel arrays of the same length -- one of keys, and one of\n// the corresponding values. Passing by pairs is the reverse of `_.pairs`.\nexport default function object(list, values) {\n var result = {};\n for (var i = 0, length = getLength(list); i < length; i++) {\n if (values) {\n result[list[i]] = values[i];\n } else {\n result[list[i][0]] = list[i][1];\n }\n }\n return result;\n}\n","// Generate an integer Array containing an arithmetic progression. A port of\n// the native Python `range()` function. See\n// [the Python documentation](https://docs.python.org/library/functions.html#range).\nexport default function range(start, stop, step) {\n if (stop == null) {\n stop = start || 0;\n start = 0;\n }\n if (!step) {\n step = stop < start ? -1 : 1;\n }\n\n var length = Math.max(Math.ceil((stop - start) / step), 0);\n var range = Array(length);\n\n for (var idx = 0; idx < length; idx++, start += step) {\n range[idx] = start;\n }\n\n return range;\n}\n","import { slice } from './_setup.js';\n\n// Chunk a single array into multiple arrays, each containing `count` or fewer\n// items.\nexport default function chunk(array, count) {\n if (count == null || count < 1) return [];\n var result = [];\n var i = 0, length = array.length;\n while (i < length) {\n result.push(slice.call(array, i, i += count));\n }\n return result;\n}\n","import _ from './underscore.js';\n\n// Helper function to continue chaining intermediate results.\nexport default function chainResult(instance, obj) {\n return instance._chain ? _(obj).chain() : obj;\n}\n","import _ from './underscore.js';\nimport each from './each.js';\nimport functions from './functions.js';\nimport { push } from './_setup.js';\nimport chainResult from './_chainResult.js';\n\n// Add your own custom functions to the Underscore object.\nexport default function mixin(obj) {\n each(functions(obj), function(name) {\n var func = _[name] = obj[name];\n _.prototype[name] = function() {\n var args = [this._wrapped];\n push.apply(args, arguments);\n return chainResult(this, func.apply(_, args));\n };\n });\n return _;\n}\n","import _ from './underscore.js';\nimport each from './each.js';\nimport { ArrayProto } from './_setup.js';\nimport chainResult from './_chainResult.js';\n\n// Add all mutator `Array` functions to the wrapper.\neach(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {\n var method = ArrayProto[name];\n _.prototype[name] = function() {\n var obj = this._wrapped;\n if (obj != null) {\n method.apply(obj, arguments);\n if ((name === 'shift' || name === 'splice') && obj.length === 0) {\n delete obj[0];\n }\n }\n return chainResult(this, obj);\n };\n});\n\n// Add all accessor `Array` functions to the wrapper.\neach(['concat', 'join', 'slice'], function(name) {\n var method = ArrayProto[name];\n _.prototype[name] = function() {\n var obj = this._wrapped;\n if (obj != null) obj = method.apply(obj, arguments);\n return chainResult(this, obj);\n };\n});\n\nexport default _;\n","// Default Export\n// ==============\n// In this module, we mix our bundled exports into the `_` object and export\n// the result. This is analogous to setting `module.exports = _` in CommonJS.\n// Hence, this module is also the entry point of our UMD bundle and the package\n// entry point for CommonJS and AMD users. In other words, this is (the source\n// of) the module you are interfacing with when you do any of the following:\n//\n// ```js\n// // CommonJS\n// var _ = require('underscore');\n//\n// // AMD\n// define(['underscore'], function(_) {...});\n//\n// // UMD in the browser\n// // _ is available as a global variable\n// ```\nimport * as allExports from './index.js';\nimport { mixin } from './index.js';\n\n// Add all of the Underscore functions to the wrapper object.\nvar _ = mixin(allExports);\n// Legacy Node.js API.\n_._ = _;\n// Export the Underscore API.\nexport default _;\n"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/underscore/modules/_setup.js","webpack:///(webpack)/buildin/global.js","webpack:///./core/src/files/fileinfo.js","webpack:///./node_modules/underscore/modules/restArguments.js","webpack:///./node_modules/underscore/modules/isObject.js","webpack:///./node_modules/underscore/modules/isNull.js","webpack:///./node_modules/underscore/modules/isUndefined.js","webpack:///./node_modules/underscore/modules/isBoolean.js","webpack:///./node_modules/underscore/modules/isElement.js","webpack:///./node_modules/underscore/modules/_tagTester.js","webpack:///./node_modules/underscore/modules/isString.js","webpack:///./node_modules/underscore/modules/isNumber.js","webpack:///./node_modules/underscore/modules/isDate.js","webpack:///./node_modules/underscore/modules/isRegExp.js","webpack:///./node_modules/underscore/modules/isError.js","webpack:///./node_modules/underscore/modules/isSymbol.js","webpack:///./node_modules/underscore/modules/isMap.js","webpack:///./node_modules/underscore/modules/isWeakMap.js","webpack:///./node_modules/underscore/modules/isSet.js","webpack:///./node_modules/underscore/modules/isWeakSet.js","webpack:///./node_modules/underscore/modules/isArrayBuffer.js","webpack:///./node_modules/underscore/modules/isDataView.js","webpack:///./node_modules/underscore/modules/isArray.js","webpack:///./node_modules/underscore/modules/isFunction.js","webpack:///./node_modules/underscore/modules/_has.js","webpack:///./node_modules/underscore/modules/isArguments.js","webpack:///./node_modules/underscore/modules/isFinite.js","webpack:///./node_modules/underscore/modules/isNaN.js","webpack:///./node_modules/underscore/modules/constant.js","webpack:///./node_modules/underscore/modules/_createSizePropertyCheck.js","webpack:///./node_modules/underscore/modules/_shallowProperty.js","webpack:///./node_modules/underscore/modules/_getByteLength.js","webpack:///./node_modules/underscore/modules/_isBufferLike.js","webpack:///./node_modules/underscore/modules/isTypedArray.js","webpack:///./node_modules/underscore/modules/_getLength.js","webpack:///./node_modules/underscore/modules/_isArrayLike.js","webpack:///./node_modules/underscore/modules/_collectNonEnumProps.js","webpack:///./node_modules/underscore/modules/keys.js","webpack:///./node_modules/underscore/modules/isEmpty.js","webpack:///./node_modules/underscore/modules/isMatch.js","webpack:///./node_modules/underscore/modules/underscore.js","webpack:///./node_modules/underscore/modules/isEqual.js","webpack:///./node_modules/underscore/modules/allKeys.js","webpack:///./node_modules/underscore/modules/values.js","webpack:///./node_modules/underscore/modules/pairs.js","webpack:///./node_modules/underscore/modules/invert.js","webpack:///./node_modules/underscore/modules/functions.js","webpack:///./node_modules/underscore/modules/_createAssigner.js","webpack:///./node_modules/underscore/modules/extend.js","webpack:///./node_modules/underscore/modules/extendOwn.js","webpack:///./node_modules/underscore/modules/defaults.js","webpack:///./node_modules/underscore/modules/_baseCreate.js","webpack:///./node_modules/underscore/modules/create.js","webpack:///./node_modules/underscore/modules/clone.js","webpack:///./node_modules/underscore/modules/tap.js","webpack:///./node_modules/underscore/modules/has.js","webpack:///./node_modules/underscore/modules/identity.js","webpack:///./node_modules/underscore/modules/matcher.js","webpack:///./node_modules/underscore/modules/_deepGet.js","webpack:///./node_modules/underscore/modules/property.js","webpack:///./node_modules/underscore/modules/_optimizeCb.js","webpack:///./node_modules/underscore/modules/_baseIteratee.js","webpack:///./node_modules/underscore/modules/iteratee.js","webpack:///./node_modules/underscore/modules/_cb.js","webpack:///./node_modules/underscore/modules/mapObject.js","webpack:///./node_modules/underscore/modules/noop.js","webpack:///./node_modules/underscore/modules/propertyOf.js","webpack:///./node_modules/underscore/modules/times.js","webpack:///./node_modules/underscore/modules/random.js","webpack:///./node_modules/underscore/modules/now.js","webpack:///./node_modules/underscore/modules/_createEscaper.js","webpack:///./node_modules/underscore/modules/_escapeMap.js","webpack:///./node_modules/underscore/modules/escape.js","webpack:///./node_modules/underscore/modules/unescape.js","webpack:///./node_modules/underscore/modules/_unescapeMap.js","webpack:///./node_modules/underscore/modules/templateSettings.js","webpack:///./node_modules/underscore/modules/template.js","webpack:///./node_modules/underscore/modules/result.js","webpack:///./node_modules/underscore/modules/uniqueId.js","webpack:///./node_modules/underscore/modules/chain.js","webpack:///./node_modules/underscore/modules/_executeBound.js","webpack:///./node_modules/underscore/modules/partial.js","webpack:///./node_modules/underscore/modules/bind.js","webpack:///./node_modules/underscore/modules/_flatten.js","webpack:///./node_modules/underscore/modules/bindAll.js","webpack:///./node_modules/underscore/modules/memoize.js","webpack:///./node_modules/underscore/modules/delay.js","webpack:///./node_modules/underscore/modules/defer.js","webpack:///./node_modules/underscore/modules/throttle.js","webpack:///./node_modules/underscore/modules/debounce.js","webpack:///./node_modules/underscore/modules/wrap.js","webpack:///./node_modules/underscore/modules/negate.js","webpack:///./node_modules/underscore/modules/compose.js","webpack:///./node_modules/underscore/modules/after.js","webpack:///./node_modules/underscore/modules/before.js","webpack:///./node_modules/underscore/modules/once.js","webpack:///./node_modules/underscore/modules/findKey.js","webpack:///./node_modules/underscore/modules/_createPredicateIndexFinder.js","webpack:///./node_modules/underscore/modules/findIndex.js","webpack:///./node_modules/underscore/modules/findLastIndex.js","webpack:///./node_modules/underscore/modules/sortedIndex.js","webpack:///./node_modules/underscore/modules/_createIndexFinder.js","webpack:///./node_modules/underscore/modules/indexOf.js","webpack:///./node_modules/underscore/modules/lastIndexOf.js","webpack:///./node_modules/underscore/modules/find.js","webpack:///./node_modules/underscore/modules/findWhere.js","webpack:///./node_modules/underscore/modules/each.js","webpack:///./node_modules/underscore/modules/map.js","webpack:///./node_modules/underscore/modules/_createReduce.js","webpack:///./node_modules/underscore/modules/reduce.js","webpack:///./node_modules/underscore/modules/reduceRight.js","webpack:///./node_modules/underscore/modules/filter.js","webpack:///./node_modules/underscore/modules/reject.js","webpack:///./node_modules/underscore/modules/every.js","webpack:///./node_modules/underscore/modules/some.js","webpack:///./node_modules/underscore/modules/contains.js","webpack:///./node_modules/underscore/modules/invoke.js","webpack:///./node_modules/underscore/modules/pluck.js","webpack:///./node_modules/underscore/modules/where.js","webpack:///./node_modules/underscore/modules/max.js","webpack:///./node_modules/underscore/modules/min.js","webpack:///./node_modules/underscore/modules/sample.js","webpack:///./node_modules/underscore/modules/shuffle.js","webpack:///./node_modules/underscore/modules/sortBy.js","webpack:///./node_modules/underscore/modules/_group.js","webpack:///./node_modules/underscore/modules/groupBy.js","webpack:///./node_modules/underscore/modules/indexBy.js","webpack:///./node_modules/underscore/modules/countBy.js","webpack:///./node_modules/underscore/modules/partition.js","webpack:///./node_modules/underscore/modules/toArray.js","webpack:///./node_modules/underscore/modules/size.js","webpack:///./node_modules/underscore/modules/_keyInObj.js","webpack:///./node_modules/underscore/modules/pick.js","webpack:///./node_modules/underscore/modules/omit.js","webpack:///./node_modules/underscore/modules/initial.js","webpack:///./node_modules/underscore/modules/first.js","webpack:///./node_modules/underscore/modules/rest.js","webpack:///./node_modules/underscore/modules/last.js","webpack:///./node_modules/underscore/modules/compact.js","webpack:///./node_modules/underscore/modules/flatten.js","webpack:///./node_modules/underscore/modules/difference.js","webpack:///./node_modules/underscore/modules/without.js","webpack:///./node_modules/underscore/modules/uniq.js","webpack:///./node_modules/underscore/modules/union.js","webpack:///./node_modules/underscore/modules/intersection.js","webpack:///./node_modules/underscore/modules/unzip.js","webpack:///./node_modules/underscore/modules/zip.js","webpack:///./node_modules/underscore/modules/object.js","webpack:///./node_modules/underscore/modules/range.js","webpack:///./node_modules/underscore/modules/chunk.js","webpack:///./node_modules/underscore/modules/_chainResult.js","webpack:///./node_modules/underscore/modules/mixin.js","webpack:///./node_modules/underscore/modules/underscore-array-methods.js","webpack:///./node_modules/underscore/modules/index-default.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","VERSION","root","self","global","Function","ArrayProto","Array","ObjProto","SymbolProto","push","slice","toString","supportsArrayBuffer","ArrayBuffer","nativeIsArray","isArray","nativeKeys","keys","nativeCreate","nativeIsView","isView","_isNaN","isNaN","_isFinite","isFinite","hasEnumBug","propertyIsEnumerable","nonEnumerableProps","MAX_ARRAY_INDEX","Math","pow","g","this","e","window","OC","FileInfo","data","_","each","isFunction","isUndefined","id","parseInt","path","type","mimetype","icon","permissions","mtime","etag","mountType","hasPreview","sharePermissions","quotaAvailableBytes","Files","restArguments","func","startIndex","length","max","arguments","rest","index","args","apply","isObject","obj","isNull","isBoolean","isElement","nodeType","tagTester","nodelist","document","childNodes","Int8Array","has","isArguments","isSymbol","parseFloat","isNumber","constant","createSizePropertyCheck","getSizeProperty","collection","sizeProperty","shallowProperty","typedArrayPattern","isDataView","test","collectNonEnumProps","hash","contains","emulatedSet","nonEnumIdx","constructor","proto","prop","isEmpty","isString","isMatch","attrs","_keys","_wrapped","eq","a","b","aStack","bStack","deepEq","className","valueOf","DataView","byteLength","getUint8","buffer","areArrays","aCtor","bCtor","pop","isEqual","allKeys","values","pairs","invert","result","functions","names","sort","createAssigner","keysFunc","defaults","source","toJSON","String","baseCreate","Ctor","props","extendOwn","clone","extend","tap","interceptor","identity","deepGet","optimizeCb","context","argCount","accumulator","baseIteratee","Infinity","cb","iteratee","mapObject","results","currentKey","noop","propertyOf","times","accum","random","min","floor","Date","getTime","createEscaper","map","escaper","match","join","testRegexp","RegExp","replaceRegexp","string","replace","templateSettings","evaluate","interpolate","escape","noMatch","escapes","escapeRegExp","escapeChar","text","settings","oldSettings","render","matcher","offset","variable","template","argument","fallback","idCounter","uniqueId","prefix","chain","instance","_chain","executeBound","sourceFunc","boundFunc","callingContext","partial","boundArgs","placeholder","bound","position","TypeError","callArgs","concat","flatten","input","depth","strict","output","idx","j","len","Error","hasher","memoize","cache","address","wait","setTimeout","delay","throttle","options","timeout","previous","later","leading","now","throttled","_now","remaining","clearTimeout","trailing","cancel","debounce","immediate","debounced","callNow","wrap","wrapper","negate","predicate","compose","start","after","before","memo","findKey","createPredicateIndexFinder","dir","array","low","high","mid","createIndexFinder","predicateFind","sortedIndex","item","findIndex","findLastIndex","find","findWhere","createReduce","reducer","initial","filter","list","reject","every","some","fromIndex","guard","indexOf","contextPath","method","pluck","where","computed","lastComputed","v","sample","last","rand","temp","shuffle","sortBy","criteria","left","right","group","behavior","partition","pass","reStrSymbol","toArray","size","keyInObj","pick","first","compact","Boolean","otherArrays","difference","uniq","isSorted","seen","arrays","intersection","argsLength","unzip","range","stop","step","ceil","chunk","count","chainResult","mixin"],"mappings":"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","file":"files_fileinfo.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 672);\n","// Current version.\nexport var VERSION = '1.11.0';\n\n// Establish the root object, `window` (`self`) in the browser, `global`\n// on the server, or `this` in some virtual machines. We use `self`\n// instead of `window` for `WebWorker` support.\nexport var root = typeof self == 'object' && self.self === self && self ||\n typeof global == 'object' && global.global === global && global ||\n Function('return this')() ||\n {};\n\n// Save bytes in the minified (but not gzipped) version:\nexport var ArrayProto = Array.prototype, ObjProto = Object.prototype;\nexport var SymbolProto = typeof Symbol !== 'undefined' ? Symbol.prototype : null;\n\n// Create quick reference variables for speed access to core prototypes.\nexport var push = ArrayProto.push,\n slice = ArrayProto.slice,\n toString = ObjProto.toString,\n hasOwnProperty = ObjProto.hasOwnProperty;\n\n// Modern feature detection.\nexport var supportsArrayBuffer = typeof ArrayBuffer !== 'undefined';\n\n// All **ECMAScript 5+** native function implementations that we hope to use\n// are declared here.\nexport var nativeIsArray = Array.isArray,\n nativeKeys = Object.keys,\n nativeCreate = Object.create,\n nativeIsView = supportsArrayBuffer && ArrayBuffer.isView;\n\n// Create references to these builtin functions because we override them.\nexport var _isNaN = isNaN,\n _isFinite = isFinite;\n\n// Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.\nexport var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');\nexport var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',\n 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];\n\n// The largest integer that can be represented exactly.\nexport var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","/* eslint-disable */\n/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n */\n\n(function(OC) {\n\n\t/**\n\t * @class OC.Files.FileInfo\n\t * @classdesc File information\n\t *\n\t * @param {Object} data file data, see attributes for details\n\t *\n\t * @since 8.2\n\t */\n\tconst FileInfo = function(data) {\n\t\tconst self = this\n\t\t_.each(data, function(value, key) {\n\t\t\tif (!_.isFunction(value)) {\n\t\t\t\tself[key] = value\n\t\t\t}\n\t\t})\n\n\t\tif (!_.isUndefined(this.id)) {\n\t\t\tthis.id = parseInt(data.id, 10)\n\t\t}\n\n\t\t// TODO: normalize path\n\t\tthis.path = data.path || ''\n\n\t\tif (this.type === 'dir') {\n\t\t\tthis.mimetype = 'httpd/unix-directory'\n\t\t} else {\n\t\t\tthis.mimetype = this.mimetype || 'application/octet-stream'\n\t\t}\n\n\t\tif (!this.type) {\n\t\t\tif (this.mimetype === 'httpd/unix-directory') {\n\t\t\t\tthis.type = 'dir'\n\t\t\t} else {\n\t\t\t\tthis.type = 'file'\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * @memberof OC.Files\n\t */\n\tFileInfo.prototype = {\n\t\t/**\n\t\t * File id\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tid: null,\n\n\t\t/**\n\t\t * File name\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tname: null,\n\n\t\t/**\n\t\t * Path leading to the file, without the file name,\n\t\t * and with a leading slash.\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tpath: null,\n\n\t\t/**\n\t\t * Mime type\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tmimetype: null,\n\n\t\t/**\n\t\t * Icon URL.\n\t\t *\n\t\t * Can be used to override the mime type icon.\n\t\t *\n\t\t * @type String\n\t\t */\n\t\ticon: null,\n\n\t\t/**\n\t\t * File type. 'file' for files, 'dir' for directories.\n\t\t *\n\t\t * @type String\n\t\t * @deprecated rely on mimetype instead\n\t\t */\n\t\ttype: null,\n\n\t\t/**\n\t\t * Permissions.\n\t\t *\n\t\t * @see OC#PERMISSION_ALL for permissions\n\t\t * @type int\n\t\t */\n\t\tpermissions: null,\n\n\t\t/**\n\t\t * Modification time\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tmtime: null,\n\n\t\t/**\n\t\t * Etag\n\t\t *\n\t\t * @type String\n\t\t */\n\t\tetag: null,\n\n\t\t/**\n\t\t * Mount type.\n\t\t *\n\t\t * One of null, \"external-root\", \"shared\" or \"shared-root\"\n\t\t *\n\t\t * @type string\n\t\t */\n\t\tmountType: null,\n\n\t\t/**\n\t\t * @type boolean\n\t\t */\n\t\thasPreview: true,\n\n\t\t/**\n\t\t * @type int\n\t\t */\n\t\tsharePermissions: null,\n\n\t\tquotaAvailableBytes: -1,\n\t}\n\n\tif (!OC.Files) {\n\t\tOC.Files = {}\n\t}\n\tOC.Files.FileInfo = FileInfo\n})(OC)\n","// Some functions take a variable number of arguments, or a few expected\n// arguments at the beginning and then a variable number of values to operate\n// on. This helper accumulates all remaining arguments past the function’s\n// argument length (or an explicit `startIndex`), into an array that becomes\n// the last argument. Similar to ES6’s \"rest parameter\".\nexport default function restArguments(func, startIndex) {\n startIndex = startIndex == null ? func.length - 1 : +startIndex;\n return function() {\n var length = Math.max(arguments.length - startIndex, 0),\n rest = Array(length),\n index = 0;\n for (; index < length; index++) {\n rest[index] = arguments[index + startIndex];\n }\n switch (startIndex) {\n case 0: return func.call(this, rest);\n case 1: return func.call(this, arguments[0], rest);\n case 2: return func.call(this, arguments[0], arguments[1], rest);\n }\n var args = Array(startIndex + 1);\n for (index = 0; index < startIndex; index++) {\n args[index] = arguments[index];\n }\n args[startIndex] = rest;\n return func.apply(this, args);\n };\n}\n","// Is a given variable an object?\nexport default function isObject(obj) {\n var type = typeof obj;\n return type === 'function' || type === 'object' && !!obj;\n}\n","// Is a given value equal to null?\nexport default function isNull(obj) {\n return obj === null;\n}\n","// Is a given variable undefined?\nexport default function isUndefined(obj) {\n return obj === void 0;\n}\n","import { toString } from './_setup.js';\n\n// Is a given value a boolean?\nexport default function isBoolean(obj) {\n return obj === true || obj === false || toString.call(obj) === '[object Boolean]';\n}\n","// Is a given value a DOM element?\nexport default function isElement(obj) {\n return !!(obj && obj.nodeType === 1);\n}\n","import { toString } from './_setup.js';\n\n// Internal function for creating a `toString`-based type tester.\nexport default function tagTester(name) {\n return function(obj) {\n return toString.call(obj) === '[object ' + name + ']';\n };\n}\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('String');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Number');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Date');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('RegExp');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Error');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Symbol');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Map');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('WeakMap');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('Set');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('WeakSet');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('ArrayBuffer');\n","import tagTester from './_tagTester.js';\n\nexport default tagTester('DataView');\n","import { nativeIsArray } from './_setup.js';\nimport tagTester from './_tagTester.js';\n\n// Is a given value an array?\n// Delegates to ECMA5's native `Array.isArray`.\nexport default nativeIsArray || tagTester('Array');\n","import tagTester from './_tagTester.js';\nimport { root } from './_setup.js';\n\nvar isFunction = tagTester('Function');\n\n// Optimize `isFunction` if appropriate. Work around some `typeof` bugs in old\n// v8, IE 11 (#1621), Safari 8 (#1929), and PhantomJS (#2236).\nvar nodelist = root.document && root.document.childNodes;\nif (typeof /./ != 'function' && typeof Int8Array != 'object' && typeof nodelist != 'function') {\n isFunction = function(obj) {\n return typeof obj == 'function' || false;\n };\n}\n\nexport default isFunction;\n","import { hasOwnProperty } from './_setup.js';\n\n// Internal function to check whether `key` is an own property name of `obj`.\nexport default function has(obj, key) {\n return obj != null && hasOwnProperty.call(obj, key);\n}\n","import tagTester from './_tagTester.js';\nimport has from './_has.js';\n\nvar isArguments = tagTester('Arguments');\n\n// Define a fallback version of the method in browsers (ahem, IE < 9), where\n// there isn't any inspectable \"Arguments\" type.\n(function() {\n if (!isArguments(arguments)) {\n isArguments = function(obj) {\n return has(obj, 'callee');\n };\n }\n}());\n\nexport default isArguments;\n","import { _isFinite } from './_setup.js';\nimport isSymbol from './isSymbol.js';\n\n// Is a given object a finite number?\nexport default function isFinite(obj) {\n return !isSymbol(obj) && _isFinite(obj) && !isNaN(parseFloat(obj));\n}\n","import { _isNaN } from './_setup.js';\nimport isNumber from './isNumber.js';\n\n// Is the given value `NaN`?\nexport default function isNaN(obj) {\n return isNumber(obj) && _isNaN(obj);\n}\n","// Predicate-generating function. Often useful outside of Underscore.\nexport default function constant(value) {\n return function() {\n return value;\n };\n}\n","import { MAX_ARRAY_INDEX } from './_setup.js';\n\n// Common internal logic for `isArrayLike` and `isBufferLike`.\nexport default function createSizePropertyCheck(getSizeProperty) {\n return function(collection) {\n var sizeProperty = getSizeProperty(collection);\n return typeof sizeProperty == 'number' && sizeProperty >= 0 && sizeProperty <= MAX_ARRAY_INDEX;\n }\n}\n","// Internal helper to generate a function to obtain property `key` from `obj`.\nexport default function shallowProperty(key) {\n return function(obj) {\n return obj == null ? void 0 : obj[key];\n };\n}\n","import shallowProperty from './_shallowProperty.js';\n\n// Internal helper to obtain the `byteLength` property of an object.\nexport default shallowProperty('byteLength');\n","import createSizePropertyCheck from './_createSizePropertyCheck.js';\nimport getByteLength from './_getByteLength.js';\n\n// Internal helper to determine whether we should spend extensive checks against\n// `ArrayBuffer` et al.\nexport default createSizePropertyCheck(getByteLength);\n","import { supportsArrayBuffer, nativeIsView, toString } from './_setup.js';\nimport isDataView from './isDataView.js';\nimport constant from './constant.js';\nimport isBufferLike from './_isBufferLike.js';\n\n// Is a given value a typed array?\nvar typedArrayPattern = /\\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\\]/;\nfunction isTypedArray(obj) {\n // `ArrayBuffer.isView` is the most future-proof, so use it when available.\n // Otherwise, fall back on the above regular expression.\n return nativeIsView ? (nativeIsView(obj) && !isDataView(obj)) :\n isBufferLike(obj) && typedArrayPattern.test(toString.call(obj));\n}\n\nexport default supportsArrayBuffer ? isTypedArray : constant(false);\n","import shallowProperty from './_shallowProperty.js';\n\n// Internal helper to obtain the `length` property of an object.\nexport default shallowProperty('length');\n","import createSizePropertyCheck from './_createSizePropertyCheck.js';\nimport getLength from './_getLength.js';\n\n// Internal helper for collection methods to determine whether a collection\n// should be iterated as an array or as an object.\n// Related: https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n// Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094\nexport default createSizePropertyCheck(getLength);\n","import { nonEnumerableProps, ObjProto } from './_setup.js';\nimport isFunction from './isFunction.js';\nimport has from './_has.js';\n\n// Internal helper to create a simple lookup structure.\n// `collectNonEnumProps` used to depend on `_.contains`, but this led to\n// circular imports. `emulatedSet` is a one-off solution that only works for\n// arrays of strings.\nfunction emulatedSet(keys) {\n var hash = {};\n for (var l = keys.length, i = 0; i < l; ++i) hash[keys[i]] = true;\n return {\n contains: function(key) { return hash[key]; },\n push: function(key) {\n hash[key] = true;\n return keys.push(key);\n }\n };\n}\n\n// Internal helper. Checks `keys` for the presence of keys in IE < 9 that won't\n// be iterated by `for key in ...` and thus missed. Extends `keys` in place if\n// needed.\nexport default function collectNonEnumProps(obj, keys) {\n keys = emulatedSet(keys);\n var nonEnumIdx = nonEnumerableProps.length;\n var constructor = obj.constructor;\n var proto = isFunction(constructor) && constructor.prototype || ObjProto;\n\n // Constructor is a special case.\n var prop = 'constructor';\n if (has(obj, prop) && !keys.contains(prop)) keys.push(prop);\n\n while (nonEnumIdx--) {\n prop = nonEnumerableProps[nonEnumIdx];\n if (prop in obj && obj[prop] !== proto[prop] && !keys.contains(prop)) {\n keys.push(prop);\n }\n }\n}\n","import isObject from './isObject.js';\nimport { nativeKeys, hasEnumBug } from './_setup.js';\nimport has from './_has.js';\nimport collectNonEnumProps from './_collectNonEnumProps.js';\n\n// Retrieve the names of an object's own properties.\n// Delegates to **ECMAScript 5**'s native `Object.keys`.\nexport default function keys(obj) {\n if (!isObject(obj)) return [];\n if (nativeKeys) return nativeKeys(obj);\n var keys = [];\n for (var key in obj) if (has(obj, key)) keys.push(key);\n // Ahem, IE < 9.\n if (hasEnumBug) collectNonEnumProps(obj, keys);\n return keys;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport isArray from './isArray.js';\nimport isString from './isString.js';\nimport isArguments from './isArguments.js';\nimport keys from './keys.js';\n\n// Is a given array, string, or object empty?\n// An \"empty\" object has no enumerable own-properties.\nexport default function isEmpty(obj) {\n if (obj == null) return true;\n // Skip the more expensive `toString`-based type checks if `obj` has no\n // `.length`.\n if (isArrayLike(obj) && (isArray(obj) || isString(obj) || isArguments(obj))) return obj.length === 0;\n return keys(obj).length === 0;\n}\n","import keys from './keys.js';\n\n// Returns whether an object has a given set of `key:value` pairs.\nexport default function isMatch(object, attrs) {\n var _keys = keys(attrs), length = _keys.length;\n if (object == null) return !length;\n var obj = Object(object);\n for (var i = 0; i < length; i++) {\n var key = _keys[i];\n if (attrs[key] !== obj[key] || !(key in obj)) return false;\n }\n return true;\n}\n","import { VERSION } from './_setup.js';\n\n// If Underscore is called as a function, it returns a wrapped object that can\n// be used OO-style. This wrapper holds altered versions of all functions added\n// through `_.mixin`. Wrapped objects may be chained.\nexport default function _(obj) {\n if (obj instanceof _) return obj;\n if (!(this instanceof _)) return new _(obj);\n this._wrapped = obj;\n}\n\n_.VERSION = VERSION;\n\n// Extracts the result from a wrapped and chained object.\n_.prototype.value = function() {\n return this._wrapped;\n};\n\n// Provide unwrapping proxies for some methods used in engine operations\n// such as arithmetic and JSON stringification.\n_.prototype.valueOf = _.prototype.toJSON = _.prototype.value;\n\n_.prototype.toString = function() {\n return String(this._wrapped);\n};\n","import _ from './underscore.js';\nimport { toString, SymbolProto } from './_setup.js';\nimport getByteLength from './_getByteLength.js';\nimport isTypedArray from './isTypedArray.js';\nimport isFunction from './isFunction.js';\nimport keys from './keys.js';\nimport has from './_has.js';\n\n// Internal recursive comparison function for `_.isEqual`.\nfunction eq(a, b, aStack, bStack) {\n // Identical objects are equal. `0 === -0`, but they aren't identical.\n // See the [Harmony `egal` proposal](https://wiki.ecmascript.org/doku.php?id=harmony:egal).\n if (a === b) return a !== 0 || 1 / a === 1 / b;\n // `null` or `undefined` only equal to itself (strict comparison).\n if (a == null || b == null) return false;\n // `NaN`s are equivalent, but non-reflexive.\n if (a !== a) return b !== b;\n // Exhaust primitive checks\n var type = typeof a;\n if (type !== 'function' && type !== 'object' && typeof b != 'object') return false;\n return deepEq(a, b, aStack, bStack);\n}\n\n// Internal recursive comparison function for `_.isEqual`.\nfunction deepEq(a, b, aStack, bStack) {\n // Unwrap any wrapped objects.\n if (a instanceof _) a = a._wrapped;\n if (b instanceof _) b = b._wrapped;\n // Compare `[[Class]]` names.\n var className = toString.call(a);\n if (className !== toString.call(b)) return false;\n switch (className) {\n // These types are compared by value.\n case '[object RegExp]':\n // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')\n case '[object String]':\n // Primitives and their corresponding object wrappers are equivalent; thus, `\"5\"` is\n // equivalent to `new String(\"5\")`.\n return '' + a === '' + b;\n case '[object Number]':\n // `NaN`s are equivalent, but non-reflexive.\n // Object(NaN) is equivalent to NaN.\n if (+a !== +a) return +b !== +b;\n // An `egal` comparison is performed for other numeric values.\n return +a === 0 ? 1 / +a === 1 / b : +a === +b;\n case '[object Date]':\n case '[object Boolean]':\n // Coerce dates and booleans to numeric primitive values. Dates are compared by their\n // millisecond representations. Note that invalid dates with millisecond representations\n // of `NaN` are not equivalent.\n return +a === +b;\n case '[object Symbol]':\n return SymbolProto.valueOf.call(a) === SymbolProto.valueOf.call(b);\n case '[object ArrayBuffer]':\n // Coerce to `DataView` so we can fall through to the next case.\n return deepEq(new DataView(a), new DataView(b), aStack, bStack);\n case '[object DataView]':\n var byteLength = getByteLength(a);\n if (byteLength !== getByteLength(b)) {\n return false;\n }\n while (byteLength--) {\n if (a.getUint8(byteLength) !== b.getUint8(byteLength)) {\n return false;\n }\n }\n return true;\n }\n\n if (isTypedArray(a)) {\n // Coerce typed arrays to `DataView`.\n return deepEq(new DataView(a.buffer), new DataView(b.buffer), aStack, bStack);\n }\n\n var areArrays = className === '[object Array]';\n if (!areArrays) {\n if (typeof a != 'object' || typeof b != 'object') return false;\n\n // Objects with different constructors are not equivalent, but `Object`s or `Array`s\n // from different frames are.\n var aCtor = a.constructor, bCtor = b.constructor;\n if (aCtor !== bCtor && !(isFunction(aCtor) && aCtor instanceof aCtor &&\n isFunction(bCtor) && bCtor instanceof bCtor)\n && ('constructor' in a && 'constructor' in b)) {\n return false;\n }\n }\n // Assume equality for cyclic structures. The algorithm for detecting cyclic\n // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.\n\n // Initializing stack of traversed objects.\n // It's done here since we only need them for objects and arrays comparison.\n aStack = aStack || [];\n bStack = bStack || [];\n var length = aStack.length;\n while (length--) {\n // Linear search. Performance is inversely proportional to the number of\n // unique nested structures.\n if (aStack[length] === a) return bStack[length] === b;\n }\n\n // Add the first object to the stack of traversed objects.\n aStack.push(a);\n bStack.push(b);\n\n // Recursively compare objects and arrays.\n if (areArrays) {\n // Compare array lengths to determine if a deep comparison is necessary.\n length = a.length;\n if (length !== b.length) return false;\n // Deep compare the contents, ignoring non-numeric properties.\n while (length--) {\n if (!eq(a[length], b[length], aStack, bStack)) return false;\n }\n } else {\n // Deep compare objects.\n var _keys = keys(a), key;\n length = _keys.length;\n // Ensure that both objects contain the same number of properties before comparing deep equality.\n if (keys(b).length !== length) return false;\n while (length--) {\n // Deep compare each member\n key = _keys[length];\n if (!(has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;\n }\n }\n // Remove the first object from the stack of traversed objects.\n aStack.pop();\n bStack.pop();\n return true;\n}\n\n// Perform a deep comparison to check if two objects are equal.\nexport default function isEqual(a, b) {\n return eq(a, b);\n}\n","import isObject from './isObject.js';\nimport { hasEnumBug } from './_setup.js';\nimport collectNonEnumProps from './_collectNonEnumProps.js';\n\n// Retrieve all the enumerable property names of an object.\nexport default function allKeys(obj) {\n if (!isObject(obj)) return [];\n var keys = [];\n for (var key in obj) keys.push(key);\n // Ahem, IE < 9.\n if (hasEnumBug) collectNonEnumProps(obj, keys);\n return keys;\n}\n","import keys from './keys.js';\n\n// Retrieve the values of an object's properties.\nexport default function values(obj) {\n var _keys = keys(obj);\n var length = _keys.length;\n var values = Array(length);\n for (var i = 0; i < length; i++) {\n values[i] = obj[_keys[i]];\n }\n return values;\n}\n","import keys from './keys.js';\n\n// Convert an object into a list of `[key, value]` pairs.\n// The opposite of `_.object` with one argument.\nexport default function pairs(obj) {\n var _keys = keys(obj);\n var length = _keys.length;\n var pairs = Array(length);\n for (var i = 0; i < length; i++) {\n pairs[i] = [_keys[i], obj[_keys[i]]];\n }\n return pairs;\n}\n","import keys from './keys.js';\n\n// Invert the keys and values of an object. The values must be serializable.\nexport default function invert(obj) {\n var result = {};\n var _keys = keys(obj);\n for (var i = 0, length = _keys.length; i < length; i++) {\n result[obj[_keys[i]]] = _keys[i];\n }\n return result;\n}\n","import isFunction from './isFunction.js';\n\n// Return a sorted list of the function names available on the object.\nexport default function functions(obj) {\n var names = [];\n for (var key in obj) {\n if (isFunction(obj[key])) names.push(key);\n }\n return names.sort();\n}\n","// An internal function for creating assigner functions.\nexport default function createAssigner(keysFunc, defaults) {\n return function(obj) {\n var length = arguments.length;\n if (defaults) obj = Object(obj);\n if (length < 2 || obj == null) return obj;\n for (var index = 1; index < length; index++) {\n var source = arguments[index],\n keys = keysFunc(source),\n l = keys.length;\n for (var i = 0; i < l; i++) {\n var key = keys[i];\n if (!defaults || obj[key] === void 0) obj[key] = source[key];\n }\n }\n return obj;\n };\n}\n","import createAssigner from './_createAssigner.js';\nimport allKeys from './allKeys.js';\n\n// Extend a given object with all the properties in passed-in object(s).\nexport default createAssigner(allKeys);\n","import createAssigner from './_createAssigner.js';\nimport keys from './keys.js';\n\n// Assigns a given object with all the own properties in the passed-in\n// object(s).\n// (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)\nexport default createAssigner(keys);\n","import createAssigner from './_createAssigner.js';\nimport allKeys from './allKeys.js';\n\n// Fill in a given object with default properties.\nexport default createAssigner(allKeys, true);\n","import isObject from './isObject.js';\nimport { nativeCreate } from './_setup.js';\n\n// Create a naked function reference for surrogate-prototype-swapping.\nfunction ctor() {\n return function(){};\n}\n\n// An internal function for creating a new object that inherits from another.\nexport default function baseCreate(prototype) {\n if (!isObject(prototype)) return {};\n if (nativeCreate) return nativeCreate(prototype);\n var Ctor = ctor();\n Ctor.prototype = prototype;\n var result = new Ctor;\n Ctor.prototype = null;\n return result;\n}\n","import baseCreate from './_baseCreate.js';\nimport extendOwn from './extendOwn.js';\n\n// Creates an object that inherits from the given prototype object.\n// If additional properties are provided then they will be added to the\n// created object.\nexport default function create(prototype, props) {\n var result = baseCreate(prototype);\n if (props) extendOwn(result, props);\n return result;\n}\n","import isObject from './isObject.js';\nimport isArray from './isArray.js';\nimport extend from './extend.js';\n\n// Create a (shallow-cloned) duplicate of an object.\nexport default function clone(obj) {\n if (!isObject(obj)) return obj;\n return isArray(obj) ? obj.slice() : extend({}, obj);\n}\n","// Invokes `interceptor` with the `obj` and then returns `obj`.\n// The primary purpose of this method is to \"tap into\" a method chain, in\n// order to perform operations on intermediate results within the chain.\nexport default function tap(obj, interceptor) {\n interceptor(obj);\n return obj;\n}\n","import isArray from './isArray.js';\nimport _has from './_has.js';\nimport { hasOwnProperty } from './_setup.js';\n\n// Shortcut function for checking if an object has a given property directly on\n// itself (in other words, not on a prototype). Unlike the internal `has`\n// function, this public version can also traverse nested properties.\nexport default function has(obj, path) {\n if (!isArray(path)) {\n return _has(obj, path);\n }\n var length = path.length;\n for (var i = 0; i < length; i++) {\n var key = path[i];\n if (obj == null || !hasOwnProperty.call(obj, key)) {\n return false;\n }\n obj = obj[key];\n }\n return !!length;\n}\n","// Keep the identity function around for default iteratees.\nexport default function identity(value) {\n return value;\n}\n","import extendOwn from './extendOwn.js';\nimport isMatch from './isMatch.js';\n\n// Returns a predicate for checking whether an object has a given set of\n// `key:value` pairs.\nexport default function matcher(attrs) {\n attrs = extendOwn({}, attrs);\n return function(obj) {\n return isMatch(obj, attrs);\n };\n}\n","// Internal function to obtain a nested property in `obj` along `path`.\nexport default function deepGet(obj, path) {\n var length = path.length;\n for (var i = 0; i < length; i++) {\n if (obj == null) return void 0;\n obj = obj[path[i]];\n }\n return length ? obj : void 0;\n}\n","import isArray from './isArray.js';\nimport shallowProperty from './_shallowProperty.js';\nimport deepGet from './_deepGet.js';\n\n// Creates a function that, when passed an object, will traverse that object’s\n// properties down the given `path`, specified as an array of keys or indices.\nexport default function property(path) {\n if (!isArray(path)) {\n return shallowProperty(path);\n }\n return function(obj) {\n return deepGet(obj, path);\n };\n}\n","// Internal function that returns an efficient (for current engines) version\n// of the passed-in callback, to be repeatedly applied in other Underscore\n// functions.\nexport default function optimizeCb(func, context, argCount) {\n if (context === void 0) return func;\n switch (argCount == null ? 3 : argCount) {\n case 1: return function(value) {\n return func.call(context, value);\n };\n // The 2-argument case is omitted because we’re not using it.\n case 3: return function(value, index, collection) {\n return func.call(context, value, index, collection);\n };\n case 4: return function(accumulator, value, index, collection) {\n return func.call(context, accumulator, value, index, collection);\n };\n }\n return function() {\n return func.apply(context, arguments);\n };\n}\n","import identity from './identity.js';\nimport isFunction from './isFunction.js';\nimport isObject from './isObject.js';\nimport isArray from './isArray.js';\nimport matcher from './matcher.js';\nimport property from './property.js';\nimport optimizeCb from './_optimizeCb.js';\n\n// An internal function to generate callbacks that can be applied to each\n// element in a collection, returning the desired result — either `_.identity`,\n// an arbitrary callback, a property matcher, or a property accessor.\nexport default function baseIteratee(value, context, argCount) {\n if (value == null) return identity;\n if (isFunction(value)) return optimizeCb(value, context, argCount);\n if (isObject(value) && !isArray(value)) return matcher(value);\n return property(value);\n}\n","import _ from './underscore.js';\nimport baseIteratee from './_baseIteratee.js';\n\n// External wrapper for our callback generator. Users may customize\n// `_.iteratee` if they want additional predicate/iteratee shorthand styles.\n// This abstraction hides the internal-only `argCount` argument.\nexport default function iteratee(value, context) {\n return baseIteratee(value, context, Infinity);\n}\n_.iteratee = iteratee;\n","import _ from './underscore.js';\nimport baseIteratee from './_baseIteratee.js';\nimport iteratee from './iteratee.js';\n\n// The function we call internally to generate a callback. It invokes\n// `_.iteratee` if overridden, otherwise `baseIteratee`.\nexport default function cb(value, context, argCount) {\n if (_.iteratee !== iteratee) return _.iteratee(value, context);\n return baseIteratee(value, context, argCount);\n}\n","import cb from './_cb.js';\nimport keys from './keys.js';\n\n// Returns the results of applying the `iteratee` to each element of `obj`.\n// In contrast to `_.map` it returns an object.\nexport default function mapObject(obj, iteratee, context) {\n iteratee = cb(iteratee, context);\n var _keys = keys(obj),\n length = _keys.length,\n results = {};\n for (var index = 0; index < length; index++) {\n var currentKey = _keys[index];\n results[currentKey] = iteratee(obj[currentKey], currentKey, obj);\n }\n return results;\n}\n","// Predicate-generating function. Often useful outside of Underscore.\nexport default function noop(){}\n","import isArray from './isArray.js';\nimport deepGet from './_deepGet.js';\n\n// Generates a function for a given object that returns a given property.\nexport default function propertyOf(obj) {\n if (obj == null) {\n return function(){};\n }\n return function(path) {\n return !isArray(path) ? obj[path] : deepGet(obj, path);\n };\n}\n","import optimizeCb from './_optimizeCb.js';\n\n// Run a function **n** times.\nexport default function times(n, iteratee, context) {\n var accum = Array(Math.max(0, n));\n iteratee = optimizeCb(iteratee, context, 1);\n for (var i = 0; i < n; i++) accum[i] = iteratee(i);\n return accum;\n}\n","// Return a random integer between `min` and `max` (inclusive).\nexport default function random(min, max) {\n if (max == null) {\n max = min;\n min = 0;\n }\n return min + Math.floor(Math.random() * (max - min + 1));\n}\n","// A (possibly faster) way to get the current timestamp as an integer.\nexport default Date.now || function() {\n return new Date().getTime();\n};\n","import keys from './keys.js';\n\n// Internal helper to generate functions for escaping and unescaping strings\n// to/from HTML interpolation.\nexport default function createEscaper(map) {\n var escaper = function(match) {\n return map[match];\n };\n // Regexes for identifying a key that needs to be escaped.\n var source = '(?:' + keys(map).join('|') + ')';\n var testRegexp = RegExp(source);\n var replaceRegexp = RegExp(source, 'g');\n return function(string) {\n string = string == null ? '' : '' + string;\n return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;\n };\n}\n","// Internal list of HTML entities for escaping.\nexport default {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n \"'\": ''',\n '`': '`'\n};\n","import createEscaper from './_createEscaper.js';\nimport escapeMap from './_escapeMap.js';\n\n// Function for escaping strings to HTML interpolation.\nexport default createEscaper(escapeMap);\n","import createEscaper from './_createEscaper.js';\nimport unescapeMap from './_unescapeMap.js';\n\n// Function for unescaping strings from HTML interpolation.\nexport default createEscaper(unescapeMap);\n","import invert from './invert.js';\nimport escapeMap from './_escapeMap.js';\n\n// Internal list of HTML entities for unescaping.\nexport default invert(escapeMap);\n","import _ from './underscore.js';\n\n// By default, Underscore uses ERB-style template delimiters. Change the\n// following template settings to use alternative delimiters.\nexport default _.templateSettings = {\n evaluate: /<%([\\s\\S]+?)%>/g,\n interpolate: /<%=([\\s\\S]+?)%>/g,\n escape: /<%-([\\s\\S]+?)%>/g\n};\n","import defaults from './defaults.js';\nimport _ from './underscore.js';\nimport './templateSettings.js';\n\n// When customizing `_.templateSettings`, if you don't want to define an\n// interpolation, evaluation or escaping regex, we need one that is\n// guaranteed not to match.\nvar noMatch = /(.)^/;\n\n// Certain characters need to be escaped so that they can be put into a\n// string literal.\nvar escapes = {\n \"'\": \"'\",\n '\\\\': '\\\\',\n '\\r': 'r',\n '\\n': 'n',\n '\\u2028': 'u2028',\n '\\u2029': 'u2029'\n};\n\nvar escapeRegExp = /\\\\|'|\\r|\\n|\\u2028|\\u2029/g;\n\nfunction escapeChar(match) {\n return '\\\\' + escapes[match];\n}\n\n// JavaScript micro-templating, similar to John Resig's implementation.\n// Underscore templating handles arbitrary delimiters, preserves whitespace,\n// and correctly escapes quotes within interpolated code.\n// NB: `oldSettings` only exists for backwards compatibility.\nexport default function template(text, settings, oldSettings) {\n if (!settings && oldSettings) settings = oldSettings;\n settings = defaults({}, settings, _.templateSettings);\n\n // Combine delimiters into one regular expression via alternation.\n var matcher = RegExp([\n (settings.escape || noMatch).source,\n (settings.interpolate || noMatch).source,\n (settings.evaluate || noMatch).source\n ].join('|') + '|$', 'g');\n\n // Compile the template source, escaping string literals appropriately.\n var index = 0;\n var source = \"__p+='\";\n text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {\n source += text.slice(index, offset).replace(escapeRegExp, escapeChar);\n index = offset + match.length;\n\n if (escape) {\n source += \"'+\\n((__t=(\" + escape + \"))==null?'':_.escape(__t))+\\n'\";\n } else if (interpolate) {\n source += \"'+\\n((__t=(\" + interpolate + \"))==null?'':__t)+\\n'\";\n } else if (evaluate) {\n source += \"';\\n\" + evaluate + \"\\n__p+='\";\n }\n\n // Adobe VMs need the match returned to produce the correct offset.\n return match;\n });\n source += \"';\\n\";\n\n // If a variable is not specified, place data values in local scope.\n if (!settings.variable) source = 'with(obj||{}){\\n' + source + '}\\n';\n\n source = \"var __t,__p='',__j=Array.prototype.join,\" +\n \"print=function(){__p+=__j.call(arguments,'');};\\n\" +\n source + 'return __p;\\n';\n\n var render;\n try {\n render = new Function(settings.variable || 'obj', '_', source);\n } catch (e) {\n e.source = source;\n throw e;\n }\n\n var template = function(data) {\n return render.call(this, data, _);\n };\n\n // Provide the compiled source as a convenience for precompilation.\n var argument = settings.variable || 'obj';\n template.source = 'function(' + argument + '){\\n' + source + '}';\n\n return template;\n}\n","import isArray from './isArray.js';\nimport isFunction from './isFunction.js';\n\n// Traverses the children of `obj` along `path`. If a child is a function, it\n// is invoked with its parent as context. Returns the value of the final\n// child, or `fallback` if any child is undefined.\nexport default function result(obj, path, fallback) {\n if (!isArray(path)) path = [path];\n var length = path.length;\n if (!length) {\n return isFunction(fallback) ? fallback.call(obj) : fallback;\n }\n for (var i = 0; i < length; i++) {\n var prop = obj == null ? void 0 : obj[path[i]];\n if (prop === void 0) {\n prop = fallback;\n i = length; // Ensure we don't continue iterating.\n }\n obj = isFunction(prop) ? prop.call(obj) : prop;\n }\n return obj;\n}\n","// Generate a unique integer id (unique within the entire client session).\n// Useful for temporary DOM ids.\nvar idCounter = 0;\nexport default function uniqueId(prefix) {\n var id = ++idCounter + '';\n return prefix ? prefix + id : id;\n}\n","import _ from './underscore.js';\n\n// Start chaining a wrapped Underscore object.\nexport default function chain(obj) {\n var instance = _(obj);\n instance._chain = true;\n return instance;\n}\n","import baseCreate from './_baseCreate.js';\nimport isObject from './isObject.js';\n\n// Internal function to execute `sourceFunc` bound to `context` with optional\n// `args`. Determines whether to execute a function as a constructor or as a\n// normal function.\nexport default function executeBound(sourceFunc, boundFunc, context, callingContext, args) {\n if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);\n var self = baseCreate(sourceFunc.prototype);\n var result = sourceFunc.apply(self, args);\n if (isObject(result)) return result;\n return self;\n}\n","import restArguments from './restArguments.js';\nimport executeBound from './_executeBound.js';\nimport _ from './underscore.js';\n\n// Partially apply a function by creating a version that has had some of its\n// arguments pre-filled, without changing its dynamic `this` context. `_` acts\n// as a placeholder by default, allowing any combination of arguments to be\n// pre-filled. Set `_.partial.placeholder` for a custom placeholder argument.\nvar partial = restArguments(function(func, boundArgs) {\n var placeholder = partial.placeholder;\n var bound = function() {\n var position = 0, length = boundArgs.length;\n var args = Array(length);\n for (var i = 0; i < length; i++) {\n args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i];\n }\n while (position < arguments.length) args.push(arguments[position++]);\n return executeBound(func, bound, this, this, args);\n };\n return bound;\n});\n\npartial.placeholder = _;\nexport default partial;\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport executeBound from './_executeBound.js';\n\n// Create a function bound to a given object (assigning `this`, and arguments,\n// optionally).\nexport default restArguments(function(func, context, args) {\n if (!isFunction(func)) throw new TypeError('Bind must be called on a function');\n var bound = restArguments(function(callArgs) {\n return executeBound(func, bound, context, this, args.concat(callArgs));\n });\n return bound;\n});\n","import getLength from './_getLength.js';\nimport isArrayLike from './_isArrayLike.js';\nimport isArray from './isArray.js';\nimport isArguments from './isArguments.js';\n\n// Internal implementation of a recursive `flatten` function.\nexport default function flatten(input, depth, strict, output) {\n output = output || [];\n if (!depth && depth !== 0) {\n depth = Infinity;\n } else if (depth <= 0) {\n return output.concat(input);\n }\n var idx = output.length;\n for (var i = 0, length = getLength(input); i < length; i++) {\n var value = input[i];\n if (isArrayLike(value) && (isArray(value) || isArguments(value))) {\n // Flatten current level of array or arguments object.\n if (depth > 1) {\n flatten(value, depth - 1, strict, output);\n idx = output.length;\n } else {\n var j = 0, len = value.length;\n while (j < len) output[idx++] = value[j++];\n }\n } else if (!strict) {\n output[idx++] = value;\n }\n }\n return output;\n}\n","import restArguments from './restArguments.js';\nimport flatten from './_flatten.js';\nimport bind from './bind.js';\n\n// Bind a number of an object's methods to that object. Remaining arguments\n// are the method names to be bound. Useful for ensuring that all callbacks\n// defined on an object belong to it.\nexport default restArguments(function(obj, keys) {\n keys = flatten(keys, false, false);\n var index = keys.length;\n if (index < 1) throw new Error('bindAll must be passed function names');\n while (index--) {\n var key = keys[index];\n obj[key] = bind(obj[key], obj);\n }\n return obj;\n});\n","import has from './_has.js';\n\n// Memoize an expensive function by storing its results.\nexport default function memoize(func, hasher) {\n var memoize = function(key) {\n var cache = memoize.cache;\n var address = '' + (hasher ? hasher.apply(this, arguments) : key);\n if (!has(cache, address)) cache[address] = func.apply(this, arguments);\n return cache[address];\n };\n memoize.cache = {};\n return memoize;\n}\n","import restArguments from './restArguments.js';\n\n// Delays a function for the given number of milliseconds, and then calls\n// it with the arguments supplied.\nexport default restArguments(function(func, wait, args) {\n return setTimeout(function() {\n return func.apply(null, args);\n }, wait);\n});\n","import partial from './partial.js';\nimport delay from './delay.js';\nimport _ from './underscore.js';\n\n// Defers a function, scheduling it to run after the current call stack has\n// cleared.\nexport default partial(delay, _, 1);\n","import now from './now.js';\n\n// Returns a function, that, when invoked, will only be triggered at most once\n// during a given window of time. Normally, the throttled function will run\n// as much as it can, without ever going more than once per `wait` duration;\n// but if you'd like to disable the execution on the leading edge, pass\n// `{leading: false}`. To disable execution on the trailing edge, ditto.\nexport default function throttle(func, wait, options) {\n var timeout, context, args, result;\n var previous = 0;\n if (!options) options = {};\n\n var later = function() {\n previous = options.leading === false ? 0 : now();\n timeout = null;\n result = func.apply(context, args);\n if (!timeout) context = args = null;\n };\n\n var throttled = function() {\n var _now = now();\n if (!previous && options.leading === false) previous = _now;\n var remaining = wait - (_now - previous);\n context = this;\n args = arguments;\n if (remaining <= 0 || remaining > wait) {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n previous = _now;\n result = func.apply(context, args);\n if (!timeout) context = args = null;\n } else if (!timeout && options.trailing !== false) {\n timeout = setTimeout(later, remaining);\n }\n return result;\n };\n\n throttled.cancel = function() {\n clearTimeout(timeout);\n previous = 0;\n timeout = context = args = null;\n };\n\n return throttled;\n}\n","import restArguments from './restArguments.js';\nimport delay from './delay.js';\n\n// When a sequence of calls of the returned function ends, the argument\n// function is triggered. The end of a sequence is defined by the `wait`\n// parameter. If `immediate` is passed, the argument function will be\n// triggered at the beginning of the sequence instead of at the end.\nexport default function debounce(func, wait, immediate) {\n var timeout, result;\n\n var later = function(context, args) {\n timeout = null;\n if (args) result = func.apply(context, args);\n };\n\n var debounced = restArguments(function(args) {\n if (timeout) clearTimeout(timeout);\n if (immediate) {\n var callNow = !timeout;\n timeout = setTimeout(later, wait);\n if (callNow) result = func.apply(this, args);\n } else {\n timeout = delay(later, wait, this, args);\n }\n\n return result;\n });\n\n debounced.cancel = function() {\n clearTimeout(timeout);\n timeout = null;\n };\n\n return debounced;\n}\n","import partial from './partial.js';\n\n// Returns the first function passed as an argument to the second,\n// allowing you to adjust arguments, run code before and after, and\n// conditionally execute the original function.\nexport default function wrap(func, wrapper) {\n return partial(wrapper, func);\n}\n","// Returns a negated version of the passed-in predicate.\nexport default function negate(predicate) {\n return function() {\n return !predicate.apply(this, arguments);\n };\n}\n","// Returns a function that is the composition of a list of functions, each\n// consuming the return value of the function that follows.\nexport default function compose() {\n var args = arguments;\n var start = args.length - 1;\n return function() {\n var i = start;\n var result = args[start].apply(this, arguments);\n while (i--) result = args[i].call(this, result);\n return result;\n };\n}\n","// Returns a function that will only be executed on and after the Nth call.\nexport default function after(times, func) {\n return function() {\n if (--times < 1) {\n return func.apply(this, arguments);\n }\n };\n}\n","// Returns a function that will only be executed up to (but not including) the\n// Nth call.\nexport default function before(times, func) {\n var memo;\n return function() {\n if (--times > 0) {\n memo = func.apply(this, arguments);\n }\n if (times <= 1) func = null;\n return memo;\n };\n}\n","import partial from './partial.js';\nimport before from './before.js';\n\n// Returns a function that will be executed at most one time, no matter how\n// often you call it. Useful for lazy initialization.\nexport default partial(before, 2);\n","import cb from './_cb.js';\nimport keys from './keys.js';\n\n// Returns the first key on an object that passes a truth test.\nexport default function findKey(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = keys(obj), key;\n for (var i = 0, length = _keys.length; i < length; i++) {\n key = _keys[i];\n if (predicate(obj[key], key, obj)) return key;\n }\n}\n","import cb from './_cb.js';\nimport getLength from './_getLength.js';\n\n// Internal function to generate `_.findIndex` and `_.findLastIndex`.\nexport default function createPredicateIndexFinder(dir) {\n return function(array, predicate, context) {\n predicate = cb(predicate, context);\n var length = getLength(array);\n var index = dir > 0 ? 0 : length - 1;\n for (; index >= 0 && index < length; index += dir) {\n if (predicate(array[index], index, array)) return index;\n }\n return -1;\n };\n}\n","import createPredicateIndexFinder from './_createPredicateIndexFinder.js';\n\n// Returns the first index on an array-like that passes a truth test.\nexport default createPredicateIndexFinder(1);\n","import createPredicateIndexFinder from './_createPredicateIndexFinder.js';\n\n// Returns the last index on an array-like that passes a truth test.\nexport default createPredicateIndexFinder(-1);\n","import cb from './_cb.js';\nimport getLength from './_getLength.js';\n\n// Use a comparator function to figure out the smallest index at which\n// an object should be inserted so as to maintain order. Uses binary search.\nexport default function sortedIndex(array, obj, iteratee, context) {\n iteratee = cb(iteratee, context, 1);\n var value = iteratee(obj);\n var low = 0, high = getLength(array);\n while (low < high) {\n var mid = Math.floor((low + high) / 2);\n if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;\n }\n return low;\n}\n","import getLength from './_getLength.js';\nimport { slice } from './_setup.js';\nimport isNaN from './isNaN.js';\n\n// Internal function to generate the `_.indexOf` and `_.lastIndexOf` functions.\nexport default function createIndexFinder(dir, predicateFind, sortedIndex) {\n return function(array, item, idx) {\n var i = 0, length = getLength(array);\n if (typeof idx == 'number') {\n if (dir > 0) {\n i = idx >= 0 ? idx : Math.max(idx + length, i);\n } else {\n length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;\n }\n } else if (sortedIndex && idx && length) {\n idx = sortedIndex(array, item);\n return array[idx] === item ? idx : -1;\n }\n if (item !== item) {\n idx = predicateFind(slice.call(array, i, length), isNaN);\n return idx >= 0 ? idx + i : -1;\n }\n for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {\n if (array[idx] === item) return idx;\n }\n return -1;\n };\n}\n","import sortedIndex from './sortedIndex.js';\nimport findIndex from './findIndex.js';\nimport createIndexFinder from './_createIndexFinder.js';\n\n// Return the position of the first occurrence of an item in an array,\n// or -1 if the item is not included in the array.\n// If the array is large and already in sort order, pass `true`\n// for **isSorted** to use binary search.\nexport default createIndexFinder(1, findIndex, sortedIndex);\n","import findLastIndex from './findLastIndex.js';\nimport createIndexFinder from './_createIndexFinder.js';\n\n// Return the position of the last occurrence of an item in an array,\n// or -1 if the item is not included in the array.\nexport default createIndexFinder(-1, findLastIndex);\n","import isArrayLike from './_isArrayLike.js';\nimport findIndex from './findIndex.js';\nimport findKey from './findKey.js';\n\n// Return the first value which passes a truth test.\nexport default function find(obj, predicate, context) {\n var keyFinder = isArrayLike(obj) ? findIndex : findKey;\n var key = keyFinder(obj, predicate, context);\n if (key !== void 0 && key !== -1) return obj[key];\n}\n","import find from './find.js';\nimport matcher from './matcher.js';\n\n// Convenience version of a common use case of `_.find`: getting the first\n// object containing specific `key:value` pairs.\nexport default function findWhere(obj, attrs) {\n return find(obj, matcher(attrs));\n}\n","import optimizeCb from './_optimizeCb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// The cornerstone for collection functions, an `each`\n// implementation, aka `forEach`.\n// Handles raw objects in addition to array-likes. Treats all\n// sparse array-likes as if they were dense.\nexport default function each(obj, iteratee, context) {\n iteratee = optimizeCb(iteratee, context);\n var i, length;\n if (isArrayLike(obj)) {\n for (i = 0, length = obj.length; i < length; i++) {\n iteratee(obj[i], i, obj);\n }\n } else {\n var _keys = keys(obj);\n for (i = 0, length = _keys.length; i < length; i++) {\n iteratee(obj[_keys[i]], _keys[i], obj);\n }\n }\n return obj;\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Return the results of applying the iteratee to each element.\nexport default function map(obj, iteratee, context) {\n iteratee = cb(iteratee, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length,\n results = Array(length);\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n results[index] = iteratee(obj[currentKey], currentKey, obj);\n }\n return results;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\nimport optimizeCb from './_optimizeCb.js';\n\n// Internal helper to create a reducing function, iterating left or right.\nexport default function createReduce(dir) {\n // Wrap code that reassigns argument variables in a separate function than\n // the one that accesses `arguments.length` to avoid a perf hit. (#1991)\n var reducer = function(obj, iteratee, memo, initial) {\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length,\n index = dir > 0 ? 0 : length - 1;\n if (!initial) {\n memo = obj[_keys ? _keys[index] : index];\n index += dir;\n }\n for (; index >= 0 && index < length; index += dir) {\n var currentKey = _keys ? _keys[index] : index;\n memo = iteratee(memo, obj[currentKey], currentKey, obj);\n }\n return memo;\n };\n\n return function(obj, iteratee, memo, context) {\n var initial = arguments.length >= 3;\n return reducer(obj, optimizeCb(iteratee, context, 4), memo, initial);\n };\n}\n","import createReduce from './_createReduce.js';\n\n// **Reduce** builds up a single result from a list of values, aka `inject`,\n// or `foldl`.\nexport default createReduce(1);\n","import createReduce from './_createReduce.js';\n\n// The right-associative version of reduce, also known as `foldr`.\nexport default createReduce(-1);\n","import cb from './_cb.js';\nimport each from './each.js';\n\n// Return all the elements that pass a truth test.\nexport default function filter(obj, predicate, context) {\n var results = [];\n predicate = cb(predicate, context);\n each(obj, function(value, index, list) {\n if (predicate(value, index, list)) results.push(value);\n });\n return results;\n}\n","import filter from './filter.js';\nimport negate from './negate.js';\nimport cb from './_cb.js';\n\n// Return all the elements for which a truth test fails.\nexport default function reject(obj, predicate, context) {\n return filter(obj, negate(cb(predicate)), context);\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Determine whether all of the elements pass a truth test.\nexport default function every(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length;\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n if (!predicate(obj[currentKey], currentKey, obj)) return false;\n }\n return true;\n}\n","import cb from './_cb.js';\nimport isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Determine if at least one element in the object passes a truth test.\nexport default function some(obj, predicate, context) {\n predicate = cb(predicate, context);\n var _keys = !isArrayLike(obj) && keys(obj),\n length = (_keys || obj).length;\n for (var index = 0; index < length; index++) {\n var currentKey = _keys ? _keys[index] : index;\n if (predicate(obj[currentKey], currentKey, obj)) return true;\n }\n return false;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport indexOf from './indexOf.js';\n\n// Determine if the array or object contains a given item (using `===`).\nexport default function contains(obj, item, fromIndex, guard) {\n if (!isArrayLike(obj)) obj = values(obj);\n if (typeof fromIndex != 'number' || guard) fromIndex = 0;\n return indexOf(obj, item, fromIndex) >= 0;\n}\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport isArray from './isArray.js';\nimport map from './map.js';\nimport deepGet from './_deepGet.js';\n\n// Invoke a method (with arguments) on every item in a collection.\nexport default restArguments(function(obj, path, args) {\n var contextPath, func;\n if (isFunction(path)) {\n func = path;\n } else if (isArray(path)) {\n contextPath = path.slice(0, -1);\n path = path[path.length - 1];\n }\n return map(obj, function(context) {\n var method = func;\n if (!method) {\n if (contextPath && contextPath.length) {\n context = deepGet(context, contextPath);\n }\n if (context == null) return void 0;\n method = context[path];\n }\n return method == null ? method : method.apply(context, args);\n });\n});\n","import map from './map.js';\nimport property from './property.js';\n\n// Convenience version of a common use case of `_.map`: fetching a property.\nexport default function pluck(obj, key) {\n return map(obj, property(key));\n}\n","import filter from './filter.js';\nimport matcher from './matcher.js';\n\n// Convenience version of a common use case of `_.filter`: selecting only\n// objects containing specific `key:value` pairs.\nexport default function where(obj, attrs) {\n return filter(obj, matcher(attrs));\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport cb from './_cb.js';\nimport each from './each.js';\n\n// Return the maximum element (or element-based computation).\nexport default function max(obj, iteratee, context) {\n var result = -Infinity, lastComputed = -Infinity,\n value, computed;\n if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) {\n obj = isArrayLike(obj) ? obj : values(obj);\n for (var i = 0, length = obj.length; i < length; i++) {\n value = obj[i];\n if (value != null && value > result) {\n result = value;\n }\n }\n } else {\n iteratee = cb(iteratee, context);\n each(obj, function(v, index, list) {\n computed = iteratee(v, index, list);\n if (computed > lastComputed || computed === -Infinity && result === -Infinity) {\n result = v;\n lastComputed = computed;\n }\n });\n }\n return result;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport values from './values.js';\nimport cb from './_cb.js';\nimport each from './each.js';\n\n// Return the minimum element (or element-based computation).\nexport default function min(obj, iteratee, context) {\n var result = Infinity, lastComputed = Infinity,\n value, computed;\n if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) {\n obj = isArrayLike(obj) ? obj : values(obj);\n for (var i = 0, length = obj.length; i < length; i++) {\n value = obj[i];\n if (value != null && value < result) {\n result = value;\n }\n }\n } else {\n iteratee = cb(iteratee, context);\n each(obj, function(v, index, list) {\n computed = iteratee(v, index, list);\n if (computed < lastComputed || computed === Infinity && result === Infinity) {\n result = v;\n lastComputed = computed;\n }\n });\n }\n return result;\n}\n","import isArrayLike from './_isArrayLike.js';\nimport clone from './clone.js';\nimport values from './values.js';\nimport getLength from './_getLength.js';\nimport random from './random.js';\n\n// Sample **n** random values from a collection using the modern version of the\n// [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher–Yates_shuffle).\n// If **n** is not specified, returns a single random element.\n// The internal `guard` argument allows it to work with `_.map`.\nexport default function sample(obj, n, guard) {\n if (n == null || guard) {\n if (!isArrayLike(obj)) obj = values(obj);\n return obj[random(obj.length - 1)];\n }\n var sample = isArrayLike(obj) ? clone(obj) : values(obj);\n var length = getLength(sample);\n n = Math.max(Math.min(n, length), 0);\n var last = length - 1;\n for (var index = 0; index < n; index++) {\n var rand = random(index, last);\n var temp = sample[index];\n sample[index] = sample[rand];\n sample[rand] = temp;\n }\n return sample.slice(0, n);\n}\n","import sample from './sample.js';\n\n// Shuffle a collection.\nexport default function shuffle(obj) {\n return sample(obj, Infinity);\n}\n","import cb from './_cb.js';\nimport pluck from './pluck.js';\nimport map from './map.js';\n\n// Sort the object's values by a criterion produced by an iteratee.\nexport default function sortBy(obj, iteratee, context) {\n var index = 0;\n iteratee = cb(iteratee, context);\n return pluck(map(obj, function(value, key, list) {\n return {\n value: value,\n index: index++,\n criteria: iteratee(value, key, list)\n };\n }).sort(function(left, right) {\n var a = left.criteria;\n var b = right.criteria;\n if (a !== b) {\n if (a > b || a === void 0) return 1;\n if (a < b || b === void 0) return -1;\n }\n return left.index - right.index;\n }), 'value');\n}\n","import cb from './_cb.js';\nimport each from './each.js';\n\n// An internal function used for aggregate \"group by\" operations.\nexport default function group(behavior, partition) {\n return function(obj, iteratee, context) {\n var result = partition ? [[], []] : {};\n iteratee = cb(iteratee, context);\n each(obj, function(value, index) {\n var key = iteratee(value, index, obj);\n behavior(result, value, key);\n });\n return result;\n };\n}\n","import group from './_group.js';\nimport has from './_has.js';\n\n// Groups the object's values by a criterion. Pass either a string attribute\n// to group by, or a function that returns the criterion.\nexport default group(function(result, value, key) {\n if (has(result, key)) result[key].push(value); else result[key] = [value];\n});\n","import group from './_group.js';\n\n// Indexes the object's values by a criterion, similar to `_.groupBy`, but for\n// when you know that your index values will be unique.\nexport default group(function(result, value, key) {\n result[key] = value;\n});\n","import group from './_group.js';\nimport has from './_has.js';\n\n// Counts instances of an object that group by a certain criterion. Pass\n// either a string attribute to count by, or a function that returns the\n// criterion.\nexport default group(function(result, value, key) {\n if (has(result, key)) result[key]++; else result[key] = 1;\n});\n","import group from './_group.js';\n\n// Split a collection into two arrays: one whose elements all pass the given\n// truth test, and one whose elements all do not pass the truth test.\nexport default group(function(result, value, pass) {\n result[pass ? 0 : 1].push(value);\n}, true);\n","import isArray from './isArray.js';\nimport { slice } from './_setup.js';\nimport isString from './isString.js';\nimport isArrayLike from './_isArrayLike.js';\nimport map from './map.js';\nimport identity from './identity.js';\nimport values from './values.js';\n\n// Safely create a real, live array from anything iterable.\nvar reStrSymbol = /[^\\ud800-\\udfff]|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\ud800-\\udfff]/g;\nexport default function toArray(obj) {\n if (!obj) return [];\n if (isArray(obj)) return slice.call(obj);\n if (isString(obj)) {\n // Keep surrogate pair characters together.\n return obj.match(reStrSymbol);\n }\n if (isArrayLike(obj)) return map(obj, identity);\n return values(obj);\n}\n","import isArrayLike from './_isArrayLike.js';\nimport keys from './keys.js';\n\n// Return the number of elements in a collection.\nexport default function size(obj) {\n if (obj == null) return 0;\n return isArrayLike(obj) ? obj.length : keys(obj).length;\n}\n","// Internal `_.pick` helper function to determine whether `key` is an enumerable\n// property name of `obj`.\nexport default function keyInObj(value, key, obj) {\n return key in obj;\n}\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport optimizeCb from './_optimizeCb.js';\nimport allKeys from './allKeys.js';\nimport keyInObj from './_keyInObj.js';\nimport flatten from './_flatten.js';\n\n// Return a copy of the object only containing the allowed properties.\nexport default restArguments(function(obj, keys) {\n var result = {}, iteratee = keys[0];\n if (obj == null) return result;\n if (isFunction(iteratee)) {\n if (keys.length > 1) iteratee = optimizeCb(iteratee, keys[1]);\n keys = allKeys(obj);\n } else {\n iteratee = keyInObj;\n keys = flatten(keys, false, false);\n obj = Object(obj);\n }\n for (var i = 0, length = keys.length; i < length; i++) {\n var key = keys[i];\n var value = obj[key];\n if (iteratee(value, key, obj)) result[key] = value;\n }\n return result;\n});\n","import restArguments from './restArguments.js';\nimport isFunction from './isFunction.js';\nimport negate from './negate.js';\nimport map from './map.js';\nimport flatten from './_flatten.js';\nimport contains from './contains.js';\nimport pick from './pick.js';\n\n// Return a copy of the object without the disallowed properties.\nexport default restArguments(function(obj, keys) {\n var iteratee = keys[0], context;\n if (isFunction(iteratee)) {\n iteratee = negate(iteratee);\n if (keys.length > 1) context = keys[1];\n } else {\n keys = map(flatten(keys, false, false), String);\n iteratee = function(value, key) {\n return !contains(keys, key);\n };\n }\n return pick(obj, iteratee, context);\n});\n","import { slice } from './_setup.js';\n\n// Returns everything but the last entry of the array. Especially useful on\n// the arguments object. Passing **n** will return all the values in\n// the array, excluding the last N.\nexport default function initial(array, n, guard) {\n return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));\n}\n","import initial from './initial.js';\n\n// Get the first element of an array. Passing **n** will return the first N\n// values in the array. The **guard** check allows it to work with `_.map`.\nexport default function first(array, n, guard) {\n if (array == null || array.length < 1) return n == null || guard ? void 0 : [];\n if (n == null || guard) return array[0];\n return initial(array, array.length - n);\n}\n","import { slice } from './_setup.js';\n\n// Returns everything but the first entry of the `array`. Especially useful on\n// the `arguments` object. Passing an **n** will return the rest N values in the\n// `array`.\nexport default function rest(array, n, guard) {\n return slice.call(array, n == null || guard ? 1 : n);\n}\n","import rest from './rest.js';\n\n// Get the last element of an array. Passing **n** will return the last N\n// values in the array.\nexport default function last(array, n, guard) {\n if (array == null || array.length < 1) return n == null || guard ? void 0 : [];\n if (n == null || guard) return array[array.length - 1];\n return rest(array, Math.max(0, array.length - n));\n}\n","import filter from './filter.js';\n\n// Trim out all falsy values from an array.\nexport default function compact(array) {\n return filter(array, Boolean);\n}\n","import _flatten from './_flatten.js';\n\n// Flatten out an array, either recursively (by default), or up to `depth`.\n// Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively.\nexport default function flatten(array, depth) {\n return _flatten(array, depth, false);\n}\n","import restArguments from './restArguments.js';\nimport flatten from './_flatten.js';\nimport filter from './filter.js';\nimport contains from './contains.js';\n\n// Take the difference between one array and a number of other arrays.\n// Only the elements present in just the first array will remain.\nexport default restArguments(function(array, rest) {\n rest = flatten(rest, true, true);\n return filter(array, function(value){\n return !contains(rest, value);\n });\n});\n","import restArguments from './restArguments.js';\nimport difference from './difference.js';\n\n// Return a version of the array that does not contain the specified value(s).\nexport default restArguments(function(array, otherArrays) {\n return difference(array, otherArrays);\n});\n","import isBoolean from './isBoolean.js';\nimport cb from './_cb.js';\nimport getLength from './_getLength.js';\nimport contains from './contains.js';\n\n// Produce a duplicate-free version of the array. If the array has already\n// been sorted, you have the option of using a faster algorithm.\n// The faster algorithm will not work with an iteratee if the iteratee\n// is not a one-to-one function, so providing an iteratee will disable\n// the faster algorithm.\nexport default function uniq(array, isSorted, iteratee, context) {\n if (!isBoolean(isSorted)) {\n context = iteratee;\n iteratee = isSorted;\n isSorted = false;\n }\n if (iteratee != null) iteratee = cb(iteratee, context);\n var result = [];\n var seen = [];\n for (var i = 0, length = getLength(array); i < length; i++) {\n var value = array[i],\n computed = iteratee ? iteratee(value, i, array) : value;\n if (isSorted && !iteratee) {\n if (!i || seen !== computed) result.push(value);\n seen = computed;\n } else if (iteratee) {\n if (!contains(seen, computed)) {\n seen.push(computed);\n result.push(value);\n }\n } else if (!contains(result, value)) {\n result.push(value);\n }\n }\n return result;\n}\n","import restArguments from './restArguments.js';\nimport uniq from './uniq.js';\nimport flatten from './_flatten.js';\n\n// Produce an array that contains the union: each distinct element from all of\n// the passed-in arrays.\nexport default restArguments(function(arrays) {\n return uniq(flatten(arrays, true, true));\n});\n","import getLength from './_getLength.js';\nimport contains from './contains.js';\n\n// Produce an array that contains every item shared between all the\n// passed-in arrays.\nexport default function intersection(array) {\n var result = [];\n var argsLength = arguments.length;\n for (var i = 0, length = getLength(array); i < length; i++) {\n var item = array[i];\n if (contains(result, item)) continue;\n var j;\n for (j = 1; j < argsLength; j++) {\n if (!contains(arguments[j], item)) break;\n }\n if (j === argsLength) result.push(item);\n }\n return result;\n}\n","import max from './max.js';\nimport getLength from './_getLength.js';\nimport pluck from './pluck.js';\n\n// Complement of zip. Unzip accepts an array of arrays and groups\n// each array's elements on shared indices.\nexport default function unzip(array) {\n var length = array && max(array, getLength).length || 0;\n var result = Array(length);\n\n for (var index = 0; index < length; index++) {\n result[index] = pluck(array, index);\n }\n return result;\n}\n","import restArguments from './restArguments.js';\nimport unzip from './unzip.js';\n\n// Zip together multiple lists into a single array -- elements that share\n// an index go together.\nexport default restArguments(unzip);\n","import getLength from './_getLength.js';\n\n// Converts lists into objects. Pass either a single array of `[key, value]`\n// pairs, or two parallel arrays of the same length -- one of keys, and one of\n// the corresponding values. Passing by pairs is the reverse of `_.pairs`.\nexport default function object(list, values) {\n var result = {};\n for (var i = 0, length = getLength(list); i < length; i++) {\n if (values) {\n result[list[i]] = values[i];\n } else {\n result[list[i][0]] = list[i][1];\n }\n }\n return result;\n}\n","// Generate an integer Array containing an arithmetic progression. A port of\n// the native Python `range()` function. See\n// [the Python documentation](https://docs.python.org/library/functions.html#range).\nexport default function range(start, stop, step) {\n if (stop == null) {\n stop = start || 0;\n start = 0;\n }\n if (!step) {\n step = stop < start ? -1 : 1;\n }\n\n var length = Math.max(Math.ceil((stop - start) / step), 0);\n var range = Array(length);\n\n for (var idx = 0; idx < length; idx++, start += step) {\n range[idx] = start;\n }\n\n return range;\n}\n","import { slice } from './_setup.js';\n\n// Chunk a single array into multiple arrays, each containing `count` or fewer\n// items.\nexport default function chunk(array, count) {\n if (count == null || count < 1) return [];\n var result = [];\n var i = 0, length = array.length;\n while (i < length) {\n result.push(slice.call(array, i, i += count));\n }\n return result;\n}\n","import _ from './underscore.js';\n\n// Helper function to continue chaining intermediate results.\nexport default function chainResult(instance, obj) {\n return instance._chain ? _(obj).chain() : obj;\n}\n","import _ from './underscore.js';\nimport each from './each.js';\nimport functions from './functions.js';\nimport { push } from './_setup.js';\nimport chainResult from './_chainResult.js';\n\n// Add your own custom functions to the Underscore object.\nexport default function mixin(obj) {\n each(functions(obj), function(name) {\n var func = _[name] = obj[name];\n _.prototype[name] = function() {\n var args = [this._wrapped];\n push.apply(args, arguments);\n return chainResult(this, func.apply(_, args));\n };\n });\n return _;\n}\n","import _ from './underscore.js';\nimport each from './each.js';\nimport { ArrayProto } from './_setup.js';\nimport chainResult from './_chainResult.js';\n\n// Add all mutator `Array` functions to the wrapper.\neach(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {\n var method = ArrayProto[name];\n _.prototype[name] = function() {\n var obj = this._wrapped;\n if (obj != null) {\n method.apply(obj, arguments);\n if ((name === 'shift' || name === 'splice') && obj.length === 0) {\n delete obj[0];\n }\n }\n return chainResult(this, obj);\n };\n});\n\n// Add all accessor `Array` functions to the wrapper.\neach(['concat', 'join', 'slice'], function(name) {\n var method = ArrayProto[name];\n _.prototype[name] = function() {\n var obj = this._wrapped;\n if (obj != null) obj = method.apply(obj, arguments);\n return chainResult(this, obj);\n };\n});\n\nexport default _;\n","// Default Export\n// ==============\n// In this module, we mix our bundled exports into the `_` object and export\n// the result. This is analogous to setting `module.exports = _` in CommonJS.\n// Hence, this module is also the entry point of our UMD bundle and the package\n// entry point for CommonJS and AMD users. In other words, this is (the source\n// of) the module you are interfacing with when you do any of the following:\n//\n// ```js\n// // CommonJS\n// var _ = require('underscore');\n//\n// // AMD\n// define(['underscore'], function(_) {...});\n//\n// // UMD in the browser\n// // _ is available as a global variable\n// ```\nimport * as allExports from './index.js';\nimport { mixin } from './index.js';\n\n// Add all of the Underscore functions to the wrapper object.\nvar _ = mixin(allExports);\n// Legacy Node.js API.\n_._ = _;\n// Export the Underscore API.\nexport default _;\n"],"sourceRoot":""} \ No newline at end of file