(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0c1ed0"],{"47b9":function(e,n,t){"use strict";t.r(n);var r,i,o,a,s,u,c,d,f,l,g,h,p,m,v,b,k,w,C,y=12e4,_=function(){function e(e){var n=this;this._defaults=e,this._worker=null,this._idleCheckInterval=setInterval(function(){return n._checkIfIdle()},3e4),this._lastUsedTime=0,this._configChangeListener=this._defaults.onDidChange(function(){return n._stopWorker()})}return e.prototype._stopWorker=function(){this._worker&&(this._worker.dispose(),this._worker=null),this._client=null},e.prototype.dispose=function(){clearInterval(this._idleCheckInterval),this._configChangeListener.dispose(),this._stopWorker()},e.prototype._checkIfIdle=function(){if(this._worker){var e=Date.now()-this._lastUsedTime;e>y&&this._stopWorker()}},e.prototype._getClient=function(){return this._lastUsedTime=Date.now(),this._client||(this._worker=monaco.editor.createWebWorker({moduleId:"vs/language/json/jsonWorker",label:this._defaults.languageId,createData:{languageSettings:this._defaults.diagnosticsOptions,languageId:this._defaults.languageId,enableSchemaRequest:this._defaults.diagnosticsOptions.enableSchemaRequest}}),this._client=this._worker.getProxy()),this._client},e.prototype.getLanguageServiceWorker=function(){for(var e,n=this,t=[],r=0;r0&&(i.arguments=t),i}function t(e){var n=e;return X.defined(n)&&X.string(n.title)&&X.string(n.command)}e.create=n,e.is=t}(p||(p={})),function(e){function n(e,n){return{range:e,newText:n}}function t(e,n){return{range:{start:e,end:e},newText:n}}function r(e){return{range:e,newText:""}}function o(e){var n=e;return X.objectLiteral(n)&&X.string(n.newText)&&i.is(n.range)}e.replace=n,e.insert=t,e.del=r,e.is=o}(m||(m={})),function(e){function n(e,n){return{textDocument:e,edits:n}}function t(e){var n=e;return X.defined(n)&&x.is(n.textDocument)&&Array.isArray(n.edits)}e.create=n,e.is=t}(v||(v={})),function(e){function n(e,n){var t={kind:"create",uri:e};return void 0===n||void 0===n.overwrite&&void 0===n.ignoreIfExists||(t.options=n),t}function t(e){var n=e;return n&&"create"===n.kind&&X.string(n.uri)&&(void 0===n.options||(void 0===n.options.overwrite||X.boolean(n.options.overwrite))&&(void 0===n.options.ignoreIfExists||X.boolean(n.options.ignoreIfExists)))}e.create=n,e.is=t}(b||(b={})),function(e){function n(e,n,t){var r={kind:"rename",oldUri:e,newUri:n};return void 0===t||void 0===t.overwrite&&void 0===t.ignoreIfExists||(r.options=t),r}function t(e){var n=e;return n&&"rename"===n.kind&&X.string(n.oldUri)&&X.string(n.newUri)&&(void 0===n.options||(void 0===n.options.overwrite||X.boolean(n.options.overwrite))&&(void 0===n.options.ignoreIfExists||X.boolean(n.options.ignoreIfExists)))}e.create=n,e.is=t}(k||(k={})),function(e){function n(e,n){var t={kind:"delete",uri:e};return void 0===n||void 0===n.recursive&&void 0===n.ignoreIfNotExists||(t.options=n),t}function t(e){var n=e;return n&&"delete"===n.kind&&X.string(n.uri)&&(void 0===n.options||(void 0===n.options.recursive||X.boolean(n.options.recursive))&&(void 0===n.options.ignoreIfNotExists||X.boolean(n.options.ignoreIfNotExists)))}e.create=n,e.is=t}(w||(w={})),function(e){function n(e){var n=e;return n&&(void 0!==n.changes||void 0!==n.documentChanges)&&(void 0===n.documentChanges||n.documentChanges.every(function(e){return X.string(e.kind)?b.is(e)||k.is(e)||w.is(e):v.is(e)}))}e.is=n}(C||(C={}));var E,x,S,I,A,T,M,P,R,F,j,D,L,O,W,N,U,V=function(){function e(e){this.edits=e}return e.prototype.insert=function(e,n){this.edits.push(m.insert(e,n))},e.prototype.replace=function(e,n){this.edits.push(m.replace(e,n))},e.prototype.delete=function(e){this.edits.push(m.del(e))},e.prototype.add=function(e){this.edits.push(e)},e.prototype.all=function(){return this.edits},e.prototype.clear=function(){this.edits.splice(0,this.edits.length)},e}();(function(){function e(e){var n=this;this._textEditChanges=Object.create(null),e&&(this._workspaceEdit=e,e.documentChanges?e.documentChanges.forEach(function(e){if(v.is(e)){var t=new V(e.edits);n._textEditChanges[e.textDocument.uri]=t}}):e.changes&&Object.keys(e.changes).forEach(function(t){var r=new V(e.changes[t]);n._textEditChanges[t]=r}))}Object.defineProperty(e.prototype,"edit",{get:function(){return this._workspaceEdit},enumerable:!0,configurable:!0}),e.prototype.getTextEditChange=function(e){if(x.is(e)){if(this._workspaceEdit||(this._workspaceEdit={documentChanges:[]}),!this._workspaceEdit.documentChanges)throw new Error("Workspace edit is not configured for document changes.");var n=e,t=this._textEditChanges[n.uri];if(!t){var r=[],i={textDocument:n,edits:r};this._workspaceEdit.documentChanges.push(i),t=new V(r),this._textEditChanges[n.uri]=t}return t}if(this._workspaceEdit||(this._workspaceEdit={changes:Object.create(null)}),!this._workspaceEdit.changes)throw new Error("Workspace edit is not configured for normal text edit changes.");t=this._textEditChanges[e];if(!t){r=[];this._workspaceEdit.changes[e]=r,t=new V(r),this._textEditChanges[e]=t}return t},e.prototype.createFile=function(e,n){this.checkDocumentChanges(),this._workspaceEdit.documentChanges.push(b.create(e,n))},e.prototype.renameFile=function(e,n,t){this.checkDocumentChanges(),this._workspaceEdit.documentChanges.push(k.create(e,n,t))},e.prototype.deleteFile=function(e,n){this.checkDocumentChanges(),this._workspaceEdit.documentChanges.push(w.create(e,n))},e.prototype.checkDocumentChanges=function(){if(!this._workspaceEdit||!this._workspaceEdit.documentChanges)throw new Error("Workspace edit is not configured for document changes.")}})();(function(e){function n(e){return{uri:e}}function t(e){var n=e;return X.defined(n)&&X.string(n.uri)}e.create=n,e.is=t})(E||(E={})),function(e){function n(e,n){return{uri:e,version:n}}function t(e){var n=e;return X.defined(n)&&X.string(n.uri)&&(null===n.version||X.number(n.version))}e.create=n,e.is=t}(x||(x={})),function(e){function n(e,n,t,r){return{uri:e,languageId:n,version:t,text:r}}function t(e){var n=e;return X.defined(n)&&X.string(n.uri)&&X.string(n.languageId)&&X.number(n.version)&&X.string(n.text)}e.create=n,e.is=t}(S||(S={})),function(e){e.PlainText="plaintext",e.Markdown="markdown"}(I||(I={})),function(e){function n(n){var t=n;return t===e.PlainText||t===e.Markdown}e.is=n}(I||(I={})),function(e){function n(e){var n=e;return X.objectLiteral(e)&&I.is(n.kind)&&X.string(n.value)}e.is=n}(A||(A={})),function(e){e.Text=1,e.Method=2,e.Function=3,e.Constructor=4,e.Field=5,e.Variable=6,e.Class=7,e.Interface=8,e.Module=9,e.Property=10,e.Unit=11,e.Value=12,e.Enum=13,e.Keyword=14,e.Snippet=15,e.Color=16,e.File=17,e.Reference=18,e.Folder=19,e.EnumMember=20,e.Constant=21,e.Struct=22,e.Event=23,e.Operator=24,e.TypeParameter=25}(T||(T={})),function(e){e.PlainText=1,e.Snippet=2}(M||(M={})),function(e){function n(e){return{label:e}}e.create=n}(P||(P={})),function(e){function n(e,n){return{items:e||[],isIncomplete:!!n}}e.create=n}(R||(R={})),function(e){function n(e){return e.replace(/[\\`*_{}[\]()#+\-.!]/g,"\\$&")}function t(e){var n=e;return X.string(n)||X.objectLiteral(n)&&X.string(n.language)&&X.string(n.value)}e.fromPlainText=n,e.is=t}(F||(F={})),function(e){function n(e){var n=e;return!!n&&X.objectLiteral(n)&&(A.is(n.contents)||F.is(n.contents)||X.typedArray(n.contents,F.is))&&(void 0===e.range||i.is(e.range))}e.is=n}(j||(j={})),function(e){function n(e,n){return n?{label:e,documentation:n}:{label:e}}e.create=n}(D||(D={})),function(e){function n(e,n){for(var t=[],r=2;r=0;a--){var s=r[a],u=e.offsetAt(s.range.start),c=e.offsetAt(s.range.end);if(!(c<=o))throw new Error("Overlapping edit");t=t.substring(0,u)+s.newText+t.substring(c,t.length),o=u}return t}function i(e,n){if(e.length<=1)return e;var t=e.length/2|0,r=e.slice(0,t),o=e.slice(t);i(r,n),i(o,n);var a=0,s=0,u=0;while(a0&&e.push(n.length),this._lineOffsets=e}return this._lineOffsets},e.prototype.positionAt=function(e){e=Math.max(Math.min(e,this._content.length),0);var n=this.getLineOffsets(),t=0,i=n.length;if(0===i)return r.create(0,e);while(te?i=o:t=o+1}var a=t-1;return r.create(a,e-n[a])},e.prototype.offsetAt=function(e){var n=this.getLineOffsets();if(e.line>=n.length)return this._content.length;if(e.line<0)return 0;var t=n[e.line],r=e.line+1=48&&a<=57)o=16*o+a-48;else if(a>=65&&a<=70)o=16*o+a-65+10;else{if(!(a>=97&&a<=102))break;o=16*o+a-97+10}t++,i++}return i=r){n+=e.substring(i,t),f=2;break}var o=e.charCodeAt(t);if(34===o){n+=e.substring(i,t),t++;break}if(92!==o){if(o>=0&&o<=31){if(Ee(o)){n+=e.substring(i,t),f=2;break}f=6}t++}else{if(n+=e.substring(i,t),t++,t>=r){f=2;break}switch(o=e.charCodeAt(t++),o){case 34:n+='"';break;case 92:n+="\\";break;case 47:n+="/";break;case 98:n+="\b";break;case 102:n+="\f";break;case 110:n+="\n";break;case 114:n+="\r";break;case 116:n+="\t";break;case 117:var a=l(4,!0);a>=0?n+=String.fromCharCode(a):f=4;break;default:f=5}i=t}}return n}function m(){if(i="",f=0,o=t,u=s,d=c,t>=r)return o=r,a=17;var n=e.charCodeAt(t);if(_e(n)){do{t++,i+=String.fromCharCode(n),n=e.charCodeAt(t)}while(_e(n));return a=15}if(Ee(n))return t++,i+=String.fromCharCode(n),13===n&&10===e.charCodeAt(t)&&(t++,i+="\n"),s++,c=t,a=14;switch(n){case 123:return t++,a=1;case 125:return t++,a=2;case 91:return t++,a=3;case 93:return t++,a=4;case 58:return t++,a=6;case 44:return t++,a=5;case 34:return t++,i=p(),a=10;case 47:var l=t-1;if(47===e.charCodeAt(t+1)){t+=2;while(t=12&&e<=15);return e}return{setPosition:g,getPosition:function(){return t},scan:n?b:m,getToken:function(){return a},getTokenValue:function(){return i},getTokenOffset:function(){return o},getTokenLength:function(){return t-o},getTokenStartLine:function(){return u},getTokenStartCharacter:function(){return o-d},getTokenError:function(){return f}}}function _e(e){return 32===e||9===e||11===e||12===e||160===e||5760===e||e>=8192&&e<=8203||8239===e||8287===e||12288===e||65279===e}function Ee(e){return 10===e||13===e||8232===e||8233===e}function xe(e){return e>=48&&e<=57}(function(e){e.DEFAULT={allowTrailingComma:!1}})(me||(me={}));var Se=ye;function Ie(e){return{getInitialState:function(){return new Ne(null,null,!1)},tokenize:function(n,t,r,i){return Ue(e,n,t,r,i)}}}var Ae="delimiter.bracket.json",Te="delimiter.array.json",Me="delimiter.colon.json",Pe="delimiter.comma.json",Re="keyword.json",Fe="keyword.json",je="string.value.json",De="number.json",Le="string.key.json",Oe="comment.block.json",We="comment.line.json",Ne=function(){function e(e,n,t){this._state=e,this.scanError=n,this.lastWasColon=t}return e.prototype.clone=function(){return new e(this._state,this.scanError,this.lastWasColon)},e.prototype.equals=function(n){return n===this||!!(n&&n instanceof e)&&(this.scanError===n.scanError&&this.lastWasColon===n.lastWasColon)},e.prototype.getStateData=function(){return this._state},e.prototype.setStateData=function(e){this._state=e},e}();function Ue(e,n,t,r,i){void 0===r&&(r=0);var o=0,a=!1;switch(t.scanError){case 2:n='"'+n,o=1;break;case 1:n="/*"+n,o=2;break}var s,u,c=Se(n),d=t.lastWasColon;u={tokens:[],endState:t.clone()};while(1){var f=r+c.getPosition(),l="";if(s=c.scan(),17===s)break;if(f===r+c.getPosition())throw new Error("Scanner did not advance, next 3 characters are: "+n.substr(c.getPosition(),3));switch(a&&(f-=o),a=o>0,s){case 1:l=Ae,d=!1;break;case 2:l=Ae,d=!1;break;case 3:l=Te,d=!1;break;case 4:l=Te,d=!1;break;case 6:l=Me,d=!0;break;case 5:l=Pe,d=!1;break;case 8:case 9:l=Re,d=!1;break;case 7:l=Fe,d=!1;break;case 10:l=d?je:Le,d=!1;break;case 11:l=De,d=!1;break}if(e)switch(s){case 12:l=We;break;case 13:l=Oe;break}u.endState=new Ne(t.getStateData(),c.getTokenError(),d),u.tokens.push({startIndex:f,scopes:l})}return u}function Ve(e){var n=[],t=[],r=new _(e);n.push(r);var i=function(){for(var e=[],n=0;n