50 lines
357 KiB
JavaScript
50 lines
357 KiB
JavaScript
(function(){"use strict";class Ao{constructor(){this.listeners=[],this.unexpectedErrorHandler=function(t){setTimeout(()=>{throw t.stack?ot.isErrorNoTelemetry(t)?new ot(t.message+`
|
||
|
||
`+t.stack):new Error(t.message+`
|
||
|
||
`+t.stack):t},0)}}emit(t){this.listeners.forEach(n=>{n(t)})}onUnexpectedError(t){this.unexpectedErrorHandler(t),this.emit(t)}onUnexpectedExternalError(t){this.unexpectedErrorHandler(t)}}const ko=new Ao;function Rt(e){Ro(e)||ko.onUnexpectedError(e)}function Ur(e){if(e instanceof Error){const{name:t,message:n}=e,r=e.stacktrace||e.stack;return{$isError:!0,name:t,message:n,stack:r,noTelemetry:ot.isErrorNoTelemetry(e)}}return e}const Tn="Canceled";function Ro(e){return e instanceof Eo?!0:e instanceof Error&&e.name===Tn&&e.message===Tn}class Eo extends Error{constructor(){super(Tn),this.name=this.message}}class ot extends Error{constructor(t){super(t),this.name="CodeExpectedError"}static fromError(t){if(t instanceof ot)return t;const n=new ot;return n.message=t.message,n.stack=t.stack,n}static isErrorNoTelemetry(t){return t.name==="CodeExpectedError"}}class de extends Error{constructor(t){super(t||"An unexpected bug occurred."),Object.setPrototypeOf(this,de.prototype)}}function Mo(e,t){const n=this;let r=!1,i;return function(){return r||(r=!0,i=e.apply(n,arguments)),i}}var Gt;(function(e){function t(x){return x&&typeof x=="object"&&typeof x[Symbol.iterator]=="function"}e.is=t;const n=Object.freeze([]);function r(){return n}e.empty=r;function*i(x){yield x}e.single=i;function s(x){return t(x)?x:i(x)}e.wrap=s;function a(x){return x||n}e.from=a;function*l(x){for(let b=x.length-1;b>=0;b--)yield x[b]}e.reverse=l;function o(x){return!x||x[Symbol.iterator]().next().done===!0}e.isEmpty=o;function u(x){return x[Symbol.iterator]().next().value}e.first=u;function h(x,b){let L=0;for(const S of x)if(b(S,L++))return!0;return!1}e.some=h;function c(x,b){for(const L of x)if(b(L))return L}e.find=c;function*m(x,b){for(const L of x)b(L)&&(yield L)}e.filter=m;function*d(x,b){let L=0;for(const S of x)yield b(S,L++)}e.map=d;function*g(x,b){let L=0;for(const S of x)yield*b(S,L++)}e.flatMap=g;function*p(...x){for(const b of x)yield*b}e.concat=p;function y(x,b,L){let S=L;for(const M of x)S=b(S,M);return S}e.reduce=y;function*w(x,b,L=x.length){for(b<0&&(b+=x.length),L<0?L+=x.length:L>x.length&&(L=x.length);b<L;b++)yield x[b]}e.slice=w;function _(x,b=Number.POSITIVE_INFINITY){const L=[];if(b===0)return[L,x];const S=x[Symbol.iterator]();for(let M=0;M<b;M++){const F=S.next();if(F.done)return[L,e.empty()];L.push(F.value)}return[L,{[Symbol.iterator](){return S}}]}e.consume=_;async function v(x){const b=[];for await(const L of x)b.push(L);return Promise.resolve(b)}e.asyncToArray=v})(Gt||(Gt={}));function L1(e){return e}function N1(e,t){}function qr(e){if(Gt.is(e)){const t=[];for(const n of e)if(n)try{n.dispose()}catch(r){t.push(r)}if(t.length===1)throw t[0];if(t.length>1)throw new AggregateError(t,"Encountered errors while disposing of store");return Array.isArray(e)?[]:e}else if(e)return e.dispose(),e}function Co(...e){return Jt(()=>qr(e))}function Jt(e){return{dispose:Mo(()=>{e()})}}class Et{static{this.DISABLE_DISPOSED_WARNING=!1}constructor(){this._toDispose=new Set,this._isDisposed=!1}dispose(){this._isDisposed||(this._isDisposed=!0,this.clear())}get isDisposed(){return this._isDisposed}clear(){if(this._toDispose.size!==0)try{qr(this._toDispose)}finally{this._toDispose.clear()}}add(t){if(!t)return t;if(t===this)throw new Error("Cannot register a disposable on itself!");return this._isDisposed?Et.DISABLE_DISPOSED_WARNING||console.warn(new Error("Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!").stack):this._toDispose.add(t),t}deleteAndLeak(t){t&&this._toDispose.has(t)&&this._toDispose.delete(t)}}class Xt{static{this.None=Object.freeze({dispose(){}})}constructor(){this._store=new Et,this._store}dispose(){this._store.dispose()}_register(t){if(t===this)throw new Error("Cannot register a disposable on itself!");return this._store.add(t)}}class G{static{this.Undefined=new G(void 0)}constructor(t){this.element=t,this.next=G.Undefined,this.prev=G.Undefined}}class To{constructor(){this._first=G.Undefined,this._last=G.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===G.Undefined}clear(){let t=this._first;for(;t!==G.Undefined;){const n=t.next;t.prev=G.Undefined,t.next=G.Undefined,t=n}this._first=G.Undefined,this._last=G.Undefined,this._size=0}unshift(t){return this._insert(t,!1)}push(t){return this._insert(t,!0)}_insert(t,n){const r=new G(t);if(this._first===G.Undefined)this._first=r,this._last=r;else if(n){const s=this._last;this._last=r,r.prev=s,s.next=r}else{const s=this._first;this._first=r,r.next=s,s.prev=r}this._size+=1;let i=!1;return()=>{i||(i=!0,this._remove(r))}}shift(){if(this._first!==G.Undefined){const t=this._first.element;return this._remove(this._first),t}}pop(){if(this._last!==G.Undefined){const t=this._last.element;return this._remove(this._last),t}}_remove(t){if(t.prev!==G.Undefined&&t.next!==G.Undefined){const n=t.prev;n.next=t.next,t.next.prev=n}else t.prev===G.Undefined&&t.next===G.Undefined?(this._first=G.Undefined,this._last=G.Undefined):t.next===G.Undefined?(this._last=this._last.prev,this._last.next=G.Undefined):t.prev===G.Undefined&&(this._first=this._first.next,this._first.prev=G.Undefined);this._size-=1}*[Symbol.iterator](){let t=this._first;for(;t!==G.Undefined;)yield t.element,t=t.next}}const Po=globalThis.performance&&typeof globalThis.performance.now=="function";class Qt{static create(t){return new Qt(t)}constructor(t){this._now=Po&&t===!1?Date.now:globalThis.performance.now.bind(globalThis.performance),this._startTime=this._now(),this._stopTime=-1}stop(){this._stopTime=this._now()}reset(){this._startTime=this._now(),this._stopTime=-1}elapsed(){return this._stopTime!==-1?this._stopTime-this._startTime:this._now()-this._startTime}}var Yt;(function(e){e.None=()=>Xt.None;function t(k,R){return m(k,()=>{},0,void 0,!0,void 0,R)}e.defer=t;function n(k){return(R,I=null,T)=>{let P=!1,D;return D=k($=>{if(!P)return D?D.dispose():P=!0,R.call(I,$)},null,T),P&&D.dispose(),D}}e.once=n;function r(k,R){return e.once(e.filter(k,R))}e.onceIf=r;function i(k,R,I){return h((T,P=null,D)=>k($=>T.call(P,R($)),null,D),I)}e.map=i;function s(k,R,I){return h((T,P=null,D)=>k($=>{R($),T.call(P,$)},null,D),I)}e.forEach=s;function a(k,R,I){return h((T,P=null,D)=>k($=>R($)&&T.call(P,$),null,D),I)}e.filter=a;function l(k){return k}e.signal=l;function o(...k){return(R,I=null,T)=>{const P=Co(...k.map(D=>D($=>R.call(I,$))));return c(P,T)}}e.any=o;function u(k,R,I,T){let P=I;return i(k,D=>(P=R(P,D),P),T)}e.reduce=u;function h(k,R){let I;const T={onWillAddFirstListener(){I=k(P.fire,P)},onDidRemoveLastListener(){I?.dispose()}},P=new we(T);return R?.add(P),P.event}function c(k,R){return R instanceof Array?R.push(k):R&&R.add(k),k}function m(k,R,I=100,T=!1,P=!1,D,$){let j,te,kt,En=0,zt;const x1={leakWarningThreshold:D,onWillAddFirstListener(){j=k(w1=>{En++,te=R(te,w1),T&&!kt&&(Mn.fire(te),te=void 0),zt=()=>{const _1=te;te=void 0,kt=void 0,(!T||En>1)&&Mn.fire(_1),En=0},typeof I=="number"?(clearTimeout(kt),kt=setTimeout(zt,I)):kt===void 0&&(kt=0,queueMicrotask(zt))})},onWillRemoveListener(){P&&En>0&&zt?.()},onDidRemoveLastListener(){zt=void 0,j.dispose()}},Mn=new we(x1);return $?.add(Mn),Mn.event}e.debounce=m;function d(k,R=0,I){return e.debounce(k,(T,P)=>T?(T.push(P),T):[P],R,void 0,!0,void 0,I)}e.accumulate=d;function g(k,R=(T,P)=>T===P,I){let T=!0,P;return a(k,D=>{const $=T||!R(D,P);return T=!1,P=D,$},I)}e.latch=g;function p(k,R,I){return[e.filter(k,R,I),e.filter(k,T=>!R(T),I)]}e.split=p;function y(k,R=!1,I=[],T){let P=I.slice(),D=k(te=>{P?P.push(te):j.fire(te)});T&&T.add(D);const $=()=>{P?.forEach(te=>j.fire(te)),P=null},j=new we({onWillAddFirstListener(){D||(D=k(te=>j.fire(te)),T&&T.add(D))},onDidAddFirstListener(){P&&(R?setTimeout($):$())},onDidRemoveLastListener(){D&&D.dispose(),D=null}});return T&&T.add(j),j.event}e.buffer=y;function w(k,R){return(T,P,D)=>{const $=R(new v);return k(function(j){const te=$.evaluate(j);te!==_&&T.call(P,te)},void 0,D)}}e.chain=w;const _=Symbol("HaltChainable");class v{constructor(){this.steps=[]}map(R){return this.steps.push(R),this}forEach(R){return this.steps.push(I=>(R(I),I)),this}filter(R){return this.steps.push(I=>R(I)?I:_),this}reduce(R,I){let T=I;return this.steps.push(P=>(T=R(T,P),T)),this}latch(R=(I,T)=>I===T){let I=!0,T;return this.steps.push(P=>{const D=I||!R(P,T);return I=!1,T=P,D?P:_}),this}evaluate(R){for(const I of this.steps)if(R=I(R),R===_)break;return R}}function x(k,R,I=T=>T){const T=(...j)=>$.fire(I(...j)),P=()=>k.on(R,T),D=()=>k.removeListener(R,T),$=new we({onWillAddFirstListener:P,onDidRemoveLastListener:D});return $.event}e.fromNodeEventEmitter=x;function b(k,R,I=T=>T){const T=(...j)=>$.fire(I(...j)),P=()=>k.addEventListener(R,T),D=()=>k.removeEventListener(R,T),$=new we({onWillAddFirstListener:P,onDidRemoveLastListener:D});return $.event}e.fromDOMEventEmitter=b;function L(k){return new Promise(R=>n(k)(R))}e.toPromise=L;function S(k){const R=new we;return k.then(I=>{R.fire(I)},()=>{R.fire(void 0)}).finally(()=>{R.dispose()}),R.event}e.fromPromise=S;function M(k,R){return k(I=>R.fire(I))}e.forward=M;function F(k,R,I){return R(I),k(T=>R(T))}e.runAndSubscribe=F;class O{constructor(R,I){this._observable=R,this._counter=0,this._hasChanged=!1;const T={onWillAddFirstListener:()=>{R.addObserver(this),this._observable.reportChanges()},onDidRemoveLastListener:()=>{R.removeObserver(this)}};this.emitter=new we(T),I&&I.add(this.emitter)}beginUpdate(R){this._counter++}handlePossibleChange(R){}handleChange(R,I){this._hasChanged=!0}endUpdate(R){this._counter--,this._counter===0&&(this._observable.reportChanges(),this._hasChanged&&(this._hasChanged=!1,this.emitter.fire(this._observable.get())))}}function C(k,R){return new O(k,R).emitter.event}e.fromObservable=C;function N(k){return(R,I,T)=>{let P=0,D=!1;const $={beginUpdate(){P++},endUpdate(){P--,P===0&&(k.reportChanges(),D&&(D=!1,R.call(I)))},handlePossibleChange(){},handleChange(){D=!0}};k.addObserver($),k.reportChanges();const j={dispose(){k.removeObserver($)}};return T instanceof Et?T.add(j):Array.isArray(T)&&T.push(j),j}}e.fromObservableLight=N})(Yt||(Yt={}));class Zt{static{this.all=new Set}static{this._idPool=0}constructor(t){this.listenerCount=0,this.invocationCount=0,this.elapsedOverall=0,this.durations=[],this.name=`${t}_${Zt._idPool++}`,Zt.all.add(this)}start(t){this._stopWatch=new Qt,this.listenerCount=t}stop(){if(this._stopWatch){const t=this._stopWatch.elapsed();this.durations.push(t),this.elapsedOverall+=t,this.invocationCount+=1,this._stopWatch=void 0}}}let Io=-1;class Pn{static{this._idPool=1}constructor(t,n,r=(Pn._idPool++).toString(16).padStart(3,"0")){this._errorHandler=t,this.threshold=n,this.name=r,this._warnCountdown=0}dispose(){this._stacks?.clear()}check(t,n){const r=this.threshold;if(r<=0||n<r)return;this._stacks||(this._stacks=new Map);const i=this._stacks.get(t.value)||0;if(this._stacks.set(t.value,i+1),this._warnCountdown-=1,this._warnCountdown<=0){this._warnCountdown=r*.5;const[s,a]=this.getMostFrequentStack(),l=`[${this.name}] potential listener LEAK detected, having ${n} listeners already. MOST frequent listener (${a}):`;console.warn(l),console.warn(s);const o=new Fo(l,s);this._errorHandler(o)}return()=>{const s=this._stacks.get(t.value)||0;this._stacks.set(t.value,s-1)}}getMostFrequentStack(){if(!this._stacks)return;let t,n=0;for(const[r,i]of this._stacks)(!t||n<i)&&(t=[r,i],n=i);return t}}class In{static create(){const t=new Error;return new In(t.stack??"")}constructor(t){this.value=t}print(){console.warn(this.value.split(`
|
||
`).slice(2).join(`
|
||
`))}}class Fo extends Error{constructor(t,n){super(t),this.name="ListenerLeakError",this.stack=n}}class Vo extends Error{constructor(t,n){super(t),this.name="ListenerRefusalError",this.stack=n}}class Fn{constructor(t){this.value=t}}const Do=2;class we{constructor(t){this._size=0,this._options=t,this._leakageMon=this._options?.leakWarningThreshold?new Pn(t?.onListenerError??Rt,this._options?.leakWarningThreshold??Io):void 0,this._perfMon=this._options?._profName?new Zt(this._options._profName):void 0,this._deliveryQueue=this._options?.deliveryQueue}dispose(){this._disposed||(this._disposed=!0,this._deliveryQueue?.current===this&&this._deliveryQueue.reset(),this._listeners&&(this._listeners=void 0,this._size=0),this._options?.onDidRemoveLastListener?.(),this._leakageMon?.dispose())}get event(){return this._event??=(t,n,r)=>{if(this._leakageMon&&this._size>this._leakageMon.threshold**2){const l=`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far (${this._size} vs ${this._leakageMon.threshold})`;console.warn(l);const o=this._leakageMon.getMostFrequentStack()??["UNKNOWN stack",-1],u=new Vo(`${l}. HINT: Stack shows most frequent listener (${o[1]}-times)`,o[0]);return(this._options?.onListenerError||Rt)(u),Xt.None}if(this._disposed)return Xt.None;n&&(t=t.bind(n));const i=new Fn(t);let s;this._leakageMon&&this._size>=Math.ceil(this._leakageMon.threshold*.2)&&(i.stack=In.create(),s=this._leakageMon.check(i.stack,this._size+1)),this._listeners?this._listeners instanceof Fn?(this._deliveryQueue??=new Oo,this._listeners=[this._listeners,i]):this._listeners.push(i):(this._options?.onWillAddFirstListener?.(this),this._listeners=i,this._options?.onDidAddFirstListener?.(this)),this._size++;const a=Jt(()=>{s?.(),this._removeListener(i)});return r instanceof Et?r.add(a):Array.isArray(r)&&r.push(a),a},this._event}_removeListener(t){if(this._options?.onWillRemoveListener?.(this),!this._listeners)return;if(this._size===1){this._listeners=void 0,this._options?.onDidRemoveLastListener?.(this),this._size=0;return}const n=this._listeners,r=n.indexOf(t);if(r===-1)throw console.log("disposed?",this._disposed),console.log("size?",this._size),console.log("arr?",JSON.stringify(this._listeners)),new Error("Attempted to dispose unknown listener");this._size--,n[r]=void 0;const i=this._deliveryQueue.current===this;if(this._size*Do<=n.length){let s=0;for(let a=0;a<n.length;a++)n[a]?n[s++]=n[a]:i&&(this._deliveryQueue.end--,s<this._deliveryQueue.i&&this._deliveryQueue.i--);n.length=s}}_deliver(t,n){if(!t)return;const r=this._options?.onListenerError||Rt;if(!r){t.value(n);return}try{t.value(n)}catch(i){r(i)}}_deliverQueue(t){const n=t.current._listeners;for(;t.i<t.end;)this._deliver(n[t.i++],t.value);t.reset()}fire(t){if(this._deliveryQueue?.current&&(this._deliverQueue(this._deliveryQueue),this._perfMon?.stop()),this._perfMon?.start(this._size),this._listeners)if(this._listeners instanceof Fn)this._deliver(this._listeners,t);else{const n=this._deliveryQueue;n.enqueue(this,t,this._listeners.length),this._deliverQueue(n)}this._perfMon?.stop()}hasListeners(){return this._size>0}}class Oo{constructor(){this.i=-1,this.end=0}enqueue(t,n,r){this.i=0,this.end=r,this.current=t,this.value=n}reset(){this.i=this.end,this.current=void 0,this.value=void 0}}function Bo(){return globalThis._VSCODE_NLS_MESSAGES}function jr(){return globalThis._VSCODE_NLS_LANGUAGE}const $o=jr()==="pseudo"||typeof document<"u"&&document.location&&document.location.hash.indexOf("pseudo=true")>=0;function Wr(e,t){let n;return t.length===0?n=e:n=e.replace(/\{(\d+)\}/g,(r,i)=>{const s=i[0],a=t[s];let l=r;return typeof a=="string"?l=a:(typeof a=="number"||typeof a=="boolean"||a===void 0||a===null)&&(l=String(a)),l}),$o&&(n="["+n.replace(/[aouei]/g,"$&$&")+"]"),n}function X(e,t,...n){return Wr(typeof e=="number"?Uo(e,t):t,n)}function Uo(e,t){const n=Bo()?.[e];if(typeof n!="string"){if(typeof t=="string")return t;throw new Error(`!!! NLS MISSING: ${e} !!!`)}return n}const lt="en";let Vn=!1,Dn=!1,On=!1,Hr=!1,Bn=!1,Kt,$n=lt,zr=lt,qo,De;const Oe=globalThis;let ge;typeof Oe.vscode<"u"&&typeof Oe.vscode.process<"u"?ge=Oe.vscode.process:typeof process<"u"&&typeof process?.versions?.node=="string"&&(ge=process);const jo=typeof ge?.versions?.electron=="string"&&ge?.type==="renderer";if(typeof ge=="object"){Vn=ge.platform==="win32",Dn=ge.platform==="darwin",On=ge.platform==="linux",On&&ge.env.SNAP&&ge.env.SNAP_REVISION,ge.env.CI||ge.env.BUILD_ARTIFACTSTAGINGDIRECTORY,Kt=lt,$n=lt;const e=ge.env.VSCODE_NLS_CONFIG;if(e)try{const t=JSON.parse(e);Kt=t.userLocale,zr=t.osLocale,$n=t.resolvedLanguage||lt,qo=t.languagePack?.translationsConfigFile}catch{}Hr=!0}else typeof navigator=="object"&&!jo?(De=navigator.userAgent,Vn=De.indexOf("Windows")>=0,Dn=De.indexOf("Macintosh")>=0,(De.indexOf("Macintosh")>=0||De.indexOf("iPad")>=0||De.indexOf("iPhone")>=0)&&navigator.maxTouchPoints&&navigator.maxTouchPoints>0,On=De.indexOf("Linux")>=0,De?.indexOf("Mobi")>=0,Bn=!0,$n=jr()||lt,Kt=navigator.language.toLowerCase(),zr=Kt):console.error("Unable to resolve platform.");const Mt=Vn,Wo=Dn,Ho=Hr,zo=Bn,Go=Bn&&typeof Oe.importScripts=="function"?Oe.origin:void 0,Ce=De,Jo=typeof Oe.postMessage=="function"&&!Oe.importScripts;(()=>{if(Jo){const e=[];Oe.addEventListener("message",n=>{if(n.data&&n.data.vscodeScheduleAsyncWork)for(let r=0,i=e.length;r<i;r++){const s=e[r];if(s.id===n.data.vscodeScheduleAsyncWork){e.splice(r,1),s.callback();return}}});let t=0;return n=>{const r=++t;e.push({id:r,callback:n}),Oe.postMessage({vscodeScheduleAsyncWork:r},"*")}}return e=>setTimeout(e)})();const Xo=!!(Ce&&Ce.indexOf("Chrome")>=0);Ce&&Ce.indexOf("Firefox")>=0,!Xo&&Ce&&Ce.indexOf("Safari")>=0,Ce&&Ce.indexOf("Edg/")>=0,Ce&&Ce.indexOf("Android")>=0;function Qo(e){return e}class Yo{constructor(t,n){this.lastCache=void 0,this.lastArgKey=void 0,typeof t=="function"?(this._fn=t,this._computeKey=Qo):(this._fn=n,this._computeKey=t.getCacheKey)}get(t){const n=this._computeKey(t);return this.lastArgKey!==n&&(this.lastArgKey=n,this.lastCache=this._fn(t)),this.lastCache}}class Gr{constructor(t){this.executor=t,this._didRun=!1}get value(){if(!this._didRun)try{this._value=this.executor()}catch(t){this._error=t}finally{this._didRun=!0}if(this._error)throw this._error;return this._value}get rawValue(){return this._value}}function Zo(e){return e.replace(/[\\\{\}\*\+\?\|\^\$\.\[\]\(\)]/g,"\\$&")}function Ko(e){return e.split(/\r\n|\r|\n/)}function el(e){for(let t=0,n=e.length;t<n;t++){const r=e.charCodeAt(t);if(r!==32&&r!==9)return t}return-1}function tl(e,t=e.length-1){for(let n=t;n>=0;n--){const r=e.charCodeAt(n);if(r!==32&&r!==9)return n}return-1}function Jr(e){return e>=65&&e<=90}function en(e){return 55296<=e&&e<=56319}function Un(e){return 56320<=e&&e<=57343}function Xr(e,t){return(e-55296<<10)+(t-56320)+65536}function nl(e,t,n){const r=e.charCodeAt(n);if(en(r)&&n+1<t){const i=e.charCodeAt(n+1);if(Un(i))return Xr(r,i)}return r}const rl=/^[\t\n\r\x20-\x7E]*$/;function il(e){return rl.test(e)}class je{static{this.ambiguousCharacterData=new Gr(()=>JSON.parse('{"_common":[8232,32,8233,32,5760,32,8192,32,8193,32,8194,32,8195,32,8196,32,8197,32,8198,32,8200,32,8201,32,8202,32,8287,32,8199,32,8239,32,2042,95,65101,95,65102,95,65103,95,8208,45,8209,45,8210,45,65112,45,1748,45,8259,45,727,45,8722,45,10134,45,11450,45,1549,44,1643,44,8218,44,184,44,42233,44,894,59,2307,58,2691,58,1417,58,1795,58,1796,58,5868,58,65072,58,6147,58,6153,58,8282,58,1475,58,760,58,42889,58,8758,58,720,58,42237,58,451,33,11601,33,660,63,577,63,2429,63,5038,63,42731,63,119149,46,8228,46,1793,46,1794,46,42510,46,68176,46,1632,46,1776,46,42232,46,1373,96,65287,96,8219,96,8242,96,1370,96,1523,96,8175,96,65344,96,900,96,8189,96,8125,96,8127,96,8190,96,697,96,884,96,712,96,714,96,715,96,756,96,699,96,701,96,700,96,702,96,42892,96,1497,96,2036,96,2037,96,5194,96,5836,96,94033,96,94034,96,65339,91,10088,40,10098,40,12308,40,64830,40,65341,93,10089,41,10099,41,12309,41,64831,41,10100,123,119060,123,10101,125,65342,94,8270,42,1645,42,8727,42,66335,42,5941,47,8257,47,8725,47,8260,47,9585,47,10187,47,10744,47,119354,47,12755,47,12339,47,11462,47,20031,47,12035,47,65340,92,65128,92,8726,92,10189,92,10741,92,10745,92,119311,92,119355,92,12756,92,20022,92,12034,92,42872,38,708,94,710,94,5869,43,10133,43,66203,43,8249,60,10094,60,706,60,119350,60,5176,60,5810,60,5120,61,11840,61,12448,61,42239,61,8250,62,10095,62,707,62,119351,62,5171,62,94015,62,8275,126,732,126,8128,126,8764,126,65372,124,65293,45,120784,50,120794,50,120804,50,120814,50,120824,50,130034,50,42842,50,423,50,1000,50,42564,50,5311,50,42735,50,119302,51,120785,51,120795,51,120805,51,120815,51,120825,51,130035,51,42923,51,540,51,439,51,42858,51,11468,51,1248,51,94011,51,71882,51,120786,52,120796,52,120806,52,120816,52,120826,52,130036,52,5070,52,71855,52,120787,53,120797,53,120807,53,120817,53,120827,53,130037,53,444,53,71867,53,120788,54,120798,54,120808,54,120818,54,120828,54,130038,54,11474,54,5102,54,71893,54,119314,55,120789,55,120799,55,120809,55,120819,55,120829,55,130039,55,66770,55,71878,55,2819,56,2538,56,2666,56,125131,56,120790,56,120800,56,120810,56,120820,56,120830,56,130040,56,547,56,546,56,66330,56,2663,57,2920,57,2541,57,3437,57,120791,57,120801,57,120811,57,120821,57,120831,57,130041,57,42862,57,11466,57,71884,57,71852,57,71894,57,9082,97,65345,97,119834,97,119886,97,119938,97,119990,97,120042,97,120094,97,120146,97,120198,97,120250,97,120302,97,120354,97,120406,97,120458,97,593,97,945,97,120514,97,120572,97,120630,97,120688,97,120746,97,65313,65,119808,65,119860,65,119912,65,119964,65,120016,65,120068,65,120120,65,120172,65,120224,65,120276,65,120328,65,120380,65,120432,65,913,65,120488,65,120546,65,120604,65,120662,65,120720,65,5034,65,5573,65,42222,65,94016,65,66208,65,119835,98,119887,98,119939,98,119991,98,120043,98,120095,98,120147,98,120199,98,120251,98,120303,98,120355,98,120407,98,120459,98,388,98,5071,98,5234,98,5551,98,65314,66,8492,66,119809,66,119861,66,119913,66,120017,66,120069,66,120121,66,120173,66,120225,66,120277,66,120329,66,120381,66,120433,66,42932,66,914,66,120489,66,120547,66,120605,66,120663,66,120721,66,5108,66,5623,66,42192,66,66178,66,66209,66,66305,66,65347,99,8573,99,119836,99,119888,99,119940,99,119992,99,120044,99,120096,99,120148,99,120200,99,120252,99,120304,99,120356,99,120408,99,120460,99,7428,99,1010,99,11429,99,43951,99,66621,99,128844,67,71922,67,71913,67,65315,67,8557,67,8450,67,8493,67,119810,67,119862,67,119914,67,119966,67,120018,67,120174,67,120226,67,120278,67,120330,67,120382,67,120434,67,1017,67,11428,67,5087,67,42202,67,66210,67,66306,67,66581,67,66844,67,8574,100,8518,100,119837,100,119889,100,119941,100,119993,100,120045,100,120097,100,120149,100,120201,100,120253,100,120305,100,120357,100,120409,100,120461,100,1281,100,5095,100,5231,100,42194,100,8558,68,8517,68,119811,68,119863,68,119915,68,119967,68,120019,68,120071,68,120123,68,120175,68,120227,68,120279,68,120331,68,120383,68,120435,68,5024,68,5598,68,5610,68,42195,68,8494,101,65349,101,8495,101,8519,101,119838,101,119890,101,119942,101,120046,101,120098,101,120150,101,120202,101,120254,101,120306,101,120358,101,120410,101,120462,101,43826,101,1213,101,8959,69,65317,69,8496,69,119812,69,119864,69,119916,69,120020,69,120072,69,120124,69,120176,69,120228,69,120280,69,120332,69,120384,69,120436,69,917,69,120492,69,120550,69,120608,69,120666,69,120724,69,11577,69,5036,69,42224,69,71846,69,71854,69,66182,69,119839,102,119891,102,119943,102,119995,102,120047,102,120099,102,120151,102,120203,102,120255,102,120307,102,120359,102,120411,102,120463,102,43829,102,42905,102,383,102,7837,102,1412,102,119315,70,8497,70,119813,70,119865,70,119917,70,120021,70,120073,70,120125,70,120177,70,120229,70,120281,70,120333,70,120385,70,120437,70,42904,70,988,70,120778,70,5556,70,42205,70,71874,70,71842,70,66183,70,66213,70,66853,70,65351,103,8458,103,119840,103,119892,103,119944,103,120048,103,120100,103,120152,103,120204,103,120256,103,120308,103,120360,103,120412,103,120464,103,609,103,7555,103,397,103,1409,103,119814,71,119866,71,119918,71,119970,71,120022,71,120074,71,120126,71,120178,71,120230,71,120282,71,120334,71,120386,71,120438,71,1292,71,5056,71,5107,71,42198,71,65352,104,8462,104,119841,104,119945,104,119997,104,120049,104,120101,104,120153,104,120205,104,120257,104,120309,104,120361,104,120413,104,120465,104,1211,104,1392,104,5058,104,65320,72,8459,72,8460,72,8461,72,119815,72,119867,72,119919,72,120023,72,120179,72,120231,72,120283,72,120335,72,120387,72,120439,72,919,72,120494,72,120552,72,120610,72,120668,72,120726,72,11406,72,5051,72,5500,72,42215,72,66255,72,731,105,9075,105,65353,105,8560,105,8505,105,8520,105,119842,105,119894,105,119946,105,119998,105,120050,105,120102,105,120154,105,120206,105,120258,105,120310,105,120362,105,120414,105,120466,105,120484,105,618,105,617,105,953,105,8126,105,890,105,120522,105,120580,105,120638,105,120696,105,120754,105,1110,105,42567,105,1231,105,43893,105,5029,105,71875,105,65354,106,8521,106,119843,106,119895,106,119947,106,119999,106,120051,106,120103,106,120155,106,120207,106,120259,106,120311,106,120363,106,120415,106,120467,106,1011,106,1112,106,65322,74,119817,74,119869,74,119921,74,119973,74,120025,74,120077,74,120129,74,120181,74,120233,74,120285,74,120337,74,120389,74,120441,74,42930,74,895,74,1032,74,5035,74,5261,74,42201,74,119844,107,119896,107,119948,107,120000,107,120052,107,120104,107,120156,107,120208,107,120260,107,120312,107,120364,107,120416,107,120468,107,8490,75,65323,75,119818,75,119870,75,119922,75,119974,75,120026,75,120078,75,120130,75,120182,75,120234,75,120286,75,120338,75,120390,75,120442,75,922,75,120497,75,120555,75,120613,75,120671,75,120729,75,11412,75,5094,75,5845,75,42199,75,66840,75,1472,108,8739,73,9213,73,65512,73,1633,108,1777,73,66336,108,125127,108,120783,73,120793,73,120803,73,120813,73,120823,73,130033,73,65321,73,8544,73,8464,73,8465,73,119816,73,119868,73,119920,73,120024,73,120128,73,120180,73,120232,73,120284,73,120336,73,120388,73,120440,73,65356,108,8572,73,8467,108,119845,108,119897,108,119949,108,120001,108,120053,108,120105,73,120157,73,120209,73,120261,73,120313,73,120365,73,120417,73,120469,73,448,73,120496,73,120554,73,120612,73,120670,73,120728,73,11410,73,1030,73,1216,73,1493,108,1503,108,1575,108,126464,108,126592,108,65166,108,65165,108,1994,108,11599,73,5825,73,42226,73,93992,73,66186,124,66313,124,119338,76,8556,76,8466,76,119819,76,119871,76,119923,76,120027,76,120079,76,120131,76,120183,76,120235,76,120287,76,120339,76,120391,76,120443,76,11472,76,5086,76,5290,76,42209,76,93974,76,71843,76,71858,76,66587,76,66854,76,65325,77,8559,77,8499,77,119820,77,119872,77,119924,77,120028,77,120080,77,120132,77,120184,77,120236,77,120288,77,120340,77,120392,77,120444,77,924,77,120499,77,120557,77,120615,77,120673,77,120731,77,1018,77,11416,77,5047,77,5616,77,5846,77,42207,77,66224,77,66321,77,119847,110,119899,110,119951,110,120003,110,120055,110,120107,110,120159,110,120211,110,120263,110,120315,110,120367,110,120419,110,120471,110,1400,110,1404,110,65326,78,8469,78,119821,78,119873,78,119925,78,119977,78,120029,78,120081,78,120185,78,120237,78,120289,78,120341,78,120393,78,120445,78,925,78,120500,78,120558,78,120616,78,120674,78,120732,78,11418,78,42208,78,66835,78,3074,111,3202,111,3330,111,3458,111,2406,111,2662,111,2790,111,3046,111,3174,111,3302,111,3430,111,3664,111,3792,111,4160,111,1637,111,1781,111,65359,111,8500,111,119848,111,119900,111,119952,111,120056,111,120108,111,120160,111,120212,111,120264,111,120316,111,120368,111,120420,111,120472,111,7439,111,7441,111,43837,111,959,111,120528,111,120586,111,120644,111,120702,111,120760,111,963,111,120532,111,120590,111,120648,111,120706,111,120764,111,11423,111,4351,111,1413,111,1505,111,1607,111,126500,111,126564,111,126596,111,65259,111,65260,111,65258,111,65257,111,1726,111,64428,111,64429,111,64427,111,64426,111,1729,111,64424,111,64425,111,64423,111,64422,111,1749,111,3360,111,4125,111,66794,111,71880,111,71895,111,66604,111,1984,79,2534,79,2918,79,12295,79,70864,79,71904,79,120782,79,120792,79,120802,79,120812,79,120822,79,130032,79,65327,79,119822,79,119874,79,119926,79,119978,79,120030,79,120082,79,120134,79,120186,79,120238,79,120290,79,120342,79,120394,79,120446,79,927,79,120502,79,120560,79,120618,79,120676,79,120734,79,11422,79,1365,79,11604,79,4816,79,2848,79,66754,79,42227,79,71861,79,66194,79,66219,79,66564,79,66838,79,9076,112,65360,112,119849,112,119901,112,119953,112,120005,112,120057,112,120109,112,120161,112,120213,112,120265,112,120317,112,120369,112,120421,112,120473,112,961,112,120530,112,120544,112,120588,112,120602,112,120646,112,120660,112,120704,112,120718,112,120762,112,120776,112,11427,112,65328,80,8473,80,119823,80,119875,80,119927,80,119979,80,120031,80,120083,80,120187,80,120239,80,120291,80,120343,80,120395,80,120447,80,929,80,120504,80,120562,80,120620,80,120678,80,120736,80,11426,80,5090,80,5229,80,42193,80,66197,80,119850,113,119902,113,119954,113,120006,113,120058,113,120110,113,120162,113,120214,113,120266,113,120318,113,120370,113,120422,113,120474,113,1307,113,1379,113,1382,113,8474,81,119824,81,119876,81,119928,81,119980,81,120032,81,120084,81,120188,81,120240,81,120292,81,120344,81,120396,81,120448,81,11605,81,119851,114,119903,114,119955,114,120007,114,120059,114,120111,114,120163,114,120215,114,120267,114,120319,114,120371,114,120423,114,120475,114,43847,114,43848,114,7462,114,11397,114,43905,114,119318,82,8475,82,8476,82,8477,82,119825,82,119877,82,119929,82,120033,82,120189,82,120241,82,120293,82,120345,82,120397,82,120449,82,422,82,5025,82,5074,82,66740,82,5511,82,42211,82,94005,82,65363,115,119852,115,119904,115,119956,115,120008,115,120060,115,120112,115,120164,115,120216,115,120268,115,120320,115,120372,115,120424,115,120476,115,42801,115,445,115,1109,115,43946,115,71873,115,66632,115,65331,83,119826,83,119878,83,119930,83,119982,83,120034,83,120086,83,120138,83,120190,83,120242,83,120294,83,120346,83,120398,83,120450,83,1029,83,1359,83,5077,83,5082,83,42210,83,94010,83,66198,83,66592,83,119853,116,119905,116,119957,116,120009,116,120061,116,120113,116,120165,116,120217,116,120269,116,120321,116,120373,116,120425,116,120477,116,8868,84,10201,84,128872,84,65332,84,119827,84,119879,84,119931,84,119983,84,120035,84,120087,84,120139,84,120191,84,120243,84,120295,84,120347,84,120399,84,120451,84,932,84,120507,84,120565,84,120623,84,120681,84,120739,84,11430,84,5026,84,42196,84,93962,84,71868,84,66199,84,66225,84,66325,84,119854,117,119906,117,119958,117,120010,117,120062,117,120114,117,120166,117,120218,117,120270,117,120322,117,120374,117,120426,117,120478,117,42911,117,7452,117,43854,117,43858,117,651,117,965,117,120534,117,120592,117,120650,117,120708,117,120766,117,1405,117,66806,117,71896,117,8746,85,8899,85,119828,85,119880,85,119932,85,119984,85,120036,85,120088,85,120140,85,120192,85,120244,85,120296,85,120348,85,120400,85,120452,85,1357,85,4608,85,66766,85,5196,85,42228,85,94018,85,71864,85,8744,118,8897,118,65366,118,8564,118,119855,118,119907,118,119959,118,120011,118,120063,118,120115,118,120167,118,120219,118,120271,118,120323,118,120375,118,120427,118,120479,118,7456,118,957,118,120526,118,120584,118,120642,118,120700,118,120758,118,1141,118,1496,118,71430,118,43945,118,71872,118,119309,86,1639,86,1783,86,8548,86,119829,86,119881,86,119933,86,119985,86,120037,86,120089,86,120141,86,120193,86,120245,86,120297,86,120349,86,120401,86,120453,86,1140,86,11576,86,5081,86,5167,86,42719,86,42214,86,93960,86,71840,86,66845,86,623,119,119856,119,119908,119,119960,119,120012,119,120064,119,120116,119,120168,119,120220,119,120272,119,120324,119,120376,119,120428,119,120480,119,7457,119,1121,119,1309,119,1377,119,71434,119,71438,119,71439,119,43907,119,71919,87,71910,87,119830,87,119882,87,119934,87,119986,87,120038,87,120090,87,120142,87,120194,87,120246,87,120298,87,120350,87,120402,87,120454,87,1308,87,5043,87,5076,87,42218,87,5742,120,10539,120,10540,120,10799,120,65368,120,8569,120,119857,120,119909,120,119961,120,120013,120,120065,120,120117,120,120169,120,120221,120,120273,120,120325,120,120377,120,120429,120,120481,120,5441,120,5501,120,5741,88,9587,88,66338,88,71916,88,65336,88,8553,88,119831,88,119883,88,119935,88,119987,88,120039,88,120091,88,120143,88,120195,88,120247,88,120299,88,120351,88,120403,88,120455,88,42931,88,935,88,120510,88,120568,88,120626,88,120684,88,120742,88,11436,88,11613,88,5815,88,42219,88,66192,88,66228,88,66327,88,66855,88,611,121,7564,121,65369,121,119858,121,119910,121,119962,121,120014,121,120066,121,120118,121,120170,121,120222,121,120274,121,120326,121,120378,121,120430,121,120482,121,655,121,7935,121,43866,121,947,121,8509,121,120516,121,120574,121,120632,121,120690,121,120748,121,1199,121,4327,121,71900,121,65337,89,119832,89,119884,89,119936,89,119988,89,120040,89,120092,89,120144,89,120196,89,120248,89,120300,89,120352,89,120404,89,120456,89,933,89,978,89,120508,89,120566,89,120624,89,120682,89,120740,89,11432,89,1198,89,5033,89,5053,89,42220,89,94019,89,71844,89,66226,89,119859,122,119911,122,119963,122,120015,122,120067,122,120119,122,120171,122,120223,122,120275,122,120327,122,120379,122,120431,122,120483,122,7458,122,43923,122,71876,122,66293,90,71909,90,65338,90,8484,90,8488,90,119833,90,119885,90,119937,90,119989,90,120041,90,120197,90,120249,90,120301,90,120353,90,120405,90,120457,90,918,90,120493,90,120551,90,120609,90,120667,90,120725,90,5059,90,42204,90,71849,90,65282,34,65284,36,65285,37,65286,38,65290,42,65291,43,65294,46,65295,47,65296,48,65297,49,65298,50,65299,51,65300,52,65301,53,65302,54,65303,55,65304,56,65305,57,65308,60,65309,61,65310,62,65312,64,65316,68,65318,70,65319,71,65324,76,65329,81,65330,82,65333,85,65334,86,65335,87,65343,95,65346,98,65348,100,65350,102,65355,107,65357,109,65358,110,65361,113,65362,114,65364,116,65365,117,65367,119,65370,122,65371,123,65373,125,119846,109],"_default":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"cs":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"de":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"es":[8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"fr":[65374,126,65306,58,65281,33,8216,96,8245,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"it":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"ja":[8211,45,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65292,44,65307,59],"ko":[8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"pl":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"pt-BR":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"qps-ploc":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"ru":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,305,105,921,73,1009,112,215,120,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"tr":[160,32,8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"zh-hans":[65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65288,40,65289,41],"zh-hant":[8211,45,65374,126,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65307,59]}'))}static{this.cache=new Yo({getCacheKey:JSON.stringify},t=>{function n(h){const c=new Map;for(let m=0;m<h.length;m+=2)c.set(h[m],h[m+1]);return c}function r(h,c){const m=new Map(h);for(const[d,g]of c)m.set(d,g);return m}function i(h,c){if(!h)return c;const m=new Map;for(const[d,g]of h)c.has(d)&&m.set(d,g);return m}const s=this.ambiguousCharacterData.value;let a=t.filter(h=>!h.startsWith("_")&&h in s);a.length===0&&(a=["_default"]);let l;for(const h of a){const c=n(s[h]);l=i(l,c)}const o=n(s._common),u=r(o,l);return new je(u)})}static getInstance(t){return je.cache.get(Array.from(t))}static{this._locales=new Gr(()=>Object.keys(je.ambiguousCharacterData.value).filter(t=>!t.startsWith("_")))}static getLocales(){return je._locales.value}constructor(t){this.confusableDictionary=t}isAmbiguous(t){return this.confusableDictionary.has(t)}getPrimaryConfusable(t){return this.confusableDictionary.get(t)}getConfusableCodePoints(){return new Set(this.confusableDictionary.keys())}}class tt{static getRawData(){return JSON.parse("[9,10,11,12,13,32,127,160,173,847,1564,4447,4448,6068,6069,6155,6156,6157,6158,7355,7356,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8234,8235,8236,8237,8238,8239,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,10240,12288,12644,65024,65025,65026,65027,65028,65029,65030,65031,65032,65033,65034,65035,65036,65037,65038,65039,65279,65440,65520,65521,65522,65523,65524,65525,65526,65527,65528,65532,78844,119155,119156,119157,119158,119159,119160,119161,119162,917504,917505,917506,917507,917508,917509,917510,917511,917512,917513,917514,917515,917516,917517,917518,917519,917520,917521,917522,917523,917524,917525,917526,917527,917528,917529,917530,917531,917532,917533,917534,917535,917536,917537,917538,917539,917540,917541,917542,917543,917544,917545,917546,917547,917548,917549,917550,917551,917552,917553,917554,917555,917556,917557,917558,917559,917560,917561,917562,917563,917564,917565,917566,917567,917568,917569,917570,917571,917572,917573,917574,917575,917576,917577,917578,917579,917580,917581,917582,917583,917584,917585,917586,917587,917588,917589,917590,917591,917592,917593,917594,917595,917596,917597,917598,917599,917600,917601,917602,917603,917604,917605,917606,917607,917608,917609,917610,917611,917612,917613,917614,917615,917616,917617,917618,917619,917620,917621,917622,917623,917624,917625,917626,917627,917628,917629,917630,917631,917760,917761,917762,917763,917764,917765,917766,917767,917768,917769,917770,917771,917772,917773,917774,917775,917776,917777,917778,917779,917780,917781,917782,917783,917784,917785,917786,917787,917788,917789,917790,917791,917792,917793,917794,917795,917796,917797,917798,917799,917800,917801,917802,917803,917804,917805,917806,917807,917808,917809,917810,917811,917812,917813,917814,917815,917816,917817,917818,917819,917820,917821,917822,917823,917824,917825,917826,917827,917828,917829,917830,917831,917832,917833,917834,917835,917836,917837,917838,917839,917840,917841,917842,917843,917844,917845,917846,917847,917848,917849,917850,917851,917852,917853,917854,917855,917856,917857,917858,917859,917860,917861,917862,917863,917864,917865,917866,917867,917868,917869,917870,917871,917872,917873,917874,917875,917876,917877,917878,917879,917880,917881,917882,917883,917884,917885,917886,917887,917888,917889,917890,917891,917892,917893,917894,917895,917896,917897,917898,917899,917900,917901,917902,917903,917904,917905,917906,917907,917908,917909,917910,917911,917912,917913,917914,917915,917916,917917,917918,917919,917920,917921,917922,917923,917924,917925,917926,917927,917928,917929,917930,917931,917932,917933,917934,917935,917936,917937,917938,917939,917940,917941,917942,917943,917944,917945,917946,917947,917948,917949,917950,917951,917952,917953,917954,917955,917956,917957,917958,917959,917960,917961,917962,917963,917964,917965,917966,917967,917968,917969,917970,917971,917972,917973,917974,917975,917976,917977,917978,917979,917980,917981,917982,917983,917984,917985,917986,917987,917988,917989,917990,917991,917992,917993,917994,917995,917996,917997,917998,917999]")}static{this._data=void 0}static getData(){return this._data||(this._data=new Set(tt.getRawData())),this._data}static isInvisibleCharacter(t){return tt.getData().has(t)}static get codePoints(){return tt.getData()}}var Qr={};let ut;const qn=globalThis.vscode;if(typeof qn<"u"&&typeof qn.process<"u"){const e=qn.process;ut={get platform(){return e.platform},get arch(){return e.arch},get env(){return e.env},cwd(){return e.cwd()}}}else typeof process<"u"&&typeof process?.versions?.node=="string"?ut={get platform(){return process.platform},get arch(){return process.arch},get env(){return Qr},cwd(){return Qr.VSCODE_CWD||process.cwd()}}:ut={get platform(){return Mt?"win32":Wo?"darwin":"linux"},get arch(){},get env(){return{}},cwd(){return"/"}};const tn=ut.cwd,sl=ut.env,al=ut.platform,ol=65,ll=97,ul=90,cl=122,We=46,oe=47,me=92,He=58,fl=63;class Yr extends Error{constructor(t,n,r){let i;typeof n=="string"&&n.indexOf("not ")===0?(i="must not be",n=n.replace(/^not /,"")):i="must be";const s=t.indexOf(".")!==-1?"property":"argument";let a=`The "${t}" ${s} ${i} of type ${n}`;a+=`. Received type ${typeof r}`,super(a),this.code="ERR_INVALID_ARG_TYPE"}}function hl(e,t){if(e===null||typeof e!="object")throw new Yr(t,"Object",e)}function Z(e,t){if(typeof e!="string")throw new Yr(t,"string",e)}const Be=al==="win32";function U(e){return e===oe||e===me}function jn(e){return e===oe}function ze(e){return e>=ol&&e<=ul||e>=ll&&e<=cl}function nn(e,t,n,r){let i="",s=0,a=-1,l=0,o=0;for(let u=0;u<=e.length;++u){if(u<e.length)o=e.charCodeAt(u);else{if(r(o))break;o=oe}if(r(o)){if(!(a===u-1||l===1))if(l===2){if(i.length<2||s!==2||i.charCodeAt(i.length-1)!==We||i.charCodeAt(i.length-2)!==We){if(i.length>2){const h=i.lastIndexOf(n);h===-1?(i="",s=0):(i=i.slice(0,h),s=i.length-1-i.lastIndexOf(n)),a=u,l=0;continue}else if(i.length!==0){i="",s=0,a=u,l=0;continue}}t&&(i+=i.length>0?`${n}..`:"..",s=2)}else i.length>0?i+=`${n}${e.slice(a+1,u)}`:i=e.slice(a+1,u),s=u-a-1;a=u,l=0}else o===We&&l!==-1?++l:l=-1}return i}function ml(e){return e?`${e[0]==="."?"":"."}${e}`:""}function Zr(e,t){hl(t,"pathObject");const n=t.dir||t.root,r=t.base||`${t.name||""}${ml(t.ext)}`;return n?n===t.root?`${n}${r}`:`${n}${e}${r}`:r}const ue={resolve(...e){let t="",n="",r=!1;for(let i=e.length-1;i>=-1;i--){let s;if(i>=0){if(s=e[i],Z(s,`paths[${i}]`),s.length===0)continue}else t.length===0?s=tn():(s=sl[`=${t}`]||tn(),(s===void 0||s.slice(0,2).toLowerCase()!==t.toLowerCase()&&s.charCodeAt(2)===me)&&(s=`${t}\\`));const a=s.length;let l=0,o="",u=!1;const h=s.charCodeAt(0);if(a===1)U(h)&&(l=1,u=!0);else if(U(h))if(u=!0,U(s.charCodeAt(1))){let c=2,m=c;for(;c<a&&!U(s.charCodeAt(c));)c++;if(c<a&&c!==m){const d=s.slice(m,c);for(m=c;c<a&&U(s.charCodeAt(c));)c++;if(c<a&&c!==m){for(m=c;c<a&&!U(s.charCodeAt(c));)c++;(c===a||c!==m)&&(o=`\\\\${d}\\${s.slice(m,c)}`,l=c)}}}else l=1;else ze(h)&&s.charCodeAt(1)===He&&(o=s.slice(0,2),l=2,a>2&&U(s.charCodeAt(2))&&(u=!0,l=3));if(o.length>0)if(t.length>0){if(o.toLowerCase()!==t.toLowerCase())continue}else t=o;if(r){if(t.length>0)break}else if(n=`${s.slice(l)}\\${n}`,r=u,u&&t.length>0)break}return n=nn(n,!r,"\\",U),r?`${t}\\${n}`:`${t}${n}`||"."},normalize(e){Z(e,"path");const t=e.length;if(t===0)return".";let n=0,r,i=!1;const s=e.charCodeAt(0);if(t===1)return jn(s)?"\\":e;if(U(s))if(i=!0,U(e.charCodeAt(1))){let l=2,o=l;for(;l<t&&!U(e.charCodeAt(l));)l++;if(l<t&&l!==o){const u=e.slice(o,l);for(o=l;l<t&&U(e.charCodeAt(l));)l++;if(l<t&&l!==o){for(o=l;l<t&&!U(e.charCodeAt(l));)l++;if(l===t)return`\\\\${u}\\${e.slice(o)}\\`;l!==o&&(r=`\\\\${u}\\${e.slice(o,l)}`,n=l)}}}else n=1;else ze(s)&&e.charCodeAt(1)===He&&(r=e.slice(0,2),n=2,t>2&&U(e.charCodeAt(2))&&(i=!0,n=3));let a=n<t?nn(e.slice(n),!i,"\\",U):"";return a.length===0&&!i&&(a="."),a.length>0&&U(e.charCodeAt(t-1))&&(a+="\\"),r===void 0?i?`\\${a}`:a:i?`${r}\\${a}`:`${r}${a}`},isAbsolute(e){Z(e,"path");const t=e.length;if(t===0)return!1;const n=e.charCodeAt(0);return U(n)||t>2&&ze(n)&&e.charCodeAt(1)===He&&U(e.charCodeAt(2))},join(...e){if(e.length===0)return".";let t,n;for(let s=0;s<e.length;++s){const a=e[s];Z(a,"path"),a.length>0&&(t===void 0?t=n=a:t+=`\\${a}`)}if(t===void 0)return".";let r=!0,i=0;if(typeof n=="string"&&U(n.charCodeAt(0))){++i;const s=n.length;s>1&&U(n.charCodeAt(1))&&(++i,s>2&&(U(n.charCodeAt(2))?++i:r=!1))}if(r){for(;i<t.length&&U(t.charCodeAt(i));)i++;i>=2&&(t=`\\${t.slice(i)}`)}return ue.normalize(t)},relative(e,t){if(Z(e,"from"),Z(t,"to"),e===t)return"";const n=ue.resolve(e),r=ue.resolve(t);if(n===r||(e=n.toLowerCase(),t=r.toLowerCase(),e===t))return"";let i=0;for(;i<e.length&&e.charCodeAt(i)===me;)i++;let s=e.length;for(;s-1>i&&e.charCodeAt(s-1)===me;)s--;const a=s-i;let l=0;for(;l<t.length&&t.charCodeAt(l)===me;)l++;let o=t.length;for(;o-1>l&&t.charCodeAt(o-1)===me;)o--;const u=o-l,h=a<u?a:u;let c=-1,m=0;for(;m<h;m++){const g=e.charCodeAt(i+m);if(g!==t.charCodeAt(l+m))break;g===me&&(c=m)}if(m!==h){if(c===-1)return r}else{if(u>h){if(t.charCodeAt(l+m)===me)return r.slice(l+m+1);if(m===2)return r.slice(l+m)}a>h&&(e.charCodeAt(i+m)===me?c=m:m===2&&(c=3)),c===-1&&(c=0)}let d="";for(m=i+c+1;m<=s;++m)(m===s||e.charCodeAt(m)===me)&&(d+=d.length===0?"..":"\\..");return l+=c,d.length>0?`${d}${r.slice(l,o)}`:(r.charCodeAt(l)===me&&++l,r.slice(l,o))},toNamespacedPath(e){if(typeof e!="string"||e.length===0)return e;const t=ue.resolve(e);if(t.length<=2)return e;if(t.charCodeAt(0)===me){if(t.charCodeAt(1)===me){const n=t.charCodeAt(2);if(n!==fl&&n!==We)return`\\\\?\\UNC\\${t.slice(2)}`}}else if(ze(t.charCodeAt(0))&&t.charCodeAt(1)===He&&t.charCodeAt(2)===me)return`\\\\?\\${t}`;return e},dirname(e){Z(e,"path");const t=e.length;if(t===0)return".";let n=-1,r=0;const i=e.charCodeAt(0);if(t===1)return U(i)?e:".";if(U(i)){if(n=r=1,U(e.charCodeAt(1))){let l=2,o=l;for(;l<t&&!U(e.charCodeAt(l));)l++;if(l<t&&l!==o){for(o=l;l<t&&U(e.charCodeAt(l));)l++;if(l<t&&l!==o){for(o=l;l<t&&!U(e.charCodeAt(l));)l++;if(l===t)return e;l!==o&&(n=r=l+1)}}}}else ze(i)&&e.charCodeAt(1)===He&&(n=t>2&&U(e.charCodeAt(2))?3:2,r=n);let s=-1,a=!0;for(let l=t-1;l>=r;--l)if(U(e.charCodeAt(l))){if(!a){s=l;break}}else a=!1;if(s===-1){if(n===-1)return".";s=n}return e.slice(0,s)},basename(e,t){t!==void 0&&Z(t,"suffix"),Z(e,"path");let n=0,r=-1,i=!0,s;if(e.length>=2&&ze(e.charCodeAt(0))&&e.charCodeAt(1)===He&&(n=2),t!==void 0&&t.length>0&&t.length<=e.length){if(t===e)return"";let a=t.length-1,l=-1;for(s=e.length-1;s>=n;--s){const o=e.charCodeAt(s);if(U(o)){if(!i){n=s+1;break}}else l===-1&&(i=!1,l=s+1),a>=0&&(o===t.charCodeAt(a)?--a===-1&&(r=s):(a=-1,r=l))}return n===r?r=l:r===-1&&(r=e.length),e.slice(n,r)}for(s=e.length-1;s>=n;--s)if(U(e.charCodeAt(s))){if(!i){n=s+1;break}}else r===-1&&(i=!1,r=s+1);return r===-1?"":e.slice(n,r)},extname(e){Z(e,"path");let t=0,n=-1,r=0,i=-1,s=!0,a=0;e.length>=2&&e.charCodeAt(1)===He&&ze(e.charCodeAt(0))&&(t=r=2);for(let l=e.length-1;l>=t;--l){const o=e.charCodeAt(l);if(U(o)){if(!s){r=l+1;break}continue}i===-1&&(s=!1,i=l+1),o===We?n===-1?n=l:a!==1&&(a=1):n!==-1&&(a=-1)}return n===-1||i===-1||a===0||a===1&&n===i-1&&n===r+1?"":e.slice(n,i)},format:Zr.bind(null,"\\"),parse(e){Z(e,"path");const t={root:"",dir:"",base:"",ext:"",name:""};if(e.length===0)return t;const n=e.length;let r=0,i=e.charCodeAt(0);if(n===1)return U(i)?(t.root=t.dir=e,t):(t.base=t.name=e,t);if(U(i)){if(r=1,U(e.charCodeAt(1))){let c=2,m=c;for(;c<n&&!U(e.charCodeAt(c));)c++;if(c<n&&c!==m){for(m=c;c<n&&U(e.charCodeAt(c));)c++;if(c<n&&c!==m){for(m=c;c<n&&!U(e.charCodeAt(c));)c++;c===n?r=c:c!==m&&(r=c+1)}}}}else if(ze(i)&&e.charCodeAt(1)===He){if(n<=2)return t.root=t.dir=e,t;if(r=2,U(e.charCodeAt(2))){if(n===3)return t.root=t.dir=e,t;r=3}}r>0&&(t.root=e.slice(0,r));let s=-1,a=r,l=-1,o=!0,u=e.length-1,h=0;for(;u>=r;--u){if(i=e.charCodeAt(u),U(i)){if(!o){a=u+1;break}continue}l===-1&&(o=!1,l=u+1),i===We?s===-1?s=u:h!==1&&(h=1):s!==-1&&(h=-1)}return l!==-1&&(s===-1||h===0||h===1&&s===l-1&&s===a+1?t.base=t.name=e.slice(a,l):(t.name=e.slice(a,s),t.base=e.slice(a,l),t.ext=e.slice(s,l))),a>0&&a!==r?t.dir=e.slice(0,a-1):t.dir=t.root,t},sep:"\\",delimiter:";",win32:null,posix:null},dl=(()=>{if(Be){const e=/\\/g;return()=>{const t=tn().replace(e,"/");return t.slice(t.indexOf("/"))}}return()=>tn()})(),ce={resolve(...e){let t="",n=!1;for(let r=e.length-1;r>=-1&&!n;r--){const i=r>=0?e[r]:dl();Z(i,`paths[${r}]`),i.length!==0&&(t=`${i}/${t}`,n=i.charCodeAt(0)===oe)}return t=nn(t,!n,"/",jn),n?`/${t}`:t.length>0?t:"."},normalize(e){if(Z(e,"path"),e.length===0)return".";const t=e.charCodeAt(0)===oe,n=e.charCodeAt(e.length-1)===oe;return e=nn(e,!t,"/",jn),e.length===0?t?"/":n?"./":".":(n&&(e+="/"),t?`/${e}`:e)},isAbsolute(e){return Z(e,"path"),e.length>0&&e.charCodeAt(0)===oe},join(...e){if(e.length===0)return".";let t;for(let n=0;n<e.length;++n){const r=e[n];Z(r,"path"),r.length>0&&(t===void 0?t=r:t+=`/${r}`)}return t===void 0?".":ce.normalize(t)},relative(e,t){if(Z(e,"from"),Z(t,"to"),e===t||(e=ce.resolve(e),t=ce.resolve(t),e===t))return"";const n=1,r=e.length,i=r-n,s=1,a=t.length-s,l=i<a?i:a;let o=-1,u=0;for(;u<l;u++){const c=e.charCodeAt(n+u);if(c!==t.charCodeAt(s+u))break;c===oe&&(o=u)}if(u===l)if(a>l){if(t.charCodeAt(s+u)===oe)return t.slice(s+u+1);if(u===0)return t.slice(s+u)}else i>l&&(e.charCodeAt(n+u)===oe?o=u:u===0&&(o=0));let h="";for(u=n+o+1;u<=r;++u)(u===r||e.charCodeAt(u)===oe)&&(h+=h.length===0?"..":"/..");return`${h}${t.slice(s+o)}`},toNamespacedPath(e){return e},dirname(e){if(Z(e,"path"),e.length===0)return".";const t=e.charCodeAt(0)===oe;let n=-1,r=!0;for(let i=e.length-1;i>=1;--i)if(e.charCodeAt(i)===oe){if(!r){n=i;break}}else r=!1;return n===-1?t?"/":".":t&&n===1?"//":e.slice(0,n)},basename(e,t){t!==void 0&&Z(t,"ext"),Z(e,"path");let n=0,r=-1,i=!0,s;if(t!==void 0&&t.length>0&&t.length<=e.length){if(t===e)return"";let a=t.length-1,l=-1;for(s=e.length-1;s>=0;--s){const o=e.charCodeAt(s);if(o===oe){if(!i){n=s+1;break}}else l===-1&&(i=!1,l=s+1),a>=0&&(o===t.charCodeAt(a)?--a===-1&&(r=s):(a=-1,r=l))}return n===r?r=l:r===-1&&(r=e.length),e.slice(n,r)}for(s=e.length-1;s>=0;--s)if(e.charCodeAt(s)===oe){if(!i){n=s+1;break}}else r===-1&&(i=!1,r=s+1);return r===-1?"":e.slice(n,r)},extname(e){Z(e,"path");let t=-1,n=0,r=-1,i=!0,s=0;for(let a=e.length-1;a>=0;--a){const l=e.charCodeAt(a);if(l===oe){if(!i){n=a+1;break}continue}r===-1&&(i=!1,r=a+1),l===We?t===-1?t=a:s!==1&&(s=1):t!==-1&&(s=-1)}return t===-1||r===-1||s===0||s===1&&t===r-1&&t===n+1?"":e.slice(t,r)},format:Zr.bind(null,"/"),parse(e){Z(e,"path");const t={root:"",dir:"",base:"",ext:"",name:""};if(e.length===0)return t;const n=e.charCodeAt(0)===oe;let r;n?(t.root="/",r=1):r=0;let i=-1,s=0,a=-1,l=!0,o=e.length-1,u=0;for(;o>=r;--o){const h=e.charCodeAt(o);if(h===oe){if(!l){s=o+1;break}continue}a===-1&&(l=!1,a=o+1),h===We?i===-1?i=o:u!==1&&(u=1):i!==-1&&(u=-1)}if(a!==-1){const h=s===0&&n?1:s;i===-1||u===0||u===1&&i===a-1&&i===s+1?t.base=t.name=e.slice(h,a):(t.name=e.slice(h,i),t.base=e.slice(h,a),t.ext=e.slice(i,a))}return s>0?t.dir=e.slice(0,s-1):n&&(t.dir="/"),t},sep:"/",delimiter:":",win32:null,posix:null};ce.win32=ue.win32=ue,ce.posix=ue.posix=ce,Be?ue.normalize:ce.normalize;const gl=Be?ue.join:ce.join;Be?ue.resolve:ce.resolve,Be?ue.relative:ce.relative,Be?ue.dirname:ce.dirname,Be?ue.basename:ce.basename,Be?ue.extname:ce.extname,Be?ue.sep:ce.sep;const pl=/^\w[\w\d+.-]*$/,bl=/^\//,yl=/^\/\//;function vl(e,t){if(!e.scheme&&t)throw new Error(`[UriError]: Scheme is missing: {scheme: "", authority: "${e.authority}", path: "${e.path}", query: "${e.query}", fragment: "${e.fragment}"}`);if(e.scheme&&!pl.test(e.scheme))throw new Error("[UriError]: Scheme contains illegal characters.");if(e.path){if(e.authority){if(!bl.test(e.path))throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character')}else if(yl.test(e.path))throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")')}}function xl(e,t){return!e&&!t?"file":e}function wl(e,t){switch(e){case"https":case"http":case"file":t?t[0]!==Se&&(t=Se+t):t=Se;break}return t}const J="",Se="/",_l=/^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/;let Te=class Cn{static isUri(t){return t instanceof Cn?!0:t?typeof t.authority=="string"&&typeof t.fragment=="string"&&typeof t.path=="string"&&typeof t.query=="string"&&typeof t.scheme=="string"&&typeof t.fsPath=="string"&&typeof t.with=="function"&&typeof t.toString=="function":!1}constructor(t,n,r,i,s,a=!1){typeof t=="object"?(this.scheme=t.scheme||J,this.authority=t.authority||J,this.path=t.path||J,this.query=t.query||J,this.fragment=t.fragment||J):(this.scheme=xl(t,a),this.authority=n||J,this.path=wl(this.scheme,r||J),this.query=i||J,this.fragment=s||J,vl(this,a))}get fsPath(){return Wn(this,!1)}with(t){if(!t)return this;let{scheme:n,authority:r,path:i,query:s,fragment:a}=t;return n===void 0?n=this.scheme:n===null&&(n=J),r===void 0?r=this.authority:r===null&&(r=J),i===void 0?i=this.path:i===null&&(i=J),s===void 0?s=this.query:s===null&&(s=J),a===void 0?a=this.fragment:a===null&&(a=J),n===this.scheme&&r===this.authority&&i===this.path&&s===this.query&&a===this.fragment?this:new ct(n,r,i,s,a)}static parse(t,n=!1){const r=_l.exec(t);return r?new ct(r[2]||J,rn(r[4]||J),rn(r[5]||J),rn(r[7]||J),rn(r[9]||J),n):new ct(J,J,J,J,J)}static file(t){let n=J;if(Mt&&(t=t.replace(/\\/g,Se)),t[0]===Se&&t[1]===Se){const r=t.indexOf(Se,2);r===-1?(n=t.substring(2),t=Se):(n=t.substring(2,r),t=t.substring(r)||Se)}return new ct("file",n,t,J,J)}static from(t,n){return new ct(t.scheme,t.authority,t.path,t.query,t.fragment,n)}static joinPath(t,...n){if(!t.path)throw new Error("[UriError]: cannot call joinPath on URI without path");let r;return Mt&&t.scheme==="file"?r=Cn.file(ue.join(Wn(t,!0),...n)).path:r=ce.join(t.path,...n),t.with({path:r})}toString(t=!1){return Hn(this,t)}toJSON(){return this}static revive(t){if(t){if(t instanceof Cn)return t;{const n=new ct(t);return n._formatted=t.external??null,n._fsPath=t._sep===Kr?t.fsPath??null:null,n}}else return t}};const Kr=Mt?1:void 0;class ct extends Te{constructor(){super(...arguments),this._formatted=null,this._fsPath=null}get fsPath(){return this._fsPath||(this._fsPath=Wn(this,!1)),this._fsPath}toString(t=!1){return t?Hn(this,!0):(this._formatted||(this._formatted=Hn(this,!1)),this._formatted)}toJSON(){const t={$mid:1};return this._fsPath&&(t.fsPath=this._fsPath,t._sep=Kr),this._formatted&&(t.external=this._formatted),this.path&&(t.path=this.path),this.scheme&&(t.scheme=this.scheme),this.authority&&(t.authority=this.authority),this.query&&(t.query=this.query),this.fragment&&(t.fragment=this.fragment),t}}const ei={58:"%3A",47:"%2F",63:"%3F",35:"%23",91:"%5B",93:"%5D",64:"%40",33:"%21",36:"%24",38:"%26",39:"%27",40:"%28",41:"%29",42:"%2A",43:"%2B",44:"%2C",59:"%3B",61:"%3D",32:"%20"};function ti(e,t,n){let r,i=-1;for(let s=0;s<e.length;s++){const a=e.charCodeAt(s);if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57||a===45||a===46||a===95||a===126||t&&a===47||n&&a===91||n&&a===93||n&&a===58)i!==-1&&(r+=encodeURIComponent(e.substring(i,s)),i=-1),r!==void 0&&(r+=e.charAt(s));else{r===void 0&&(r=e.substr(0,s));const l=ei[a];l!==void 0?(i!==-1&&(r+=encodeURIComponent(e.substring(i,s)),i=-1),r+=l):i===-1&&(i=s)}}return i!==-1&&(r+=encodeURIComponent(e.substring(i))),r!==void 0?r:e}function Ll(e){let t;for(let n=0;n<e.length;n++){const r=e.charCodeAt(n);r===35||r===63?(t===void 0&&(t=e.substr(0,n)),t+=ei[r]):t!==void 0&&(t+=e[n])}return t!==void 0?t:e}function Wn(e,t){let n;return e.authority&&e.path.length>1&&e.scheme==="file"?n=`//${e.authority}${e.path}`:e.path.charCodeAt(0)===47&&(e.path.charCodeAt(1)>=65&&e.path.charCodeAt(1)<=90||e.path.charCodeAt(1)>=97&&e.path.charCodeAt(1)<=122)&&e.path.charCodeAt(2)===58?t?n=e.path.substr(1):n=e.path[1].toLowerCase()+e.path.substr(2):n=e.path,Mt&&(n=n.replace(/\//g,"\\")),n}function Hn(e,t){const n=t?Ll:ti;let r="",{scheme:i,authority:s,path:a,query:l,fragment:o}=e;if(i&&(r+=i,r+=":"),(s||i==="file")&&(r+=Se,r+=Se),s){let u=s.indexOf("@");if(u!==-1){const h=s.substr(0,u);s=s.substr(u+1),u=h.lastIndexOf(":"),u===-1?r+=n(h,!1,!1):(r+=n(h.substr(0,u),!1,!1),r+=":",r+=n(h.substr(u+1),!1,!0)),r+="@"}s=s.toLowerCase(),u=s.lastIndexOf(":"),u===-1?r+=n(s,!1,!0):(r+=n(s.substr(0,u),!1,!0),r+=s.substr(u))}if(a){if(a.length>=3&&a.charCodeAt(0)===47&&a.charCodeAt(2)===58){const u=a.charCodeAt(1);u>=65&&u<=90&&(a=`/${String.fromCharCode(u+32)}:${a.substr(3)}`)}else if(a.length>=2&&a.charCodeAt(1)===58){const u=a.charCodeAt(0);u>=65&&u<=90&&(a=`${String.fromCharCode(u+32)}:${a.substr(2)}`)}r+=n(a,!0,!1)}return l&&(r+="?",r+=n(l,!1,!1)),o&&(r+="#",r+=t?o:ti(o,!1,!1)),r}function ni(e){try{return decodeURIComponent(e)}catch{return e.length>3?e.substr(0,3)+ni(e.substr(3)):e}}const ri=/(%[0-9A-Za-z][0-9A-Za-z])+/g;function rn(e){return e.match(ri)?e.replace(ri,t=>ni(t)):e}var Ge;(function(e){e.inMemory="inmemory",e.vscode="vscode",e.internal="private",e.walkThrough="walkThrough",e.walkThroughSnippet="walkThroughSnippet",e.http="http",e.https="https",e.file="file",e.mailto="mailto",e.untitled="untitled",e.data="data",e.command="command",e.vscodeRemote="vscode-remote",e.vscodeRemoteResource="vscode-remote-resource",e.vscodeManagedRemoteResource="vscode-managed-remote-resource",e.vscodeUserData="vscode-userdata",e.vscodeCustomEditor="vscode-custom-editor",e.vscodeNotebookCell="vscode-notebook-cell",e.vscodeNotebookCellMetadata="vscode-notebook-cell-metadata",e.vscodeNotebookCellMetadataDiff="vscode-notebook-cell-metadata-diff",e.vscodeNotebookCellOutput="vscode-notebook-cell-output",e.vscodeNotebookCellOutputDiff="vscode-notebook-cell-output-diff",e.vscodeNotebookMetadata="vscode-notebook-metadata",e.vscodeInteractiveInput="vscode-interactive-input",e.vscodeSettings="vscode-settings",e.vscodeWorkspaceTrust="vscode-workspace-trust",e.vscodeTerminal="vscode-terminal",e.vscodeChatCodeBlock="vscode-chat-code-block",e.vscodeChatCodeCompareBlock="vscode-chat-code-compare-block",e.vscodeChatSesssion="vscode-chat-editor",e.webviewPanel="webview-panel",e.vscodeWebview="vscode-webview",e.extension="extension",e.vscodeFileResource="vscode-file",e.tmp="tmp",e.vsls="vsls",e.vscodeSourceControl="vscode-scm",e.commentsInput="comment",e.codeSetting="code-setting",e.outputChannel="output"})(Ge||(Ge={}));const Nl="tkn";class Sl{constructor(){this._hosts=Object.create(null),this._ports=Object.create(null),this._connectionTokens=Object.create(null),this._preferredWebSchema="http",this._delegate=null,this._serverRootPath="/"}setPreferredWebSchema(t){this._preferredWebSchema=t}get _remoteResourcesPath(){return ce.join(this._serverRootPath,Ge.vscodeRemoteResource)}rewrite(t){if(this._delegate)try{return this._delegate(t)}catch(l){return Rt(l),t}const n=t.authority;let r=this._hosts[n];r&&r.indexOf(":")!==-1&&r.indexOf("[")===-1&&(r=`[${r}]`);const i=this._ports[n],s=this._connectionTokens[n];let a=`path=${encodeURIComponent(t.path)}`;return typeof s=="string"&&(a+=`&${Nl}=${encodeURIComponent(s)}`),Te.from({scheme:zo?this._preferredWebSchema:Ge.vscodeRemoteResource,authority:`${r}:${i}`,path:this._remoteResourcesPath,query:a})}}const Al=new Sl,kl="vscode-app";class sn{static{this.FALLBACK_AUTHORITY=kl}asBrowserUri(t){const n=this.toUri(t);return this.uriToBrowserUri(n)}uriToBrowserUri(t){return t.scheme===Ge.vscodeRemote?Al.rewrite(t):t.scheme===Ge.file&&(Ho||Go===`${Ge.vscodeFileResource}://${sn.FALLBACK_AUTHORITY}`)?t.with({scheme:Ge.vscodeFileResource,authority:t.authority||sn.FALLBACK_AUTHORITY,query:null,fragment:null}):t}toUri(t,n){if(Te.isUri(t))return t;if(globalThis._VSCODE_FILE_ROOT){const r=globalThis._VSCODE_FILE_ROOT;if(/^\w[\w\d+.-]*:\/\//.test(r))return Te.joinPath(Te.parse(r,!0),t);const i=gl(r,t);return Te.file(i)}return Te.parse(n.toUrl(t))}}const ii=new sn;var si;(function(e){const t=new Map([["1",{"Cross-Origin-Opener-Policy":"same-origin"}],["2",{"Cross-Origin-Embedder-Policy":"require-corp"}],["3",{"Cross-Origin-Opener-Policy":"same-origin","Cross-Origin-Embedder-Policy":"require-corp"}]]);e.CoopAndCoep=Object.freeze(t.get("3"));const n="vscode-coi";function r(s){let a;typeof s=="string"?a=new URL(s).searchParams:s instanceof URL?a=s.searchParams:Te.isUri(s)&&(a=new URL(s.toString(!0)).searchParams);const l=a?.get(n);if(l)return t.get(l)}e.getHeadersFromQuery=r;function i(s,a,l){if(!globalThis.crossOriginIsolated)return;const o=a&&l?"3":l?"2":"1";s instanceof URLSearchParams?s.set(n,o):s[n]=o}e.addSearchParam=i})(si||(si={}));const zn="default",Rl="$initialize";class El{constructor(t,n,r,i,s){this.vsWorker=t,this.req=n,this.channel=r,this.method=i,this.args=s,this.type=0}}class ai{constructor(t,n,r,i){this.vsWorker=t,this.seq=n,this.res=r,this.err=i,this.type=1}}class Ml{constructor(t,n,r,i,s){this.vsWorker=t,this.req=n,this.channel=r,this.eventName=i,this.arg=s,this.type=2}}class Cl{constructor(t,n,r){this.vsWorker=t,this.req=n,this.event=r,this.type=3}}class Tl{constructor(t,n){this.vsWorker=t,this.req=n,this.type=4}}class Pl{constructor(t){this._workerId=-1,this._handler=t,this._lastSentReq=0,this._pendingReplies=Object.create(null),this._pendingEmitters=new Map,this._pendingEvents=new Map}setWorkerId(t){this._workerId=t}sendMessage(t,n,r){const i=String(++this._lastSentReq);return new Promise((s,a)=>{this._pendingReplies[i]={resolve:s,reject:a},this._send(new El(this._workerId,i,t,n,r))})}listen(t,n,r){let i=null;const s=new we({onWillAddFirstListener:()=>{i=String(++this._lastSentReq),this._pendingEmitters.set(i,s),this._send(new Ml(this._workerId,i,t,n,r))},onDidRemoveLastListener:()=>{this._pendingEmitters.delete(i),this._send(new Tl(this._workerId,i)),i=null}});return s.event}handleMessage(t){!t||!t.vsWorker||this._workerId!==-1&&t.vsWorker!==this._workerId||this._handleMessage(t)}createProxyToRemoteChannel(t,n){const r={get:(i,s)=>(typeof s=="string"&&!i[s]&&(li(s)?i[s]=a=>this.listen(t,s,a):oi(s)?i[s]=this.listen(t,s,void 0):s.charCodeAt(0)===36&&(i[s]=async(...a)=>(await n?.(),this.sendMessage(t,s,a)))),i[s])};return new Proxy(Object.create(null),r)}_handleMessage(t){switch(t.type){case 1:return this._handleReplyMessage(t);case 0:return this._handleRequestMessage(t);case 2:return this._handleSubscribeEventMessage(t);case 3:return this._handleEventMessage(t);case 4:return this._handleUnsubscribeEventMessage(t)}}_handleReplyMessage(t){if(!this._pendingReplies[t.seq]){console.warn("Got reply to unknown seq");return}const n=this._pendingReplies[t.seq];if(delete this._pendingReplies[t.seq],t.err){let r=t.err;t.err.$isError&&(r=new Error,r.name=t.err.name,r.message=t.err.message,r.stack=t.err.stack),n.reject(r);return}n.resolve(t.res)}_handleRequestMessage(t){const n=t.req;this._handler.handleMessage(t.channel,t.method,t.args).then(i=>{this._send(new ai(this._workerId,n,i,void 0))},i=>{i.detail instanceof Error&&(i.detail=Ur(i.detail)),this._send(new ai(this._workerId,n,void 0,Ur(i)))})}_handleSubscribeEventMessage(t){const n=t.req,r=this._handler.handleEvent(t.channel,t.eventName,t.arg)(i=>{this._send(new Cl(this._workerId,n,i))});this._pendingEvents.set(n,r)}_handleEventMessage(t){if(!this._pendingEmitters.has(t.req)){console.warn("Got event for unknown req");return}this._pendingEmitters.get(t.req).fire(t.event)}_handleUnsubscribeEventMessage(t){if(!this._pendingEvents.has(t.req)){console.warn("Got unsubscribe for unknown req");return}this._pendingEvents.get(t.req).dispose(),this._pendingEvents.delete(t.req)}_send(t){const n=[];if(t.type===0)for(let r=0;r<t.args.length;r++)t.args[r]instanceof ArrayBuffer&&n.push(t.args[r]);else t.type===1&&t.res instanceof ArrayBuffer&&n.push(t.res);this._handler.sendMessage(t,n)}}function oi(e){return e[0]==="o"&&e[1]==="n"&&Jr(e.charCodeAt(2))}function li(e){return/^onDynamic/.test(e)&&Jr(e.charCodeAt(9))}class Il{constructor(t,n){this._localChannels=new Map,this._remoteChannels=new Map,this._requestHandlerFactory=n,this._requestHandler=null,this._protocol=new Pl({sendMessage:(r,i)=>{t(r,i)},handleMessage:(r,i,s)=>this._handleMessage(r,i,s),handleEvent:(r,i,s)=>this._handleEvent(r,i,s)})}onmessage(t){this._protocol.handleMessage(t)}_handleMessage(t,n,r){if(t===zn&&n===Rl)return this.initialize(r[0],r[1],r[2]);const i=t===zn?this._requestHandler:this._localChannels.get(t);if(!i)return Promise.reject(new Error(`Missing channel ${t} on worker thread`));if(typeof i[n]!="function")return Promise.reject(new Error(`Missing method ${n} on worker thread channel ${t}`));try{return Promise.resolve(i[n].apply(i,r))}catch(s){return Promise.reject(s)}}_handleEvent(t,n,r){const i=t===zn?this._requestHandler:this._localChannels.get(t);if(!i)throw new Error(`Missing channel ${t} on worker thread`);if(li(n)){const s=i[n].call(i,r);if(typeof s!="function")throw new Error(`Missing dynamic event ${n} on request handler.`);return s}if(oi(n)){const s=i[n];if(typeof s!="function")throw new Error(`Missing event ${n} on request handler.`);return s}throw new Error(`Malformed event name ${n}`)}getChannel(t){if(!this._remoteChannels.has(t)){const n=this._protocol.createProxyToRemoteChannel(t);this._remoteChannels.set(t,n)}return this._remoteChannels.get(t)}async initialize(t,n,r){if(this._protocol.setWorkerId(t),this._requestHandlerFactory){this._requestHandler=this._requestHandlerFactory(this);return}return n&&(typeof n.baseUrl<"u"&&delete n.baseUrl,typeof n.paths<"u"&&typeof n.paths.vs<"u"&&delete n.paths.vs,typeof n.trustedTypesPolicy<"u"&&delete n.trustedTypesPolicy,n.catchError=!0,globalThis.require.config(n)),import(`${ii.asBrowserUri(`${r}.js`).toString(!0)}`).then(s=>{if(this._requestHandler=s.create(this),!this._requestHandler)throw new Error("No RequestHandler!")})}}class Je{constructor(t,n,r,i){this.originalStart=t,this.originalLength=n,this.modifiedStart=r,this.modifiedLength=i}getOriginalEnd(){return this.originalStart+this.originalLength}getModifiedEnd(){return this.modifiedStart+this.modifiedLength}}function ui(e,t){return(t<<5)-t+e|0}function Fl(e,t){t=ui(149417,t);for(let n=0,r=e.length;n<r;n++)t=ui(e.charCodeAt(n),t);return t}function Gn(e,t,n=32){const r=n-t,i=~((1<<r)-1);return(e<<t|(i&e)>>>r)>>>0}function ci(e,t=0,n=e.byteLength,r=0){for(let i=0;i<n;i++)e[t+i]=r}function Vl(e,t,n="0"){for(;e.length<t;)e=n+e;return e}function Ct(e,t=32){return e instanceof ArrayBuffer?Array.from(new Uint8Array(e)).map(n=>n.toString(16).padStart(2,"0")).join(""):Vl((e>>>0).toString(16),t/4)}class fi{static{this._bigBlock32=new DataView(new ArrayBuffer(320))}constructor(){this._h0=1732584193,this._h1=4023233417,this._h2=2562383102,this._h3=271733878,this._h4=3285377520,this._buff=new Uint8Array(67),this._buffDV=new DataView(this._buff.buffer),this._buffLen=0,this._totalLen=0,this._leftoverHighSurrogate=0,this._finished=!1}update(t){const n=t.length;if(n===0)return;const r=this._buff;let i=this._buffLen,s=this._leftoverHighSurrogate,a,l;for(s!==0?(a=s,l=-1,s=0):(a=t.charCodeAt(0),l=0);;){let o=a;if(en(a))if(l+1<n){const u=t.charCodeAt(l+1);Un(u)?(l++,o=Xr(a,u)):o=65533}else{s=a;break}else Un(a)&&(o=65533);if(i=this._push(r,i,o),l++,l<n)a=t.charCodeAt(l);else break}this._buffLen=i,this._leftoverHighSurrogate=s}_push(t,n,r){return r<128?t[n++]=r:r<2048?(t[n++]=192|(r&1984)>>>6,t[n++]=128|(r&63)>>>0):r<65536?(t[n++]=224|(r&61440)>>>12,t[n++]=128|(r&4032)>>>6,t[n++]=128|(r&63)>>>0):(t[n++]=240|(r&1835008)>>>18,t[n++]=128|(r&258048)>>>12,t[n++]=128|(r&4032)>>>6,t[n++]=128|(r&63)>>>0),n>=64&&(this._step(),n-=64,this._totalLen+=64,t[0]=t[64],t[1]=t[65],t[2]=t[66]),n}digest(){return this._finished||(this._finished=!0,this._leftoverHighSurrogate&&(this._leftoverHighSurrogate=0,this._buffLen=this._push(this._buff,this._buffLen,65533)),this._totalLen+=this._buffLen,this._wrapUp()),Ct(this._h0)+Ct(this._h1)+Ct(this._h2)+Ct(this._h3)+Ct(this._h4)}_wrapUp(){this._buff[this._buffLen++]=128,ci(this._buff,this._buffLen),this._buffLen>56&&(this._step(),ci(this._buff));const t=8*this._totalLen;this._buffDV.setUint32(56,Math.floor(t/4294967296),!1),this._buffDV.setUint32(60,t%4294967296,!1),this._step()}_step(){const t=fi._bigBlock32,n=this._buffDV;for(let c=0;c<64;c+=4)t.setUint32(c,n.getUint32(c,!1),!1);for(let c=64;c<320;c+=4)t.setUint32(c,Gn(t.getUint32(c-12,!1)^t.getUint32(c-32,!1)^t.getUint32(c-56,!1)^t.getUint32(c-64,!1),1),!1);let r=this._h0,i=this._h1,s=this._h2,a=this._h3,l=this._h4,o,u,h;for(let c=0;c<80;c++)c<20?(o=i&s|~i&a,u=1518500249):c<40?(o=i^s^a,u=1859775393):c<60?(o=i&s|i&a|s&a,u=2400959708):(o=i^s^a,u=3395469782),h=Gn(r,5)+o+l+u+t.getUint32(c*4,!1)&4294967295,l=a,a=s,s=Gn(i,30),i=r,r=h;this._h0=this._h0+r&4294967295,this._h1=this._h1+i&4294967295,this._h2=this._h2+s&4294967295,this._h3=this._h3+a&4294967295,this._h4=this._h4+l&4294967295}}class hi{constructor(t){this.source=t}getElements(){const t=this.source,n=new Int32Array(t.length);for(let r=0,i=t.length;r<i;r++)n[r]=t.charCodeAt(r);return n}}function Dl(e,t,n){return new Xe(new hi(e),new hi(t)).ComputeDiff(n).changes}class ft{static Assert(t,n){if(!t)throw new Error(n)}}class ht{static Copy(t,n,r,i,s){for(let a=0;a<s;a++)r[i+a]=t[n+a]}static Copy2(t,n,r,i,s){for(let a=0;a<s;a++)r[i+a]=t[n+a]}}class mi{constructor(){this.m_changes=[],this.m_originalStart=1073741824,this.m_modifiedStart=1073741824,this.m_originalCount=0,this.m_modifiedCount=0}MarkNextChange(){(this.m_originalCount>0||this.m_modifiedCount>0)&&this.m_changes.push(new Je(this.m_originalStart,this.m_originalCount,this.m_modifiedStart,this.m_modifiedCount)),this.m_originalCount=0,this.m_modifiedCount=0,this.m_originalStart=1073741824,this.m_modifiedStart=1073741824}AddOriginalElement(t,n){this.m_originalStart=Math.min(this.m_originalStart,t),this.m_modifiedStart=Math.min(this.m_modifiedStart,n),this.m_originalCount++}AddModifiedElement(t,n){this.m_originalStart=Math.min(this.m_originalStart,t),this.m_modifiedStart=Math.min(this.m_modifiedStart,n),this.m_modifiedCount++}getChanges(){return(this.m_originalCount>0||this.m_modifiedCount>0)&&this.MarkNextChange(),this.m_changes}getReverseChanges(){return(this.m_originalCount>0||this.m_modifiedCount>0)&&this.MarkNextChange(),this.m_changes.reverse(),this.m_changes}}class Xe{constructor(t,n,r=null){this.ContinueProcessingPredicate=r,this._originalSequence=t,this._modifiedSequence=n;const[i,s,a]=Xe._getElements(t),[l,o,u]=Xe._getElements(n);this._hasStrings=a&&u,this._originalStringElements=i,this._originalElementsOrHash=s,this._modifiedStringElements=l,this._modifiedElementsOrHash=o,this.m_forwardHistory=[],this.m_reverseHistory=[]}static _isStringArray(t){return t.length>0&&typeof t[0]=="string"}static _getElements(t){const n=t.getElements();if(Xe._isStringArray(n)){const r=new Int32Array(n.length);for(let i=0,s=n.length;i<s;i++)r[i]=Fl(n[i],0);return[n,r,!0]}return n instanceof Int32Array?[[],n,!1]:[[],new Int32Array(n),!1]}ElementsAreEqual(t,n){return this._originalElementsOrHash[t]!==this._modifiedElementsOrHash[n]?!1:this._hasStrings?this._originalStringElements[t]===this._modifiedStringElements[n]:!0}ElementsAreStrictEqual(t,n){if(!this.ElementsAreEqual(t,n))return!1;const r=Xe._getStrictElement(this._originalSequence,t),i=Xe._getStrictElement(this._modifiedSequence,n);return r===i}static _getStrictElement(t,n){return typeof t.getStrictElement=="function"?t.getStrictElement(n):null}OriginalElementsAreEqual(t,n){return this._originalElementsOrHash[t]!==this._originalElementsOrHash[n]?!1:this._hasStrings?this._originalStringElements[t]===this._originalStringElements[n]:!0}ModifiedElementsAreEqual(t,n){return this._modifiedElementsOrHash[t]!==this._modifiedElementsOrHash[n]?!1:this._hasStrings?this._modifiedStringElements[t]===this._modifiedStringElements[n]:!0}ComputeDiff(t){return this._ComputeDiff(0,this._originalElementsOrHash.length-1,0,this._modifiedElementsOrHash.length-1,t)}_ComputeDiff(t,n,r,i,s){const a=[!1];let l=this.ComputeDiffRecursive(t,n,r,i,a);return s&&(l=this.PrettifyChanges(l)),{quitEarly:a[0],changes:l}}ComputeDiffRecursive(t,n,r,i,s){for(s[0]=!1;t<=n&&r<=i&&this.ElementsAreEqual(t,r);)t++,r++;for(;n>=t&&i>=r&&this.ElementsAreEqual(n,i);)n--,i--;if(t>n||r>i){let c;return r<=i?(ft.Assert(t===n+1,"originalStart should only be one more than originalEnd"),c=[new Je(t,0,r,i-r+1)]):t<=n?(ft.Assert(r===i+1,"modifiedStart should only be one more than modifiedEnd"),c=[new Je(t,n-t+1,r,0)]):(ft.Assert(t===n+1,"originalStart should only be one more than originalEnd"),ft.Assert(r===i+1,"modifiedStart should only be one more than modifiedEnd"),c=[]),c}const a=[0],l=[0],o=this.ComputeRecursionPoint(t,n,r,i,a,l,s),u=a[0],h=l[0];if(o!==null)return o;if(!s[0]){const c=this.ComputeDiffRecursive(t,u,r,h,s);let m=[];return s[0]?m=[new Je(u+1,n-(u+1)+1,h+1,i-(h+1)+1)]:m=this.ComputeDiffRecursive(u+1,n,h+1,i,s),this.ConcatenateChanges(c,m)}return[new Je(t,n-t+1,r,i-r+1)]}WALKTRACE(t,n,r,i,s,a,l,o,u,h,c,m,d,g,p,y,w,_){let v=null,x=null,b=new mi,L=n,S=r,M=d[0]-y[0]-i,F=-1073741824,O=this.m_forwardHistory.length-1;do{const C=M+t;C===L||C<S&&u[C-1]<u[C+1]?(c=u[C+1],g=c-M-i,c<F&&b.MarkNextChange(),F=c,b.AddModifiedElement(c+1,g),M=C+1-t):(c=u[C-1]+1,g=c-M-i,c<F&&b.MarkNextChange(),F=c-1,b.AddOriginalElement(c,g+1),M=C-1-t),O>=0&&(u=this.m_forwardHistory[O],t=u[0],L=1,S=u.length-1)}while(--O>=-1);if(v=b.getReverseChanges(),_[0]){let C=d[0]+1,N=y[0]+1;if(v!==null&&v.length>0){const k=v[v.length-1];C=Math.max(C,k.getOriginalEnd()),N=Math.max(N,k.getModifiedEnd())}x=[new Je(C,m-C+1,N,p-N+1)]}else{b=new mi,L=a,S=l,M=d[0]-y[0]-o,F=1073741824,O=w?this.m_reverseHistory.length-1:this.m_reverseHistory.length-2;do{const C=M+s;C===L||C<S&&h[C-1]>=h[C+1]?(c=h[C+1]-1,g=c-M-o,c>F&&b.MarkNextChange(),F=c+1,b.AddOriginalElement(c+1,g+1),M=C+1-s):(c=h[C-1],g=c-M-o,c>F&&b.MarkNextChange(),F=c,b.AddModifiedElement(c+1,g+1),M=C-1-s),O>=0&&(h=this.m_reverseHistory[O],s=h[0],L=1,S=h.length-1)}while(--O>=-1);x=b.getChanges()}return this.ConcatenateChanges(v,x)}ComputeRecursionPoint(t,n,r,i,s,a,l){let o=0,u=0,h=0,c=0,m=0,d=0;t--,r--,s[0]=0,a[0]=0,this.m_forwardHistory=[],this.m_reverseHistory=[];const g=n-t+(i-r),p=g+1,y=new Int32Array(p),w=new Int32Array(p),_=i-r,v=n-t,x=t-r,b=n-i,S=(v-_)%2===0;y[_]=t,w[v]=n,l[0]=!1;for(let M=1;M<=g/2+1;M++){let F=0,O=0;h=this.ClipDiagonalBound(_-M,M,_,p),c=this.ClipDiagonalBound(_+M,M,_,p);for(let N=h;N<=c;N+=2){N===h||N<c&&y[N-1]<y[N+1]?o=y[N+1]:o=y[N-1]+1,u=o-(N-_)-x;const k=o;for(;o<n&&u<i&&this.ElementsAreEqual(o+1,u+1);)o++,u++;if(y[N]=o,o+u>F+O&&(F=o,O=u),!S&&Math.abs(N-v)<=M-1&&o>=w[N])return s[0]=o,a[0]=u,k<=w[N]&&M<=1448?this.WALKTRACE(_,h,c,x,v,m,d,b,y,w,o,n,s,u,i,a,S,l):null}const C=(F-t+(O-r)-M)/2;if(this.ContinueProcessingPredicate!==null&&!this.ContinueProcessingPredicate(F,C))return l[0]=!0,s[0]=F,a[0]=O,C>0&&M<=1448?this.WALKTRACE(_,h,c,x,v,m,d,b,y,w,o,n,s,u,i,a,S,l):(t++,r++,[new Je(t,n-t+1,r,i-r+1)]);m=this.ClipDiagonalBound(v-M,M,v,p),d=this.ClipDiagonalBound(v+M,M,v,p);for(let N=m;N<=d;N+=2){N===m||N<d&&w[N-1]>=w[N+1]?o=w[N+1]-1:o=w[N-1],u=o-(N-v)-b;const k=o;for(;o>t&&u>r&&this.ElementsAreEqual(o,u);)o--,u--;if(w[N]=o,S&&Math.abs(N-_)<=M&&o<=y[N])return s[0]=o,a[0]=u,k>=y[N]&&M<=1448?this.WALKTRACE(_,h,c,x,v,m,d,b,y,w,o,n,s,u,i,a,S,l):null}if(M<=1447){let N=new Int32Array(c-h+2);N[0]=_-h+1,ht.Copy2(y,h,N,1,c-h+1),this.m_forwardHistory.push(N),N=new Int32Array(d-m+2),N[0]=v-m+1,ht.Copy2(w,m,N,1,d-m+1),this.m_reverseHistory.push(N)}}return this.WALKTRACE(_,h,c,x,v,m,d,b,y,w,o,n,s,u,i,a,S,l)}PrettifyChanges(t){for(let n=0;n<t.length;n++){const r=t[n],i=n<t.length-1?t[n+1].originalStart:this._originalElementsOrHash.length,s=n<t.length-1?t[n+1].modifiedStart:this._modifiedElementsOrHash.length,a=r.originalLength>0,l=r.modifiedLength>0;for(;r.originalStart+r.originalLength<i&&r.modifiedStart+r.modifiedLength<s&&(!a||this.OriginalElementsAreEqual(r.originalStart,r.originalStart+r.originalLength))&&(!l||this.ModifiedElementsAreEqual(r.modifiedStart,r.modifiedStart+r.modifiedLength));){const u=this.ElementsAreStrictEqual(r.originalStart,r.modifiedStart);if(this.ElementsAreStrictEqual(r.originalStart+r.originalLength,r.modifiedStart+r.modifiedLength)&&!u)break;r.originalStart++,r.modifiedStart++}const o=[null];if(n<t.length-1&&this.ChangesOverlap(t[n],t[n+1],o)){t[n]=o[0],t.splice(n+1,1),n--;continue}}for(let n=t.length-1;n>=0;n--){const r=t[n];let i=0,s=0;if(n>0){const c=t[n-1];i=c.originalStart+c.originalLength,s=c.modifiedStart+c.modifiedLength}const a=r.originalLength>0,l=r.modifiedLength>0;let o=0,u=this._boundaryScore(r.originalStart,r.originalLength,r.modifiedStart,r.modifiedLength);for(let c=1;;c++){const m=r.originalStart-c,d=r.modifiedStart-c;if(m<i||d<s||a&&!this.OriginalElementsAreEqual(m,m+r.originalLength)||l&&!this.ModifiedElementsAreEqual(d,d+r.modifiedLength))break;const p=(m===i&&d===s?5:0)+this._boundaryScore(m,r.originalLength,d,r.modifiedLength);p>u&&(u=p,o=c)}r.originalStart-=o,r.modifiedStart-=o;const h=[null];if(n>0&&this.ChangesOverlap(t[n-1],t[n],h)){t[n-1]=h[0],t.splice(n,1),n++;continue}}if(this._hasStrings)for(let n=1,r=t.length;n<r;n++){const i=t[n-1],s=t[n],a=s.originalStart-i.originalStart-i.originalLength,l=i.originalStart,o=s.originalStart+s.originalLength,u=o-l,h=i.modifiedStart,c=s.modifiedStart+s.modifiedLength,m=c-h;if(a<5&&u<20&&m<20){const d=this._findBetterContiguousSequence(l,u,h,m,a);if(d){const[g,p]=d;(g!==i.originalStart+i.originalLength||p!==i.modifiedStart+i.modifiedLength)&&(i.originalLength=g-i.originalStart,i.modifiedLength=p-i.modifiedStart,s.originalStart=g+a,s.modifiedStart=p+a,s.originalLength=o-s.originalStart,s.modifiedLength=c-s.modifiedStart)}}}return t}_findBetterContiguousSequence(t,n,r,i,s){if(n<s||i<s)return null;const a=t+n-s+1,l=r+i-s+1;let o=0,u=0,h=0;for(let c=t;c<a;c++)for(let m=r;m<l;m++){const d=this._contiguousSequenceScore(c,m,s);d>0&&d>o&&(o=d,u=c,h=m)}return o>0?[u,h]:null}_contiguousSequenceScore(t,n,r){let i=0;for(let s=0;s<r;s++){if(!this.ElementsAreEqual(t+s,n+s))return 0;i+=this._originalStringElements[t+s].length}return i}_OriginalIsBoundary(t){return t<=0||t>=this._originalElementsOrHash.length-1?!0:this._hasStrings&&/^\s*$/.test(this._originalStringElements[t])}_OriginalRegionIsBoundary(t,n){if(this._OriginalIsBoundary(t)||this._OriginalIsBoundary(t-1))return!0;if(n>0){const r=t+n;if(this._OriginalIsBoundary(r-1)||this._OriginalIsBoundary(r))return!0}return!1}_ModifiedIsBoundary(t){return t<=0||t>=this._modifiedElementsOrHash.length-1?!0:this._hasStrings&&/^\s*$/.test(this._modifiedStringElements[t])}_ModifiedRegionIsBoundary(t,n){if(this._ModifiedIsBoundary(t)||this._ModifiedIsBoundary(t-1))return!0;if(n>0){const r=t+n;if(this._ModifiedIsBoundary(r-1)||this._ModifiedIsBoundary(r))return!0}return!1}_boundaryScore(t,n,r,i){const s=this._OriginalRegionIsBoundary(t,n)?1:0,a=this._ModifiedRegionIsBoundary(r,i)?1:0;return s+a}ConcatenateChanges(t,n){const r=[];if(t.length===0||n.length===0)return n.length>0?n:t;if(this.ChangesOverlap(t[t.length-1],n[0],r)){const i=new Array(t.length+n.length-1);return ht.Copy(t,0,i,0,t.length-1),i[t.length-1]=r[0],ht.Copy(n,1,i,t.length,n.length-1),i}else{const i=new Array(t.length+n.length);return ht.Copy(t,0,i,0,t.length),ht.Copy(n,0,i,t.length,n.length),i}}ChangesOverlap(t,n,r){if(ft.Assert(t.originalStart<=n.originalStart,"Left change is not less than or equal to right change"),ft.Assert(t.modifiedStart<=n.modifiedStart,"Left change is not less than or equal to right change"),t.originalStart+t.originalLength>=n.originalStart||t.modifiedStart+t.modifiedLength>=n.modifiedStart){const i=t.originalStart;let s=t.originalLength;const a=t.modifiedStart;let l=t.modifiedLength;return t.originalStart+t.originalLength>=n.originalStart&&(s=n.originalStart+n.originalLength-t.originalStart),t.modifiedStart+t.modifiedLength>=n.modifiedStart&&(l=n.modifiedStart+n.modifiedLength-t.modifiedStart),r[0]=new Je(i,s,a,l),!0}else return r[0]=null,!1}ClipDiagonalBound(t,n,r,i){if(t>=0&&t<i)return t;const s=r,a=i-r-1,l=n%2===0;if(t<0){const o=s%2===0;return l===o?0:1}else{const o=a%2===0;return l===o?i-1:i-2}}}let K=class at{constructor(t,n){this.lineNumber=t,this.column=n}with(t=this.lineNumber,n=this.column){return t===this.lineNumber&&n===this.column?this:new at(t,n)}delta(t=0,n=0){return this.with(this.lineNumber+t,this.column+n)}equals(t){return at.equals(this,t)}static equals(t,n){return!t&&!n?!0:!!t&&!!n&&t.lineNumber===n.lineNumber&&t.column===n.column}isBefore(t){return at.isBefore(this,t)}static isBefore(t,n){return t.lineNumber<n.lineNumber?!0:n.lineNumber<t.lineNumber?!1:t.column<n.column}isBeforeOrEqual(t){return at.isBeforeOrEqual(this,t)}static isBeforeOrEqual(t,n){return t.lineNumber<n.lineNumber?!0:n.lineNumber<t.lineNumber?!1:t.column<=n.column}static compare(t,n){const r=t.lineNumber|0,i=n.lineNumber|0;if(r===i){const s=t.column|0,a=n.column|0;return s-a}return r-i}clone(){return new at(this.lineNumber,this.column)}toString(){return"("+this.lineNumber+","+this.column+")"}static lift(t){return new at(t.lineNumber,t.column)}static isIPosition(t){return t&&typeof t.lineNumber=="number"&&typeof t.column=="number"}toJSON(){return{lineNumber:this.lineNumber,column:this.column}}},z=class ne{constructor(t,n,r,i){t>r||t===r&&n>i?(this.startLineNumber=r,this.startColumn=i,this.endLineNumber=t,this.endColumn=n):(this.startLineNumber=t,this.startColumn=n,this.endLineNumber=r,this.endColumn=i)}isEmpty(){return ne.isEmpty(this)}static isEmpty(t){return t.startLineNumber===t.endLineNumber&&t.startColumn===t.endColumn}containsPosition(t){return ne.containsPosition(this,t)}static containsPosition(t,n){return!(n.lineNumber<t.startLineNumber||n.lineNumber>t.endLineNumber||n.lineNumber===t.startLineNumber&&n.column<t.startColumn||n.lineNumber===t.endLineNumber&&n.column>t.endColumn)}static strictContainsPosition(t,n){return!(n.lineNumber<t.startLineNumber||n.lineNumber>t.endLineNumber||n.lineNumber===t.startLineNumber&&n.column<=t.startColumn||n.lineNumber===t.endLineNumber&&n.column>=t.endColumn)}containsRange(t){return ne.containsRange(this,t)}static containsRange(t,n){return!(n.startLineNumber<t.startLineNumber||n.endLineNumber<t.startLineNumber||n.startLineNumber>t.endLineNumber||n.endLineNumber>t.endLineNumber||n.startLineNumber===t.startLineNumber&&n.startColumn<t.startColumn||n.endLineNumber===t.endLineNumber&&n.endColumn>t.endColumn)}strictContainsRange(t){return ne.strictContainsRange(this,t)}static strictContainsRange(t,n){return!(n.startLineNumber<t.startLineNumber||n.endLineNumber<t.startLineNumber||n.startLineNumber>t.endLineNumber||n.endLineNumber>t.endLineNumber||n.startLineNumber===t.startLineNumber&&n.startColumn<=t.startColumn||n.endLineNumber===t.endLineNumber&&n.endColumn>=t.endColumn)}plusRange(t){return ne.plusRange(this,t)}static plusRange(t,n){let r,i,s,a;return n.startLineNumber<t.startLineNumber?(r=n.startLineNumber,i=n.startColumn):n.startLineNumber===t.startLineNumber?(r=n.startLineNumber,i=Math.min(n.startColumn,t.startColumn)):(r=t.startLineNumber,i=t.startColumn),n.endLineNumber>t.endLineNumber?(s=n.endLineNumber,a=n.endColumn):n.endLineNumber===t.endLineNumber?(s=n.endLineNumber,a=Math.max(n.endColumn,t.endColumn)):(s=t.endLineNumber,a=t.endColumn),new ne(r,i,s,a)}intersectRanges(t){return ne.intersectRanges(this,t)}static intersectRanges(t,n){let r=t.startLineNumber,i=t.startColumn,s=t.endLineNumber,a=t.endColumn;const l=n.startLineNumber,o=n.startColumn,u=n.endLineNumber,h=n.endColumn;return r<l?(r=l,i=o):r===l&&(i=Math.max(i,o)),s>u?(s=u,a=h):s===u&&(a=Math.min(a,h)),r>s||r===s&&i>a?null:new ne(r,i,s,a)}equalsRange(t){return ne.equalsRange(this,t)}static equalsRange(t,n){return!t&&!n?!0:!!t&&!!n&&t.startLineNumber===n.startLineNumber&&t.startColumn===n.startColumn&&t.endLineNumber===n.endLineNumber&&t.endColumn===n.endColumn}getEndPosition(){return ne.getEndPosition(this)}static getEndPosition(t){return new K(t.endLineNumber,t.endColumn)}getStartPosition(){return ne.getStartPosition(this)}static getStartPosition(t){return new K(t.startLineNumber,t.startColumn)}toString(){return"["+this.startLineNumber+","+this.startColumn+" -> "+this.endLineNumber+","+this.endColumn+"]"}setEndPosition(t,n){return new ne(this.startLineNumber,this.startColumn,t,n)}setStartPosition(t,n){return new ne(t,n,this.endLineNumber,this.endColumn)}collapseToStart(){return ne.collapseToStart(this)}static collapseToStart(t){return new ne(t.startLineNumber,t.startColumn,t.startLineNumber,t.startColumn)}collapseToEnd(){return ne.collapseToEnd(this)}static collapseToEnd(t){return new ne(t.endLineNumber,t.endColumn,t.endLineNumber,t.endColumn)}delta(t){return new ne(this.startLineNumber+t,this.startColumn,this.endLineNumber+t,this.endColumn)}static fromPositions(t,n=t){return new ne(t.lineNumber,t.column,n.lineNumber,n.column)}static lift(t){return t?new ne(t.startLineNumber,t.startColumn,t.endLineNumber,t.endColumn):null}static isIRange(t){return t&&typeof t.startLineNumber=="number"&&typeof t.startColumn=="number"&&typeof t.endLineNumber=="number"&&typeof t.endColumn=="number"}static areIntersectingOrTouching(t,n){return!(t.endLineNumber<n.startLineNumber||t.endLineNumber===n.startLineNumber&&t.endColumn<n.startColumn||n.endLineNumber<t.startLineNumber||n.endLineNumber===t.startLineNumber&&n.endColumn<t.startColumn)}static areIntersecting(t,n){return!(t.endLineNumber<n.startLineNumber||t.endLineNumber===n.startLineNumber&&t.endColumn<=n.startColumn||n.endLineNumber<t.startLineNumber||n.endLineNumber===t.startLineNumber&&n.endColumn<=t.startColumn)}static compareRangesUsingStarts(t,n){if(t&&n){const s=t.startLineNumber|0,a=n.startLineNumber|0;if(s===a){const l=t.startColumn|0,o=n.startColumn|0;if(l===o){const u=t.endLineNumber|0,h=n.endLineNumber|0;if(u===h){const c=t.endColumn|0,m=n.endColumn|0;return c-m}return u-h}return l-o}return s-a}return(t?1:0)-(n?1:0)}static compareRangesUsingEnds(t,n){return t.endLineNumber===n.endLineNumber?t.endColumn===n.endColumn?t.startLineNumber===n.startLineNumber?t.startColumn-n.startColumn:t.startLineNumber-n.startLineNumber:t.endColumn-n.endColumn:t.endLineNumber-n.endLineNumber}static spansMultipleLines(t){return t.endLineNumber>t.startLineNumber}toJSON(){return this}};function di(e){return e<0?0:e>255?255:e|0}function mt(e){return e<0?0:e>4294967295?4294967295:e|0}class Jn{constructor(t){const n=di(t);this._defaultValue=n,this._asciiMap=Jn._createAsciiMap(n),this._map=new Map}static _createAsciiMap(t){const n=new Uint8Array(256);return n.fill(t),n}set(t,n){const r=di(n);t>=0&&t<256?this._asciiMap[t]=r:this._map.set(t,r)}get(t){return t>=0&&t<256?this._asciiMap[t]:this._map.get(t)||this._defaultValue}clear(){this._asciiMap.fill(this._defaultValue),this._map.clear()}}class Ol{constructor(t,n,r){const i=new Uint8Array(t*n);for(let s=0,a=t*n;s<a;s++)i[s]=r;this._data=i,this.rows=t,this.cols=n}get(t,n){return this._data[t*this.cols+n]}set(t,n,r){this._data[t*this.cols+n]=r}}class Bl{constructor(t){let n=0,r=0;for(let s=0,a=t.length;s<a;s++){const[l,o,u]=t[s];o>n&&(n=o),l>r&&(r=l),u>r&&(r=u)}n++,r++;const i=new Ol(r,n,0);for(let s=0,a=t.length;s<a;s++){const[l,o,u]=t[s];i.set(l,o,u)}this._states=i,this._maxCharCode=n}nextState(t,n){return n<0||n>=this._maxCharCode?0:this._states.get(t,n)}}let Xn=null;function $l(){return Xn===null&&(Xn=new Bl([[1,104,2],[1,72,2],[1,102,6],[1,70,6],[2,116,3],[2,84,3],[3,116,4],[3,84,4],[4,112,5],[4,80,5],[5,115,9],[5,83,9],[5,58,10],[6,105,7],[6,73,7],[7,108,8],[7,76,8],[8,101,9],[8,69,9],[9,58,10],[10,47,11],[11,47,12]])),Xn}let Tt=null;function Ul(){if(Tt===null){Tt=new Jn(0);const e=` <>'"、。。、,.:;‘〈「『〔([{「」}])〕』」〉’`~…`;for(let n=0;n<e.length;n++)Tt.set(e.charCodeAt(n),1);const t=".,;:";for(let n=0;n<t.length;n++)Tt.set(t.charCodeAt(n),2)}return Tt}class an{static _createLink(t,n,r,i,s){let a=s-1;do{const l=n.charCodeAt(a);if(t.get(l)!==2)break;a--}while(a>i);if(i>0){const l=n.charCodeAt(i-1),o=n.charCodeAt(a);(l===40&&o===41||l===91&&o===93||l===123&&o===125)&&a--}return{range:{startLineNumber:r,startColumn:i+1,endLineNumber:r,endColumn:a+2},url:n.substring(i,a+1)}}static computeLinks(t,n=$l()){const r=Ul(),i=[];for(let s=1,a=t.getLineCount();s<=a;s++){const l=t.getLineContent(s),o=l.length;let u=0,h=0,c=0,m=1,d=!1,g=!1,p=!1,y=!1;for(;u<o;){let w=!1;const _=l.charCodeAt(u);if(m===13){let v;switch(_){case 40:d=!0,v=0;break;case 41:v=d?0:1;break;case 91:p=!0,g=!0,v=0;break;case 93:p=!1,v=g?0:1;break;case 123:y=!0,v=0;break;case 125:v=y?0:1;break;case 39:case 34:case 96:c===_?v=1:c===39||c===34||c===96?v=0:v=1;break;case 42:v=c===42?1:0;break;case 124:v=c===124?1:0;break;case 32:v=p?0:1;break;default:v=r.get(_)}v===1&&(i.push(an._createLink(r,l,s,h,u)),w=!0)}else if(m===12){let v;_===91?(g=!0,v=0):v=r.get(_),v===1?w=!0:m=13}else m=n.nextState(m,_),m===0&&(w=!0);w&&(m=1,d=!1,g=!1,y=!1,h=u+1,c=_),u++}m===13&&i.push(an._createLink(r,l,s,h,o))}return i}}function ql(e){return!e||typeof e.getLineCount!="function"||typeof e.getLineContent!="function"?[]:an.computeLinks(e)}class Qn{constructor(){this._defaultValueSet=[["true","false"],["True","False"],["Private","Public","Friend","ReadOnly","Partial","Protected","WriteOnly"],["public","protected","private"]]}static{this.INSTANCE=new Qn}navigateValueSet(t,n,r,i,s){if(t&&n){const a=this.doNavigateValueSet(n,s);if(a)return{range:t,value:a}}if(r&&i){const a=this.doNavigateValueSet(i,s);if(a)return{range:r,value:a}}return null}doNavigateValueSet(t,n){const r=this.numberReplace(t,n);return r!==null?r:this.textReplace(t,n)}numberReplace(t,n){const r=Math.pow(10,t.length-(t.lastIndexOf(".")+1));let i=Number(t);const s=parseFloat(t);return!isNaN(i)&&!isNaN(s)&&i===s?i===0&&!n?null:(i=Math.floor(i*r),i+=n?r:-r,String(i/r)):null}textReplace(t,n){return this.valueSetsReplace(this._defaultValueSet,t,n)}valueSetsReplace(t,n,r){let i=null;for(let s=0,a=t.length;i===null&&s<a;s++)i=this.valueSetReplace(t[s],n,r);return i}valueSetReplace(t,n,r){let i=t.indexOf(n);return i>=0?(i+=r?1:-1,i<0?i=t.length-1:i%=t.length,t[i]):null}}const gi=Object.freeze(function(e,t){const n=setTimeout(e.bind(t),0);return{dispose(){clearTimeout(n)}}});var on;(function(e){function t(n){return n===e.None||n===e.Cancelled||n instanceof ln?!0:!n||typeof n!="object"?!1:typeof n.isCancellationRequested=="boolean"&&typeof n.onCancellationRequested=="function"}e.isCancellationToken=t,e.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:Yt.None}),e.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:gi})})(on||(on={}));class ln{constructor(){this._isCancelled=!1,this._emitter=null}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?gi:(this._emitter||(this._emitter=new we),this._emitter.event)}dispose(){this._emitter&&(this._emitter.dispose(),this._emitter=null)}}class jl{constructor(t){this._token=void 0,this._parentListener=void 0,this._parentListener=t&&t.onCancellationRequested(this.cancel,this)}get token(){return this._token||(this._token=new ln),this._token}cancel(){this._token?this._token instanceof ln&&this._token.cancel():this._token=on.Cancelled}dispose(t=!1){t&&this.cancel(),this._parentListener?.dispose(),this._token?this._token instanceof ln&&this._token.dispose():this._token=on.None}}class Yn{constructor(){this._keyCodeToStr=[],this._strToKeyCode=Object.create(null)}define(t,n){this._keyCodeToStr[t]=n,this._strToKeyCode[n.toLowerCase()]=t}keyCodeToStr(t){return this._keyCodeToStr[t]}strToKeyCode(t){return this._strToKeyCode[t.toLowerCase()]||0}}const un=new Yn,Zn=new Yn,Kn=new Yn,Wl=new Array(230),Hl=Object.create(null),zl=Object.create(null);(function(){const t=[[1,0,"None",0,"unknown",0,"VK_UNKNOWN","",""],[1,1,"Hyper",0,"",0,"","",""],[1,2,"Super",0,"",0,"","",""],[1,3,"Fn",0,"",0,"","",""],[1,4,"FnLock",0,"",0,"","",""],[1,5,"Suspend",0,"",0,"","",""],[1,6,"Resume",0,"",0,"","",""],[1,7,"Turbo",0,"",0,"","",""],[1,8,"Sleep",0,"",0,"VK_SLEEP","",""],[1,9,"WakeUp",0,"",0,"","",""],[0,10,"KeyA",31,"A",65,"VK_A","",""],[0,11,"KeyB",32,"B",66,"VK_B","",""],[0,12,"KeyC",33,"C",67,"VK_C","",""],[0,13,"KeyD",34,"D",68,"VK_D","",""],[0,14,"KeyE",35,"E",69,"VK_E","",""],[0,15,"KeyF",36,"F",70,"VK_F","",""],[0,16,"KeyG",37,"G",71,"VK_G","",""],[0,17,"KeyH",38,"H",72,"VK_H","",""],[0,18,"KeyI",39,"I",73,"VK_I","",""],[0,19,"KeyJ",40,"J",74,"VK_J","",""],[0,20,"KeyK",41,"K",75,"VK_K","",""],[0,21,"KeyL",42,"L",76,"VK_L","",""],[0,22,"KeyM",43,"M",77,"VK_M","",""],[0,23,"KeyN",44,"N",78,"VK_N","",""],[0,24,"KeyO",45,"O",79,"VK_O","",""],[0,25,"KeyP",46,"P",80,"VK_P","",""],[0,26,"KeyQ",47,"Q",81,"VK_Q","",""],[0,27,"KeyR",48,"R",82,"VK_R","",""],[0,28,"KeyS",49,"S",83,"VK_S","",""],[0,29,"KeyT",50,"T",84,"VK_T","",""],[0,30,"KeyU",51,"U",85,"VK_U","",""],[0,31,"KeyV",52,"V",86,"VK_V","",""],[0,32,"KeyW",53,"W",87,"VK_W","",""],[0,33,"KeyX",54,"X",88,"VK_X","",""],[0,34,"KeyY",55,"Y",89,"VK_Y","",""],[0,35,"KeyZ",56,"Z",90,"VK_Z","",""],[0,36,"Digit1",22,"1",49,"VK_1","",""],[0,37,"Digit2",23,"2",50,"VK_2","",""],[0,38,"Digit3",24,"3",51,"VK_3","",""],[0,39,"Digit4",25,"4",52,"VK_4","",""],[0,40,"Digit5",26,"5",53,"VK_5","",""],[0,41,"Digit6",27,"6",54,"VK_6","",""],[0,42,"Digit7",28,"7",55,"VK_7","",""],[0,43,"Digit8",29,"8",56,"VK_8","",""],[0,44,"Digit9",30,"9",57,"VK_9","",""],[0,45,"Digit0",21,"0",48,"VK_0","",""],[1,46,"Enter",3,"Enter",13,"VK_RETURN","",""],[1,47,"Escape",9,"Escape",27,"VK_ESCAPE","",""],[1,48,"Backspace",1,"Backspace",8,"VK_BACK","",""],[1,49,"Tab",2,"Tab",9,"VK_TAB","",""],[1,50,"Space",10,"Space",32,"VK_SPACE","",""],[0,51,"Minus",88,"-",189,"VK_OEM_MINUS","-","OEM_MINUS"],[0,52,"Equal",86,"=",187,"VK_OEM_PLUS","=","OEM_PLUS"],[0,53,"BracketLeft",92,"[",219,"VK_OEM_4","[","OEM_4"],[0,54,"BracketRight",94,"]",221,"VK_OEM_6","]","OEM_6"],[0,55,"Backslash",93,"\\",220,"VK_OEM_5","\\","OEM_5"],[0,56,"IntlHash",0,"",0,"","",""],[0,57,"Semicolon",85,";",186,"VK_OEM_1",";","OEM_1"],[0,58,"Quote",95,"'",222,"VK_OEM_7","'","OEM_7"],[0,59,"Backquote",91,"`",192,"VK_OEM_3","`","OEM_3"],[0,60,"Comma",87,",",188,"VK_OEM_COMMA",",","OEM_COMMA"],[0,61,"Period",89,".",190,"VK_OEM_PERIOD",".","OEM_PERIOD"],[0,62,"Slash",90,"/",191,"VK_OEM_2","/","OEM_2"],[1,63,"CapsLock",8,"CapsLock",20,"VK_CAPITAL","",""],[1,64,"F1",59,"F1",112,"VK_F1","",""],[1,65,"F2",60,"F2",113,"VK_F2","",""],[1,66,"F3",61,"F3",114,"VK_F3","",""],[1,67,"F4",62,"F4",115,"VK_F4","",""],[1,68,"F5",63,"F5",116,"VK_F5","",""],[1,69,"F6",64,"F6",117,"VK_F6","",""],[1,70,"F7",65,"F7",118,"VK_F7","",""],[1,71,"F8",66,"F8",119,"VK_F8","",""],[1,72,"F9",67,"F9",120,"VK_F9","",""],[1,73,"F10",68,"F10",121,"VK_F10","",""],[1,74,"F11",69,"F11",122,"VK_F11","",""],[1,75,"F12",70,"F12",123,"VK_F12","",""],[1,76,"PrintScreen",0,"",0,"","",""],[1,77,"ScrollLock",84,"ScrollLock",145,"VK_SCROLL","",""],[1,78,"Pause",7,"PauseBreak",19,"VK_PAUSE","",""],[1,79,"Insert",19,"Insert",45,"VK_INSERT","",""],[1,80,"Home",14,"Home",36,"VK_HOME","",""],[1,81,"PageUp",11,"PageUp",33,"VK_PRIOR","",""],[1,82,"Delete",20,"Delete",46,"VK_DELETE","",""],[1,83,"End",13,"End",35,"VK_END","",""],[1,84,"PageDown",12,"PageDown",34,"VK_NEXT","",""],[1,85,"ArrowRight",17,"RightArrow",39,"VK_RIGHT","Right",""],[1,86,"ArrowLeft",15,"LeftArrow",37,"VK_LEFT","Left",""],[1,87,"ArrowDown",18,"DownArrow",40,"VK_DOWN","Down",""],[1,88,"ArrowUp",16,"UpArrow",38,"VK_UP","Up",""],[1,89,"NumLock",83,"NumLock",144,"VK_NUMLOCK","",""],[1,90,"NumpadDivide",113,"NumPad_Divide",111,"VK_DIVIDE","",""],[1,91,"NumpadMultiply",108,"NumPad_Multiply",106,"VK_MULTIPLY","",""],[1,92,"NumpadSubtract",111,"NumPad_Subtract",109,"VK_SUBTRACT","",""],[1,93,"NumpadAdd",109,"NumPad_Add",107,"VK_ADD","",""],[1,94,"NumpadEnter",3,"",0,"","",""],[1,95,"Numpad1",99,"NumPad1",97,"VK_NUMPAD1","",""],[1,96,"Numpad2",100,"NumPad2",98,"VK_NUMPAD2","",""],[1,97,"Numpad3",101,"NumPad3",99,"VK_NUMPAD3","",""],[1,98,"Numpad4",102,"NumPad4",100,"VK_NUMPAD4","",""],[1,99,"Numpad5",103,"NumPad5",101,"VK_NUMPAD5","",""],[1,100,"Numpad6",104,"NumPad6",102,"VK_NUMPAD6","",""],[1,101,"Numpad7",105,"NumPad7",103,"VK_NUMPAD7","",""],[1,102,"Numpad8",106,"NumPad8",104,"VK_NUMPAD8","",""],[1,103,"Numpad9",107,"NumPad9",105,"VK_NUMPAD9","",""],[1,104,"Numpad0",98,"NumPad0",96,"VK_NUMPAD0","",""],[1,105,"NumpadDecimal",112,"NumPad_Decimal",110,"VK_DECIMAL","",""],[0,106,"IntlBackslash",97,"OEM_102",226,"VK_OEM_102","",""],[1,107,"ContextMenu",58,"ContextMenu",93,"","",""],[1,108,"Power",0,"",0,"","",""],[1,109,"NumpadEqual",0,"",0,"","",""],[1,110,"F13",71,"F13",124,"VK_F13","",""],[1,111,"F14",72,"F14",125,"VK_F14","",""],[1,112,"F15",73,"F15",126,"VK_F15","",""],[1,113,"F16",74,"F16",127,"VK_F16","",""],[1,114,"F17",75,"F17",128,"VK_F17","",""],[1,115,"F18",76,"F18",129,"VK_F18","",""],[1,116,"F19",77,"F19",130,"VK_F19","",""],[1,117,"F20",78,"F20",131,"VK_F20","",""],[1,118,"F21",79,"F21",132,"VK_F21","",""],[1,119,"F22",80,"F22",133,"VK_F22","",""],[1,120,"F23",81,"F23",134,"VK_F23","",""],[1,121,"F24",82,"F24",135,"VK_F24","",""],[1,122,"Open",0,"",0,"","",""],[1,123,"Help",0,"",0,"","",""],[1,124,"Select",0,"",0,"","",""],[1,125,"Again",0,"",0,"","",""],[1,126,"Undo",0,"",0,"","",""],[1,127,"Cut",0,"",0,"","",""],[1,128,"Copy",0,"",0,"","",""],[1,129,"Paste",0,"",0,"","",""],[1,130,"Find",0,"",0,"","",""],[1,131,"AudioVolumeMute",117,"AudioVolumeMute",173,"VK_VOLUME_MUTE","",""],[1,132,"AudioVolumeUp",118,"AudioVolumeUp",175,"VK_VOLUME_UP","",""],[1,133,"AudioVolumeDown",119,"AudioVolumeDown",174,"VK_VOLUME_DOWN","",""],[1,134,"NumpadComma",110,"NumPad_Separator",108,"VK_SEPARATOR","",""],[0,135,"IntlRo",115,"ABNT_C1",193,"VK_ABNT_C1","",""],[1,136,"KanaMode",0,"",0,"","",""],[0,137,"IntlYen",0,"",0,"","",""],[1,138,"Convert",0,"",0,"","",""],[1,139,"NonConvert",0,"",0,"","",""],[1,140,"Lang1",0,"",0,"","",""],[1,141,"Lang2",0,"",0,"","",""],[1,142,"Lang3",0,"",0,"","",""],[1,143,"Lang4",0,"",0,"","",""],[1,144,"Lang5",0,"",0,"","",""],[1,145,"Abort",0,"",0,"","",""],[1,146,"Props",0,"",0,"","",""],[1,147,"NumpadParenLeft",0,"",0,"","",""],[1,148,"NumpadParenRight",0,"",0,"","",""],[1,149,"NumpadBackspace",0,"",0,"","",""],[1,150,"NumpadMemoryStore",0,"",0,"","",""],[1,151,"NumpadMemoryRecall",0,"",0,"","",""],[1,152,"NumpadMemoryClear",0,"",0,"","",""],[1,153,"NumpadMemoryAdd",0,"",0,"","",""],[1,154,"NumpadMemorySubtract",0,"",0,"","",""],[1,155,"NumpadClear",131,"Clear",12,"VK_CLEAR","",""],[1,156,"NumpadClearEntry",0,"",0,"","",""],[1,0,"",5,"Ctrl",17,"VK_CONTROL","",""],[1,0,"",4,"Shift",16,"VK_SHIFT","",""],[1,0,"",6,"Alt",18,"VK_MENU","",""],[1,0,"",57,"Meta",91,"VK_COMMAND","",""],[1,157,"ControlLeft",5,"",0,"VK_LCONTROL","",""],[1,158,"ShiftLeft",4,"",0,"VK_LSHIFT","",""],[1,159,"AltLeft",6,"",0,"VK_LMENU","",""],[1,160,"MetaLeft",57,"",0,"VK_LWIN","",""],[1,161,"ControlRight",5,"",0,"VK_RCONTROL","",""],[1,162,"ShiftRight",4,"",0,"VK_RSHIFT","",""],[1,163,"AltRight",6,"",0,"VK_RMENU","",""],[1,164,"MetaRight",57,"",0,"VK_RWIN","",""],[1,165,"BrightnessUp",0,"",0,"","",""],[1,166,"BrightnessDown",0,"",0,"","",""],[1,167,"MediaPlay",0,"",0,"","",""],[1,168,"MediaRecord",0,"",0,"","",""],[1,169,"MediaFastForward",0,"",0,"","",""],[1,170,"MediaRewind",0,"",0,"","",""],[1,171,"MediaTrackNext",124,"MediaTrackNext",176,"VK_MEDIA_NEXT_TRACK","",""],[1,172,"MediaTrackPrevious",125,"MediaTrackPrevious",177,"VK_MEDIA_PREV_TRACK","",""],[1,173,"MediaStop",126,"MediaStop",178,"VK_MEDIA_STOP","",""],[1,174,"Eject",0,"",0,"","",""],[1,175,"MediaPlayPause",127,"MediaPlayPause",179,"VK_MEDIA_PLAY_PAUSE","",""],[1,176,"MediaSelect",128,"LaunchMediaPlayer",181,"VK_MEDIA_LAUNCH_MEDIA_SELECT","",""],[1,177,"LaunchMail",129,"LaunchMail",180,"VK_MEDIA_LAUNCH_MAIL","",""],[1,178,"LaunchApp2",130,"LaunchApp2",183,"VK_MEDIA_LAUNCH_APP2","",""],[1,179,"LaunchApp1",0,"",0,"VK_MEDIA_LAUNCH_APP1","",""],[1,180,"SelectTask",0,"",0,"","",""],[1,181,"LaunchScreenSaver",0,"",0,"","",""],[1,182,"BrowserSearch",120,"BrowserSearch",170,"VK_BROWSER_SEARCH","",""],[1,183,"BrowserHome",121,"BrowserHome",172,"VK_BROWSER_HOME","",""],[1,184,"BrowserBack",122,"BrowserBack",166,"VK_BROWSER_BACK","",""],[1,185,"BrowserForward",123,"BrowserForward",167,"VK_BROWSER_FORWARD","",""],[1,186,"BrowserStop",0,"",0,"VK_BROWSER_STOP","",""],[1,187,"BrowserRefresh",0,"",0,"VK_BROWSER_REFRESH","",""],[1,188,"BrowserFavorites",0,"",0,"VK_BROWSER_FAVORITES","",""],[1,189,"ZoomToggle",0,"",0,"","",""],[1,190,"MailReply",0,"",0,"","",""],[1,191,"MailForward",0,"",0,"","",""],[1,192,"MailSend",0,"",0,"","",""],[1,0,"",114,"KeyInComposition",229,"","",""],[1,0,"",116,"ABNT_C2",194,"VK_ABNT_C2","",""],[1,0,"",96,"OEM_8",223,"VK_OEM_8","",""],[1,0,"",0,"",0,"VK_KANA","",""],[1,0,"",0,"",0,"VK_HANGUL","",""],[1,0,"",0,"",0,"VK_JUNJA","",""],[1,0,"",0,"",0,"VK_FINAL","",""],[1,0,"",0,"",0,"VK_HANJA","",""],[1,0,"",0,"",0,"VK_KANJI","",""],[1,0,"",0,"",0,"VK_CONVERT","",""],[1,0,"",0,"",0,"VK_NONCONVERT","",""],[1,0,"",0,"",0,"VK_ACCEPT","",""],[1,0,"",0,"",0,"VK_MODECHANGE","",""],[1,0,"",0,"",0,"VK_SELECT","",""],[1,0,"",0,"",0,"VK_PRINT","",""],[1,0,"",0,"",0,"VK_EXECUTE","",""],[1,0,"",0,"",0,"VK_SNAPSHOT","",""],[1,0,"",0,"",0,"VK_HELP","",""],[1,0,"",0,"",0,"VK_APPS","",""],[1,0,"",0,"",0,"VK_PROCESSKEY","",""],[1,0,"",0,"",0,"VK_PACKET","",""],[1,0,"",0,"",0,"VK_DBE_SBCSCHAR","",""],[1,0,"",0,"",0,"VK_DBE_DBCSCHAR","",""],[1,0,"",0,"",0,"VK_ATTN","",""],[1,0,"",0,"",0,"VK_CRSEL","",""],[1,0,"",0,"",0,"VK_EXSEL","",""],[1,0,"",0,"",0,"VK_EREOF","",""],[1,0,"",0,"",0,"VK_PLAY","",""],[1,0,"",0,"",0,"VK_ZOOM","",""],[1,0,"",0,"",0,"VK_NONAME","",""],[1,0,"",0,"",0,"VK_PA1","",""],[1,0,"",0,"",0,"VK_OEM_CLEAR","",""]],n=[],r=[];for(const i of t){const[s,a,l,o,u,h,c,m,d]=i;if(r[a]||(r[a]=!0,Hl[l]=a,zl[l.toLowerCase()]=a),!n[o]){if(n[o]=!0,!u)throw new Error(`String representation missing for key code ${o} around scan code ${l}`);un.define(o,u),Zn.define(o,m||u),Kn.define(o,d||m||u)}h&&(Wl[h]=o)}})();var pi;(function(e){function t(l){return un.keyCodeToStr(l)}e.toString=t;function n(l){return un.strToKeyCode(l)}e.fromString=n;function r(l){return Zn.keyCodeToStr(l)}e.toUserSettingsUS=r;function i(l){return Kn.keyCodeToStr(l)}e.toUserSettingsGeneral=i;function s(l){return Zn.strToKeyCode(l)||Kn.strToKeyCode(l)}e.fromUserSettings=s;function a(l){if(l>=98&&l<=113)return null;switch(l){case 16:return"Up";case 18:return"Down";case 15:return"Left";case 17:return"Right"}return un.keyCodeToStr(l)}e.toElectronAccelerator=a})(pi||(pi={}));function Gl(e,t){const n=(t&65535)<<16>>>0;return(e|n)>>>0}class pe extends z{constructor(t,n,r,i){super(t,n,r,i),this.selectionStartLineNumber=t,this.selectionStartColumn=n,this.positionLineNumber=r,this.positionColumn=i}toString(){return"["+this.selectionStartLineNumber+","+this.selectionStartColumn+" -> "+this.positionLineNumber+","+this.positionColumn+"]"}equalsSelection(t){return pe.selectionsEqual(this,t)}static selectionsEqual(t,n){return t.selectionStartLineNumber===n.selectionStartLineNumber&&t.selectionStartColumn===n.selectionStartColumn&&t.positionLineNumber===n.positionLineNumber&&t.positionColumn===n.positionColumn}getDirection(){return this.selectionStartLineNumber===this.startLineNumber&&this.selectionStartColumn===this.startColumn?0:1}setEndPosition(t,n){return this.getDirection()===0?new pe(this.startLineNumber,this.startColumn,t,n):new pe(t,n,this.startLineNumber,this.startColumn)}getPosition(){return new K(this.positionLineNumber,this.positionColumn)}getSelectionStart(){return new K(this.selectionStartLineNumber,this.selectionStartColumn)}setStartPosition(t,n){return this.getDirection()===0?new pe(t,n,this.endLineNumber,this.endColumn):new pe(this.endLineNumber,this.endColumn,t,n)}static fromPositions(t,n=t){return new pe(t.lineNumber,t.column,n.lineNumber,n.column)}static fromRange(t,n){return n===0?new pe(t.startLineNumber,t.startColumn,t.endLineNumber,t.endColumn):new pe(t.endLineNumber,t.endColumn,t.startLineNumber,t.startColumn)}static liftSelection(t){return new pe(t.selectionStartLineNumber,t.selectionStartColumn,t.positionLineNumber,t.positionColumn)}static selectionsArrEqual(t,n){if(t&&!n||!t&&n)return!1;if(!t&&!n)return!0;if(t.length!==n.length)return!1;for(let r=0,i=t.length;r<i;r++)if(!this.selectionsEqual(t[r],n[r]))return!1;return!0}static isISelection(t){return t&&typeof t.selectionStartLineNumber=="number"&&typeof t.selectionStartColumn=="number"&&typeof t.positionLineNumber=="number"&&typeof t.positionColumn=="number"}static createWithDirection(t,n,r,i,s){return s===0?new pe(t,n,r,i):new pe(r,i,t,n)}}function Jl(e){return typeof e=="string"}const bi=Object.create(null);function f(e,t){if(Jl(t)){const n=bi[t];if(n===void 0)throw new Error(`${e} references an unknown codicon: ${t}`);t=n}return bi[e]=t,{id:e}}const Xl={add:f("add",6e4),plus:f("plus",6e4),gistNew:f("gist-new",6e4),repoCreate:f("repo-create",6e4),lightbulb:f("lightbulb",60001),lightBulb:f("light-bulb",60001),repo:f("repo",60002),repoDelete:f("repo-delete",60002),gistFork:f("gist-fork",60003),repoForked:f("repo-forked",60003),gitPullRequest:f("git-pull-request",60004),gitPullRequestAbandoned:f("git-pull-request-abandoned",60004),recordKeys:f("record-keys",60005),keyboard:f("keyboard",60005),tag:f("tag",60006),gitPullRequestLabel:f("git-pull-request-label",60006),tagAdd:f("tag-add",60006),tagRemove:f("tag-remove",60006),person:f("person",60007),personFollow:f("person-follow",60007),personOutline:f("person-outline",60007),personFilled:f("person-filled",60007),gitBranch:f("git-branch",60008),gitBranchCreate:f("git-branch-create",60008),gitBranchDelete:f("git-branch-delete",60008),sourceControl:f("source-control",60008),mirror:f("mirror",60009),mirrorPublic:f("mirror-public",60009),star:f("star",60010),starAdd:f("star-add",60010),starDelete:f("star-delete",60010),starEmpty:f("star-empty",60010),comment:f("comment",60011),commentAdd:f("comment-add",60011),alert:f("alert",60012),warning:f("warning",60012),search:f("search",60013),searchSave:f("search-save",60013),logOut:f("log-out",60014),signOut:f("sign-out",60014),logIn:f("log-in",60015),signIn:f("sign-in",60015),eye:f("eye",60016),eyeUnwatch:f("eye-unwatch",60016),eyeWatch:f("eye-watch",60016),circleFilled:f("circle-filled",60017),primitiveDot:f("primitive-dot",60017),closeDirty:f("close-dirty",60017),debugBreakpoint:f("debug-breakpoint",60017),debugBreakpointDisabled:f("debug-breakpoint-disabled",60017),debugHint:f("debug-hint",60017),terminalDecorationSuccess:f("terminal-decoration-success",60017),primitiveSquare:f("primitive-square",60018),edit:f("edit",60019),pencil:f("pencil",60019),info:f("info",60020),issueOpened:f("issue-opened",60020),gistPrivate:f("gist-private",60021),gitForkPrivate:f("git-fork-private",60021),lock:f("lock",60021),mirrorPrivate:f("mirror-private",60021),close:f("close",60022),removeClose:f("remove-close",60022),x:f("x",60022),repoSync:f("repo-sync",60023),sync:f("sync",60023),clone:f("clone",60024),desktopDownload:f("desktop-download",60024),beaker:f("beaker",60025),microscope:f("microscope",60025),vm:f("vm",60026),deviceDesktop:f("device-desktop",60026),file:f("file",60027),fileText:f("file-text",60027),more:f("more",60028),ellipsis:f("ellipsis",60028),kebabHorizontal:f("kebab-horizontal",60028),mailReply:f("mail-reply",60029),reply:f("reply",60029),organization:f("organization",60030),organizationFilled:f("organization-filled",60030),organizationOutline:f("organization-outline",60030),newFile:f("new-file",60031),fileAdd:f("file-add",60031),newFolder:f("new-folder",60032),fileDirectoryCreate:f("file-directory-create",60032),trash:f("trash",60033),trashcan:f("trashcan",60033),history:f("history",60034),clock:f("clock",60034),folder:f("folder",60035),fileDirectory:f("file-directory",60035),symbolFolder:f("symbol-folder",60035),logoGithub:f("logo-github",60036),markGithub:f("mark-github",60036),github:f("github",60036),terminal:f("terminal",60037),console:f("console",60037),repl:f("repl",60037),zap:f("zap",60038),symbolEvent:f("symbol-event",60038),error:f("error",60039),stop:f("stop",60039),variable:f("variable",60040),symbolVariable:f("symbol-variable",60040),array:f("array",60042),symbolArray:f("symbol-array",60042),symbolModule:f("symbol-module",60043),symbolPackage:f("symbol-package",60043),symbolNamespace:f("symbol-namespace",60043),symbolObject:f("symbol-object",60043),symbolMethod:f("symbol-method",60044),symbolFunction:f("symbol-function",60044),symbolConstructor:f("symbol-constructor",60044),symbolBoolean:f("symbol-boolean",60047),symbolNull:f("symbol-null",60047),symbolNumeric:f("symbol-numeric",60048),symbolNumber:f("symbol-number",60048),symbolStructure:f("symbol-structure",60049),symbolStruct:f("symbol-struct",60049),symbolParameter:f("symbol-parameter",60050),symbolTypeParameter:f("symbol-type-parameter",60050),symbolKey:f("symbol-key",60051),symbolText:f("symbol-text",60051),symbolReference:f("symbol-reference",60052),goToFile:f("go-to-file",60052),symbolEnum:f("symbol-enum",60053),symbolValue:f("symbol-value",60053),symbolRuler:f("symbol-ruler",60054),symbolUnit:f("symbol-unit",60054),activateBreakpoints:f("activate-breakpoints",60055),archive:f("archive",60056),arrowBoth:f("arrow-both",60057),arrowDown:f("arrow-down",60058),arrowLeft:f("arrow-left",60059),arrowRight:f("arrow-right",60060),arrowSmallDown:f("arrow-small-down",60061),arrowSmallLeft:f("arrow-small-left",60062),arrowSmallRight:f("arrow-small-right",60063),arrowSmallUp:f("arrow-small-up",60064),arrowUp:f("arrow-up",60065),bell:f("bell",60066),bold:f("bold",60067),book:f("book",60068),bookmark:f("bookmark",60069),debugBreakpointConditionalUnverified:f("debug-breakpoint-conditional-unverified",60070),debugBreakpointConditional:f("debug-breakpoint-conditional",60071),debugBreakpointConditionalDisabled:f("debug-breakpoint-conditional-disabled",60071),debugBreakpointDataUnverified:f("debug-breakpoint-data-unverified",60072),debugBreakpointData:f("debug-breakpoint-data",60073),debugBreakpointDataDisabled:f("debug-breakpoint-data-disabled",60073),debugBreakpointLogUnverified:f("debug-breakpoint-log-unverified",60074),debugBreakpointLog:f("debug-breakpoint-log",60075),debugBreakpointLogDisabled:f("debug-breakpoint-log-disabled",60075),briefcase:f("briefcase",60076),broadcast:f("broadcast",60077),browser:f("browser",60078),bug:f("bug",60079),calendar:f("calendar",60080),caseSensitive:f("case-sensitive",60081),check:f("check",60082),checklist:f("checklist",60083),chevronDown:f("chevron-down",60084),chevronLeft:f("chevron-left",60085),chevronRight:f("chevron-right",60086),chevronUp:f("chevron-up",60087),chromeClose:f("chrome-close",60088),chromeMaximize:f("chrome-maximize",60089),chromeMinimize:f("chrome-minimize",60090),chromeRestore:f("chrome-restore",60091),circleOutline:f("circle-outline",60092),circle:f("circle",60092),debugBreakpointUnverified:f("debug-breakpoint-unverified",60092),terminalDecorationIncomplete:f("terminal-decoration-incomplete",60092),circleSlash:f("circle-slash",60093),circuitBoard:f("circuit-board",60094),clearAll:f("clear-all",60095),clippy:f("clippy",60096),closeAll:f("close-all",60097),cloudDownload:f("cloud-download",60098),cloudUpload:f("cloud-upload",60099),code:f("code",60100),collapseAll:f("collapse-all",60101),colorMode:f("color-mode",60102),commentDiscussion:f("comment-discussion",60103),creditCard:f("credit-card",60105),dash:f("dash",60108),dashboard:f("dashboard",60109),database:f("database",60110),debugContinue:f("debug-continue",60111),debugDisconnect:f("debug-disconnect",60112),debugPause:f("debug-pause",60113),debugRestart:f("debug-restart",60114),debugStart:f("debug-start",60115),debugStepInto:f("debug-step-into",60116),debugStepOut:f("debug-step-out",60117),debugStepOver:f("debug-step-over",60118),debugStop:f("debug-stop",60119),debug:f("debug",60120),deviceCameraVideo:f("device-camera-video",60121),deviceCamera:f("device-camera",60122),deviceMobile:f("device-mobile",60123),diffAdded:f("diff-added",60124),diffIgnored:f("diff-ignored",60125),diffModified:f("diff-modified",60126),diffRemoved:f("diff-removed",60127),diffRenamed:f("diff-renamed",60128),diff:f("diff",60129),diffSidebyside:f("diff-sidebyside",60129),discard:f("discard",60130),editorLayout:f("editor-layout",60131),emptyWindow:f("empty-window",60132),exclude:f("exclude",60133),extensions:f("extensions",60134),eyeClosed:f("eye-closed",60135),fileBinary:f("file-binary",60136),fileCode:f("file-code",60137),fileMedia:f("file-media",60138),filePdf:f("file-pdf",60139),fileSubmodule:f("file-submodule",60140),fileSymlinkDirectory:f("file-symlink-directory",60141),fileSymlinkFile:f("file-symlink-file",60142),fileZip:f("file-zip",60143),files:f("files",60144),filter:f("filter",60145),flame:f("flame",60146),foldDown:f("fold-down",60147),foldUp:f("fold-up",60148),fold:f("fold",60149),folderActive:f("folder-active",60150),folderOpened:f("folder-opened",60151),gear:f("gear",60152),gift:f("gift",60153),gistSecret:f("gist-secret",60154),gist:f("gist",60155),gitCommit:f("git-commit",60156),gitCompare:f("git-compare",60157),compareChanges:f("compare-changes",60157),gitMerge:f("git-merge",60158),githubAction:f("github-action",60159),githubAlt:f("github-alt",60160),globe:f("globe",60161),grabber:f("grabber",60162),graph:f("graph",60163),gripper:f("gripper",60164),heart:f("heart",60165),home:f("home",60166),horizontalRule:f("horizontal-rule",60167),hubot:f("hubot",60168),inbox:f("inbox",60169),issueReopened:f("issue-reopened",60171),issues:f("issues",60172),italic:f("italic",60173),jersey:f("jersey",60174),json:f("json",60175),kebabVertical:f("kebab-vertical",60176),key:f("key",60177),law:f("law",60178),lightbulbAutofix:f("lightbulb-autofix",60179),linkExternal:f("link-external",60180),link:f("link",60181),listOrdered:f("list-ordered",60182),listUnordered:f("list-unordered",60183),liveShare:f("live-share",60184),loading:f("loading",60185),location:f("location",60186),mailRead:f("mail-read",60187),mail:f("mail",60188),markdown:f("markdown",60189),megaphone:f("megaphone",60190),mention:f("mention",60191),milestone:f("milestone",60192),gitPullRequestMilestone:f("git-pull-request-milestone",60192),mortarBoard:f("mortar-board",60193),move:f("move",60194),multipleWindows:f("multiple-windows",60195),mute:f("mute",60196),noNewline:f("no-newline",60197),note:f("note",60198),octoface:f("octoface",60199),openPreview:f("open-preview",60200),package:f("package",60201),paintcan:f("paintcan",60202),pin:f("pin",60203),play:f("play",60204),run:f("run",60204),plug:f("plug",60205),preserveCase:f("preserve-case",60206),preview:f("preview",60207),project:f("project",60208),pulse:f("pulse",60209),question:f("question",60210),quote:f("quote",60211),radioTower:f("radio-tower",60212),reactions:f("reactions",60213),references:f("references",60214),refresh:f("refresh",60215),regex:f("regex",60216),remoteExplorer:f("remote-explorer",60217),remote:f("remote",60218),remove:f("remove",60219),replaceAll:f("replace-all",60220),replace:f("replace",60221),repoClone:f("repo-clone",60222),repoForcePush:f("repo-force-push",60223),repoPull:f("repo-pull",60224),repoPush:f("repo-push",60225),report:f("report",60226),requestChanges:f("request-changes",60227),rocket:f("rocket",60228),rootFolderOpened:f("root-folder-opened",60229),rootFolder:f("root-folder",60230),rss:f("rss",60231),ruby:f("ruby",60232),saveAll:f("save-all",60233),saveAs:f("save-as",60234),save:f("save",60235),screenFull:f("screen-full",60236),screenNormal:f("screen-normal",60237),searchStop:f("search-stop",60238),server:f("server",60240),settingsGear:f("settings-gear",60241),settings:f("settings",60242),shield:f("shield",60243),smiley:f("smiley",60244),sortPrecedence:f("sort-precedence",60245),splitHorizontal:f("split-horizontal",60246),splitVertical:f("split-vertical",60247),squirrel:f("squirrel",60248),starFull:f("star-full",60249),starHalf:f("star-half",60250),symbolClass:f("symbol-class",60251),symbolColor:f("symbol-color",60252),symbolConstant:f("symbol-constant",60253),symbolEnumMember:f("symbol-enum-member",60254),symbolField:f("symbol-field",60255),symbolFile:f("symbol-file",60256),symbolInterface:f("symbol-interface",60257),symbolKeyword:f("symbol-keyword",60258),symbolMisc:f("symbol-misc",60259),symbolOperator:f("symbol-operator",60260),symbolProperty:f("symbol-property",60261),wrench:f("wrench",60261),wrenchSubaction:f("wrench-subaction",60261),symbolSnippet:f("symbol-snippet",60262),tasklist:f("tasklist",60263),telescope:f("telescope",60264),textSize:f("text-size",60265),threeBars:f("three-bars",60266),thumbsdown:f("thumbsdown",60267),thumbsup:f("thumbsup",60268),tools:f("tools",60269),triangleDown:f("triangle-down",60270),triangleLeft:f("triangle-left",60271),triangleRight:f("triangle-right",60272),triangleUp:f("triangle-up",60273),twitter:f("twitter",60274),unfold:f("unfold",60275),unlock:f("unlock",60276),unmute:f("unmute",60277),unverified:f("unverified",60278),verified:f("verified",60279),versions:f("versions",60280),vmActive:f("vm-active",60281),vmOutline:f("vm-outline",60282),vmRunning:f("vm-running",60283),watch:f("watch",60284),whitespace:f("whitespace",60285),wholeWord:f("whole-word",60286),window:f("window",60287),wordWrap:f("word-wrap",60288),zoomIn:f("zoom-in",60289),zoomOut:f("zoom-out",60290),listFilter:f("list-filter",60291),listFlat:f("list-flat",60292),listSelection:f("list-selection",60293),selection:f("selection",60293),listTree:f("list-tree",60294),debugBreakpointFunctionUnverified:f("debug-breakpoint-function-unverified",60295),debugBreakpointFunction:f("debug-breakpoint-function",60296),debugBreakpointFunctionDisabled:f("debug-breakpoint-function-disabled",60296),debugStackframeActive:f("debug-stackframe-active",60297),circleSmallFilled:f("circle-small-filled",60298),debugStackframeDot:f("debug-stackframe-dot",60298),terminalDecorationMark:f("terminal-decoration-mark",60298),debugStackframe:f("debug-stackframe",60299),debugStackframeFocused:f("debug-stackframe-focused",60299),debugBreakpointUnsupported:f("debug-breakpoint-unsupported",60300),symbolString:f("symbol-string",60301),debugReverseContinue:f("debug-reverse-continue",60302),debugStepBack:f("debug-step-back",60303),debugRestartFrame:f("debug-restart-frame",60304),debugAlt:f("debug-alt",60305),callIncoming:f("call-incoming",60306),callOutgoing:f("call-outgoing",60307),menu:f("menu",60308),expandAll:f("expand-all",60309),feedback:f("feedback",60310),gitPullRequestReviewer:f("git-pull-request-reviewer",60310),groupByRefType:f("group-by-ref-type",60311),ungroupByRefType:f("ungroup-by-ref-type",60312),account:f("account",60313),gitPullRequestAssignee:f("git-pull-request-assignee",60313),bellDot:f("bell-dot",60314),debugConsole:f("debug-console",60315),library:f("library",60316),output:f("output",60317),runAll:f("run-all",60318),syncIgnored:f("sync-ignored",60319),pinned:f("pinned",60320),githubInverted:f("github-inverted",60321),serverProcess:f("server-process",60322),serverEnvironment:f("server-environment",60323),pass:f("pass",60324),issueClosed:f("issue-closed",60324),stopCircle:f("stop-circle",60325),playCircle:f("play-circle",60326),record:f("record",60327),debugAltSmall:f("debug-alt-small",60328),vmConnect:f("vm-connect",60329),cloud:f("cloud",60330),merge:f("merge",60331),export:f("export",60332),graphLeft:f("graph-left",60333),magnet:f("magnet",60334),notebook:f("notebook",60335),redo:f("redo",60336),checkAll:f("check-all",60337),pinnedDirty:f("pinned-dirty",60338),passFilled:f("pass-filled",60339),circleLargeFilled:f("circle-large-filled",60340),circleLarge:f("circle-large",60341),circleLargeOutline:f("circle-large-outline",60341),combine:f("combine",60342),gather:f("gather",60342),table:f("table",60343),variableGroup:f("variable-group",60344),typeHierarchy:f("type-hierarchy",60345),typeHierarchySub:f("type-hierarchy-sub",60346),typeHierarchySuper:f("type-hierarchy-super",60347),gitPullRequestCreate:f("git-pull-request-create",60348),runAbove:f("run-above",60349),runBelow:f("run-below",60350),notebookTemplate:f("notebook-template",60351),debugRerun:f("debug-rerun",60352),workspaceTrusted:f("workspace-trusted",60353),workspaceUntrusted:f("workspace-untrusted",60354),workspaceUnknown:f("workspace-unknown",60355),terminalCmd:f("terminal-cmd",60356),terminalDebian:f("terminal-debian",60357),terminalLinux:f("terminal-linux",60358),terminalPowershell:f("terminal-powershell",60359),terminalTmux:f("terminal-tmux",60360),terminalUbuntu:f("terminal-ubuntu",60361),terminalBash:f("terminal-bash",60362),arrowSwap:f("arrow-swap",60363),copy:f("copy",60364),personAdd:f("person-add",60365),filterFilled:f("filter-filled",60366),wand:f("wand",60367),debugLineByLine:f("debug-line-by-line",60368),inspect:f("inspect",60369),layers:f("layers",60370),layersDot:f("layers-dot",60371),layersActive:f("layers-active",60372),compass:f("compass",60373),compassDot:f("compass-dot",60374),compassActive:f("compass-active",60375),azure:f("azure",60376),issueDraft:f("issue-draft",60377),gitPullRequestClosed:f("git-pull-request-closed",60378),gitPullRequestDraft:f("git-pull-request-draft",60379),debugAll:f("debug-all",60380),debugCoverage:f("debug-coverage",60381),runErrors:f("run-errors",60382),folderLibrary:f("folder-library",60383),debugContinueSmall:f("debug-continue-small",60384),beakerStop:f("beaker-stop",60385),graphLine:f("graph-line",60386),graphScatter:f("graph-scatter",60387),pieChart:f("pie-chart",60388),bracket:f("bracket",60175),bracketDot:f("bracket-dot",60389),bracketError:f("bracket-error",60390),lockSmall:f("lock-small",60391),azureDevops:f("azure-devops",60392),verifiedFilled:f("verified-filled",60393),newline:f("newline",60394),layout:f("layout",60395),layoutActivitybarLeft:f("layout-activitybar-left",60396),layoutActivitybarRight:f("layout-activitybar-right",60397),layoutPanelLeft:f("layout-panel-left",60398),layoutPanelCenter:f("layout-panel-center",60399),layoutPanelJustify:f("layout-panel-justify",60400),layoutPanelRight:f("layout-panel-right",60401),layoutPanel:f("layout-panel",60402),layoutSidebarLeft:f("layout-sidebar-left",60403),layoutSidebarRight:f("layout-sidebar-right",60404),layoutStatusbar:f("layout-statusbar",60405),layoutMenubar:f("layout-menubar",60406),layoutCentered:f("layout-centered",60407),target:f("target",60408),indent:f("indent",60409),recordSmall:f("record-small",60410),errorSmall:f("error-small",60411),terminalDecorationError:f("terminal-decoration-error",60411),arrowCircleDown:f("arrow-circle-down",60412),arrowCircleLeft:f("arrow-circle-left",60413),arrowCircleRight:f("arrow-circle-right",60414),arrowCircleUp:f("arrow-circle-up",60415),layoutSidebarRightOff:f("layout-sidebar-right-off",60416),layoutPanelOff:f("layout-panel-off",60417),layoutSidebarLeftOff:f("layout-sidebar-left-off",60418),blank:f("blank",60419),heartFilled:f("heart-filled",60420),map:f("map",60421),mapHorizontal:f("map-horizontal",60421),foldHorizontal:f("fold-horizontal",60421),mapFilled:f("map-filled",60422),mapHorizontalFilled:f("map-horizontal-filled",60422),foldHorizontalFilled:f("fold-horizontal-filled",60422),circleSmall:f("circle-small",60423),bellSlash:f("bell-slash",60424),bellSlashDot:f("bell-slash-dot",60425),commentUnresolved:f("comment-unresolved",60426),gitPullRequestGoToChanges:f("git-pull-request-go-to-changes",60427),gitPullRequestNewChanges:f("git-pull-request-new-changes",60428),searchFuzzy:f("search-fuzzy",60429),commentDraft:f("comment-draft",60430),send:f("send",60431),sparkle:f("sparkle",60432),insert:f("insert",60433),mic:f("mic",60434),thumbsdownFilled:f("thumbsdown-filled",60435),thumbsupFilled:f("thumbsup-filled",60436),coffee:f("coffee",60437),snake:f("snake",60438),game:f("game",60439),vr:f("vr",60440),chip:f("chip",60441),piano:f("piano",60442),music:f("music",60443),micFilled:f("mic-filled",60444),repoFetch:f("repo-fetch",60445),copilot:f("copilot",60446),lightbulbSparkle:f("lightbulb-sparkle",60447),robot:f("robot",60448),sparkleFilled:f("sparkle-filled",60449),diffSingle:f("diff-single",60450),diffMultiple:f("diff-multiple",60451),surroundWith:f("surround-with",60452),share:f("share",60453),gitStash:f("git-stash",60454),gitStashApply:f("git-stash-apply",60455),gitStashPop:f("git-stash-pop",60456),vscode:f("vscode",60457),vscodeInsiders:f("vscode-insiders",60458),codeOss:f("code-oss",60459),runCoverage:f("run-coverage",60460),runAllCoverage:f("run-all-coverage",60461),coverage:f("coverage",60462),githubProject:f("github-project",60463),mapVertical:f("map-vertical",60464),foldVertical:f("fold-vertical",60464),mapVerticalFilled:f("map-vertical-filled",60465),foldVerticalFilled:f("fold-vertical-filled",60465),goToSearch:f("go-to-search",60466),percentage:f("percentage",60467),sortPercentage:f("sort-percentage",60467),attach:f("attach",60468)},Ql={dialogError:f("dialog-error","error"),dialogWarning:f("dialog-warning","warning"),dialogInfo:f("dialog-info","info"),dialogClose:f("dialog-close","close"),treeItemExpanded:f("tree-item-expanded","chevron-down"),treeFilterOnTypeOn:f("tree-filter-on-type-on","list-filter"),treeFilterOnTypeOff:f("tree-filter-on-type-off","list-selection"),treeFilterClear:f("tree-filter-clear","close"),treeItemLoading:f("tree-item-loading","loading"),menuSelection:f("menu-selection","check"),menuSubmenu:f("menu-submenu","chevron-right"),menuBarMore:f("menubar-more","more"),scrollbarButtonLeft:f("scrollbar-button-left","triangle-left"),scrollbarButtonRight:f("scrollbar-button-right","triangle-right"),scrollbarButtonUp:f("scrollbar-button-up","triangle-up"),scrollbarButtonDown:f("scrollbar-button-down","triangle-down"),toolBarMore:f("toolbar-more","more"),quickInputBack:f("quick-input-back","arrow-left"),dropDownButton:f("drop-down-button",60084),symbolCustomColor:f("symbol-customcolor",60252),exportIcon:f("export",60332),workspaceUnspecified:f("workspace-unspecified",60355),newLine:f("newline",60394),thumbsDownFilled:f("thumbsdown-filled",60435),thumbsUpFilled:f("thumbsup-filled",60436),gitFetch:f("git-fetch",60445),lightbulbSparkleAutofix:f("lightbulb-sparkle-autofix",60447),debugBreakpointPending:f("debug-breakpoint-pending",60377)},V={...Xl,...Ql};class yi{constructor(){this._tokenizationSupports=new Map,this._factories=new Map,this._onDidChange=new we,this.onDidChange=this._onDidChange.event,this._colorMap=null}handleChange(t){this._onDidChange.fire({changedLanguages:t,changedColorMap:!1})}register(t,n){return this._tokenizationSupports.set(t,n),this.handleChange([t]),Jt(()=>{this._tokenizationSupports.get(t)===n&&(this._tokenizationSupports.delete(t),this.handleChange([t]))})}get(t){return this._tokenizationSupports.get(t)||null}registerFactory(t,n){this._factories.get(t)?.dispose();const r=new Yl(this,t,n);return this._factories.set(t,r),Jt(()=>{const i=this._factories.get(t);!i||i!==r||(this._factories.delete(t),i.dispose())})}async getOrCreate(t){const n=this.get(t);if(n)return n;const r=this._factories.get(t);return!r||r.isResolved?null:(await r.resolve(),this.get(t))}isResolved(t){if(this.get(t))return!0;const r=this._factories.get(t);return!!(!r||r.isResolved)}setColorMap(t){this._colorMap=t,this._onDidChange.fire({changedLanguages:Array.from(this._tokenizationSupports.keys()),changedColorMap:!0})}getColorMap(){return this._colorMap}getDefaultBackground(){return this._colorMap&&this._colorMap.length>2?this._colorMap[2]:null}}class Yl extends Xt{get isResolved(){return this._isResolved}constructor(t,n,r){super(),this._registry=t,this._languageId=n,this._factory=r,this._isDisposed=!1,this._resolvePromise=null,this._isResolved=!1}dispose(){this._isDisposed=!0,super.dispose()}async resolve(){return this._resolvePromise||(this._resolvePromise=this._create()),this._resolvePromise}async _create(){const t=await this._factory.tokenizationSupport;this._isResolved=!0,t&&!this._isDisposed&&this._register(this._registry.register(this._languageId,t))}}class Zl{constructor(t,n,r){this.offset=t,this.type=n,this.language=r,this._tokenBrand=void 0}toString(){return"("+this.offset+", "+this.type+")"}}var vi;(function(e){e[e.Increase=0]="Increase",e[e.Decrease=1]="Decrease"})(vi||(vi={}));var xi;(function(e){const t=new Map;t.set(0,V.symbolMethod),t.set(1,V.symbolFunction),t.set(2,V.symbolConstructor),t.set(3,V.symbolField),t.set(4,V.symbolVariable),t.set(5,V.symbolClass),t.set(6,V.symbolStruct),t.set(7,V.symbolInterface),t.set(8,V.symbolModule),t.set(9,V.symbolProperty),t.set(10,V.symbolEvent),t.set(11,V.symbolOperator),t.set(12,V.symbolUnit),t.set(13,V.symbolValue),t.set(15,V.symbolEnum),t.set(14,V.symbolConstant),t.set(15,V.symbolEnum),t.set(16,V.symbolEnumMember),t.set(17,V.symbolKeyword),t.set(27,V.symbolSnippet),t.set(18,V.symbolText),t.set(19,V.symbolColor),t.set(20,V.symbolFile),t.set(21,V.symbolReference),t.set(22,V.symbolCustomColor),t.set(23,V.symbolFolder),t.set(24,V.symbolTypeParameter),t.set(25,V.account),t.set(26,V.issues);function n(s){let a=t.get(s);return a||(console.info("No codicon found for CompletionItemKind "+s),a=V.symbolProperty),a}e.toIcon=n;const r=new Map;r.set("method",0),r.set("function",1),r.set("constructor",2),r.set("field",3),r.set("variable",4),r.set("class",5),r.set("struct",6),r.set("interface",7),r.set("module",8),r.set("property",9),r.set("event",10),r.set("operator",11),r.set("unit",12),r.set("value",13),r.set("constant",14),r.set("enum",15),r.set("enum-member",16),r.set("enumMember",16),r.set("keyword",17),r.set("snippet",27),r.set("text",18),r.set("color",19),r.set("file",20),r.set("reference",21),r.set("customcolor",22),r.set("folder",23),r.set("type-parameter",24),r.set("typeParameter",24),r.set("account",25),r.set("issue",26);function i(s,a){let l=r.get(s);return typeof l>"u"&&!a&&(l=9),l}e.fromString=i})(xi||(xi={}));var wi;(function(e){e[e.Automatic=0]="Automatic",e[e.Explicit=1]="Explicit"})(wi||(wi={}));var _i;(function(e){e[e.Automatic=0]="Automatic",e[e.PasteAs=1]="PasteAs"})(_i||(_i={}));var Li;(function(e){e[e.Invoke=1]="Invoke",e[e.TriggerCharacter=2]="TriggerCharacter",e[e.ContentChange=3]="ContentChange"})(Li||(Li={}));var Ni;(function(e){e[e.Text=0]="Text",e[e.Read=1]="Read",e[e.Write=2]="Write"})(Ni||(Ni={})),X("Array","array"),X("Boolean","boolean"),X("Class","class"),X("Constant","constant"),X("Constructor","constructor"),X("Enum","enumeration"),X("EnumMember","enumeration member"),X("Event","event"),X("Field","field"),X("File","file"),X("Function","function"),X("Interface","interface"),X("Key","key"),X("Method","method"),X("Module","module"),X("Namespace","namespace"),X("Null","null"),X("Number","number"),X("Object","object"),X("Operator","operator"),X("Package","package"),X("Property","property"),X("String","string"),X("Struct","struct"),X("TypeParameter","type parameter"),X("Variable","variable");var Si;(function(e){const t=new Map;t.set(0,V.symbolFile),t.set(1,V.symbolModule),t.set(2,V.symbolNamespace),t.set(3,V.symbolPackage),t.set(4,V.symbolClass),t.set(5,V.symbolMethod),t.set(6,V.symbolProperty),t.set(7,V.symbolField),t.set(8,V.symbolConstructor),t.set(9,V.symbolEnum),t.set(10,V.symbolInterface),t.set(11,V.symbolFunction),t.set(12,V.symbolVariable),t.set(13,V.symbolConstant),t.set(14,V.symbolString),t.set(15,V.symbolNumber),t.set(16,V.symbolBoolean),t.set(17,V.symbolArray),t.set(18,V.symbolObject),t.set(19,V.symbolKey),t.set(20,V.symbolNull),t.set(21,V.symbolEnumMember),t.set(22,V.symbolStruct),t.set(23,V.symbolEvent),t.set(24,V.symbolOperator),t.set(25,V.symbolTypeParameter);function n(r){let i=t.get(r);return i||(console.info("No codicon found for SymbolKind "+r),i=V.symbolProperty),i}e.toIcon=n})(Si||(Si={}));let k1=class et{static{this.Comment=new et("comment")}static{this.Imports=new et("imports")}static{this.Region=new et("region")}static fromValue(t){switch(t){case"comment":return et.Comment;case"imports":return et.Imports;case"region":return et.Region}return new et(t)}constructor(t){this.value=t}};var Ai;(function(e){e[e.AIGenerated=1]="AIGenerated"})(Ai||(Ai={}));var ki;(function(e){e[e.Invoke=0]="Invoke",e[e.Automatic=1]="Automatic"})(ki||(ki={}));var Ri;(function(e){function t(n){return!n||typeof n!="object"?!1:typeof n.id=="string"&&typeof n.title=="string"}e.is=t})(Ri||(Ri={}));var Ei;(function(e){e[e.Type=1]="Type",e[e.Parameter=2]="Parameter"})(Ei||(Ei={})),new yi,new yi;var Mi;(function(e){e[e.Invoke=0]="Invoke",e[e.Automatic=1]="Automatic"})(Mi||(Mi={}));var Ci;(function(e){e[e.Unknown=0]="Unknown",e[e.Disabled=1]="Disabled",e[e.Enabled=2]="Enabled"})(Ci||(Ci={}));var Ti;(function(e){e[e.Invoke=1]="Invoke",e[e.Auto=2]="Auto"})(Ti||(Ti={}));var Pi;(function(e){e[e.None=0]="None",e[e.KeepWhitespace=1]="KeepWhitespace",e[e.InsertAsSnippet=4]="InsertAsSnippet"})(Pi||(Pi={}));var Ii;(function(e){e[e.Method=0]="Method",e[e.Function=1]="Function",e[e.Constructor=2]="Constructor",e[e.Field=3]="Field",e[e.Variable=4]="Variable",e[e.Class=5]="Class",e[e.Struct=6]="Struct",e[e.Interface=7]="Interface",e[e.Module=8]="Module",e[e.Property=9]="Property",e[e.Event=10]="Event",e[e.Operator=11]="Operator",e[e.Unit=12]="Unit",e[e.Value=13]="Value",e[e.Constant=14]="Constant",e[e.Enum=15]="Enum",e[e.EnumMember=16]="EnumMember",e[e.Keyword=17]="Keyword",e[e.Text=18]="Text",e[e.Color=19]="Color",e[e.File=20]="File",e[e.Reference=21]="Reference",e[e.Customcolor=22]="Customcolor",e[e.Folder=23]="Folder",e[e.TypeParameter=24]="TypeParameter",e[e.User=25]="User",e[e.Issue=26]="Issue",e[e.Snippet=27]="Snippet"})(Ii||(Ii={}));var Fi;(function(e){e[e.Deprecated=1]="Deprecated"})(Fi||(Fi={}));var Vi;(function(e){e[e.Invoke=0]="Invoke",e[e.TriggerCharacter=1]="TriggerCharacter",e[e.TriggerForIncompleteCompletions=2]="TriggerForIncompleteCompletions"})(Vi||(Vi={}));var Di;(function(e){e[e.EXACT=0]="EXACT",e[e.ABOVE=1]="ABOVE",e[e.BELOW=2]="BELOW"})(Di||(Di={}));var Oi;(function(e){e[e.NotSet=0]="NotSet",e[e.ContentFlush=1]="ContentFlush",e[e.RecoverFromMarkers=2]="RecoverFromMarkers",e[e.Explicit=3]="Explicit",e[e.Paste=4]="Paste",e[e.Undo=5]="Undo",e[e.Redo=6]="Redo"})(Oi||(Oi={}));var Bi;(function(e){e[e.LF=1]="LF",e[e.CRLF=2]="CRLF"})(Bi||(Bi={}));var $i;(function(e){e[e.Text=0]="Text",e[e.Read=1]="Read",e[e.Write=2]="Write"})($i||($i={}));var Ui;(function(e){e[e.None=0]="None",e[e.Keep=1]="Keep",e[e.Brackets=2]="Brackets",e[e.Advanced=3]="Advanced",e[e.Full=4]="Full"})(Ui||(Ui={}));var qi;(function(e){e[e.acceptSuggestionOnCommitCharacter=0]="acceptSuggestionOnCommitCharacter",e[e.acceptSuggestionOnEnter=1]="acceptSuggestionOnEnter",e[e.accessibilitySupport=2]="accessibilitySupport",e[e.accessibilityPageSize=3]="accessibilityPageSize",e[e.ariaLabel=4]="ariaLabel",e[e.ariaRequired=5]="ariaRequired",e[e.autoClosingBrackets=6]="autoClosingBrackets",e[e.autoClosingComments=7]="autoClosingComments",e[e.screenReaderAnnounceInlineSuggestion=8]="screenReaderAnnounceInlineSuggestion",e[e.autoClosingDelete=9]="autoClosingDelete",e[e.autoClosingOvertype=10]="autoClosingOvertype",e[e.autoClosingQuotes=11]="autoClosingQuotes",e[e.autoIndent=12]="autoIndent",e[e.automaticLayout=13]="automaticLayout",e[e.autoSurround=14]="autoSurround",e[e.bracketPairColorization=15]="bracketPairColorization",e[e.guides=16]="guides",e[e.codeLens=17]="codeLens",e[e.codeLensFontFamily=18]="codeLensFontFamily",e[e.codeLensFontSize=19]="codeLensFontSize",e[e.colorDecorators=20]="colorDecorators",e[e.colorDecoratorsLimit=21]="colorDecoratorsLimit",e[e.columnSelection=22]="columnSelection",e[e.comments=23]="comments",e[e.contextmenu=24]="contextmenu",e[e.copyWithSyntaxHighlighting=25]="copyWithSyntaxHighlighting",e[e.cursorBlinking=26]="cursorBlinking",e[e.cursorSmoothCaretAnimation=27]="cursorSmoothCaretAnimation",e[e.cursorStyle=28]="cursorStyle",e[e.cursorSurroundingLines=29]="cursorSurroundingLines",e[e.cursorSurroundingLinesStyle=30]="cursorSurroundingLinesStyle",e[e.cursorWidth=31]="cursorWidth",e[e.disableLayerHinting=32]="disableLayerHinting",e[e.disableMonospaceOptimizations=33]="disableMonospaceOptimizations",e[e.domReadOnly=34]="domReadOnly",e[e.dragAndDrop=35]="dragAndDrop",e[e.dropIntoEditor=36]="dropIntoEditor",e[e.emptySelectionClipboard=37]="emptySelectionClipboard",e[e.experimentalWhitespaceRendering=38]="experimentalWhitespaceRendering",e[e.extraEditorClassName=39]="extraEditorClassName",e[e.fastScrollSensitivity=40]="fastScrollSensitivity",e[e.find=41]="find",e[e.fixedOverflowWidgets=42]="fixedOverflowWidgets",e[e.folding=43]="folding",e[e.foldingStrategy=44]="foldingStrategy",e[e.foldingHighlight=45]="foldingHighlight",e[e.foldingImportsByDefault=46]="foldingImportsByDefault",e[e.foldingMaximumRegions=47]="foldingMaximumRegions",e[e.unfoldOnClickAfterEndOfLine=48]="unfoldOnClickAfterEndOfLine",e[e.fontFamily=49]="fontFamily",e[e.fontInfo=50]="fontInfo",e[e.fontLigatures=51]="fontLigatures",e[e.fontSize=52]="fontSize",e[e.fontWeight=53]="fontWeight",e[e.fontVariations=54]="fontVariations",e[e.formatOnPaste=55]="formatOnPaste",e[e.formatOnType=56]="formatOnType",e[e.glyphMargin=57]="glyphMargin",e[e.gotoLocation=58]="gotoLocation",e[e.hideCursorInOverviewRuler=59]="hideCursorInOverviewRuler",e[e.hover=60]="hover",e[e.inDiffEditor=61]="inDiffEditor",e[e.inlineSuggest=62]="inlineSuggest",e[e.inlineEdit=63]="inlineEdit",e[e.letterSpacing=64]="letterSpacing",e[e.lightbulb=65]="lightbulb",e[e.lineDecorationsWidth=66]="lineDecorationsWidth",e[e.lineHeight=67]="lineHeight",e[e.lineNumbers=68]="lineNumbers",e[e.lineNumbersMinChars=69]="lineNumbersMinChars",e[e.linkedEditing=70]="linkedEditing",e[e.links=71]="links",e[e.matchBrackets=72]="matchBrackets",e[e.minimap=73]="minimap",e[e.mouseStyle=74]="mouseStyle",e[e.mouseWheelScrollSensitivity=75]="mouseWheelScrollSensitivity",e[e.mouseWheelZoom=76]="mouseWheelZoom",e[e.multiCursorMergeOverlapping=77]="multiCursorMergeOverlapping",e[e.multiCursorModifier=78]="multiCursorModifier",e[e.multiCursorPaste=79]="multiCursorPaste",e[e.multiCursorLimit=80]="multiCursorLimit",e[e.occurrencesHighlight=81]="occurrencesHighlight",e[e.overviewRulerBorder=82]="overviewRulerBorder",e[e.overviewRulerLanes=83]="overviewRulerLanes",e[e.padding=84]="padding",e[e.pasteAs=85]="pasteAs",e[e.parameterHints=86]="parameterHints",e[e.peekWidgetDefaultFocus=87]="peekWidgetDefaultFocus",e[e.placeholder=88]="placeholder",e[e.definitionLinkOpensInPeek=89]="definitionLinkOpensInPeek",e[e.quickSuggestions=90]="quickSuggestions",e[e.quickSuggestionsDelay=91]="quickSuggestionsDelay",e[e.readOnly=92]="readOnly",e[e.readOnlyMessage=93]="readOnlyMessage",e[e.renameOnType=94]="renameOnType",e[e.renderControlCharacters=95]="renderControlCharacters",e[e.renderFinalNewline=96]="renderFinalNewline",e[e.renderLineHighlight=97]="renderLineHighlight",e[e.renderLineHighlightOnlyWhenFocus=98]="renderLineHighlightOnlyWhenFocus",e[e.renderValidationDecorations=99]="renderValidationDecorations",e[e.renderWhitespace=100]="renderWhitespace",e[e.revealHorizontalRightPadding=101]="revealHorizontalRightPadding",e[e.roundedSelection=102]="roundedSelection",e[e.rulers=103]="rulers",e[e.scrollbar=104]="scrollbar",e[e.scrollBeyondLastColumn=105]="scrollBeyondLastColumn",e[e.scrollBeyondLastLine=106]="scrollBeyondLastLine",e[e.scrollPredominantAxis=107]="scrollPredominantAxis",e[e.selectionClipboard=108]="selectionClipboard",e[e.selectionHighlight=109]="selectionHighlight",e[e.selectOnLineNumbers=110]="selectOnLineNumbers",e[e.showFoldingControls=111]="showFoldingControls",e[e.showUnused=112]="showUnused",e[e.snippetSuggestions=113]="snippetSuggestions",e[e.smartSelect=114]="smartSelect",e[e.smoothScrolling=115]="smoothScrolling",e[e.stickyScroll=116]="stickyScroll",e[e.stickyTabStops=117]="stickyTabStops",e[e.stopRenderingLineAfter=118]="stopRenderingLineAfter",e[e.suggest=119]="suggest",e[e.suggestFontSize=120]="suggestFontSize",e[e.suggestLineHeight=121]="suggestLineHeight",e[e.suggestOnTriggerCharacters=122]="suggestOnTriggerCharacters",e[e.suggestSelection=123]="suggestSelection",e[e.tabCompletion=124]="tabCompletion",e[e.tabIndex=125]="tabIndex",e[e.unicodeHighlighting=126]="unicodeHighlighting",e[e.unusualLineTerminators=127]="unusualLineTerminators",e[e.useShadowDOM=128]="useShadowDOM",e[e.useTabStops=129]="useTabStops",e[e.wordBreak=130]="wordBreak",e[e.wordSegmenterLocales=131]="wordSegmenterLocales",e[e.wordSeparators=132]="wordSeparators",e[e.wordWrap=133]="wordWrap",e[e.wordWrapBreakAfterCharacters=134]="wordWrapBreakAfterCharacters",e[e.wordWrapBreakBeforeCharacters=135]="wordWrapBreakBeforeCharacters",e[e.wordWrapColumn=136]="wordWrapColumn",e[e.wordWrapOverride1=137]="wordWrapOverride1",e[e.wordWrapOverride2=138]="wordWrapOverride2",e[e.wrappingIndent=139]="wrappingIndent",e[e.wrappingStrategy=140]="wrappingStrategy",e[e.showDeprecated=141]="showDeprecated",e[e.inlayHints=142]="inlayHints",e[e.editorClassName=143]="editorClassName",e[e.pixelRatio=144]="pixelRatio",e[e.tabFocusMode=145]="tabFocusMode",e[e.layoutInfo=146]="layoutInfo",e[e.wrappingInfo=147]="wrappingInfo",e[e.defaultColorDecorators=148]="defaultColorDecorators",e[e.colorDecoratorsActivatedOn=149]="colorDecoratorsActivatedOn",e[e.inlineCompletionsAccessibilityVerbose=150]="inlineCompletionsAccessibilityVerbose"})(qi||(qi={}));var ji;(function(e){e[e.TextDefined=0]="TextDefined",e[e.LF=1]="LF",e[e.CRLF=2]="CRLF"})(ji||(ji={}));var Wi;(function(e){e[e.LF=0]="LF",e[e.CRLF=1]="CRLF"})(Wi||(Wi={}));var Hi;(function(e){e[e.Left=1]="Left",e[e.Center=2]="Center",e[e.Right=3]="Right"})(Hi||(Hi={}));var zi;(function(e){e[e.Increase=0]="Increase",e[e.Decrease=1]="Decrease"})(zi||(zi={}));var Gi;(function(e){e[e.None=0]="None",e[e.Indent=1]="Indent",e[e.IndentOutdent=2]="IndentOutdent",e[e.Outdent=3]="Outdent"})(Gi||(Gi={}));var Ji;(function(e){e[e.Both=0]="Both",e[e.Right=1]="Right",e[e.Left=2]="Left",e[e.None=3]="None"})(Ji||(Ji={}));var Xi;(function(e){e[e.Type=1]="Type",e[e.Parameter=2]="Parameter"})(Xi||(Xi={}));var Qi;(function(e){e[e.Automatic=0]="Automatic",e[e.Explicit=1]="Explicit"})(Qi||(Qi={}));var Yi;(function(e){e[e.Invoke=0]="Invoke",e[e.Automatic=1]="Automatic"})(Yi||(Yi={}));var er;(function(e){e[e.DependsOnKbLayout=-1]="DependsOnKbLayout",e[e.Unknown=0]="Unknown",e[e.Backspace=1]="Backspace",e[e.Tab=2]="Tab",e[e.Enter=3]="Enter",e[e.Shift=4]="Shift",e[e.Ctrl=5]="Ctrl",e[e.Alt=6]="Alt",e[e.PauseBreak=7]="PauseBreak",e[e.CapsLock=8]="CapsLock",e[e.Escape=9]="Escape",e[e.Space=10]="Space",e[e.PageUp=11]="PageUp",e[e.PageDown=12]="PageDown",e[e.End=13]="End",e[e.Home=14]="Home",e[e.LeftArrow=15]="LeftArrow",e[e.UpArrow=16]="UpArrow",e[e.RightArrow=17]="RightArrow",e[e.DownArrow=18]="DownArrow",e[e.Insert=19]="Insert",e[e.Delete=20]="Delete",e[e.Digit0=21]="Digit0",e[e.Digit1=22]="Digit1",e[e.Digit2=23]="Digit2",e[e.Digit3=24]="Digit3",e[e.Digit4=25]="Digit4",e[e.Digit5=26]="Digit5",e[e.Digit6=27]="Digit6",e[e.Digit7=28]="Digit7",e[e.Digit8=29]="Digit8",e[e.Digit9=30]="Digit9",e[e.KeyA=31]="KeyA",e[e.KeyB=32]="KeyB",e[e.KeyC=33]="KeyC",e[e.KeyD=34]="KeyD",e[e.KeyE=35]="KeyE",e[e.KeyF=36]="KeyF",e[e.KeyG=37]="KeyG",e[e.KeyH=38]="KeyH",e[e.KeyI=39]="KeyI",e[e.KeyJ=40]="KeyJ",e[e.KeyK=41]="KeyK",e[e.KeyL=42]="KeyL",e[e.KeyM=43]="KeyM",e[e.KeyN=44]="KeyN",e[e.KeyO=45]="KeyO",e[e.KeyP=46]="KeyP",e[e.KeyQ=47]="KeyQ",e[e.KeyR=48]="KeyR",e[e.KeyS=49]="KeyS",e[e.KeyT=50]="KeyT",e[e.KeyU=51]="KeyU",e[e.KeyV=52]="KeyV",e[e.KeyW=53]="KeyW",e[e.KeyX=54]="KeyX",e[e.KeyY=55]="KeyY",e[e.KeyZ=56]="KeyZ",e[e.Meta=57]="Meta",e[e.ContextMenu=58]="ContextMenu",e[e.F1=59]="F1",e[e.F2=60]="F2",e[e.F3=61]="F3",e[e.F4=62]="F4",e[e.F5=63]="F5",e[e.F6=64]="F6",e[e.F7=65]="F7",e[e.F8=66]="F8",e[e.F9=67]="F9",e[e.F10=68]="F10",e[e.F11=69]="F11",e[e.F12=70]="F12",e[e.F13=71]="F13",e[e.F14=72]="F14",e[e.F15=73]="F15",e[e.F16=74]="F16",e[e.F17=75]="F17",e[e.F18=76]="F18",e[e.F19=77]="F19",e[e.F20=78]="F20",e[e.F21=79]="F21",e[e.F22=80]="F22",e[e.F23=81]="F23",e[e.F24=82]="F24",e[e.NumLock=83]="NumLock",e[e.ScrollLock=84]="ScrollLock",e[e.Semicolon=85]="Semicolon",e[e.Equal=86]="Equal",e[e.Comma=87]="Comma",e[e.Minus=88]="Minus",e[e.Period=89]="Period",e[e.Slash=90]="Slash",e[e.Backquote=91]="Backquote",e[e.BracketLeft=92]="BracketLeft",e[e.Backslash=93]="Backslash",e[e.BracketRight=94]="BracketRight",e[e.Quote=95]="Quote",e[e.OEM_8=96]="OEM_8",e[e.IntlBackslash=97]="IntlBackslash",e[e.Numpad0=98]="Numpad0",e[e.Numpad1=99]="Numpad1",e[e.Numpad2=100]="Numpad2",e[e.Numpad3=101]="Numpad3",e[e.Numpad4=102]="Numpad4",e[e.Numpad5=103]="Numpad5",e[e.Numpad6=104]="Numpad6",e[e.Numpad7=105]="Numpad7",e[e.Numpad8=106]="Numpad8",e[e.Numpad9=107]="Numpad9",e[e.NumpadMultiply=108]="NumpadMultiply",e[e.NumpadAdd=109]="NumpadAdd",e[e.NUMPAD_SEPARATOR=110]="NUMPAD_SEPARATOR",e[e.NumpadSubtract=111]="NumpadSubtract",e[e.NumpadDecimal=112]="NumpadDecimal",e[e.NumpadDivide=113]="NumpadDivide",e[e.KEY_IN_COMPOSITION=114]="KEY_IN_COMPOSITION",e[e.ABNT_C1=115]="ABNT_C1",e[e.ABNT_C2=116]="ABNT_C2",e[e.AudioVolumeMute=117]="AudioVolumeMute",e[e.AudioVolumeUp=118]="AudioVolumeUp",e[e.AudioVolumeDown=119]="AudioVolumeDown",e[e.BrowserSearch=120]="BrowserSearch",e[e.BrowserHome=121]="BrowserHome",e[e.BrowserBack=122]="BrowserBack",e[e.BrowserForward=123]="BrowserForward",e[e.MediaTrackNext=124]="MediaTrackNext",e[e.MediaTrackPrevious=125]="MediaTrackPrevious",e[e.MediaStop=126]="MediaStop",e[e.MediaPlayPause=127]="MediaPlayPause",e[e.LaunchMediaPlayer=128]="LaunchMediaPlayer",e[e.LaunchMail=129]="LaunchMail",e[e.LaunchApp2=130]="LaunchApp2",e[e.Clear=131]="Clear",e[e.MAX_VALUE=132]="MAX_VALUE"})(er||(er={}));var tr;(function(e){e[e.Hint=1]="Hint",e[e.Info=2]="Info",e[e.Warning=4]="Warning",e[e.Error=8]="Error"})(tr||(tr={}));var nr;(function(e){e[e.Unnecessary=1]="Unnecessary",e[e.Deprecated=2]="Deprecated"})(nr||(nr={}));var Zi;(function(e){e[e.Inline=1]="Inline",e[e.Gutter=2]="Gutter"})(Zi||(Zi={}));var Ki;(function(e){e[e.Normal=1]="Normal",e[e.Underlined=2]="Underlined"})(Ki||(Ki={}));var es;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.TEXTAREA=1]="TEXTAREA",e[e.GUTTER_GLYPH_MARGIN=2]="GUTTER_GLYPH_MARGIN",e[e.GUTTER_LINE_NUMBERS=3]="GUTTER_LINE_NUMBERS",e[e.GUTTER_LINE_DECORATIONS=4]="GUTTER_LINE_DECORATIONS",e[e.GUTTER_VIEW_ZONE=5]="GUTTER_VIEW_ZONE",e[e.CONTENT_TEXT=6]="CONTENT_TEXT",e[e.CONTENT_EMPTY=7]="CONTENT_EMPTY",e[e.CONTENT_VIEW_ZONE=8]="CONTENT_VIEW_ZONE",e[e.CONTENT_WIDGET=9]="CONTENT_WIDGET",e[e.OVERVIEW_RULER=10]="OVERVIEW_RULER",e[e.SCROLLBAR=11]="SCROLLBAR",e[e.OVERLAY_WIDGET=12]="OVERLAY_WIDGET",e[e.OUTSIDE_EDITOR=13]="OUTSIDE_EDITOR"})(es||(es={}));var ts;(function(e){e[e.AIGenerated=1]="AIGenerated"})(ts||(ts={}));var ns;(function(e){e[e.Invoke=0]="Invoke",e[e.Automatic=1]="Automatic"})(ns||(ns={}));var rs;(function(e){e[e.TOP_RIGHT_CORNER=0]="TOP_RIGHT_CORNER",e[e.BOTTOM_RIGHT_CORNER=1]="BOTTOM_RIGHT_CORNER",e[e.TOP_CENTER=2]="TOP_CENTER"})(rs||(rs={}));var is;(function(e){e[e.Left=1]="Left",e[e.Center=2]="Center",e[e.Right=4]="Right",e[e.Full=7]="Full"})(is||(is={}));var ss;(function(e){e[e.Word=0]="Word",e[e.Line=1]="Line",e[e.Suggest=2]="Suggest"})(ss||(ss={}));var as;(function(e){e[e.Left=0]="Left",e[e.Right=1]="Right",e[e.None=2]="None",e[e.LeftOfInjectedText=3]="LeftOfInjectedText",e[e.RightOfInjectedText=4]="RightOfInjectedText"})(as||(as={}));var os;(function(e){e[e.Off=0]="Off",e[e.On=1]="On",e[e.Relative=2]="Relative",e[e.Interval=3]="Interval",e[e.Custom=4]="Custom"})(os||(os={}));var ls;(function(e){e[e.None=0]="None",e[e.Text=1]="Text",e[e.Blocks=2]="Blocks"})(ls||(ls={}));var us;(function(e){e[e.Smooth=0]="Smooth",e[e.Immediate=1]="Immediate"})(us||(us={}));var cs;(function(e){e[e.Auto=1]="Auto",e[e.Hidden=2]="Hidden",e[e.Visible=3]="Visible"})(cs||(cs={}));var rr;(function(e){e[e.LTR=0]="LTR",e[e.RTL=1]="RTL"})(rr||(rr={}));var fs;(function(e){e.Off="off",e.OnCode="onCode",e.On="on"})(fs||(fs={}));var hs;(function(e){e[e.Invoke=1]="Invoke",e[e.TriggerCharacter=2]="TriggerCharacter",e[e.ContentChange=3]="ContentChange"})(hs||(hs={}));var ms;(function(e){e[e.File=0]="File",e[e.Module=1]="Module",e[e.Namespace=2]="Namespace",e[e.Package=3]="Package",e[e.Class=4]="Class",e[e.Method=5]="Method",e[e.Property=6]="Property",e[e.Field=7]="Field",e[e.Constructor=8]="Constructor",e[e.Enum=9]="Enum",e[e.Interface=10]="Interface",e[e.Function=11]="Function",e[e.Variable=12]="Variable",e[e.Constant=13]="Constant",e[e.String=14]="String",e[e.Number=15]="Number",e[e.Boolean=16]="Boolean",e[e.Array=17]="Array",e[e.Object=18]="Object",e[e.Key=19]="Key",e[e.Null=20]="Null",e[e.EnumMember=21]="EnumMember",e[e.Struct=22]="Struct",e[e.Event=23]="Event",e[e.Operator=24]="Operator",e[e.TypeParameter=25]="TypeParameter"})(ms||(ms={}));var ds;(function(e){e[e.Deprecated=1]="Deprecated"})(ds||(ds={}));var gs;(function(e){e[e.Hidden=0]="Hidden",e[e.Blink=1]="Blink",e[e.Smooth=2]="Smooth",e[e.Phase=3]="Phase",e[e.Expand=4]="Expand",e[e.Solid=5]="Solid"})(gs||(gs={}));var ps;(function(e){e[e.Line=1]="Line",e[e.Block=2]="Block",e[e.Underline=3]="Underline",e[e.LineThin=4]="LineThin",e[e.BlockOutline=5]="BlockOutline",e[e.UnderlineThin=6]="UnderlineThin"})(ps||(ps={}));var bs;(function(e){e[e.AlwaysGrowsWhenTypingAtEdges=0]="AlwaysGrowsWhenTypingAtEdges",e[e.NeverGrowsWhenTypingAtEdges=1]="NeverGrowsWhenTypingAtEdges",e[e.GrowsOnlyWhenTypingBefore=2]="GrowsOnlyWhenTypingBefore",e[e.GrowsOnlyWhenTypingAfter=3]="GrowsOnlyWhenTypingAfter"})(bs||(bs={}));var ys;(function(e){e[e.None=0]="None",e[e.Same=1]="Same",e[e.Indent=2]="Indent",e[e.DeepIndent=3]="DeepIndent"})(ys||(ys={}));class Kl{static{this.CtrlCmd=2048}static{this.Shift=1024}static{this.Alt=512}static{this.WinCtrl=256}static chord(t,n){return Gl(t,n)}}function eu(){return{editor:void 0,languages:void 0,CancellationTokenSource:jl,Emitter:we,KeyCode:er,KeyMod:Kl,Position:K,Range:z,Selection:pe,SelectionDirection:rr,MarkerSeverity:tr,MarkerTag:nr,Uri:Te,Token:Zl}}class cn{static{this.CHANNEL_NAME="editorWorkerHost"}static getChannel(t){return t.getChannel(cn.CHANNEL_NAME)}static setChannel(t,n){t.setChannel(cn.CHANNEL_NAME,n)}}var vs;class tu{constructor(){this[vs]="LinkedMap",this._map=new Map,this._head=void 0,this._tail=void 0,this._size=0,this._state=0}clear(){this._map.clear(),this._head=void 0,this._tail=void 0,this._size=0,this._state++}isEmpty(){return!this._head&&!this._tail}get size(){return this._size}get first(){return this._head?.value}get last(){return this._tail?.value}has(t){return this._map.has(t)}get(t,n=0){const r=this._map.get(t);if(r)return n!==0&&this.touch(r,n),r.value}set(t,n,r=0){let i=this._map.get(t);if(i)i.value=n,r!==0&&this.touch(i,r);else{switch(i={key:t,value:n,next:void 0,previous:void 0},r){case 0:this.addItemLast(i);break;case 1:this.addItemFirst(i);break;case 2:this.addItemLast(i);break;default:this.addItemLast(i);break}this._map.set(t,i),this._size++}return this}delete(t){return!!this.remove(t)}remove(t){const n=this._map.get(t);if(n)return this._map.delete(t),this.removeItem(n),this._size--,n.value}shift(){if(!this._head&&!this._tail)return;if(!this._head||!this._tail)throw new Error("Invalid list");const t=this._head;return this._map.delete(t.key),this.removeItem(t),this._size--,t.value}forEach(t,n){const r=this._state;let i=this._head;for(;i;){if(n?t.bind(n)(i.value,i.key,this):t(i.value,i.key,this),this._state!==r)throw new Error("LinkedMap got modified during iteration.");i=i.next}}keys(){const t=this,n=this._state;let r=this._head;const i={[Symbol.iterator](){return i},next(){if(t._state!==n)throw new Error("LinkedMap got modified during iteration.");if(r){const s={value:r.key,done:!1};return r=r.next,s}else return{value:void 0,done:!0}}};return i}values(){const t=this,n=this._state;let r=this._head;const i={[Symbol.iterator](){return i},next(){if(t._state!==n)throw new Error("LinkedMap got modified during iteration.");if(r){const s={value:r.value,done:!1};return r=r.next,s}else return{value:void 0,done:!0}}};return i}entries(){const t=this,n=this._state;let r=this._head;const i={[Symbol.iterator](){return i},next(){if(t._state!==n)throw new Error("LinkedMap got modified during iteration.");if(r){const s={value:[r.key,r.value],done:!1};return r=r.next,s}else return{value:void 0,done:!0}}};return i}[(vs=Symbol.toStringTag,Symbol.iterator)](){return this.entries()}trimOld(t){if(t>=this.size)return;if(t===0){this.clear();return}let n=this._head,r=this.size;for(;n&&r>t;)this._map.delete(n.key),n=n.next,r--;this._head=n,this._size=r,n&&(n.previous=void 0),this._state++}trimNew(t){if(t>=this.size)return;if(t===0){this.clear();return}let n=this._tail,r=this.size;for(;n&&r>t;)this._map.delete(n.key),n=n.previous,r--;this._tail=n,this._size=r,n&&(n.next=void 0),this._state++}addItemFirst(t){if(!this._head&&!this._tail)this._tail=t;else if(this._head)t.next=this._head,this._head.previous=t;else throw new Error("Invalid list");this._head=t,this._state++}addItemLast(t){if(!this._head&&!this._tail)this._head=t;else if(this._tail)t.previous=this._tail,this._tail.next=t;else throw new Error("Invalid list");this._tail=t,this._state++}removeItem(t){if(t===this._head&&t===this._tail)this._head=void 0,this._tail=void 0;else if(t===this._head){if(!t.next)throw new Error("Invalid list");t.next.previous=void 0,this._head=t.next}else if(t===this._tail){if(!t.previous)throw new Error("Invalid list");t.previous.next=void 0,this._tail=t.previous}else{const n=t.next,r=t.previous;if(!n||!r)throw new Error("Invalid list");n.previous=r,r.next=n}t.next=void 0,t.previous=void 0,this._state++}touch(t,n){if(!this._head||!this._tail)throw new Error("Invalid list");if(!(n!==1&&n!==2)){if(n===1){if(t===this._head)return;const r=t.next,i=t.previous;t===this._tail?(i.next=void 0,this._tail=i):(r.previous=i,i.next=r),t.previous=void 0,t.next=this._head,this._head.previous=t,this._head=t,this._state++}else if(n===2){if(t===this._tail)return;const r=t.next,i=t.previous;t===this._head?(r.previous=void 0,this._head=r):(r.previous=i,i.next=r),t.next=void 0,t.previous=this._tail,this._tail.next=t,this._tail=t,this._state++}}}toJSON(){const t=[];return this.forEach((n,r)=>{t.push([r,n])}),t}fromJSON(t){this.clear();for(const[n,r]of t)this.set(n,r)}}class nu extends tu{constructor(t,n=1){super(),this._limit=t,this._ratio=Math.min(Math.max(0,n),1)}get limit(){return this._limit}set limit(t){this._limit=t,this.checkTrim()}get(t,n=2){return super.get(t,n)}peek(t){return super.get(t,0)}set(t,n){return super.set(t,n,2),this}checkTrim(){this.size>this._limit&&this.trim(Math.round(this._limit*this._ratio))}}class ru extends nu{constructor(t,n=1){super(t,n)}trim(t){this.trimOld(t)}set(t,n){return super.set(t,n),this.checkTrim(),this}}class iu{constructor(){this.map=new Map}add(t,n){let r=this.map.get(t);r||(r=new Set,this.map.set(t,r)),r.add(n)}delete(t,n){const r=this.map.get(t);r&&(r.delete(n),r.size===0&&this.map.delete(t))}forEach(t,n){const r=this.map.get(t);r&&r.forEach(n)}get(t){const n=this.map.get(t);return n||new Set}}new ru(10);function su(e){let t=[];for(;Object.prototype!==e;)t=t.concat(Object.getOwnPropertyNames(e)),e=Object.getPrototypeOf(e);return t}function xs(e){const t=[];for(const n of su(e))typeof e[n]=="function"&&t.push(n);return t}function au(e,t){const n=i=>function(){const s=Array.prototype.slice.call(arguments,0);return t(i,s)},r={};for(const i of e)r[i]=n(i);return r}var ws;(function(e){e[e.Left=1]="Left",e[e.Center=2]="Center",e[e.Right=4]="Right",e[e.Full=7]="Full"})(ws||(ws={}));var _s;(function(e){e[e.Left=1]="Left",e[e.Center=2]="Center",e[e.Right=3]="Right"})(_s||(_s={}));var Ls;(function(e){e[e.Both=0]="Both",e[e.Right=1]="Right",e[e.Left=2]="Left",e[e.None=3]="None"})(Ls||(Ls={}));function ou(e,t,n,r,i){if(r===0)return!0;const s=t.charCodeAt(r-1);if(e.get(s)!==0||s===13||s===10)return!0;if(i>0){const a=t.charCodeAt(r);if(e.get(a)!==0)return!0}return!1}function lu(e,t,n,r,i){if(r+i===n)return!0;const s=t.charCodeAt(r+i);if(e.get(s)!==0||s===13||s===10)return!0;if(i>0){const a=t.charCodeAt(r+i-1);if(e.get(a)!==0)return!0}return!1}function uu(e,t,n,r,i){return ou(e,t,n,r,i)&&lu(e,t,n,r,i)}class cu{constructor(t,n){this._wordSeparators=t,this._searchRegex=n,this._prevMatchStartIndex=-1,this._prevMatchLength=0}reset(t){this._searchRegex.lastIndex=t,this._prevMatchStartIndex=-1,this._prevMatchLength=0}next(t){const n=t.length;let r;do{if(this._prevMatchStartIndex+this._prevMatchLength===n||(r=this._searchRegex.exec(t),!r))return null;const i=r.index,s=r[0].length;if(i===this._prevMatchStartIndex&&s===this._prevMatchLength){if(s===0){nl(t,n,this._searchRegex.lastIndex)>65535?this._searchRegex.lastIndex+=2:this._searchRegex.lastIndex+=1;continue}return null}if(this._prevMatchStartIndex=i,this._prevMatchLength=s,!this._wordSeparators||uu(this._wordSeparators,t,n,i,s))return r}while(r);return null}}function fu(e,t="Unreachable"){throw new Error(t)}function fn(e){if(!e()){debugger;e(),Rt(new de("Assertion Failed"))}}function Ns(e,t){let n=0;for(;n<e.length-1;){const r=e[n],i=e[n+1];if(!t(r,i))return!1;n++}return!0}const hu="`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?";function mu(e=""){let t="(-?\\d*\\.\\d\\w*)|([^";for(const n of hu)e.indexOf(n)>=0||(t+="\\"+n);return t+="\\s]+)",new RegExp(t,"g")}const Ss=mu();function As(e){let t=Ss;if(e&&e instanceof RegExp)if(e.global)t=e;else{let n="g";e.ignoreCase&&(n+="i"),e.multiline&&(n+="m"),e.unicode&&(n+="u"),t=new RegExp(e.source,n)}return t.lastIndex=0,t}const ks=new To;ks.unshift({maxLen:1e3,windowSize:15,timeBudget:150});function ir(e,t,n,r,i){if(t=As(t),i||(i=Gt.first(ks)),n.length>i.maxLen){let u=e-i.maxLen/2;return u<0?u=0:r+=u,n=n.substring(u,e+i.maxLen/2),ir(e,t,n,r,i)}const s=Date.now(),a=e-1-r;let l=-1,o=null;for(let u=1;!(Date.now()-s>=i.timeBudget);u++){const h=a-i.windowSize*u;t.lastIndex=Math.max(0,h);const c=du(t,n,a,l);if(!c&&o||(o=c,h<=0))break;l=h}if(o){const u={word:o[0],startColumn:r+1+o.index,endColumn:r+1+o.index+o[0].length};return t.lastIndex=0,u}return null}function du(e,t,n,r){let i;for(;i=e.exec(t);){const s=i.index||0;if(s<=n&&e.lastIndex>=n)return i;if(r>0&&s>r)return null}return null}class gu{static computeUnicodeHighlights(t,n,r){const i=r?r.startLineNumber:1,s=r?r.endLineNumber:t.getLineCount(),a=new Rs(n),l=a.getCandidateCodePoints();let o;l==="allNonBasicAscii"?o=new RegExp("[^\\t\\n\\r\\x20-\\x7E]","g"):o=new RegExp(`${pu(Array.from(l))}`,"g");const u=new cu(null,o),h=[];let c=!1,m,d=0,g=0,p=0;e:for(let y=i,w=s;y<=w;y++){const _=t.getLineContent(y),v=_.length;u.reset(0);do if(m=u.next(_),m){let x=m.index,b=m.index+m[0].length;if(x>0){const F=_.charCodeAt(x-1);en(F)&&x--}if(b+1<v){const F=_.charCodeAt(b-1);en(F)&&b++}const L=_.substring(x,b);let S=ir(x+1,Ss,_,0);S&&S.endColumn<=x+1&&(S=null);const M=a.shouldHighlightNonBasicASCII(L,S?S.word:null);if(M!==0){if(M===3?d++:M===2?g++:M===1?p++:fu(),h.length>=1e3){c=!0;break e}h.push(new z(y,x+1,y,b+1))}}while(m)}return{ranges:h,hasMore:c,ambiguousCharacterCount:d,invisibleCharacterCount:g,nonBasicAsciiCharacterCount:p}}static computeUnicodeHighlightReason(t,n){const r=new Rs(n);switch(r.shouldHighlightNonBasicASCII(t,null)){case 0:return null;case 2:return{kind:1};case 3:{const s=t.codePointAt(0),a=r.ambiguousCharacters.getPrimaryConfusable(s),l=je.getLocales().filter(o=>!je.getInstance(new Set([...n.allowedLocales,o])).isAmbiguous(s));return{kind:0,confusableWith:String.fromCodePoint(a),notAmbiguousInLocales:l}}case 1:return{kind:2}}}}function pu(e,t){return`[${Zo(e.map(r=>String.fromCodePoint(r)).join(""))}]`}class Rs{constructor(t){this.options=t,this.allowedCodePoints=new Set(t.allowedCodePoints),this.ambiguousCharacters=je.getInstance(new Set(t.allowedLocales))}getCandidateCodePoints(){if(this.options.nonBasicASCII)return"allNonBasicAscii";const t=new Set;if(this.options.invisibleCharacters)for(const n of tt.codePoints)Es(String.fromCodePoint(n))||t.add(n);if(this.options.ambiguousCharacters)for(const n of this.ambiguousCharacters.getConfusableCodePoints())t.add(n);for(const n of this.allowedCodePoints)t.delete(n);return t}shouldHighlightNonBasicASCII(t,n){const r=t.codePointAt(0);if(this.allowedCodePoints.has(r))return 0;if(this.options.nonBasicASCII)return 1;let i=!1,s=!1;if(n)for(const a of n){const l=a.codePointAt(0),o=il(a);i=i||o,!o&&!this.ambiguousCharacters.isAmbiguous(l)&&!tt.isInvisibleCharacter(l)&&(s=!0)}return!i&&s?0:this.options.invisibleCharacters&&!Es(t)&&tt.isInvisibleCharacter(r)?2:this.options.ambiguousCharacters&&this.ambiguousCharacters.isAmbiguous(r)?3:0}}function Es(e){return e===" "||e===`
|
||
`||e===" "}class hn{constructor(t,n,r){this.changes=t,this.moves=n,this.hitTimeout=r}}class bu{constructor(t,n){this.lineRangeMapping=t,this.changes=n}}class W{static addRange(t,n){let r=0;for(;r<n.length&&n[r].endExclusive<t.start;)r++;let i=r;for(;i<n.length&&n[i].start<=t.endExclusive;)i++;if(r===i)n.splice(r,0,t);else{const s=Math.min(t.start,n[r].start),a=Math.max(t.endExclusive,n[i-1].endExclusive);n.splice(r,i-r,new W(s,a))}}static tryCreate(t,n){if(!(t>n))return new W(t,n)}static ofLength(t){return new W(0,t)}static ofStartAndLength(t,n){return new W(t,t+n)}constructor(t,n){if(this.start=t,this.endExclusive=n,t>n)throw new de(`Invalid range: ${this.toString()}`)}get isEmpty(){return this.start===this.endExclusive}delta(t){return new W(this.start+t,this.endExclusive+t)}deltaStart(t){return new W(this.start+t,this.endExclusive)}deltaEnd(t){return new W(this.start,this.endExclusive+t)}get length(){return this.endExclusive-this.start}toString(){return`[${this.start}, ${this.endExclusive})`}contains(t){return this.start<=t&&t<this.endExclusive}join(t){return new W(Math.min(this.start,t.start),Math.max(this.endExclusive,t.endExclusive))}intersect(t){const n=Math.max(this.start,t.start),r=Math.min(this.endExclusive,t.endExclusive);if(n<=r)return new W(n,r)}intersects(t){const n=Math.max(this.start,t.start),r=Math.min(this.endExclusive,t.endExclusive);return n<r}isBefore(t){return this.endExclusive<=t.start}isAfter(t){return this.start>=t.endExclusive}slice(t){return t.slice(this.start,this.endExclusive)}substring(t){return t.substring(this.start,this.endExclusive)}clip(t){if(this.isEmpty)throw new de(`Invalid clipping range: ${this.toString()}`);return Math.max(this.start,Math.min(this.endExclusive-1,t))}clipCyclic(t){if(this.isEmpty)throw new de(`Invalid clipping range: ${this.toString()}`);return t<this.start?this.endExclusive-(this.start-t)%this.length:t>=this.endExclusive?this.start+(t-this.start)%this.length:t}forEach(t){for(let n=this.start;n<this.endExclusive;n++)t(n)}}function dt(e,t){const n=Pt(e,t);return n===-1?void 0:e[n]}function Pt(e,t,n=0,r=e.length){let i=n,s=r;for(;i<s;){const a=Math.floor((i+s)/2);t(e[a])?i=a+1:s=a}return i-1}function yu(e,t){const n=sr(e,t);return n===e.length?void 0:e[n]}function sr(e,t,n=0,r=e.length){let i=n,s=r;for(;i<s;){const a=Math.floor((i+s)/2);t(e[a])?s=a:i=a+1}return i}class mn{static{this.assertInvariants=!1}constructor(t){this._array=t,this._findLastMonotonousLastIdx=0}findLastMonotonous(t){if(mn.assertInvariants){if(this._prevFindLastPredicate){for(const r of this._array)if(this._prevFindLastPredicate(r)&&!t(r))throw new Error("MonotonousArray: current predicate must be weaker than (or equal to) the previous predicate.")}this._prevFindLastPredicate=t}const n=Pt(this._array,t,this._findLastMonotonousLastIdx);return this._findLastMonotonousLastIdx=n+1,n===-1?void 0:this._array[n]}}class B{static fromRangeInclusive(t){return new B(t.startLineNumber,t.endLineNumber+1)}static joinMany(t){if(t.length===0)return[];let n=new Pe(t[0].slice());for(let r=1;r<t.length;r++)n=n.getUnion(new Pe(t[r].slice()));return n.ranges}static join(t){if(t.length===0)throw new de("lineRanges cannot be empty");let n=t[0].startLineNumber,r=t[0].endLineNumberExclusive;for(let i=1;i<t.length;i++)n=Math.min(n,t[i].startLineNumber),r=Math.max(r,t[i].endLineNumberExclusive);return new B(n,r)}static ofLength(t,n){return new B(t,t+n)}static deserialize(t){return new B(t[0],t[1])}constructor(t,n){if(t>n)throw new de(`startLineNumber ${t} cannot be after endLineNumberExclusive ${n}`);this.startLineNumber=t,this.endLineNumberExclusive=n}contains(t){return this.startLineNumber<=t&&t<this.endLineNumberExclusive}get isEmpty(){return this.startLineNumber===this.endLineNumberExclusive}delta(t){return new B(this.startLineNumber+t,this.endLineNumberExclusive+t)}deltaLength(t){return new B(this.startLineNumber,this.endLineNumberExclusive+t)}get length(){return this.endLineNumberExclusive-this.startLineNumber}join(t){return new B(Math.min(this.startLineNumber,t.startLineNumber),Math.max(this.endLineNumberExclusive,t.endLineNumberExclusive))}toString(){return`[${this.startLineNumber},${this.endLineNumberExclusive})`}intersect(t){const n=Math.max(this.startLineNumber,t.startLineNumber),r=Math.min(this.endLineNumberExclusive,t.endLineNumberExclusive);if(n<=r)return new B(n,r)}intersectsStrict(t){return this.startLineNumber<t.endLineNumberExclusive&&t.startLineNumber<this.endLineNumberExclusive}overlapOrTouch(t){return this.startLineNumber<=t.endLineNumberExclusive&&t.startLineNumber<=this.endLineNumberExclusive}equals(t){return this.startLineNumber===t.startLineNumber&&this.endLineNumberExclusive===t.endLineNumberExclusive}toInclusiveRange(){return this.isEmpty?null:new z(this.startLineNumber,1,this.endLineNumberExclusive-1,Number.MAX_SAFE_INTEGER)}toExclusiveRange(){return new z(this.startLineNumber,1,this.endLineNumberExclusive,1)}mapToLineArray(t){const n=[];for(let r=this.startLineNumber;r<this.endLineNumberExclusive;r++)n.push(t(r));return n}forEach(t){for(let n=this.startLineNumber;n<this.endLineNumberExclusive;n++)t(n)}serialize(){return[this.startLineNumber,this.endLineNumberExclusive]}includes(t){return this.startLineNumber<=t&&t<this.endLineNumberExclusive}toOffsetRange(){return new W(this.startLineNumber-1,this.endLineNumberExclusive-1)}}class Pe{constructor(t=[]){this._normalizedRanges=t}get ranges(){return this._normalizedRanges}addRange(t){if(t.length===0)return;const n=sr(this._normalizedRanges,i=>i.endLineNumberExclusive>=t.startLineNumber),r=Pt(this._normalizedRanges,i=>i.startLineNumber<=t.endLineNumberExclusive)+1;if(n===r)this._normalizedRanges.splice(n,0,t);else if(n===r-1){const i=this._normalizedRanges[n];this._normalizedRanges[n]=i.join(t)}else{const i=this._normalizedRanges[n].join(this._normalizedRanges[r-1]).join(t);this._normalizedRanges.splice(n,r-n,i)}}contains(t){const n=dt(this._normalizedRanges,r=>r.startLineNumber<=t);return!!n&&n.endLineNumberExclusive>t}intersects(t){const n=dt(this._normalizedRanges,r=>r.startLineNumber<t.endLineNumberExclusive);return!!n&&n.endLineNumberExclusive>t.startLineNumber}getUnion(t){if(this._normalizedRanges.length===0)return t;if(t._normalizedRanges.length===0)return this;const n=[];let r=0,i=0,s=null;for(;r<this._normalizedRanges.length||i<t._normalizedRanges.length;){let a=null;if(r<this._normalizedRanges.length&&i<t._normalizedRanges.length){const l=this._normalizedRanges[r],o=t._normalizedRanges[i];l.startLineNumber<o.startLineNumber?(a=l,r++):(a=o,i++)}else r<this._normalizedRanges.length?(a=this._normalizedRanges[r],r++):(a=t._normalizedRanges[i],i++);s===null?s=a:s.endLineNumberExclusive>=a.startLineNumber?s=new B(s.startLineNumber,Math.max(s.endLineNumberExclusive,a.endLineNumberExclusive)):(n.push(s),s=a)}return s!==null&&n.push(s),new Pe(n)}subtractFrom(t){const n=sr(this._normalizedRanges,a=>a.endLineNumberExclusive>=t.startLineNumber),r=Pt(this._normalizedRanges,a=>a.startLineNumber<=t.endLineNumberExclusive)+1;if(n===r)return new Pe([t]);const i=[];let s=t.startLineNumber;for(let a=n;a<r;a++){const l=this._normalizedRanges[a];l.startLineNumber>s&&i.push(new B(s,l.startLineNumber)),s=l.endLineNumberExclusive}return s<t.endLineNumberExclusive&&i.push(new B(s,t.endLineNumberExclusive)),new Pe(i)}toString(){return this._normalizedRanges.map(t=>t.toString()).join(", ")}getIntersection(t){const n=[];let r=0,i=0;for(;r<this._normalizedRanges.length&&i<t._normalizedRanges.length;){const s=this._normalizedRanges[r],a=t._normalizedRanges[i],l=s.intersect(a);l&&!l.isEmpty&&n.push(l),s.endLineNumberExclusive<a.endLineNumberExclusive?r++:i++}return new Pe(n)}getWithDelta(t){return new Pe(this._normalizedRanges.map(n=>n.delta(t)))}}class gt{static{this.zero=new gt(0,0)}static betweenPositions(t,n){return t.lineNumber===n.lineNumber?new gt(0,n.column-t.column):new gt(n.lineNumber-t.lineNumber,n.column-1)}static ofRange(t){return gt.betweenPositions(t.getStartPosition(),t.getEndPosition())}static ofText(t){let n=0,r=0;for(const i of t)i===`
|
||
`?(n++,r=0):r++;return new gt(n,r)}constructor(t,n){this.lineCount=t,this.columnCount=n}isGreaterThanOrEqualTo(t){return this.lineCount!==t.lineCount?this.lineCount>t.lineCount:this.columnCount>=t.columnCount}createRange(t){return this.lineCount===0?new z(t.lineNumber,t.column,t.lineNumber,t.column+this.columnCount):new z(t.lineNumber,t.column,t.lineNumber+this.lineCount,this.columnCount+1)}addToPosition(t){return this.lineCount===0?new K(t.lineNumber,t.column+this.columnCount):new K(t.lineNumber+this.lineCount,this.columnCount+1)}toString(){return`${this.lineCount},${this.columnCount}`}}class vu{constructor(t,n){this.range=t,this.text=n}toSingleEditOperation(){return{range:this.range,text:this.text}}}class _e{static inverse(t,n,r){const i=[];let s=1,a=1;for(const o of t){const u=new _e(new B(s,o.original.startLineNumber),new B(a,o.modified.startLineNumber));u.modified.isEmpty||i.push(u),s=o.original.endLineNumberExclusive,a=o.modified.endLineNumberExclusive}const l=new _e(new B(s,n+1),new B(a,r+1));return l.modified.isEmpty||i.push(l),i}static clip(t,n,r){const i=[];for(const s of t){const a=s.original.intersect(n),l=s.modified.intersect(r);a&&!a.isEmpty&&l&&!l.isEmpty&&i.push(new _e(a,l))}return i}constructor(t,n){this.original=t,this.modified=n}toString(){return`{${this.original.toString()}->${this.modified.toString()}}`}flip(){return new _e(this.modified,this.original)}join(t){return new _e(this.original.join(t.original),this.modified.join(t.modified))}toRangeMapping(){const t=this.original.toInclusiveRange(),n=this.modified.toInclusiveRange();if(t&&n)return new Ae(t,n);if(this.original.startLineNumber===1||this.modified.startLineNumber===1){if(!(this.modified.startLineNumber===1&&this.original.startLineNumber===1))throw new de("not a valid diff");return new Ae(new z(this.original.startLineNumber,1,this.original.endLineNumberExclusive,1),new z(this.modified.startLineNumber,1,this.modified.endLineNumberExclusive,1))}else return new Ae(new z(this.original.startLineNumber-1,Number.MAX_SAFE_INTEGER,this.original.endLineNumberExclusive-1,Number.MAX_SAFE_INTEGER),new z(this.modified.startLineNumber-1,Number.MAX_SAFE_INTEGER,this.modified.endLineNumberExclusive-1,Number.MAX_SAFE_INTEGER))}toRangeMapping2(t,n){if(Ms(this.original.endLineNumberExclusive,t)&&Ms(this.modified.endLineNumberExclusive,n))return new Ae(new z(this.original.startLineNumber,1,this.original.endLineNumberExclusive,1),new z(this.modified.startLineNumber,1,this.modified.endLineNumberExclusive,1));if(!this.original.isEmpty&&!this.modified.isEmpty)return new Ae(z.fromPositions(new K(this.original.startLineNumber,1),pt(new K(this.original.endLineNumberExclusive-1,Number.MAX_SAFE_INTEGER),t)),z.fromPositions(new K(this.modified.startLineNumber,1),pt(new K(this.modified.endLineNumberExclusive-1,Number.MAX_SAFE_INTEGER),n)));if(this.original.startLineNumber>1&&this.modified.startLineNumber>1)return new Ae(z.fromPositions(pt(new K(this.original.startLineNumber-1,Number.MAX_SAFE_INTEGER),t),pt(new K(this.original.endLineNumberExclusive-1,Number.MAX_SAFE_INTEGER),t)),z.fromPositions(pt(new K(this.modified.startLineNumber-1,Number.MAX_SAFE_INTEGER),n),pt(new K(this.modified.endLineNumberExclusive-1,Number.MAX_SAFE_INTEGER),n)));throw new de}}function pt(e,t){if(e.lineNumber<1)return new K(1,1);if(e.lineNumber>t.length)return new K(t.length,t[t.length-1].length+1);const n=t[e.lineNumber-1];return e.column>n.length+1?new K(e.lineNumber,n.length+1):e}function Ms(e,t){return e>=1&&e<=t.length}class $e extends _e{static fromRangeMappings(t){const n=B.join(t.map(i=>B.fromRangeInclusive(i.originalRange))),r=B.join(t.map(i=>B.fromRangeInclusive(i.modifiedRange)));return new $e(n,r,t)}constructor(t,n,r){super(t,n),this.innerChanges=r}flip(){return new $e(this.modified,this.original,this.innerChanges?.map(t=>t.flip()))}withInnerChangesFromLineRanges(){return new $e(this.original,this.modified,[this.toRangeMapping()])}}class Ae{static assertSorted(t){for(let n=1;n<t.length;n++){const r=t[n-1],i=t[n];if(!(r.originalRange.getEndPosition().isBeforeOrEqual(i.originalRange.getStartPosition())&&r.modifiedRange.getEndPosition().isBeforeOrEqual(i.modifiedRange.getStartPosition())))throw new de("Range mappings must be sorted")}}constructor(t,n){this.originalRange=t,this.modifiedRange=n}toString(){return`{${this.originalRange.toString()}->${this.modifiedRange.toString()}}`}flip(){return new Ae(this.modifiedRange,this.originalRange)}toTextEdit(t){const n=t.getValueOfRange(this.modifiedRange);return new vu(this.originalRange,n)}}const xu=3;class wu{computeDiff(t,n,r){const s=new Nu(t,n,{maxComputationTime:r.maxComputationTimeMs,shouldIgnoreTrimWhitespace:r.ignoreTrimWhitespace,shouldComputeCharChanges:!0,shouldMakePrettyDiff:!0,shouldPostProcessCharChanges:!0}).computeDiff(),a=[];let l=null;for(const o of s.changes){let u;o.originalEndLineNumber===0?u=new B(o.originalStartLineNumber+1,o.originalStartLineNumber+1):u=new B(o.originalStartLineNumber,o.originalEndLineNumber+1);let h;o.modifiedEndLineNumber===0?h=new B(o.modifiedStartLineNumber+1,o.modifiedStartLineNumber+1):h=new B(o.modifiedStartLineNumber,o.modifiedEndLineNumber+1);let c=new $e(u,h,o.charChanges?.map(m=>new Ae(new z(m.originalStartLineNumber,m.originalStartColumn,m.originalEndLineNumber,m.originalEndColumn),new z(m.modifiedStartLineNumber,m.modifiedStartColumn,m.modifiedEndLineNumber,m.modifiedEndColumn))));l&&(l.modified.endLineNumberExclusive===c.modified.startLineNumber||l.original.endLineNumberExclusive===c.original.startLineNumber)&&(c=new $e(l.original.join(c.original),l.modified.join(c.modified),l.innerChanges&&c.innerChanges?l.innerChanges.concat(c.innerChanges):void 0),a.pop()),a.push(c),l=c}return fn(()=>Ns(a,(o,u)=>u.original.startLineNumber-o.original.endLineNumberExclusive===u.modified.startLineNumber-o.modified.endLineNumberExclusive&&o.original.endLineNumberExclusive<u.original.startLineNumber&&o.modified.endLineNumberExclusive<u.modified.startLineNumber)),new hn(a,[],s.quitEarly)}}function Cs(e,t,n,r){return new Xe(e,t,n).ComputeDiff(r)}let Ts=class{constructor(t){const n=[],r=[];for(let i=0,s=t.length;i<s;i++)n[i]=ar(t[i],1),r[i]=or(t[i],1);this.lines=t,this._startColumns=n,this._endColumns=r}getElements(){const t=[];for(let n=0,r=this.lines.length;n<r;n++)t[n]=this.lines[n].substring(this._startColumns[n]-1,this._endColumns[n]-1);return t}getStrictElement(t){return this.lines[t]}getStartLineNumber(t){return t+1}getEndLineNumber(t){return t+1}createCharSequence(t,n,r){const i=[],s=[],a=[];let l=0;for(let o=n;o<=r;o++){const u=this.lines[o],h=t?this._startColumns[o]:1,c=t?this._endColumns[o]:u.length+1;for(let m=h;m<c;m++)i[l]=u.charCodeAt(m-1),s[l]=o+1,a[l]=m,l++;!t&&o<r&&(i[l]=10,s[l]=o+1,a[l]=u.length+1,l++)}return new _u(i,s,a)}};class _u{constructor(t,n,r){this._charCodes=t,this._lineNumbers=n,this._columns=r}toString(){return"["+this._charCodes.map((t,n)=>(t===10?"\\n":String.fromCharCode(t))+`-(${this._lineNumbers[n]},${this._columns[n]})`).join(", ")+"]"}_assertIndex(t,n){if(t<0||t>=n.length)throw new Error("Illegal index")}getElements(){return this._charCodes}getStartLineNumber(t){return t>0&&t===this._lineNumbers.length?this.getEndLineNumber(t-1):(this._assertIndex(t,this._lineNumbers),this._lineNumbers[t])}getEndLineNumber(t){return t===-1?this.getStartLineNumber(t+1):(this._assertIndex(t,this._lineNumbers),this._charCodes[t]===10?this._lineNumbers[t]+1:this._lineNumbers[t])}getStartColumn(t){return t>0&&t===this._columns.length?this.getEndColumn(t-1):(this._assertIndex(t,this._columns),this._columns[t])}getEndColumn(t){return t===-1?this.getStartColumn(t+1):(this._assertIndex(t,this._columns),this._charCodes[t]===10?1:this._columns[t]+1)}}class bt{constructor(t,n,r,i,s,a,l,o){this.originalStartLineNumber=t,this.originalStartColumn=n,this.originalEndLineNumber=r,this.originalEndColumn=i,this.modifiedStartLineNumber=s,this.modifiedStartColumn=a,this.modifiedEndLineNumber=l,this.modifiedEndColumn=o}static createFromDiffChange(t,n,r){const i=n.getStartLineNumber(t.originalStart),s=n.getStartColumn(t.originalStart),a=n.getEndLineNumber(t.originalStart+t.originalLength-1),l=n.getEndColumn(t.originalStart+t.originalLength-1),o=r.getStartLineNumber(t.modifiedStart),u=r.getStartColumn(t.modifiedStart),h=r.getEndLineNumber(t.modifiedStart+t.modifiedLength-1),c=r.getEndColumn(t.modifiedStart+t.modifiedLength-1);return new bt(i,s,a,l,o,u,h,c)}}function Lu(e){if(e.length<=1)return e;const t=[e[0]];let n=t[0];for(let r=1,i=e.length;r<i;r++){const s=e[r],a=s.originalStart-(n.originalStart+n.originalLength),l=s.modifiedStart-(n.modifiedStart+n.modifiedLength);Math.min(a,l)<xu?(n.originalLength=s.originalStart+s.originalLength-n.originalStart,n.modifiedLength=s.modifiedStart+s.modifiedLength-n.modifiedStart):(t.push(s),n=s)}return t}class It{constructor(t,n,r,i,s){this.originalStartLineNumber=t,this.originalEndLineNumber=n,this.modifiedStartLineNumber=r,this.modifiedEndLineNumber=i,this.charChanges=s}static createFromDiffResult(t,n,r,i,s,a,l){let o,u,h,c,m;if(n.originalLength===0?(o=r.getStartLineNumber(n.originalStart)-1,u=0):(o=r.getStartLineNumber(n.originalStart),u=r.getEndLineNumber(n.originalStart+n.originalLength-1)),n.modifiedLength===0?(h=i.getStartLineNumber(n.modifiedStart)-1,c=0):(h=i.getStartLineNumber(n.modifiedStart),c=i.getEndLineNumber(n.modifiedStart+n.modifiedLength-1)),a&&n.originalLength>0&&n.originalLength<20&&n.modifiedLength>0&&n.modifiedLength<20&&s()){const d=r.createCharSequence(t,n.originalStart,n.originalStart+n.originalLength-1),g=i.createCharSequence(t,n.modifiedStart,n.modifiedStart+n.modifiedLength-1);if(d.getElements().length>0&&g.getElements().length>0){let p=Cs(d,g,s,!0).changes;l&&(p=Lu(p)),m=[];for(let y=0,w=p.length;y<w;y++)m.push(bt.createFromDiffChange(p[y],d,g))}}return new It(o,u,h,c,m)}}class Nu{constructor(t,n,r){this.shouldComputeCharChanges=r.shouldComputeCharChanges,this.shouldPostProcessCharChanges=r.shouldPostProcessCharChanges,this.shouldIgnoreTrimWhitespace=r.shouldIgnoreTrimWhitespace,this.shouldMakePrettyDiff=r.shouldMakePrettyDiff,this.originalLines=t,this.modifiedLines=n,this.original=new Ts(t),this.modified=new Ts(n),this.continueLineDiff=Ps(r.maxComputationTime),this.continueCharDiff=Ps(r.maxComputationTime===0?0:Math.min(r.maxComputationTime,5e3))}computeDiff(){if(this.original.lines.length===1&&this.original.lines[0].length===0)return this.modified.lines.length===1&&this.modified.lines[0].length===0?{quitEarly:!1,changes:[]}:{quitEarly:!1,changes:[{originalStartLineNumber:1,originalEndLineNumber:1,modifiedStartLineNumber:1,modifiedEndLineNumber:this.modified.lines.length,charChanges:void 0}]};if(this.modified.lines.length===1&&this.modified.lines[0].length===0)return{quitEarly:!1,changes:[{originalStartLineNumber:1,originalEndLineNumber:this.original.lines.length,modifiedStartLineNumber:1,modifiedEndLineNumber:1,charChanges:void 0}]};const t=Cs(this.original,this.modified,this.continueLineDiff,this.shouldMakePrettyDiff),n=t.changes,r=t.quitEarly;if(this.shouldIgnoreTrimWhitespace){const l=[];for(let o=0,u=n.length;o<u;o++)l.push(It.createFromDiffResult(this.shouldIgnoreTrimWhitespace,n[o],this.original,this.modified,this.continueCharDiff,this.shouldComputeCharChanges,this.shouldPostProcessCharChanges));return{quitEarly:r,changes:l}}const i=[];let s=0,a=0;for(let l=-1,o=n.length;l<o;l++){const u=l+1<o?n[l+1]:null,h=u?u.originalStart:this.originalLines.length,c=u?u.modifiedStart:this.modifiedLines.length;for(;s<h&&a<c;){const m=this.originalLines[s],d=this.modifiedLines[a];if(m!==d){{let g=ar(m,1),p=ar(d,1);for(;g>1&&p>1;){const y=m.charCodeAt(g-2),w=d.charCodeAt(p-2);if(y!==w)break;g--,p--}(g>1||p>1)&&this._pushTrimWhitespaceCharChange(i,s+1,1,g,a+1,1,p)}{let g=or(m,1),p=or(d,1);const y=m.length+1,w=d.length+1;for(;g<y&&p<w;){const _=m.charCodeAt(g-1),v=m.charCodeAt(p-1);if(_!==v)break;g++,p++}(g<y||p<w)&&this._pushTrimWhitespaceCharChange(i,s+1,g,y,a+1,p,w)}}s++,a++}u&&(i.push(It.createFromDiffResult(this.shouldIgnoreTrimWhitespace,u,this.original,this.modified,this.continueCharDiff,this.shouldComputeCharChanges,this.shouldPostProcessCharChanges)),s+=u.originalLength,a+=u.modifiedLength)}return{quitEarly:r,changes:i}}_pushTrimWhitespaceCharChange(t,n,r,i,s,a,l){if(this._mergeTrimWhitespaceCharChange(t,n,r,i,s,a,l))return;let o;this.shouldComputeCharChanges&&(o=[new bt(n,r,n,i,s,a,s,l)]),t.push(new It(n,n,s,s,o))}_mergeTrimWhitespaceCharChange(t,n,r,i,s,a,l){const o=t.length;if(o===0)return!1;const u=t[o-1];return u.originalEndLineNumber===0||u.modifiedEndLineNumber===0?!1:u.originalEndLineNumber===n&&u.modifiedEndLineNumber===s?(this.shouldComputeCharChanges&&u.charChanges&&u.charChanges.push(new bt(n,r,n,i,s,a,s,l)),!0):u.originalEndLineNumber+1===n&&u.modifiedEndLineNumber+1===s?(u.originalEndLineNumber=n,u.modifiedEndLineNumber=s,this.shouldComputeCharChanges&&u.charChanges&&u.charChanges.push(new bt(n,r,n,i,s,a,s,l)),!0):!1}}function ar(e,t){const n=el(e);return n===-1?t:n+1}function or(e,t){const n=tl(e);return n===-1?t:n+2}function Ps(e){if(e===0)return()=>!0;const t=Date.now();return()=>Date.now()-t<e}function Su(e,t,n=(r,i)=>r===i){if(e===t)return!0;if(!e||!t||e.length!==t.length)return!1;for(let r=0,i=e.length;r<i;r++)if(!n(e[r],t[r]))return!1;return!0}function*Au(e,t){let n,r;for(const i of e)r!==void 0&&t(r,i)?n.push(i):(n&&(yield n),n=[i]),r=i;n&&(yield n)}function ku(e,t){for(let n=0;n<=e.length;n++)t(n===0?void 0:e[n-1],n===e.length?void 0:e[n])}function Ru(e,t){for(let n=0;n<e.length;n++)t(n===0?void 0:e[n-1],e[n],n+1===e.length?void 0:e[n+1])}function Eu(e,t){for(const n of t)e.push(n)}var lr;(function(e){function t(s){return s<0}e.isLessThan=t;function n(s){return s<=0}e.isLessThanOrEqual=n;function r(s){return s>0}e.isGreaterThan=r;function i(s){return s===0}e.isNeitherLessOrGreaterThan=i,e.greaterThan=1,e.lessThan=-1,e.neitherLessOrGreaterThan=0})(lr||(lr={}));function dn(e,t){return(n,r)=>t(e(n),e(r))}const gn=(e,t)=>e-t;function Mu(e){return(t,n)=>-e(t,n)}class pn{static{this.empty=new pn(t=>{})}constructor(t){this.iterate=t}toArray(){const t=[];return this.iterate(n=>(t.push(n),!0)),t}filter(t){return new pn(n=>this.iterate(r=>t(r)?n(r):!0))}map(t){return new pn(n=>this.iterate(r=>n(t(r))))}findLast(t){let n;return this.iterate(r=>(t(r)&&(n=r),!0)),n}findLastMaxBy(t){let n,r=!0;return this.iterate(i=>((r||lr.isGreaterThan(t(i,n)))&&(r=!1,n=i),!0)),n}}class Ue{static trivial(t,n){return new Ue([new Q(W.ofLength(t.length),W.ofLength(n.length))],!1)}static trivialTimedOut(t,n){return new Ue([new Q(W.ofLength(t.length),W.ofLength(n.length))],!0)}constructor(t,n){this.diffs=t,this.hitTimeout=n}}class Q{static invert(t,n){const r=[];return ku(t,(i,s)=>{r.push(Q.fromOffsetPairs(i?i.getEndExclusives():ke.zero,s?s.getStarts():new ke(n,(i?i.seq2Range.endExclusive-i.seq1Range.endExclusive:0)+n)))}),r}static fromOffsetPairs(t,n){return new Q(new W(t.offset1,n.offset1),new W(t.offset2,n.offset2))}static assertSorted(t){let n;for(const r of t){if(n&&!(n.seq1Range.endExclusive<=r.seq1Range.start&&n.seq2Range.endExclusive<=r.seq2Range.start))throw new de("Sequence diffs must be sorted");n=r}}constructor(t,n){this.seq1Range=t,this.seq2Range=n}swap(){return new Q(this.seq2Range,this.seq1Range)}toString(){return`${this.seq1Range} <-> ${this.seq2Range}`}join(t){return new Q(this.seq1Range.join(t.seq1Range),this.seq2Range.join(t.seq2Range))}delta(t){return t===0?this:new Q(this.seq1Range.delta(t),this.seq2Range.delta(t))}deltaStart(t){return t===0?this:new Q(this.seq1Range.deltaStart(t),this.seq2Range.deltaStart(t))}deltaEnd(t){return t===0?this:new Q(this.seq1Range.deltaEnd(t),this.seq2Range.deltaEnd(t))}intersect(t){const n=this.seq1Range.intersect(t.seq1Range),r=this.seq2Range.intersect(t.seq2Range);if(!(!n||!r))return new Q(n,r)}getStarts(){return new ke(this.seq1Range.start,this.seq2Range.start)}getEndExclusives(){return new ke(this.seq1Range.endExclusive,this.seq2Range.endExclusive)}}class ke{static{this.zero=new ke(0,0)}static{this.max=new ke(Number.MAX_SAFE_INTEGER,Number.MAX_SAFE_INTEGER)}constructor(t,n){this.offset1=t,this.offset2=n}toString(){return`${this.offset1} <-> ${this.offset2}`}delta(t){return t===0?this:new ke(this.offset1+t,this.offset2+t)}equals(t){return this.offset1===t.offset1&&this.offset2===t.offset2}}class Ft{static{this.instance=new Ft}isValid(){return!0}}class Cu{constructor(t){if(this.timeout=t,this.startTime=Date.now(),this.valid=!0,t<=0)throw new de("timeout must be positive")}isValid(){if(!(Date.now()-this.startTime<this.timeout)&&this.valid){this.valid=!1;debugger}return this.valid}}class ur{constructor(t,n){this.width=t,this.height=n,this.array=[],this.array=new Array(t*n)}get(t,n){return this.array[t+n*this.width]}set(t,n,r){this.array[t+n*this.width]=r}}function cr(e){return e===32||e===9}class Vt{static{this.chrKeys=new Map}static getKey(t){let n=this.chrKeys.get(t);return n===void 0&&(n=this.chrKeys.size,this.chrKeys.set(t,n)),n}constructor(t,n,r){this.range=t,this.lines=n,this.source=r,this.histogram=[];let i=0;for(let s=t.startLineNumber-1;s<t.endLineNumberExclusive-1;s++){const a=n[s];for(let o=0;o<a.length;o++){i++;const u=a[o],h=Vt.getKey(u);this.histogram[h]=(this.histogram[h]||0)+1}i++;const l=Vt.getKey(`
|
||
`);this.histogram[l]=(this.histogram[l]||0)+1}this.totalCount=i}computeSimilarity(t){let n=0;const r=Math.max(this.histogram.length,t.histogram.length);for(let i=0;i<r;i++)n+=Math.abs((this.histogram[i]??0)-(t.histogram[i]??0));return 1-n/(this.totalCount+t.totalCount)}}class Tu{compute(t,n,r=Ft.instance,i){if(t.length===0||n.length===0)return Ue.trivial(t,n);const s=new ur(t.length,n.length),a=new ur(t.length,n.length),l=new ur(t.length,n.length);for(let g=0;g<t.length;g++)for(let p=0;p<n.length;p++){if(!r.isValid())return Ue.trivialTimedOut(t,n);const y=g===0?0:s.get(g-1,p),w=p===0?0:s.get(g,p-1);let _;t.getElement(g)===n.getElement(p)?(g===0||p===0?_=0:_=s.get(g-1,p-1),g>0&&p>0&&a.get(g-1,p-1)===3&&(_+=l.get(g-1,p-1)),_+=i?i(g,p):1):_=-1;const v=Math.max(y,w,_);if(v===_){const x=g>0&&p>0?l.get(g-1,p-1):0;l.set(g,p,x+1),a.set(g,p,3)}else v===y?(l.set(g,p,0),a.set(g,p,1)):v===w&&(l.set(g,p,0),a.set(g,p,2));s.set(g,p,v)}const o=[];let u=t.length,h=n.length;function c(g,p){(g+1!==u||p+1!==h)&&o.push(new Q(new W(g+1,u),new W(p+1,h))),u=g,h=p}let m=t.length-1,d=n.length-1;for(;m>=0&&d>=0;)a.get(m,d)===3?(c(m,d),m--,d--):a.get(m,d)===1?m--:d--;return c(-1,-1),o.reverse(),new Ue(o,!1)}}class Is{compute(t,n,r=Ft.instance){if(t.length===0||n.length===0)return Ue.trivial(t,n);const i=t,s=n;function a(p,y){for(;p<i.length&&y<s.length&&i.getElement(p)===s.getElement(y);)p++,y++;return p}let l=0;const o=new Pu;o.set(0,a(0,0));const u=new Iu;u.set(0,o.get(0)===0?null:new Fs(null,0,0,o.get(0)));let h=0;e:for(;;){if(l++,!r.isValid())return Ue.trivialTimedOut(i,s);const p=-Math.min(l,s.length+l%2),y=Math.min(l,i.length+l%2);for(h=p;h<=y;h+=2){const w=h===y?-1:o.get(h+1),_=h===p?-1:o.get(h-1)+1,v=Math.min(Math.max(w,_),i.length),x=v-h;if(v>i.length||x>s.length)continue;const b=a(v,x);o.set(h,b);const L=v===w?u.get(h+1):u.get(h-1);if(u.set(h,b!==v?new Fs(L,v,x,b-v):L),o.get(h)===i.length&&o.get(h)-h===s.length)break e}}let c=u.get(h);const m=[];let d=i.length,g=s.length;for(;;){const p=c?c.x+c.length:0,y=c?c.y+c.length:0;if((p!==d||y!==g)&&m.push(new Q(new W(p,d),new W(y,g))),!c)break;d=c.x,g=c.y,c=c.prev}return m.reverse(),new Ue(m,!1)}}class Fs{constructor(t,n,r,i){this.prev=t,this.x=n,this.y=r,this.length=i}}class Pu{constructor(){this.positiveArr=new Int32Array(10),this.negativeArr=new Int32Array(10)}get(t){return t<0?(t=-t-1,this.negativeArr[t]):this.positiveArr[t]}set(t,n){if(t<0){if(t=-t-1,t>=this.negativeArr.length){const r=this.negativeArr;this.negativeArr=new Int32Array(r.length*2),this.negativeArr.set(r)}this.negativeArr[t]=n}else{if(t>=this.positiveArr.length){const r=this.positiveArr;this.positiveArr=new Int32Array(r.length*2),this.positiveArr.set(r)}this.positiveArr[t]=n}}}class Iu{constructor(){this.positiveArr=[],this.negativeArr=[]}get(t){return t<0?(t=-t-1,this.negativeArr[t]):this.positiveArr[t]}set(t,n){t<0?(t=-t-1,this.negativeArr[t]=n):this.positiveArr[t]=n}}class bn{constructor(t,n,r){this.lines=t,this.range=n,this.considerWhitespaceChanges=r,this.elements=[],this.firstElementOffsetByLineIdx=[],this.lineStartOffsets=[],this.trimmedWsLengthsByLineIdx=[],this.firstElementOffsetByLineIdx.push(0);for(let i=this.range.startLineNumber;i<=this.range.endLineNumber;i++){let s=t[i-1],a=0;i===this.range.startLineNumber&&this.range.startColumn>1&&(a=this.range.startColumn-1,s=s.substring(a)),this.lineStartOffsets.push(a);let l=0;if(!r){const u=s.trimStart();l=s.length-u.length,s=u.trimEnd()}this.trimmedWsLengthsByLineIdx.push(l);const o=i===this.range.endLineNumber?Math.min(this.range.endColumn-1-a-l,s.length):s.length;for(let u=0;u<o;u++)this.elements.push(s.charCodeAt(u));i<this.range.endLineNumber&&(this.elements.push(10),this.firstElementOffsetByLineIdx.push(this.elements.length))}}toString(){return`Slice: "${this.text}"`}get text(){return this.getText(new W(0,this.length))}getText(t){return this.elements.slice(t.start,t.endExclusive).map(n=>String.fromCharCode(n)).join("")}getElement(t){return this.elements[t]}get length(){return this.elements.length}getBoundaryScore(t){const n=Ds(t>0?this.elements[t-1]:-1),r=Ds(t<this.elements.length?this.elements[t]:-1);if(n===7&&r===8)return 0;if(n===8)return 150;let i=0;return n!==r&&(i+=10,n===0&&r===1&&(i+=1)),i+=Vs(n),i+=Vs(r),i}translateOffset(t,n="right"){const r=Pt(this.firstElementOffsetByLineIdx,s=>s<=t),i=t-this.firstElementOffsetByLineIdx[r];return new K(this.range.startLineNumber+r,1+this.lineStartOffsets[r]+i+(i===0&&n==="left"?0:this.trimmedWsLengthsByLineIdx[r]))}translateRange(t){const n=this.translateOffset(t.start,"right"),r=this.translateOffset(t.endExclusive,"left");return r.isBefore(n)?z.fromPositions(r,r):z.fromPositions(n,r)}findWordContaining(t){if(t<0||t>=this.elements.length||!fr(this.elements[t]))return;let n=t;for(;n>0&&fr(this.elements[n-1]);)n--;let r=t;for(;r<this.elements.length&&fr(this.elements[r]);)r++;return new W(n,r)}countLinesIn(t){return this.translateOffset(t.endExclusive).lineNumber-this.translateOffset(t.start).lineNumber}isStronglyEqual(t,n){return this.elements[t]===this.elements[n]}extendToFullLines(t){const n=dt(this.firstElementOffsetByLineIdx,i=>i<=t.start)??0,r=yu(this.firstElementOffsetByLineIdx,i=>t.endExclusive<=i)??this.elements.length;return new W(n,r)}}function fr(e){return e>=97&&e<=122||e>=65&&e<=90||e>=48&&e<=57}const Fu={0:0,1:0,2:0,3:10,4:2,5:30,6:3,7:10,8:10};function Vs(e){return Fu[e]}function Ds(e){return e===10?8:e===13?7:cr(e)?6:e>=97&&e<=122?0:e>=65&&e<=90?1:e>=48&&e<=57?2:e===-1?3:e===44||e===59?5:4}function Vu(e,t,n,r,i,s){let{moves:a,excludedChanges:l}=Ou(e,t,n,s);if(!s.isValid())return[];const o=e.filter(h=>!l.has(h)),u=Bu(o,r,i,t,n,s);return Eu(a,u),a=$u(a),a=a.filter(h=>{const c=h.original.toOffsetRange().slice(t).map(d=>d.trim());return c.join(`
|
||
`).length>=15&&Du(c,d=>d.length>=2)>=2}),a=Uu(e,a),a}function Du(e,t){let n=0;for(const r of e)t(r)&&n++;return n}function Ou(e,t,n,r){const i=[],s=e.filter(o=>o.modified.isEmpty&&o.original.length>=3).map(o=>new Vt(o.original,t,o)),a=new Set(e.filter(o=>o.original.isEmpty&&o.modified.length>=3).map(o=>new Vt(o.modified,n,o))),l=new Set;for(const o of s){let u=-1,h;for(const c of a){const m=o.computeSimilarity(c);m>u&&(u=m,h=c)}if(u>.9&&h&&(a.delete(h),i.push(new _e(o.range,h.range)),l.add(o.source),l.add(h.source)),!r.isValid())return{moves:i,excludedChanges:l}}return{moves:i,excludedChanges:l}}function Bu(e,t,n,r,i,s){const a=[],l=new iu;for(const m of e)for(let d=m.original.startLineNumber;d<m.original.endLineNumberExclusive-2;d++){const g=`${t[d-1]}:${t[d+1-1]}:${t[d+2-1]}`;l.add(g,{range:new B(d,d+3)})}const o=[];e.sort(dn(m=>m.modified.startLineNumber,gn));for(const m of e){let d=[];for(let g=m.modified.startLineNumber;g<m.modified.endLineNumberExclusive-2;g++){const p=`${n[g-1]}:${n[g+1-1]}:${n[g+2-1]}`,y=new B(g,g+3),w=[];l.forEach(p,({range:_})=>{for(const x of d)if(x.originalLineRange.endLineNumberExclusive+1===_.endLineNumberExclusive&&x.modifiedLineRange.endLineNumberExclusive+1===y.endLineNumberExclusive){x.originalLineRange=new B(x.originalLineRange.startLineNumber,_.endLineNumberExclusive),x.modifiedLineRange=new B(x.modifiedLineRange.startLineNumber,y.endLineNumberExclusive),w.push(x);return}const v={modifiedLineRange:y,originalLineRange:_};o.push(v),w.push(v)}),d=w}if(!s.isValid())return[]}o.sort(Mu(dn(m=>m.modifiedLineRange.length,gn)));const u=new Pe,h=new Pe;for(const m of o){const d=m.modifiedLineRange.startLineNumber-m.originalLineRange.startLineNumber,g=u.subtractFrom(m.modifiedLineRange),p=h.subtractFrom(m.originalLineRange).getWithDelta(d),y=g.getIntersection(p);for(const w of y.ranges){if(w.length<3)continue;const _=w,v=w.delta(-d);a.push(new _e(v,_)),u.addRange(_),h.addRange(v)}}a.sort(dn(m=>m.original.startLineNumber,gn));const c=new mn(e);for(let m=0;m<a.length;m++){const d=a[m],g=c.findLastMonotonous(L=>L.original.startLineNumber<=d.original.startLineNumber),p=dt(e,L=>L.modified.startLineNumber<=d.modified.startLineNumber),y=Math.max(d.original.startLineNumber-g.original.startLineNumber,d.modified.startLineNumber-p.modified.startLineNumber),w=c.findLastMonotonous(L=>L.original.startLineNumber<d.original.endLineNumberExclusive),_=dt(e,L=>L.modified.startLineNumber<d.modified.endLineNumberExclusive),v=Math.max(w.original.endLineNumberExclusive-d.original.endLineNumberExclusive,_.modified.endLineNumberExclusive-d.modified.endLineNumberExclusive);let x;for(x=0;x<y;x++){const L=d.original.startLineNumber-x-1,S=d.modified.startLineNumber-x-1;if(L>r.length||S>i.length||u.contains(S)||h.contains(L)||!Os(r[L-1],i[S-1],s))break}x>0&&(h.addRange(new B(d.original.startLineNumber-x,d.original.startLineNumber)),u.addRange(new B(d.modified.startLineNumber-x,d.modified.startLineNumber)));let b;for(b=0;b<v;b++){const L=d.original.endLineNumberExclusive+b,S=d.modified.endLineNumberExclusive+b;if(L>r.length||S>i.length||u.contains(S)||h.contains(L)||!Os(r[L-1],i[S-1],s))break}b>0&&(h.addRange(new B(d.original.endLineNumberExclusive,d.original.endLineNumberExclusive+b)),u.addRange(new B(d.modified.endLineNumberExclusive,d.modified.endLineNumberExclusive+b))),(x>0||b>0)&&(a[m]=new _e(new B(d.original.startLineNumber-x,d.original.endLineNumberExclusive+b),new B(d.modified.startLineNumber-x,d.modified.endLineNumberExclusive+b)))}return a}function Os(e,t,n){if(e.trim()===t.trim())return!0;if(e.length>300&&t.length>300)return!1;const i=new Is().compute(new bn([e],new z(1,1,1,e.length),!1),new bn([t],new z(1,1,1,t.length),!1),n);let s=0;const a=Q.invert(i.diffs,e.length);for(const h of a)h.seq1Range.forEach(c=>{cr(e.charCodeAt(c))||s++});function l(h){let c=0;for(let m=0;m<e.length;m++)cr(h.charCodeAt(m))||c++;return c}const o=l(e.length>t.length?e:t);return s/o>.6&&o>10}function $u(e){if(e.length===0)return e;e.sort(dn(n=>n.original.startLineNumber,gn));const t=[e[0]];for(let n=1;n<e.length;n++){const r=t[t.length-1],i=e[n],s=i.original.startLineNumber-r.original.endLineNumberExclusive,a=i.modified.startLineNumber-r.modified.endLineNumberExclusive;if(s>=0&&a>=0&&s+a<=2){t[t.length-1]=r.join(i);continue}t.push(i)}return t}function Uu(e,t){const n=new mn(e);return t=t.filter(r=>{const i=n.findLastMonotonous(l=>l.original.startLineNumber<r.original.endLineNumberExclusive)||new _e(new B(1,1),new B(1,1)),s=dt(e,l=>l.modified.startLineNumber<r.modified.endLineNumberExclusive);return i!==s}),t}function Bs(e,t,n){let r=n;return r=$s(e,t,r),r=$s(e,t,r),r=qu(e,t,r),r}function $s(e,t,n){if(n.length===0)return n;const r=[];r.push(n[0]);for(let s=1;s<n.length;s++){const a=r[r.length-1];let l=n[s];if(l.seq1Range.isEmpty||l.seq2Range.isEmpty){const o=l.seq1Range.start-a.seq1Range.endExclusive;let u;for(u=1;u<=o&&!(e.getElement(l.seq1Range.start-u)!==e.getElement(l.seq1Range.endExclusive-u)||t.getElement(l.seq2Range.start-u)!==t.getElement(l.seq2Range.endExclusive-u));u++);if(u--,u===o){r[r.length-1]=new Q(new W(a.seq1Range.start,l.seq1Range.endExclusive-o),new W(a.seq2Range.start,l.seq2Range.endExclusive-o));continue}l=l.delta(-u)}r.push(l)}const i=[];for(let s=0;s<r.length-1;s++){const a=r[s+1];let l=r[s];if(l.seq1Range.isEmpty||l.seq2Range.isEmpty){const o=a.seq1Range.start-l.seq1Range.endExclusive;let u;for(u=0;u<o&&!(!e.isStronglyEqual(l.seq1Range.start+u,l.seq1Range.endExclusive+u)||!t.isStronglyEqual(l.seq2Range.start+u,l.seq2Range.endExclusive+u));u++);if(u===o){r[s+1]=new Q(new W(l.seq1Range.start+o,a.seq1Range.endExclusive),new W(l.seq2Range.start+o,a.seq2Range.endExclusive));continue}u>0&&(l=l.delta(u))}i.push(l)}return r.length>0&&i.push(r[r.length-1]),i}function qu(e,t,n){if(!e.getBoundaryScore||!t.getBoundaryScore)return n;for(let r=0;r<n.length;r++){const i=r>0?n[r-1]:void 0,s=n[r],a=r+1<n.length?n[r+1]:void 0,l=new W(i?i.seq1Range.endExclusive+1:0,a?a.seq1Range.start-1:e.length),o=new W(i?i.seq2Range.endExclusive+1:0,a?a.seq2Range.start-1:t.length);s.seq1Range.isEmpty?n[r]=Us(s,e,t,l,o):s.seq2Range.isEmpty&&(n[r]=Us(s.swap(),t,e,o,l).swap())}return n}function Us(e,t,n,r,i){let a=1;for(;e.seq1Range.start-a>=r.start&&e.seq2Range.start-a>=i.start&&n.isStronglyEqual(e.seq2Range.start-a,e.seq2Range.endExclusive-a)&&a<100;)a++;a--;let l=0;for(;e.seq1Range.start+l<r.endExclusive&&e.seq2Range.endExclusive+l<i.endExclusive&&n.isStronglyEqual(e.seq2Range.start+l,e.seq2Range.endExclusive+l)&&l<100;)l++;if(a===0&&l===0)return e;let o=0,u=-1;for(let h=-a;h<=l;h++){const c=e.seq2Range.start+h,m=e.seq2Range.endExclusive+h,d=e.seq1Range.start+h,g=t.getBoundaryScore(d)+n.getBoundaryScore(c)+n.getBoundaryScore(m);g>u&&(u=g,o=h)}return e.delta(o)}function ju(e,t,n){const r=[];for(const i of n){const s=r[r.length-1];if(!s){r.push(i);continue}i.seq1Range.start-s.seq1Range.endExclusive<=2||i.seq2Range.start-s.seq2Range.endExclusive<=2?r[r.length-1]=new Q(s.seq1Range.join(i.seq1Range),s.seq2Range.join(i.seq2Range)):r.push(i)}return r}function Wu(e,t,n){const r=Q.invert(n,e.length),i=[];let s=new ke(0,0);function a(o,u){if(o.offset1<s.offset1||o.offset2<s.offset2)return;const h=e.findWordContaining(o.offset1),c=t.findWordContaining(o.offset2);if(!h||!c)return;let m=new Q(h,c);const d=m.intersect(u);let g=d.seq1Range.length,p=d.seq2Range.length;for(;r.length>0;){const y=r[0];if(!(y.seq1Range.intersects(m.seq1Range)||y.seq2Range.intersects(m.seq2Range)))break;const _=e.findWordContaining(y.seq1Range.start),v=t.findWordContaining(y.seq2Range.start),x=new Q(_,v),b=x.intersect(y);if(g+=b.seq1Range.length,p+=b.seq2Range.length,m=m.join(x),m.seq1Range.endExclusive>=y.seq1Range.endExclusive)r.shift();else break}g+p<(m.seq1Range.length+m.seq2Range.length)*2/3&&i.push(m),s=m.getEndExclusives()}for(;r.length>0;){const o=r.shift();o.seq1Range.isEmpty||(a(o.getStarts(),o),a(o.getEndExclusives().delta(-1),o))}return Hu(n,i)}function Hu(e,t){const n=[];for(;e.length>0||t.length>0;){const r=e[0],i=t[0];let s;r&&(!i||r.seq1Range.start<i.seq1Range.start)?s=e.shift():s=t.shift(),n.length>0&&n[n.length-1].seq1Range.endExclusive>=s.seq1Range.start?n[n.length-1]=n[n.length-1].join(s):n.push(s)}return n}function zu(e,t,n){let r=n;if(r.length===0)return r;let i=0,s;do{s=!1;const a=[r[0]];for(let l=1;l<r.length;l++){let h=function(m,d){const g=new W(u.seq1Range.endExclusive,o.seq1Range.start);return e.getText(g).replace(/\s/g,"").length<=4&&(m.seq1Range.length+m.seq2Range.length>5||d.seq1Range.length+d.seq2Range.length>5)};const o=r[l],u=a[a.length-1];h(u,o)?(s=!0,a[a.length-1]=a[a.length-1].join(o)):a.push(o)}r=a}while(i++<10&&s);return r}function Gu(e,t,n){let r=n;if(r.length===0)return r;let i=0,s;do{s=!1;const l=[r[0]];for(let o=1;o<r.length;o++){let c=function(d,g){const p=new W(h.seq1Range.endExclusive,u.seq1Range.start);if(e.countLinesIn(p)>5||p.length>500)return!1;const w=e.getText(p).trim();if(w.length>20||w.split(/\r\n|\r|\n/).length>1)return!1;const _=e.countLinesIn(d.seq1Range),v=d.seq1Range.length,x=t.countLinesIn(d.seq2Range),b=d.seq2Range.length,L=e.countLinesIn(g.seq1Range),S=g.seq1Range.length,M=t.countLinesIn(g.seq2Range),F=g.seq2Range.length,O=130;function C(N){return Math.min(N,O)}return Math.pow(Math.pow(C(_*40+v),1.5)+Math.pow(C(x*40+b),1.5),1.5)+Math.pow(Math.pow(C(L*40+S),1.5)+Math.pow(C(M*40+F),1.5),1.5)>(O**1.5)**1.5*1.3};const u=r[o],h=l[l.length-1];c(h,u)?(s=!0,l[l.length-1]=l[l.length-1].join(u)):l.push(u)}r=l}while(i++<10&&s);const a=[];return Ru(r,(l,o,u)=>{let h=o;function c(w){return w.length>0&&w.trim().length<=3&&o.seq1Range.length+o.seq2Range.length>100}const m=e.extendToFullLines(o.seq1Range),d=e.getText(new W(m.start,o.seq1Range.start));c(d)&&(h=h.deltaStart(-d.length));const g=e.getText(new W(o.seq1Range.endExclusive,m.endExclusive));c(g)&&(h=h.deltaEnd(g.length));const p=Q.fromOffsetPairs(l?l.getEndExclusives():ke.zero,u?u.getStarts():ke.max),y=h.intersect(p);a.length>0&&y.getStarts().equals(a[a.length-1].getEndExclusives())?a[a.length-1]=a[a.length-1].join(y):a.push(y)}),a}class qs{constructor(t,n){this.trimmedHash=t,this.lines=n}getElement(t){return this.trimmedHash[t]}get length(){return this.trimmedHash.length}getBoundaryScore(t){const n=t===0?0:js(this.lines[t-1]),r=t===this.lines.length?0:js(this.lines[t]);return 1e3-(n+r)}getText(t){return this.lines.slice(t.start,t.endExclusive).join(`
|
||
`)}isStronglyEqual(t,n){return this.lines[t]===this.lines[n]}}function js(e){let t=0;for(;t<e.length&&(e.charCodeAt(t)===32||e.charCodeAt(t)===9);)t++;return t}class Ju{constructor(){this.dynamicProgrammingDiffing=new Tu,this.myersDiffingAlgorithm=new Is}computeDiff(t,n,r){if(t.length<=1&&Su(t,n,(b,L)=>b===L))return new hn([],[],!1);if(t.length===1&&t[0].length===0||n.length===1&&n[0].length===0)return new hn([new $e(new B(1,t.length+1),new B(1,n.length+1),[new Ae(new z(1,1,t.length,t[t.length-1].length+1),new z(1,1,n.length,n[n.length-1].length+1))])],[],!1);const i=r.maxComputationTimeMs===0?Ft.instance:new Cu(r.maxComputationTimeMs),s=!r.ignoreTrimWhitespace,a=new Map;function l(b){let L=a.get(b);return L===void 0&&(L=a.size,a.set(b,L)),L}const o=t.map(b=>l(b.trim())),u=n.map(b=>l(b.trim())),h=new qs(o,t),c=new qs(u,n),m=h.length+c.length<1700?this.dynamicProgrammingDiffing.compute(h,c,i,(b,L)=>t[b]===n[L]?n[L].length===0?.1:1+Math.log(1+n[L].length):.99):this.myersDiffingAlgorithm.compute(h,c,i);let d=m.diffs,g=m.hitTimeout;d=Bs(h,c,d),d=zu(h,c,d);const p=[],y=b=>{if(s)for(let L=0;L<b;L++){const S=w+L,M=_+L;if(t[S]!==n[M]){const F=this.refineDiff(t,n,new Q(new W(S,S+1),new W(M,M+1)),i,s);for(const O of F.mappings)p.push(O);F.hitTimeout&&(g=!0)}}};let w=0,_=0;for(const b of d){fn(()=>b.seq1Range.start-w===b.seq2Range.start-_);const L=b.seq1Range.start-w;y(L),w=b.seq1Range.endExclusive,_=b.seq2Range.endExclusive;const S=this.refineDiff(t,n,b,i,s);S.hitTimeout&&(g=!0);for(const M of S.mappings)p.push(M)}y(t.length-w);const v=Ws(p,t,n);let x=[];return r.computeMoves&&(x=this.computeMoves(v,t,n,o,u,i,s)),fn(()=>{function b(S,M){if(S.lineNumber<1||S.lineNumber>M.length)return!1;const F=M[S.lineNumber-1];return!(S.column<1||S.column>F.length+1)}function L(S,M){return!(S.startLineNumber<1||S.startLineNumber>M.length+1||S.endLineNumberExclusive<1||S.endLineNumberExclusive>M.length+1)}for(const S of v){if(!S.innerChanges)return!1;for(const M of S.innerChanges)if(!(b(M.modifiedRange.getStartPosition(),n)&&b(M.modifiedRange.getEndPosition(),n)&&b(M.originalRange.getStartPosition(),t)&&b(M.originalRange.getEndPosition(),t)))return!1;if(!L(S.modified,n)||!L(S.original,t))return!1}return!0}),new hn(v,x,g)}computeMoves(t,n,r,i,s,a,l){return Vu(t,n,r,i,s,a).map(h=>{const c=this.refineDiff(n,r,new Q(h.original.toOffsetRange(),h.modified.toOffsetRange()),a,l),m=Ws(c.mappings,n,r,!0);return new bu(h,m)})}refineDiff(t,n,r,i,s){const l=Qu(r).toRangeMapping2(t,n),o=new bn(t,l.originalRange,s),u=new bn(n,l.modifiedRange,s),h=o.length+u.length<500?this.dynamicProgrammingDiffing.compute(o,u,i):this.myersDiffingAlgorithm.compute(o,u,i);let c=h.diffs;return c=Bs(o,u,c),c=Wu(o,u,c),c=ju(o,u,c),c=Gu(o,u,c),{mappings:c.map(d=>new Ae(o.translateRange(d.seq1Range),u.translateRange(d.seq2Range))),hitTimeout:h.hitTimeout}}}function Ws(e,t,n,r=!1){const i=[];for(const s of Au(e.map(a=>Xu(a,t,n)),(a,l)=>a.original.overlapOrTouch(l.original)||a.modified.overlapOrTouch(l.modified))){const a=s[0],l=s[s.length-1];i.push(new $e(a.original.join(l.original),a.modified.join(l.modified),s.map(o=>o.innerChanges[0])))}return fn(()=>!r&&i.length>0&&(i[0].modified.startLineNumber!==i[0].original.startLineNumber||n.length-i[i.length-1].modified.endLineNumberExclusive!==t.length-i[i.length-1].original.endLineNumberExclusive)?!1:Ns(i,(s,a)=>a.original.startLineNumber-s.original.endLineNumberExclusive===a.modified.startLineNumber-s.modified.endLineNumberExclusive&&s.original.endLineNumberExclusive<a.original.startLineNumber&&s.modified.endLineNumberExclusive<a.modified.startLineNumber)),i}function Xu(e,t,n){let r=0,i=0;e.modifiedRange.endColumn===1&&e.originalRange.endColumn===1&&e.originalRange.startLineNumber+r<=e.originalRange.endLineNumber&&e.modifiedRange.startLineNumber+r<=e.modifiedRange.endLineNumber&&(i=-1),e.modifiedRange.startColumn-1>=n[e.modifiedRange.startLineNumber-1].length&&e.originalRange.startColumn-1>=t[e.originalRange.startLineNumber-1].length&&e.originalRange.startLineNumber<=e.originalRange.endLineNumber+i&&e.modifiedRange.startLineNumber<=e.modifiedRange.endLineNumber+i&&(r=1);const s=new B(e.originalRange.startLineNumber+r,e.originalRange.endLineNumber+1+i),a=new B(e.modifiedRange.startLineNumber+r,e.modifiedRange.endLineNumber+1+i);return new $e(s,a,[e])}function Qu(e){return new _e(new B(e.seq1Range.start+1,e.seq1Range.endExclusive+1),new B(e.seq2Range.start+1,e.seq2Range.endExclusive+1))}const Hs={getLegacy:()=>new wu,getDefault:()=>new Ju};function Qe(e,t){const n=Math.pow(10,t);return Math.round(e*n)/n}class ae{constructor(t,n,r,i=1){this._rgbaBrand=void 0,this.r=Math.min(255,Math.max(0,t))|0,this.g=Math.min(255,Math.max(0,n))|0,this.b=Math.min(255,Math.max(0,r))|0,this.a=Qe(Math.max(Math.min(1,i),0),3)}static equals(t,n){return t.r===n.r&&t.g===n.g&&t.b===n.b&&t.a===n.a}}class Le{constructor(t,n,r,i){this._hslaBrand=void 0,this.h=Math.max(Math.min(360,t),0)|0,this.s=Qe(Math.max(Math.min(1,n),0),3),this.l=Qe(Math.max(Math.min(1,r),0),3),this.a=Qe(Math.max(Math.min(1,i),0),3)}static equals(t,n){return t.h===n.h&&t.s===n.s&&t.l===n.l&&t.a===n.a}static fromRGBA(t){const n=t.r/255,r=t.g/255,i=t.b/255,s=t.a,a=Math.max(n,r,i),l=Math.min(n,r,i);let o=0,u=0;const h=(l+a)/2,c=a-l;if(c>0){switch(u=Math.min(h<=.5?c/(2*h):c/(2-2*h),1),a){case n:o=(r-i)/c+(r<i?6:0);break;case r:o=(i-n)/c+2;break;case i:o=(n-r)/c+4;break}o*=60,o=Math.round(o)}return new Le(o,u,h,s)}static _hue2rgb(t,n,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?t+(n-t)*6*r:r<1/2?n:r<2/3?t+(n-t)*(2/3-r)*6:t}static toRGBA(t){const n=t.h/360,{s:r,l:i,a:s}=t;let a,l,o;if(r===0)a=l=o=i;else{const u=i<.5?i*(1+r):i+r-i*r,h=2*i-u;a=Le._hue2rgb(h,u,n+1/3),l=Le._hue2rgb(h,u,n),o=Le._hue2rgb(h,u,n-1/3)}return new ae(Math.round(a*255),Math.round(l*255),Math.round(o*255),s)}}class yt{constructor(t,n,r,i){this._hsvaBrand=void 0,this.h=Math.max(Math.min(360,t),0)|0,this.s=Qe(Math.max(Math.min(1,n),0),3),this.v=Qe(Math.max(Math.min(1,r),0),3),this.a=Qe(Math.max(Math.min(1,i),0),3)}static equals(t,n){return t.h===n.h&&t.s===n.s&&t.v===n.v&&t.a===n.a}static fromRGBA(t){const n=t.r/255,r=t.g/255,i=t.b/255,s=Math.max(n,r,i),a=Math.min(n,r,i),l=s-a,o=s===0?0:l/s;let u;return l===0?u=0:s===n?u=((r-i)/l%6+6)%6:s===r?u=(i-n)/l+2:u=(n-r)/l+4,new yt(Math.round(u*60),o,s,t.a)}static toRGBA(t){const{h:n,s:r,v:i,a:s}=t,a=i*r,l=a*(1-Math.abs(n/60%2-1)),o=i-a;let[u,h,c]=[0,0,0];return n<60?(u=a,h=l):n<120?(u=l,h=a):n<180?(h=a,c=l):n<240?(h=l,c=a):n<300?(u=l,c=a):n<=360&&(u=a,c=l),u=Math.round((u+o)*255),h=Math.round((h+o)*255),c=Math.round((c+o)*255),new ae(u,h,c,s)}}let yn=class se{static fromHex(t){return se.Format.CSS.parseHex(t)||se.red}static equals(t,n){return!t&&!n?!0:!t||!n?!1:t.equals(n)}get hsla(){return this._hsla?this._hsla:Le.fromRGBA(this.rgba)}get hsva(){return this._hsva?this._hsva:yt.fromRGBA(this.rgba)}constructor(t){if(t)if(t instanceof ae)this.rgba=t;else if(t instanceof Le)this._hsla=t,this.rgba=Le.toRGBA(t);else if(t instanceof yt)this._hsva=t,this.rgba=yt.toRGBA(t);else throw new Error("Invalid color ctor argument");else throw new Error("Color needs a value")}equals(t){return!!t&&ae.equals(this.rgba,t.rgba)&&Le.equals(this.hsla,t.hsla)&&yt.equals(this.hsva,t.hsva)}getRelativeLuminance(){const t=se._relativeLuminanceForComponent(this.rgba.r),n=se._relativeLuminanceForComponent(this.rgba.g),r=se._relativeLuminanceForComponent(this.rgba.b),i=.2126*t+.7152*n+.0722*r;return Qe(i,4)}static _relativeLuminanceForComponent(t){const n=t/255;return n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4)}isLighter(){return(this.rgba.r*299+this.rgba.g*587+this.rgba.b*114)/1e3>=128}isLighterThan(t){const n=this.getRelativeLuminance(),r=t.getRelativeLuminance();return n>r}isDarkerThan(t){const n=this.getRelativeLuminance(),r=t.getRelativeLuminance();return n<r}lighten(t){return new se(new Le(this.hsla.h,this.hsla.s,this.hsla.l+this.hsla.l*t,this.hsla.a))}darken(t){return new se(new Le(this.hsla.h,this.hsla.s,this.hsla.l-this.hsla.l*t,this.hsla.a))}transparent(t){const{r:n,g:r,b:i,a:s}=this.rgba;return new se(new ae(n,r,i,s*t))}isTransparent(){return this.rgba.a===0}isOpaque(){return this.rgba.a===1}opposite(){return new se(new ae(255-this.rgba.r,255-this.rgba.g,255-this.rgba.b,this.rgba.a))}makeOpaque(t){if(this.isOpaque()||t.rgba.a!==1)return this;const{r:n,g:r,b:i,a:s}=this.rgba;return new se(new ae(t.rgba.r-s*(t.rgba.r-n),t.rgba.g-s*(t.rgba.g-r),t.rgba.b-s*(t.rgba.b-i),1))}toString(){return this._toString||(this._toString=se.Format.CSS.format(this)),this._toString}static getLighterColor(t,n,r){if(t.isLighterThan(n))return t;r=r||.5;const i=t.getRelativeLuminance(),s=n.getRelativeLuminance();return r=r*(s-i)/s,t.lighten(r)}static getDarkerColor(t,n,r){if(t.isDarkerThan(n))return t;r=r||.5;const i=t.getRelativeLuminance(),s=n.getRelativeLuminance();return r=r*(i-s)/i,t.darken(r)}static{this.white=new se(new ae(255,255,255,1))}static{this.black=new se(new ae(0,0,0,1))}static{this.red=new se(new ae(255,0,0,1))}static{this.blue=new se(new ae(0,0,255,1))}static{this.green=new se(new ae(0,255,0,1))}static{this.cyan=new se(new ae(0,255,255,1))}static{this.lightgrey=new se(new ae(211,211,211,1))}static{this.transparent=new se(new ae(0,0,0,0))}};(function(e){(function(t){(function(n){function r(d){return d.rgba.a===1?`rgb(${d.rgba.r}, ${d.rgba.g}, ${d.rgba.b})`:e.Format.CSS.formatRGBA(d)}n.formatRGB=r;function i(d){return`rgba(${d.rgba.r}, ${d.rgba.g}, ${d.rgba.b}, ${+d.rgba.a.toFixed(2)})`}n.formatRGBA=i;function s(d){return d.hsla.a===1?`hsl(${d.hsla.h}, ${(d.hsla.s*100).toFixed(2)}%, ${(d.hsla.l*100).toFixed(2)}%)`:e.Format.CSS.formatHSLA(d)}n.formatHSL=s;function a(d){return`hsla(${d.hsla.h}, ${(d.hsla.s*100).toFixed(2)}%, ${(d.hsla.l*100).toFixed(2)}%, ${d.hsla.a.toFixed(2)})`}n.formatHSLA=a;function l(d){const g=d.toString(16);return g.length!==2?"0"+g:g}function o(d){return`#${l(d.rgba.r)}${l(d.rgba.g)}${l(d.rgba.b)}`}n.formatHex=o;function u(d,g=!1){return g&&d.rgba.a===1?e.Format.CSS.formatHex(d):`#${l(d.rgba.r)}${l(d.rgba.g)}${l(d.rgba.b)}${l(Math.round(d.rgba.a*255))}`}n.formatHexA=u;function h(d){return d.isOpaque()?e.Format.CSS.formatHex(d):e.Format.CSS.formatRGBA(d)}n.format=h;function c(d){const g=d.length;if(g===0||d.charCodeAt(0)!==35)return null;if(g===7){const p=16*m(d.charCodeAt(1))+m(d.charCodeAt(2)),y=16*m(d.charCodeAt(3))+m(d.charCodeAt(4)),w=16*m(d.charCodeAt(5))+m(d.charCodeAt(6));return new e(new ae(p,y,w,1))}if(g===9){const p=16*m(d.charCodeAt(1))+m(d.charCodeAt(2)),y=16*m(d.charCodeAt(3))+m(d.charCodeAt(4)),w=16*m(d.charCodeAt(5))+m(d.charCodeAt(6)),_=16*m(d.charCodeAt(7))+m(d.charCodeAt(8));return new e(new ae(p,y,w,_/255))}if(g===4){const p=m(d.charCodeAt(1)),y=m(d.charCodeAt(2)),w=m(d.charCodeAt(3));return new e(new ae(16*p+p,16*y+y,16*w+w))}if(g===5){const p=m(d.charCodeAt(1)),y=m(d.charCodeAt(2)),w=m(d.charCodeAt(3)),_=m(d.charCodeAt(4));return new e(new ae(16*p+p,16*y+y,16*w+w,(16*_+_)/255))}return null}n.parseHex=c;function m(d){switch(d){case 48:return 0;case 49:return 1;case 50:return 2;case 51:return 3;case 52:return 4;case 53:return 5;case 54:return 6;case 55:return 7;case 56:return 8;case 57:return 9;case 97:return 10;case 65:return 10;case 98:return 11;case 66:return 11;case 99:return 12;case 67:return 12;case 100:return 13;case 68:return 13;case 101:return 14;case 69:return 14;case 102:return 15;case 70:return 15}return 0}})(t.CSS||(t.CSS={}))})(e.Format||(e.Format={}))})(yn||(yn={}));function zs(e){const t=[];for(const n of e){const r=Number(n);(r||r===0&&n.replace(/\s/g,"")!=="")&&t.push(r)}return t}function hr(e,t,n,r){return{red:e/255,blue:n/255,green:t/255,alpha:r}}function Dt(e,t){const n=t.index,r=t[0].length;if(!n)return;const i=e.positionAt(n);return{startLineNumber:i.lineNumber,startColumn:i.column,endLineNumber:i.lineNumber,endColumn:i.column+r}}function Yu(e,t){if(!e)return;const n=yn.Format.CSS.parseHex(t);if(n)return{range:e,color:hr(n.rgba.r,n.rgba.g,n.rgba.b,n.rgba.a)}}function Gs(e,t,n){if(!e||t.length!==1)return;const i=t[0].values(),s=zs(i);return{range:e,color:hr(s[0],s[1],s[2],n?s[3]:1)}}function Js(e,t,n){if(!e||t.length!==1)return;const i=t[0].values(),s=zs(i),a=new yn(new Le(s[0],s[1]/100,s[2]/100,n?s[3]:1));return{range:e,color:hr(a.rgba.r,a.rgba.g,a.rgba.b,a.rgba.a)}}function Ot(e,t){return typeof e=="string"?[...e.matchAll(t)]:e.findMatches(t)}function Zu(e){const t=[],r=Ot(e,/\b(rgb|rgba|hsl|hsla)(\([0-9\s,.\%]*\))|(#)([A-Fa-f0-9]{3})\b|(#)([A-Fa-f0-9]{4})\b|(#)([A-Fa-f0-9]{6})\b|(#)([A-Fa-f0-9]{8})\b/gm);if(r.length>0)for(const i of r){const s=i.filter(u=>u!==void 0),a=s[1],l=s[2];if(!l)continue;let o;if(a==="rgb"){const u=/^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*\)$/gm;o=Gs(Dt(e,i),Ot(l,u),!1)}else if(a==="rgba"){const u=/^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm;o=Gs(Dt(e,i),Ot(l,u),!0)}else if(a==="hsl"){const u=/^\(\s*(36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*\)$/gm;o=Js(Dt(e,i),Ot(l,u),!1)}else if(a==="hsla"){const u=/^\(\s*(36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm;o=Js(Dt(e,i),Ot(l,u),!0)}else a==="#"&&(o=Yu(Dt(e,i),a+l));o&&t.push(o)}return t}function Ku(e){return!e||typeof e.getValue!="function"||typeof e.positionAt!="function"?[]:Zu(e)}const Xs=new RegExp("\\bMARK:\\s*(.*)$","d"),ec=/^-+|-+$/g;function tc(e,t){let n=[];if(t.findRegionSectionHeaders&&t.foldingRules?.markers){const r=nc(e,t);n=n.concat(r)}if(t.findMarkSectionHeaders){const r=rc(e);n=n.concat(r)}return n}function nc(e,t){const n=[],r=e.getLineCount();for(let i=1;i<=r;i++){const s=e.getLineContent(i),a=s.match(t.foldingRules.markers.start);if(a){const l={startLineNumber:i,startColumn:a[0].length+1,endLineNumber:i,endColumn:s.length+1};if(l.endColumn>l.startColumn){const o={range:l,...Qs(s.substring(a[0].length)),shouldBeInComments:!1};(o.text||o.hasSeparatorLine)&&n.push(o)}}}return n}function rc(e){const t=[],n=e.getLineCount();for(let r=1;r<=n;r++){const i=e.getLineContent(r);ic(i,r,t)}return t}function ic(e,t,n){Xs.lastIndex=0;const r=Xs.exec(e);if(r){const i=r.indices[1][0]+1,s=r.indices[1][1]+1,a={startLineNumber:t,startColumn:i,endLineNumber:t,endColumn:s};if(a.endColumn>a.startColumn){const l={range:a,...Qs(r[1]),shouldBeInComments:!0};(l.text||l.hasSeparatorLine)&&n.push(l)}}}function Qs(e){e=e.trim();const t=e.startsWith("-");return e=e.replace(ec,""),{text:e,hasSeparatorLine:t}}var Ys;(function(e){async function t(r){let i;const s=await Promise.all(r.map(a=>a.then(l=>l,l=>{i||(i=l)})));if(typeof i<"u")throw i;return s}e.settled=t;function n(r){return new Promise(async(i,s)=>{try{await r(i,s)}catch(a){s(a)}})}e.withAsyncBody=n})(Ys||(Ys={}));class be{static fromArray(t){return new be(n=>{n.emitMany(t)})}static fromPromise(t){return new be(async n=>{n.emitMany(await t)})}static fromPromises(t){return new be(async n=>{await Promise.all(t.map(async r=>n.emitOne(await r)))})}static merge(t){return new be(async n=>{await Promise.all(t.map(async r=>{for await(const i of r)n.emitOne(i)}))})}static{this.EMPTY=be.fromArray([])}constructor(t,n){this._state=0,this._results=[],this._error=null,this._onReturn=n,this._onStateChanged=new we,queueMicrotask(async()=>{const r={emitOne:i=>this.emitOne(i),emitMany:i=>this.emitMany(i),reject:i=>this.reject(i)};try{await Promise.resolve(t(r)),this.resolve()}catch(i){this.reject(i)}finally{r.emitOne=void 0,r.emitMany=void 0,r.reject=void 0}})}[Symbol.asyncIterator](){let t=0;return{next:async()=>{do{if(this._state===2)throw this._error;if(t<this._results.length)return{done:!1,value:this._results[t++]};if(this._state===1)return{done:!0,value:void 0};await Yt.toPromise(this._onStateChanged.event)}while(!0)},return:async()=>(this._onReturn?.(),{done:!0,value:void 0})}}static map(t,n){return new be(async r=>{for await(const i of t)r.emitOne(n(i))})}map(t){return be.map(this,t)}static filter(t,n){return new be(async r=>{for await(const i of t)n(i)&&r.emitOne(i)})}filter(t){return be.filter(this,t)}static coalesce(t){return be.filter(t,n=>!!n)}coalesce(){return be.coalesce(this)}static async toPromise(t){const n=[];for await(const r of t)n.push(r);return n}toPromise(){return be.toPromise(this)}emitOne(t){this._state===0&&(this._results.push(t),this._onStateChanged.fire())}emitMany(t){this._state===0&&(this._results=this._results.concat(t),this._onStateChanged.fire())}resolve(){this._state===0&&(this._state=1,this._onStateChanged.fire())}reject(t){this._state===0&&(this._state=2,this._error=t,this._onStateChanged.fire())}}class sc{constructor(t){this.values=t,this.prefixSum=new Uint32Array(t.length),this.prefixSumValidIndex=new Int32Array(1),this.prefixSumValidIndex[0]=-1}insertValues(t,n){t=mt(t);const r=this.values,i=this.prefixSum,s=n.length;return s===0?!1:(this.values=new Uint32Array(r.length+s),this.values.set(r.subarray(0,t),0),this.values.set(r.subarray(t),t+s),this.values.set(n,t),t-1<this.prefixSumValidIndex[0]&&(this.prefixSumValidIndex[0]=t-1),this.prefixSum=new Uint32Array(this.values.length),this.prefixSumValidIndex[0]>=0&&this.prefixSum.set(i.subarray(0,this.prefixSumValidIndex[0]+1)),!0)}setValue(t,n){return t=mt(t),n=mt(n),this.values[t]===n?!1:(this.values[t]=n,t-1<this.prefixSumValidIndex[0]&&(this.prefixSumValidIndex[0]=t-1),!0)}removeValues(t,n){t=mt(t),n=mt(n);const r=this.values,i=this.prefixSum;if(t>=r.length)return!1;const s=r.length-t;return n>=s&&(n=s),n===0?!1:(this.values=new Uint32Array(r.length-n),this.values.set(r.subarray(0,t),0),this.values.set(r.subarray(t+n),t),this.prefixSum=new Uint32Array(this.values.length),t-1<this.prefixSumValidIndex[0]&&(this.prefixSumValidIndex[0]=t-1),this.prefixSumValidIndex[0]>=0&&this.prefixSum.set(i.subarray(0,this.prefixSumValidIndex[0]+1)),!0)}getTotalSum(){return this.values.length===0?0:this._getPrefixSum(this.values.length-1)}getPrefixSum(t){return t<0?0:(t=mt(t),this._getPrefixSum(t))}_getPrefixSum(t){if(t<=this.prefixSumValidIndex[0])return this.prefixSum[t];let n=this.prefixSumValidIndex[0]+1;n===0&&(this.prefixSum[0]=this.values[0],n++),t>=this.values.length&&(t=this.values.length-1);for(let r=n;r<=t;r++)this.prefixSum[r]=this.prefixSum[r-1]+this.values[r];return this.prefixSumValidIndex[0]=Math.max(this.prefixSumValidIndex[0],t),this.prefixSum[t]}getIndexOf(t){t=Math.floor(t),this.getTotalSum();let n=0,r=this.values.length-1,i=0,s=0,a=0;for(;n<=r;)if(i=n+(r-n)/2|0,s=this.prefixSum[i],a=s-this.values[i],t<a)r=i-1;else if(t>=s)n=i+1;else break;return new ac(i,t-a)}}class ac{constructor(t,n){this.index=t,this.remainder=n,this._prefixSumIndexOfResultBrand=void 0,this.index=t,this.remainder=n}}class oc{constructor(t,n,r,i){this._uri=t,this._lines=n,this._eol=r,this._versionId=i,this._lineStarts=null,this._cachedTextValue=null}dispose(){this._lines.length=0}get version(){return this._versionId}getText(){return this._cachedTextValue===null&&(this._cachedTextValue=this._lines.join(this._eol)),this._cachedTextValue}onEvents(t){t.eol&&t.eol!==this._eol&&(this._eol=t.eol,this._lineStarts=null);const n=t.changes;for(const r of n)this._acceptDeleteRange(r.range),this._acceptInsertText(new K(r.range.startLineNumber,r.range.startColumn),r.text);this._versionId=t.versionId,this._cachedTextValue=null}_ensureLineStarts(){if(!this._lineStarts){const t=this._eol.length,n=this._lines.length,r=new Uint32Array(n);for(let i=0;i<n;i++)r[i]=this._lines[i].length+t;this._lineStarts=new sc(r)}}_setLineText(t,n){this._lines[t]=n,this._lineStarts&&this._lineStarts.setValue(t,this._lines[t].length+this._eol.length)}_acceptDeleteRange(t){if(t.startLineNumber===t.endLineNumber){if(t.startColumn===t.endColumn)return;this._setLineText(t.startLineNumber-1,this._lines[t.startLineNumber-1].substring(0,t.startColumn-1)+this._lines[t.startLineNumber-1].substring(t.endColumn-1));return}this._setLineText(t.startLineNumber-1,this._lines[t.startLineNumber-1].substring(0,t.startColumn-1)+this._lines[t.endLineNumber-1].substring(t.endColumn-1)),this._lines.splice(t.startLineNumber,t.endLineNumber-t.startLineNumber),this._lineStarts&&this._lineStarts.removeValues(t.startLineNumber,t.endLineNumber-t.startLineNumber)}_acceptInsertText(t,n){if(n.length===0)return;const r=Ko(n);if(r.length===1){this._setLineText(t.lineNumber-1,this._lines[t.lineNumber-1].substring(0,t.column-1)+r[0]+this._lines[t.lineNumber-1].substring(t.column-1));return}r[r.length-1]+=this._lines[t.lineNumber-1].substring(t.column-1),this._setLineText(t.lineNumber-1,this._lines[t.lineNumber-1].substring(0,t.column-1)+r[0]);const i=new Uint32Array(r.length-1);for(let s=1;s<r.length;s++)this._lines.splice(t.lineNumber+s-1,0,r[s]),i[s-1]=r[s].length+this._eol.length;this._lineStarts&&this._lineStarts.insertValues(t.lineNumber,i)}}class lc{constructor(){this._models=Object.create(null)}getModel(t){return this._models[t]}getModels(){const t=[];return Object.keys(this._models).forEach(n=>t.push(this._models[n])),t}$acceptNewModel(t){this._models[t.url]=new uc(Te.parse(t.url),t.lines,t.EOL,t.versionId)}$acceptModelChanged(t,n){if(!this._models[t])return;this._models[t].onEvents(n)}$acceptRemovedModel(t){this._models[t]&&delete this._models[t]}}class uc extends oc{get uri(){return this._uri}get eol(){return this._eol}getValue(){return this.getText()}findMatches(t){const n=[];for(let r=0;r<this._lines.length;r++){const i=this._lines[r],s=this.offsetAt(new K(r+1,1)),a=i.matchAll(t);for(const l of a)(l.index||l.index===0)&&(l.index=l.index+s),n.push(l)}return n}getLinesContent(){return this._lines.slice(0)}getLineCount(){return this._lines.length}getLineContent(t){return this._lines[t-1]}getWordAtPosition(t,n){const r=ir(t.column,As(n),this._lines[t.lineNumber-1],0);return r?new z(t.lineNumber,r.startColumn,t.lineNumber,r.endColumn):null}words(t){const n=this._lines,r=this._wordenize.bind(this);let i=0,s="",a=0,l=[];return{*[Symbol.iterator](){for(;;)if(a<l.length){const o=s.substring(l[a].start,l[a].end);a+=1,yield o}else if(i<n.length)s=n[i],l=r(s,t),a=0,i+=1;else break}}}getLineWords(t,n){const r=this._lines[t-1],i=this._wordenize(r,n),s=[];for(const a of i)s.push({word:r.substring(a.start,a.end),startColumn:a.start+1,endColumn:a.end+1});return s}_wordenize(t,n){const r=[];let i;for(n.lastIndex=0;(i=n.exec(t))&&i[0].length!==0;)r.push({start:i.index,end:i.index+i[0].length});return r}getValueInRange(t){if(t=this._validateRange(t),t.startLineNumber===t.endLineNumber)return this._lines[t.startLineNumber-1].substring(t.startColumn-1,t.endColumn-1);const n=this._eol,r=t.startLineNumber-1,i=t.endLineNumber-1,s=[];s.push(this._lines[r].substring(t.startColumn-1));for(let a=r+1;a<i;a++)s.push(this._lines[a]);return s.push(this._lines[i].substring(0,t.endColumn-1)),s.join(n)}offsetAt(t){return t=this._validatePosition(t),this._ensureLineStarts(),this._lineStarts.getPrefixSum(t.lineNumber-2)+(t.column-1)}positionAt(t){t=Math.floor(t),t=Math.max(0,t),this._ensureLineStarts();const n=this._lineStarts.getIndexOf(t),r=this._lines[n.index].length;return{lineNumber:1+n.index,column:1+Math.min(n.remainder,r)}}_validateRange(t){const n=this._validatePosition({lineNumber:t.startLineNumber,column:t.startColumn}),r=this._validatePosition({lineNumber:t.endLineNumber,column:t.endColumn});return n.lineNumber!==t.startLineNumber||n.column!==t.startColumn||r.lineNumber!==t.endLineNumber||r.column!==t.endColumn?{startLineNumber:n.lineNumber,startColumn:n.column,endLineNumber:r.lineNumber,endColumn:r.column}:t}_validatePosition(t){if(!K.isIPosition(t))throw new Error("bad position");let{lineNumber:n,column:r}=t,i=!1;if(n<1)n=1,r=1,i=!0;else if(n>this._lines.length)n=this._lines.length,r=this._lines[n-1].length+1,i=!0;else{const s=this._lines[n-1].length+1;r<1?(r=1,i=!0):r>s&&(r=s,i=!0)}return i?{lineNumber:n,column:r}:t}}class cc{constructor(){this._workerTextModelSyncServer=new lc}dispose(){}_getModel(t){return this._workerTextModelSyncServer.getModel(t)}_getModels(){return this._workerTextModelSyncServer.getModels()}$acceptNewModel(t){this._workerTextModelSyncServer.$acceptNewModel(t)}$acceptModelChanged(t,n){this._workerTextModelSyncServer.$acceptModelChanged(t,n)}$acceptRemovedModel(t){this._workerTextModelSyncServer.$acceptRemovedModel(t)}async $computeUnicodeHighlights(t,n,r){const i=this._getModel(t);return i?gu.computeUnicodeHighlights(i,n,r):{ranges:[],hasMore:!1,ambiguousCharacterCount:0,invisibleCharacterCount:0,nonBasicAsciiCharacterCount:0}}async $findSectionHeaders(t,n){const r=this._getModel(t);return r?tc(r,n):[]}async $computeDiff(t,n,r,i){const s=this._getModel(t),a=this._getModel(n);return!s||!a?null:vn.computeDiff(s,a,r,i)}static computeDiff(t,n,r,i){const s=i==="advanced"?Hs.getDefault():Hs.getLegacy(),a=t.getLinesContent(),l=n.getLinesContent(),o=s.computeDiff(a,l,r),u=o.changes.length>0?!1:this._modelsAreIdentical(t,n);function h(c){return c.map(m=>[m.original.startLineNumber,m.original.endLineNumberExclusive,m.modified.startLineNumber,m.modified.endLineNumberExclusive,m.innerChanges?.map(d=>[d.originalRange.startLineNumber,d.originalRange.startColumn,d.originalRange.endLineNumber,d.originalRange.endColumn,d.modifiedRange.startLineNumber,d.modifiedRange.startColumn,d.modifiedRange.endLineNumber,d.modifiedRange.endColumn])])}return{identical:u,quitEarly:o.hitTimeout,changes:h(o.changes),moves:o.moves.map(c=>[c.lineRangeMapping.original.startLineNumber,c.lineRangeMapping.original.endLineNumberExclusive,c.lineRangeMapping.modified.startLineNumber,c.lineRangeMapping.modified.endLineNumberExclusive,h(c.changes)])}}static _modelsAreIdentical(t,n){const r=t.getLineCount(),i=n.getLineCount();if(r!==i)return!1;for(let s=1;s<=r;s++){const a=t.getLineContent(s),l=n.getLineContent(s);if(a!==l)return!1}return!0}static{this._diffLimit=1e5}async $computeMoreMinimalEdits(t,n,r){const i=this._getModel(t);if(!i)return n;const s=[];let a;n=n.slice(0).sort((o,u)=>{if(o.range&&u.range)return z.compareRangesUsingStarts(o.range,u.range);const h=o.range?0:1,c=u.range?0:1;return h-c});let l=0;for(let o=1;o<n.length;o++)z.getEndPosition(n[l].range).equals(z.getStartPosition(n[o].range))?(n[l].range=z.fromPositions(z.getStartPosition(n[l].range),z.getEndPosition(n[o].range)),n[l].text+=n[o].text):(l++,n[l]=n[o]);n.length=l+1;for(let{range:o,text:u,eol:h}of n){if(typeof h=="number"&&(a=h),z.isEmpty(o)&&!u)continue;const c=i.getValueInRange(o);if(u=u.replace(/\r\n|\n|\r/g,i.eol),c===u)continue;if(Math.max(u.length,c.length)>vn._diffLimit){s.push({range:o,text:u});continue}const m=Dl(c,u,r),d=i.offsetAt(z.lift(o).getStartPosition());for(const g of m){const p=i.positionAt(d+g.originalStart),y=i.positionAt(d+g.originalStart+g.originalLength),w={text:u.substr(g.modifiedStart,g.modifiedLength),range:{startLineNumber:p.lineNumber,startColumn:p.column,endLineNumber:y.lineNumber,endColumn:y.column}};i.getValueInRange(w.range)!==w.text&&s.push(w)}}return typeof a=="number"&&s.push({eol:a,text:"",range:{startLineNumber:0,startColumn:0,endLineNumber:0,endColumn:0}}),s}async $computeLinks(t){const n=this._getModel(t);return n?ql(n):null}async $computeDefaultDocumentColors(t){const n=this._getModel(t);return n?Ku(n):null}static{this._suggestionsLimit=1e4}async $textualSuggest(t,n,r,i){const s=new Qt,a=new RegExp(r,i),l=new Set;e:for(const o of t){const u=this._getModel(o);if(u){for(const h of u.words(a))if(!(h===n||!isNaN(Number(h)))&&(l.add(h),l.size>vn._suggestionsLimit))break e}}return{words:Array.from(l),duration:s.elapsed()}}async $computeWordRanges(t,n,r,i){const s=this._getModel(t);if(!s)return Object.create(null);const a=new RegExp(r,i),l=Object.create(null);for(let o=n.startLineNumber;o<n.endLineNumber;o++){const u=s.getLineWords(o,a);for(const h of u){if(!isNaN(Number(h.word)))continue;let c=l[h.word];c||(c=[],l[h.word]=c),c.push({startLineNumber:o,startColumn:h.startColumn,endLineNumber:o,endColumn:h.endColumn})}}return l}async $navigateValueSet(t,n,r,i,s){const a=this._getModel(t);if(!a)return null;const l=new RegExp(i,s);n.startColumn===n.endColumn&&(n={startLineNumber:n.startLineNumber,startColumn:n.startColumn,endLineNumber:n.endLineNumber,endColumn:n.endColumn+1});const o=a.getValueInRange(n),u=a.getWordAtPosition({lineNumber:n.startLineNumber,column:n.startColumn},l);if(!u)return null;const h=a.getValueInRange(u);return Qn.INSTANCE.navigateValueSet(n,o,u,h,r)}}class vn extends cc{constructor(t,n){super(),this._host=t,this._foreignModuleFactory=n,this._foreignModule=null}async $ping(){return"pong"}$loadForeignModule(t,n,r){const a={host:au(r,(l,o)=>this._host.$fhr(l,o)),getMirrorModels:()=>this._getModels()};return this._foreignModuleFactory?(this._foreignModule=this._foreignModuleFactory(a,n),Promise.resolve(xs(this._foreignModule))):new Promise((l,o)=>{const u=h=>{this._foreignModule=h.create(a,n),l(xs(this._foreignModule))};import(`${ii.asBrowserUri(`${t}.js`).toString(!0)}`).then(u).catch(o)})}$fmr(t,n){if(!this._foreignModule||typeof this._foreignModule[t]!="function")return Promise.reject(new Error("Missing requestHandler or method: "+t));try{return Promise.resolve(this._foreignModule[t].apply(this._foreignModule,n))}catch(r){return Promise.reject(r)}}}typeof importScripts=="function"&&(globalThis.monaco=eu());let mr=!1;function Zs(e){if(mr)return;mr=!0;const t=new Il(n=>{globalThis.postMessage(n)},n=>new vn(cn.getChannel(n),e));globalThis.onmessage=n=>{t.onmessage(n.data)}}globalThis.onmessage=e=>{mr||Zs(null)};/*!-----------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
||
* Released under the MIT license
|
||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||
*-----------------------------------------------------------------------------*/function dr(e,t=!1){const n=e.length;let r=0,i="",s=0,a=16,l=0,o=0,u=0,h=0,c=0;function m(v,x){let b=0,L=0;for(;b<v;){let S=e.charCodeAt(r);if(S>=48&&S<=57)L=L*16+S-48;else if(S>=65&&S<=70)L=L*16+S-65+10;else if(S>=97&&S<=102)L=L*16+S-97+10;else break;r++,b++}return b<v&&(L=-1),L}function d(v){r=v,i="",s=0,a=16,c=0}function g(){let v=r;if(e.charCodeAt(r)===48)r++;else for(r++;r<e.length&&vt(e.charCodeAt(r));)r++;if(r<e.length&&e.charCodeAt(r)===46)if(r++,r<e.length&&vt(e.charCodeAt(r)))for(r++;r<e.length&&vt(e.charCodeAt(r));)r++;else return c=3,e.substring(v,r);let x=r;if(r<e.length&&(e.charCodeAt(r)===69||e.charCodeAt(r)===101))if(r++,(r<e.length&&e.charCodeAt(r)===43||e.charCodeAt(r)===45)&&r++,r<e.length&&vt(e.charCodeAt(r))){for(r++;r<e.length&&vt(e.charCodeAt(r));)r++;x=r}else c=3;return e.substring(v,x)}function p(){let v="",x=r;for(;;){if(r>=n){v+=e.substring(x,r),c=2;break}const b=e.charCodeAt(r);if(b===34){v+=e.substring(x,r),r++;break}if(b===92){if(v+=e.substring(x,r),r++,r>=n){c=2;break}switch(e.charCodeAt(r++)){case 34:v+='"';break;case 92:v+="\\";break;case 47:v+="/";break;case 98:v+="\b";break;case 102:v+="\f";break;case 110:v+=`
|
||
`;break;case 114:v+="\r";break;case 116:v+=" ";break;case 117:const S=m(4);S>=0?v+=String.fromCharCode(S):c=4;break;default:c=5}x=r;continue}if(b>=0&&b<=31)if(Bt(b)){v+=e.substring(x,r),c=2;break}else c=6;r++}return v}function y(){if(i="",c=0,s=r,o=l,h=u,r>=n)return s=n,a=17;let v=e.charCodeAt(r);if(gr(v)){do r++,i+=String.fromCharCode(v),v=e.charCodeAt(r);while(gr(v));return a=15}if(Bt(v))return r++,i+=String.fromCharCode(v),v===13&&e.charCodeAt(r)===10&&(r++,i+=`
|
||
`),l++,u=r,a=14;switch(v){case 123:return r++,a=1;case 125:return r++,a=2;case 91:return r++,a=3;case 93:return r++,a=4;case 58:return r++,a=6;case 44:return r++,a=5;case 34:return r++,i=p(),a=10;case 47:const x=r-1;if(e.charCodeAt(r+1)===47){for(r+=2;r<n&&!Bt(e.charCodeAt(r));)r++;return i=e.substring(x,r),a=12}if(e.charCodeAt(r+1)===42){r+=2;const b=n-1;let L=!1;for(;r<b;){const S=e.charCodeAt(r);if(S===42&&e.charCodeAt(r+1)===47){r+=2,L=!0;break}r++,Bt(S)&&(S===13&&e.charCodeAt(r)===10&&r++,l++,u=r)}return L||(r++,c=1),i=e.substring(x,r),a=13}return i+=String.fromCharCode(v),r++,a=16;case 45:if(i+=String.fromCharCode(v),r++,r===n||!vt(e.charCodeAt(r)))return a=16;case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:return i+=g(),a=11;default:for(;r<n&&w(v);)r++,v=e.charCodeAt(r);if(s!==r){switch(i=e.substring(s,r),i){case"true":return a=8;case"false":return a=9;case"null":return a=7}return a=16}return i+=String.fromCharCode(v),r++,a=16}}function w(v){if(gr(v)||Bt(v))return!1;switch(v){case 125:case 93:case 123:case 91:case 34:case 58:case 44:case 47:return!1}return!0}function _(){let v;do v=y();while(v>=12&&v<=15);return v}return{setPosition:d,getPosition:()=>r,scan:t?_:y,getToken:()=>a,getTokenValue:()=>i,getTokenOffset:()=>s,getTokenLength:()=>r-s,getTokenStartLine:()=>o,getTokenStartCharacter:()=>s-h,getTokenError:()=>c}}function gr(e){return e===32||e===9}function Bt(e){return e===10||e===13}function vt(e){return e>=48&&e<=57}var Ks;(function(e){e[e.lineFeed=10]="lineFeed",e[e.carriageReturn=13]="carriageReturn",e[e.space=32]="space",e[e._0=48]="_0",e[e._1=49]="_1",e[e._2=50]="_2",e[e._3=51]="_3",e[e._4=52]="_4",e[e._5=53]="_5",e[e._6=54]="_6",e[e._7=55]="_7",e[e._8=56]="_8",e[e._9=57]="_9",e[e.a=97]="a",e[e.b=98]="b",e[e.c=99]="c",e[e.d=100]="d",e[e.e=101]="e",e[e.f=102]="f",e[e.g=103]="g",e[e.h=104]="h",e[e.i=105]="i",e[e.j=106]="j",e[e.k=107]="k",e[e.l=108]="l",e[e.m=109]="m",e[e.n=110]="n",e[e.o=111]="o",e[e.p=112]="p",e[e.q=113]="q",e[e.r=114]="r",e[e.s=115]="s",e[e.t=116]="t",e[e.u=117]="u",e[e.v=118]="v",e[e.w=119]="w",e[e.x=120]="x",e[e.y=121]="y",e[e.z=122]="z",e[e.A=65]="A",e[e.B=66]="B",e[e.C=67]="C",e[e.D=68]="D",e[e.E=69]="E",e[e.F=70]="F",e[e.G=71]="G",e[e.H=72]="H",e[e.I=73]="I",e[e.J=74]="J",e[e.K=75]="K",e[e.L=76]="L",e[e.M=77]="M",e[e.N=78]="N",e[e.O=79]="O",e[e.P=80]="P",e[e.Q=81]="Q",e[e.R=82]="R",e[e.S=83]="S",e[e.T=84]="T",e[e.U=85]="U",e[e.V=86]="V",e[e.W=87]="W",e[e.X=88]="X",e[e.Y=89]="Y",e[e.Z=90]="Z",e[e.asterisk=42]="asterisk",e[e.backslash=92]="backslash",e[e.closeBrace=125]="closeBrace",e[e.closeBracket=93]="closeBracket",e[e.colon=58]="colon",e[e.comma=44]="comma",e[e.dot=46]="dot",e[e.doubleQuote=34]="doubleQuote",e[e.minus=45]="minus",e[e.openBrace=123]="openBrace",e[e.openBracket=91]="openBracket",e[e.plus=43]="plus",e[e.slash=47]="slash",e[e.formFeed=12]="formFeed",e[e.tab=9]="tab"})(Ks||(Ks={}));var Ne=new Array(20).fill(0).map((e,t)=>" ".repeat(t)),xt=200,ea={" ":{"\n":new Array(xt).fill(0).map((e,t)=>`
|
||
`+" ".repeat(t)),"\r":new Array(xt).fill(0).map((e,t)=>"\r"+" ".repeat(t)),"\r\n":new Array(xt).fill(0).map((e,t)=>`\r
|
||
`+" ".repeat(t))}," ":{"\n":new Array(xt).fill(0).map((e,t)=>`
|
||
`+" ".repeat(t)),"\r":new Array(xt).fill(0).map((e,t)=>"\r"+" ".repeat(t)),"\r\n":new Array(xt).fill(0).map((e,t)=>`\r
|
||
`+" ".repeat(t))}},fc=[`
|
||
`,"\r",`\r
|
||
`];function hc(e,t,n){let r,i,s,a,l;if(t){for(a=t.offset,l=a+t.length,s=a;s>0&&!ta(e,s-1);)s--;let b=l;for(;b<e.length&&!ta(e,b);)b++;i=e.substring(s,b),r=mc(i,n)}else i=e,r=0,s=0,a=0,l=e.length;const o=dc(n,e),u=fc.includes(o);let h=0,c=0,m;n.insertSpaces?m=Ne[n.tabSize||4]??wt(Ne[1],n.tabSize||4):m=" ";const d=m===" "?" ":" ";let g=dr(i,!1),p=!1;function y(){if(h>1)return wt(o,h)+wt(m,r+c);const b=m.length*(r+c);return!u||b>ea[d][o].length?o+wt(m,r+c):b<=0?o:ea[d][o][b]}function w(){let b=g.scan();for(h=0;b===15||b===14;)b===14&&n.keepLines?h+=1:b===14&&(h=1),b=g.scan();return p=b===16||g.getTokenError()!==0,b}const _=[];function v(b,L,S){!p&&(!t||L<l&&S>a)&&e.substring(L,S)!==b&&_.push({offset:L,length:S-L,content:b})}let x=w();if(n.keepLines&&h>0&&v(wt(o,h),0,0),x!==17){let b=g.getTokenOffset()+s,L=m.length*r<20&&n.insertSpaces?Ne[m.length*r]:wt(m,r);v(L,s,b)}for(;x!==17;){let b=g.getTokenOffset()+g.getTokenLength()+s,L=w(),S="",M=!1;for(;h===0&&(L===12||L===13);){let O=g.getTokenOffset()+s;v(Ne[1],b,O),b=g.getTokenOffset()+g.getTokenLength()+s,M=L===12,S=M?y():"",L=w()}if(L===2)x!==1&&c--,n.keepLines&&h>0||!n.keepLines&&x!==1?S=y():n.keepLines&&(S=Ne[1]);else if(L===4)x!==3&&c--,n.keepLines&&h>0||!n.keepLines&&x!==3?S=y():n.keepLines&&(S=Ne[1]);else{switch(x){case 3:case 1:c++,n.keepLines&&h>0||!n.keepLines?S=y():S=Ne[1];break;case 5:n.keepLines&&h>0||!n.keepLines?S=y():S=Ne[1];break;case 12:S=y();break;case 13:h>0?S=y():M||(S=Ne[1]);break;case 6:n.keepLines&&h>0?S=y():M||(S=Ne[1]);break;case 10:n.keepLines&&h>0?S=y():L===6&&!M&&(S="");break;case 7:case 8:case 9:case 11:case 2:case 4:n.keepLines&&h>0?S=y():(L===12||L===13)&&!M?S=Ne[1]:L!==5&&L!==17&&(p=!0);break;case 16:p=!0;break}h>0&&(L===12||L===13)&&(S=y())}L===17&&(n.keepLines&&h>0?S=y():S=n.insertFinalNewline?o:"");const F=g.getTokenOffset()+s;v(S,b,F),x=L}return _}function wt(e,t){let n="";for(let r=0;r<t;r++)n+=e;return n}function mc(e,t){let n=0,r=0;const i=t.tabSize||4;for(;n<e.length;){let s=e.charAt(n);if(s===Ne[1])r++;else if(s===" ")r+=i;else break;n++}return Math.floor(r/i)}function dc(e,t){for(let n=0;n<t.length;n++){const r=t.charAt(n);if(r==="\r")return n+1<t.length&&t.charAt(n+1)===`
|
||
`?`\r
|
||
`:"\r";if(r===`
|
||
`)return`
|
||
`}return e&&e.eol||`
|
||
`}function ta(e,t){return`\r
|
||
`.indexOf(e.charAt(t))!==-1}var xn;(function(e){e.DEFAULT={allowTrailingComma:!1}})(xn||(xn={}));function gc(e,t=[],n=xn.DEFAULT){let r=null,i=[];const s=[];function a(o){Array.isArray(i)?i.push(o):r!==null&&(i[r]=o)}return bc(e,{onObjectBegin:()=>{const o={};a(o),s.push(i),i=o,r=null},onObjectProperty:o=>{r=o},onObjectEnd:()=>{i=s.pop()},onArrayBegin:()=>{const o=[];a(o),s.push(i),i=o,r=null},onArrayEnd:()=>{i=s.pop()},onLiteralValue:a,onError:(o,u,h)=>{t.push({error:o,offset:u,length:h})}},n),i[0]}function na(e){if(!e.parent||!e.parent.children)return[];const t=na(e.parent);if(e.parent.type==="property"){const n=e.parent.children[0].value;t.push(n)}else if(e.parent.type==="array"){const n=e.parent.children.indexOf(e);n!==-1&&t.push(n)}return t}function pr(e){switch(e.type){case"array":return e.children.map(pr);case"object":const t=Object.create(null);for(let n of e.children){const r=n.children[1];r&&(t[n.children[0].value]=pr(r))}return t;case"null":case"string":case"number":case"boolean":return e.value;default:return}}function pc(e,t,n=!1){return t>=e.offset&&t<e.offset+e.length||n&&t===e.offset+e.length}function ra(e,t,n=!1){if(pc(e,t,n)){const r=e.children;if(Array.isArray(r))for(let i=0;i<r.length&&r[i].offset<=t;i++){const s=ra(r[i],t,n);if(s)return s}return e}}function bc(e,t,n=xn.DEFAULT){const r=dr(e,!1),i=[];function s(N){return N?()=>N(r.getTokenOffset(),r.getTokenLength(),r.getTokenStartLine(),r.getTokenStartCharacter()):()=>!0}function a(N){return N?()=>N(r.getTokenOffset(),r.getTokenLength(),r.getTokenStartLine(),r.getTokenStartCharacter(),()=>i.slice()):()=>!0}function l(N){return N?k=>N(k,r.getTokenOffset(),r.getTokenLength(),r.getTokenStartLine(),r.getTokenStartCharacter()):()=>!0}function o(N){return N?k=>N(k,r.getTokenOffset(),r.getTokenLength(),r.getTokenStartLine(),r.getTokenStartCharacter(),()=>i.slice()):()=>!0}const u=a(t.onObjectBegin),h=o(t.onObjectProperty),c=s(t.onObjectEnd),m=a(t.onArrayBegin),d=s(t.onArrayEnd),g=o(t.onLiteralValue),p=l(t.onSeparator),y=s(t.onComment),w=l(t.onError),_=n&&n.disallowComments,v=n&&n.allowTrailingComma;function x(){for(;;){const N=r.scan();switch(r.getTokenError()){case 4:b(14);break;case 5:b(15);break;case 3:b(13);break;case 1:_||b(11);break;case 2:b(12);break;case 6:b(16);break}switch(N){case 12:case 13:_?b(10):y();break;case 16:b(1);break;case 15:case 14:break;default:return N}}}function b(N,k=[],R=[]){if(w(N),k.length+R.length>0){let I=r.getToken();for(;I!==17;){if(k.indexOf(I)!==-1){x();break}else if(R.indexOf(I)!==-1)break;I=x()}}}function L(N){const k=r.getTokenValue();return N?g(k):(h(k),i.push(k)),x(),!0}function S(){switch(r.getToken()){case 11:const N=r.getTokenValue();let k=Number(N);isNaN(k)&&(b(2),k=0),g(k);break;case 7:g(null);break;case 8:g(!0);break;case 9:g(!1);break;default:return!1}return x(),!0}function M(){return r.getToken()!==10?(b(3,[],[2,5]),!1):(L(!1),r.getToken()===6?(p(":"),x(),C()||b(4,[],[2,5])):b(5,[],[2,5]),i.pop(),!0)}function F(){u(),x();let N=!1;for(;r.getToken()!==2&&r.getToken()!==17;){if(r.getToken()===5){if(N||b(4,[],[]),p(","),x(),r.getToken()===2&&v)break}else N&&b(6,[],[]);M()||b(4,[],[2,5]),N=!0}return c(),r.getToken()!==2?b(7,[2],[]):x(),!0}function O(){m(),x();let N=!0,k=!1;for(;r.getToken()!==4&&r.getToken()!==17;){if(r.getToken()===5){if(k||b(4,[],[]),p(","),x(),r.getToken()===4&&v)break}else k&&b(6,[],[]);N?(i.push(0),N=!1):i[i.length-1]++,C()||b(4,[],[4,5]),k=!0}return d(),N||i.pop(),r.getToken()!==4?b(8,[4],[]):x(),!0}function C(){switch(r.getToken()){case 3:return O();case 1:return F();case 10:return L(!0);default:return S()}}return x(),r.getToken()===17?n.allowEmptyContent?!0:(b(4,[],[]),!1):C()?(r.getToken()!==17&&b(9,[],[]),!0):(b(4,[],[]),!1)}var nt=dr,ia;(function(e){e[e.None=0]="None",e[e.UnexpectedEndOfComment=1]="UnexpectedEndOfComment",e[e.UnexpectedEndOfString=2]="UnexpectedEndOfString",e[e.UnexpectedEndOfNumber=3]="UnexpectedEndOfNumber",e[e.InvalidUnicode=4]="InvalidUnicode",e[e.InvalidEscapeCharacter=5]="InvalidEscapeCharacter",e[e.InvalidCharacter=6]="InvalidCharacter"})(ia||(ia={}));var sa;(function(e){e[e.OpenBraceToken=1]="OpenBraceToken",e[e.CloseBraceToken=2]="CloseBraceToken",e[e.OpenBracketToken=3]="OpenBracketToken",e[e.CloseBracketToken=4]="CloseBracketToken",e[e.CommaToken=5]="CommaToken",e[e.ColonToken=6]="ColonToken",e[e.NullKeyword=7]="NullKeyword",e[e.TrueKeyword=8]="TrueKeyword",e[e.FalseKeyword=9]="FalseKeyword",e[e.StringLiteral=10]="StringLiteral",e[e.NumericLiteral=11]="NumericLiteral",e[e.LineCommentTrivia=12]="LineCommentTrivia",e[e.BlockCommentTrivia=13]="BlockCommentTrivia",e[e.LineBreakTrivia=14]="LineBreakTrivia",e[e.Trivia=15]="Trivia",e[e.Unknown=16]="Unknown",e[e.EOF=17]="EOF"})(sa||(sa={}));var yc=gc,vc=ra,xc=na,wc=pr,aa;(function(e){e[e.InvalidSymbol=1]="InvalidSymbol",e[e.InvalidNumberFormat=2]="InvalidNumberFormat",e[e.PropertyNameExpected=3]="PropertyNameExpected",e[e.ValueExpected=4]="ValueExpected",e[e.ColonExpected=5]="ColonExpected",e[e.CommaExpected=6]="CommaExpected",e[e.CloseBraceExpected=7]="CloseBraceExpected",e[e.CloseBracketExpected=8]="CloseBracketExpected",e[e.EndOfFileExpected=9]="EndOfFileExpected",e[e.InvalidCommentToken=10]="InvalidCommentToken",e[e.UnexpectedEndOfComment=11]="UnexpectedEndOfComment",e[e.UnexpectedEndOfString=12]="UnexpectedEndOfString",e[e.UnexpectedEndOfNumber=13]="UnexpectedEndOfNumber",e[e.InvalidUnicode=14]="InvalidUnicode",e[e.InvalidEscapeCharacter=15]="InvalidEscapeCharacter",e[e.InvalidCharacter=16]="InvalidCharacter"})(aa||(aa={}));function _c(e,t,n){return hc(e,t,n)}function _t(e,t){if(e===t)return!0;if(e==null||t===null||t===void 0||typeof e!=typeof t||typeof e!="object"||Array.isArray(e)!==Array.isArray(t))return!1;let n,r;if(Array.isArray(e)){if(e.length!==t.length)return!1;for(n=0;n<e.length;n++)if(!_t(e[n],t[n]))return!1}else{const i=[];for(r in e)i.push(r);i.sort();const s=[];for(r in t)s.push(r);if(s.sort(),!_t(i,s))return!1;for(n=0;n<i.length;n++)if(!_t(e[i[n]],t[i[n]]))return!1}return!0}function fe(e){return typeof e=="number"}function Re(e){return typeof e<"u"}function Ie(e){return typeof e=="boolean"}function oa(e){return typeof e=="string"}function Ye(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}function Lc(e,t){if(e.length<t.length)return!1;for(let n=0;n<t.length;n++)if(e[n]!==t[n])return!1;return!0}function $t(e,t){const n=e.length-t.length;return n>0?e.lastIndexOf(t)===n:n===0?e===t:!1}function wn(e){let t="";Lc(e,"(?i)")&&(e=e.substring(4),t="i");try{return new RegExp(e,t+"u")}catch{try{return new RegExp(e,t)}catch{return}}}function la(e){let t=0;for(let n=0;n<e.length;n++){t++;const r=e.charCodeAt(n);55296<=r&&r<=56319&&n++}return t}var ua;(function(e){function t(n){return typeof n=="string"}e.is=t})(ua||(ua={}));var br;(function(e){function t(n){return typeof n=="string"}e.is=t})(br||(br={}));var ca;(function(e){e.MIN_VALUE=-2147483648,e.MAX_VALUE=2147483647;function t(n){return typeof n=="number"&&e.MIN_VALUE<=n&&n<=e.MAX_VALUE}e.is=t})(ca||(ca={}));var _n;(function(e){e.MIN_VALUE=0,e.MAX_VALUE=2147483647;function t(n){return typeof n=="number"&&e.MIN_VALUE<=n&&n<=e.MAX_VALUE}e.is=t})(_n||(_n={}));var Y;(function(e){function t(r,i){return r===Number.MAX_VALUE&&(r=_n.MAX_VALUE),i===Number.MAX_VALUE&&(i=_n.MAX_VALUE),{line:r,character:i}}e.create=t;function n(r){let i=r;return A.objectLiteral(i)&&A.uinteger(i.line)&&A.uinteger(i.character)}e.is=n})(Y||(Y={}));var q;(function(e){function t(r,i,s,a){if(A.uinteger(r)&&A.uinteger(i)&&A.uinteger(s)&&A.uinteger(a))return{start:Y.create(r,i),end:Y.create(s,a)};if(Y.is(r)&&Y.is(i))return{start:r,end:i};throw new Error(`Range#create called with invalid arguments[${r}, ${i}, ${s}, ${a}]`)}e.create=t;function n(r){let i=r;return A.objectLiteral(i)&&Y.is(i.start)&&Y.is(i.end)}e.is=n})(q||(q={}));var Lt;(function(e){function t(r,i){return{uri:r,range:i}}e.create=t;function n(r){let i=r;return A.objectLiteral(i)&&q.is(i.range)&&(A.string(i.uri)||A.undefined(i.uri))}e.is=n})(Lt||(Lt={}));var fa;(function(e){function t(r,i,s,a){return{targetUri:r,targetRange:i,targetSelectionRange:s,originSelectionRange:a}}e.create=t;function n(r){let i=r;return A.objectLiteral(i)&&q.is(i.targetRange)&&A.string(i.targetUri)&&q.is(i.targetSelectionRange)&&(q.is(i.originSelectionRange)||A.undefined(i.originSelectionRange))}e.is=n})(fa||(fa={}));var yr;(function(e){function t(r,i,s,a){return{red:r,green:i,blue:s,alpha:a}}e.create=t;function n(r){const i=r;return A.objectLiteral(i)&&A.numberRange(i.red,0,1)&&A.numberRange(i.green,0,1)&&A.numberRange(i.blue,0,1)&&A.numberRange(i.alpha,0,1)}e.is=n})(yr||(yr={}));var ha;(function(e){function t(r,i){return{range:r,color:i}}e.create=t;function n(r){const i=r;return A.objectLiteral(i)&&q.is(i.range)&&yr.is(i.color)}e.is=n})(ha||(ha={}));var ma;(function(e){function t(r,i,s){return{label:r,textEdit:i,additionalTextEdits:s}}e.create=t;function n(r){const i=r;return A.objectLiteral(i)&&A.string(i.label)&&(A.undefined(i.textEdit)||Fe.is(i))&&(A.undefined(i.additionalTextEdits)||A.typedArray(i.additionalTextEdits,Fe.is))}e.is=n})(ma||(ma={}));var Ut;(function(e){e.Comment="comment",e.Imports="imports",e.Region="region"})(Ut||(Ut={}));var da;(function(e){function t(r,i,s,a,l,o){const u={startLine:r,endLine:i};return A.defined(s)&&(u.startCharacter=s),A.defined(a)&&(u.endCharacter=a),A.defined(l)&&(u.kind=l),A.defined(o)&&(u.collapsedText=o),u}e.create=t;function n(r){const i=r;return A.objectLiteral(i)&&A.uinteger(i.startLine)&&A.uinteger(i.startLine)&&(A.undefined(i.startCharacter)||A.uinteger(i.startCharacter))&&(A.undefined(i.endCharacter)||A.uinteger(i.endCharacter))&&(A.undefined(i.kind)||A.string(i.kind))}e.is=n})(da||(da={}));var vr;(function(e){function t(r,i){return{location:r,message:i}}e.create=t;function n(r){let i=r;return A.defined(i)&&Lt.is(i.location)&&A.string(i.message)}e.is=n})(vr||(vr={}));var ye;(function(e){e.Error=1,e.Warning=2,e.Information=3,e.Hint=4})(ye||(ye={}));var ga;(function(e){e.Unnecessary=1,e.Deprecated=2})(ga||(ga={}));var pa;(function(e){function t(n){const r=n;return A.objectLiteral(r)&&A.string(r.href)}e.is=t})(pa||(pa={}));var qe;(function(e){function t(r,i,s,a,l,o){let u={range:r,message:i};return A.defined(s)&&(u.severity=s),A.defined(a)&&(u.code=a),A.defined(l)&&(u.source=l),A.defined(o)&&(u.relatedInformation=o),u}e.create=t;function n(r){var i;let s=r;return A.defined(s)&&q.is(s.range)&&A.string(s.message)&&(A.number(s.severity)||A.undefined(s.severity))&&(A.integer(s.code)||A.string(s.code)||A.undefined(s.code))&&(A.undefined(s.codeDescription)||A.string((i=s.codeDescription)===null||i===void 0?void 0:i.href))&&(A.string(s.source)||A.undefined(s.source))&&(A.undefined(s.relatedInformation)||A.typedArray(s.relatedInformation,vr.is))}e.is=n})(qe||(qe={}));var Nt;(function(e){function t(r,i,...s){let a={title:r,command:i};return A.defined(s)&&s.length>0&&(a.arguments=s),a}e.create=t;function n(r){let i=r;return A.defined(i)&&A.string(i.title)&&A.string(i.command)}e.is=n})(Nt||(Nt={}));var Fe;(function(e){function t(s,a){return{range:s,newText:a}}e.replace=t;function n(s,a){return{range:{start:s,end:s},newText:a}}e.insert=n;function r(s){return{range:s,newText:""}}e.del=r;function i(s){const a=s;return A.objectLiteral(a)&&A.string(a.newText)&&q.is(a.range)}e.is=i})(Fe||(Fe={}));var xr;(function(e){function t(r,i,s){const a={label:r};return i!==void 0&&(a.needsConfirmation=i),s!==void 0&&(a.description=s),a}e.create=t;function n(r){const i=r;return A.objectLiteral(i)&&A.string(i.label)&&(A.boolean(i.needsConfirmation)||i.needsConfirmation===void 0)&&(A.string(i.description)||i.description===void 0)}e.is=n})(xr||(xr={}));var St;(function(e){function t(n){const r=n;return A.string(r)}e.is=t})(St||(St={}));var ba;(function(e){function t(s,a,l){return{range:s,newText:a,annotationId:l}}e.replace=t;function n(s,a,l){return{range:{start:s,end:s},newText:a,annotationId:l}}e.insert=n;function r(s,a){return{range:s,newText:"",annotationId:a}}e.del=r;function i(s){const a=s;return Fe.is(a)&&(xr.is(a.annotationId)||St.is(a.annotationId))}e.is=i})(ba||(ba={}));var wr;(function(e){function t(r,i){return{textDocument:r,edits:i}}e.create=t;function n(r){let i=r;return A.defined(i)&&Ar.is(i.textDocument)&&Array.isArray(i.edits)}e.is=n})(wr||(wr={}));var _r;(function(e){function t(r,i,s){let a={kind:"create",uri:r};return i!==void 0&&(i.overwrite!==void 0||i.ignoreIfExists!==void 0)&&(a.options=i),s!==void 0&&(a.annotationId=s),a}e.create=t;function n(r){let i=r;return i&&i.kind==="create"&&A.string(i.uri)&&(i.options===void 0||(i.options.overwrite===void 0||A.boolean(i.options.overwrite))&&(i.options.ignoreIfExists===void 0||A.boolean(i.options.ignoreIfExists)))&&(i.annotationId===void 0||St.is(i.annotationId))}e.is=n})(_r||(_r={}));var Lr;(function(e){function t(r,i,s,a){let l={kind:"rename",oldUri:r,newUri:i};return s!==void 0&&(s.overwrite!==void 0||s.ignoreIfExists!==void 0)&&(l.options=s),a!==void 0&&(l.annotationId=a),l}e.create=t;function n(r){let i=r;return i&&i.kind==="rename"&&A.string(i.oldUri)&&A.string(i.newUri)&&(i.options===void 0||(i.options.overwrite===void 0||A.boolean(i.options.overwrite))&&(i.options.ignoreIfExists===void 0||A.boolean(i.options.ignoreIfExists)))&&(i.annotationId===void 0||St.is(i.annotationId))}e.is=n})(Lr||(Lr={}));var Nr;(function(e){function t(r,i,s){let a={kind:"delete",uri:r};return i!==void 0&&(i.recursive!==void 0||i.ignoreIfNotExists!==void 0)&&(a.options=i),s!==void 0&&(a.annotationId=s),a}e.create=t;function n(r){let i=r;return i&&i.kind==="delete"&&A.string(i.uri)&&(i.options===void 0||(i.options.recursive===void 0||A.boolean(i.options.recursive))&&(i.options.ignoreIfNotExists===void 0||A.boolean(i.options.ignoreIfNotExists)))&&(i.annotationId===void 0||St.is(i.annotationId))}e.is=n})(Nr||(Nr={}));var Sr;(function(e){function t(n){let r=n;return r&&(r.changes!==void 0||r.documentChanges!==void 0)&&(r.documentChanges===void 0||r.documentChanges.every(i=>A.string(i.kind)?_r.is(i)||Lr.is(i)||Nr.is(i):wr.is(i)))}e.is=t})(Sr||(Sr={}));var ya;(function(e){function t(r){return{uri:r}}e.create=t;function n(r){let i=r;return A.defined(i)&&A.string(i.uri)}e.is=n})(ya||(ya={}));var va;(function(e){function t(r,i){return{uri:r,version:i}}e.create=t;function n(r){let i=r;return A.defined(i)&&A.string(i.uri)&&A.integer(i.version)}e.is=n})(va||(va={}));var Ar;(function(e){function t(r,i){return{uri:r,version:i}}e.create=t;function n(r){let i=r;return A.defined(i)&&A.string(i.uri)&&(i.version===null||A.integer(i.version))}e.is=n})(Ar||(Ar={}));var xa;(function(e){function t(r,i,s,a){return{uri:r,languageId:i,version:s,text:a}}e.create=t;function n(r){let i=r;return A.defined(i)&&A.string(i.uri)&&A.string(i.languageId)&&A.integer(i.version)&&A.string(i.text)}e.is=n})(xa||(xa={}));var rt;(function(e){e.PlainText="plaintext",e.Markdown="markdown";function t(n){const r=n;return r===e.PlainText||r===e.Markdown}e.is=t})(rt||(rt={}));var qt;(function(e){function t(n){const r=n;return A.objectLiteral(n)&&rt.is(r.kind)&&A.string(r.value)}e.is=t})(qt||(qt={}));var ve;(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})(ve||(ve={}));var re;(function(e){e.PlainText=1,e.Snippet=2})(re||(re={}));var wa;(function(e){e.Deprecated=1})(wa||(wa={}));var _a;(function(e){function t(r,i,s){return{newText:r,insert:i,replace:s}}e.create=t;function n(r){const i=r;return i&&A.string(i.newText)&&q.is(i.insert)&&q.is(i.replace)}e.is=n})(_a||(_a={}));var La;(function(e){e.asIs=1,e.adjustIndentation=2})(La||(La={}));var Na;(function(e){function t(n){const r=n;return r&&(A.string(r.detail)||r.detail===void 0)&&(A.string(r.description)||r.description===void 0)}e.is=t})(Na||(Na={}));var kr;(function(e){function t(n){return{label:n}}e.create=t})(kr||(kr={}));var Sa;(function(e){function t(n,r){return{items:n||[],isIncomplete:!!r}}e.create=t})(Sa||(Sa={}));var Ln;(function(e){function t(r){return r.replace(/[\\`*_{}[\]()#+\-.!]/g,"\\$&")}e.fromPlainText=t;function n(r){const i=r;return A.string(i)||A.objectLiteral(i)&&A.string(i.language)&&A.string(i.value)}e.is=n})(Ln||(Ln={}));var Aa;(function(e){function t(n){let r=n;return!!r&&A.objectLiteral(r)&&(qt.is(r.contents)||Ln.is(r.contents)||A.typedArray(r.contents,Ln.is))&&(n.range===void 0||q.is(n.range))}e.is=t})(Aa||(Aa={}));var ka;(function(e){function t(n,r){return r?{label:n,documentation:r}:{label:n}}e.create=t})(ka||(ka={}));var Ra;(function(e){function t(n,r,...i){let s={label:n};return A.defined(r)&&(s.documentation=r),A.defined(i)?s.parameters=i:s.parameters=[],s}e.create=t})(Ra||(Ra={}));var Ea;(function(e){e.Text=1,e.Read=2,e.Write=3})(Ea||(Ea={}));var Ma;(function(e){function t(n,r){let i={range:n};return A.number(r)&&(i.kind=r),i}e.create=t})(Ma||(Ma={}));var Ve;(function(e){e.File=1,e.Module=2,e.Namespace=3,e.Package=4,e.Class=5,e.Method=6,e.Property=7,e.Field=8,e.Constructor=9,e.Enum=10,e.Interface=11,e.Function=12,e.Variable=13,e.Constant=14,e.String=15,e.Number=16,e.Boolean=17,e.Array=18,e.Object=19,e.Key=20,e.Null=21,e.EnumMember=22,e.Struct=23,e.Event=24,e.Operator=25,e.TypeParameter=26})(Ve||(Ve={}));var Ca;(function(e){e.Deprecated=1})(Ca||(Ca={}));var Ta;(function(e){function t(n,r,i,s,a){let l={name:n,kind:r,location:{uri:s,range:i}};return a&&(l.containerName=a),l}e.create=t})(Ta||(Ta={}));var Pa;(function(e){function t(n,r,i,s){return s!==void 0?{name:n,kind:r,location:{uri:i,range:s}}:{name:n,kind:r,location:{uri:i}}}e.create=t})(Pa||(Pa={}));var Ia;(function(e){function t(r,i,s,a,l,o){let u={name:r,detail:i,kind:s,range:a,selectionRange:l};return o!==void 0&&(u.children=o),u}e.create=t;function n(r){let i=r;return i&&A.string(i.name)&&A.number(i.kind)&&q.is(i.range)&&q.is(i.selectionRange)&&(i.detail===void 0||A.string(i.detail))&&(i.deprecated===void 0||A.boolean(i.deprecated))&&(i.children===void 0||Array.isArray(i.children))&&(i.tags===void 0||Array.isArray(i.tags))}e.is=n})(Ia||(Ia={}));var Fa;(function(e){e.Empty="",e.QuickFix="quickfix",e.Refactor="refactor",e.RefactorExtract="refactor.extract",e.RefactorInline="refactor.inline",e.RefactorRewrite="refactor.rewrite",e.Source="source",e.SourceOrganizeImports="source.organizeImports",e.SourceFixAll="source.fixAll"})(Fa||(Fa={}));var Nn;(function(e){e.Invoked=1,e.Automatic=2})(Nn||(Nn={}));var Va;(function(e){function t(r,i,s){let a={diagnostics:r};return i!=null&&(a.only=i),s!=null&&(a.triggerKind=s),a}e.create=t;function n(r){let i=r;return A.defined(i)&&A.typedArray(i.diagnostics,qe.is)&&(i.only===void 0||A.typedArray(i.only,A.string))&&(i.triggerKind===void 0||i.triggerKind===Nn.Invoked||i.triggerKind===Nn.Automatic)}e.is=n})(Va||(Va={}));var Da;(function(e){function t(r,i,s){let a={title:r},l=!0;return typeof i=="string"?(l=!1,a.kind=i):Nt.is(i)?a.command=i:a.edit=i,l&&s!==void 0&&(a.kind=s),a}e.create=t;function n(r){let i=r;return i&&A.string(i.title)&&(i.diagnostics===void 0||A.typedArray(i.diagnostics,qe.is))&&(i.kind===void 0||A.string(i.kind))&&(i.edit!==void 0||i.command!==void 0)&&(i.command===void 0||Nt.is(i.command))&&(i.isPreferred===void 0||A.boolean(i.isPreferred))&&(i.edit===void 0||Sr.is(i.edit))}e.is=n})(Da||(Da={}));var Oa;(function(e){function t(r,i){let s={range:r};return A.defined(i)&&(s.data=i),s}e.create=t;function n(r){let i=r;return A.defined(i)&&q.is(i.range)&&(A.undefined(i.command)||Nt.is(i.command))}e.is=n})(Oa||(Oa={}));var Ba;(function(e){function t(r,i){return{tabSize:r,insertSpaces:i}}e.create=t;function n(r){let i=r;return A.defined(i)&&A.uinteger(i.tabSize)&&A.boolean(i.insertSpaces)}e.is=n})(Ba||(Ba={}));var $a;(function(e){function t(r,i,s){return{range:r,target:i,data:s}}e.create=t;function n(r){let i=r;return A.defined(i)&&q.is(i.range)&&(A.undefined(i.target)||A.string(i.target))}e.is=n})($a||($a={}));var Sn;(function(e){function t(r,i){return{range:r,parent:i}}e.create=t;function n(r){let i=r;return A.objectLiteral(i)&&q.is(i.range)&&(i.parent===void 0||e.is(i.parent))}e.is=n})(Sn||(Sn={}));var Ua;(function(e){e.namespace="namespace",e.type="type",e.class="class",e.enum="enum",e.interface="interface",e.struct="struct",e.typeParameter="typeParameter",e.parameter="parameter",e.variable="variable",e.property="property",e.enumMember="enumMember",e.event="event",e.function="function",e.method="method",e.macro="macro",e.keyword="keyword",e.modifier="modifier",e.comment="comment",e.string="string",e.number="number",e.regexp="regexp",e.operator="operator",e.decorator="decorator"})(Ua||(Ua={}));var qa;(function(e){e.declaration="declaration",e.definition="definition",e.readonly="readonly",e.static="static",e.deprecated="deprecated",e.abstract="abstract",e.async="async",e.modification="modification",e.documentation="documentation",e.defaultLibrary="defaultLibrary"})(qa||(qa={}));var ja;(function(e){function t(n){const r=n;return A.objectLiteral(r)&&(r.resultId===void 0||typeof r.resultId=="string")&&Array.isArray(r.data)&&(r.data.length===0||typeof r.data[0]=="number")}e.is=t})(ja||(ja={}));var Wa;(function(e){function t(r,i){return{range:r,text:i}}e.create=t;function n(r){const i=r;return i!=null&&q.is(i.range)&&A.string(i.text)}e.is=n})(Wa||(Wa={}));var Ha;(function(e){function t(r,i,s){return{range:r,variableName:i,caseSensitiveLookup:s}}e.create=t;function n(r){const i=r;return i!=null&&q.is(i.range)&&A.boolean(i.caseSensitiveLookup)&&(A.string(i.variableName)||i.variableName===void 0)}e.is=n})(Ha||(Ha={}));var za;(function(e){function t(r,i){return{range:r,expression:i}}e.create=t;function n(r){const i=r;return i!=null&&q.is(i.range)&&(A.string(i.expression)||i.expression===void 0)}e.is=n})(za||(za={}));var Ga;(function(e){function t(r,i){return{frameId:r,stoppedLocation:i}}e.create=t;function n(r){const i=r;return A.defined(i)&&q.is(r.stoppedLocation)}e.is=n})(Ga||(Ga={}));var Rr;(function(e){e.Type=1,e.Parameter=2;function t(n){return n===1||n===2}e.is=t})(Rr||(Rr={}));var Er;(function(e){function t(r){return{value:r}}e.create=t;function n(r){const i=r;return A.objectLiteral(i)&&(i.tooltip===void 0||A.string(i.tooltip)||qt.is(i.tooltip))&&(i.location===void 0||Lt.is(i.location))&&(i.command===void 0||Nt.is(i.command))}e.is=n})(Er||(Er={}));var Ja;(function(e){function t(r,i,s){const a={position:r,label:i};return s!==void 0&&(a.kind=s),a}e.create=t;function n(r){const i=r;return A.objectLiteral(i)&&Y.is(i.position)&&(A.string(i.label)||A.typedArray(i.label,Er.is))&&(i.kind===void 0||Rr.is(i.kind))&&i.textEdits===void 0||A.typedArray(i.textEdits,Fe.is)&&(i.tooltip===void 0||A.string(i.tooltip)||qt.is(i.tooltip))&&(i.paddingLeft===void 0||A.boolean(i.paddingLeft))&&(i.paddingRight===void 0||A.boolean(i.paddingRight))}e.is=n})(Ja||(Ja={}));var Xa;(function(e){function t(n){return{kind:"snippet",value:n}}e.createSnippet=t})(Xa||(Xa={}));var Qa;(function(e){function t(n,r,i,s){return{insertText:n,filterText:r,range:i,command:s}}e.create=t})(Qa||(Qa={}));var Ya;(function(e){function t(n){return{items:n}}e.create=t})(Ya||(Ya={}));var Za;(function(e){e.Invoked=0,e.Automatic=1})(Za||(Za={}));var Ka;(function(e){function t(n,r){return{range:n,text:r}}e.create=t})(Ka||(Ka={}));var eo;(function(e){function t(n,r){return{triggerKind:n,selectedCompletionInfo:r}}e.create=t})(eo||(eo={}));var to;(function(e){function t(n){const r=n;return A.objectLiteral(r)&&br.is(r.uri)&&A.string(r.name)}e.is=t})(to||(to={}));var no;(function(e){function t(s,a,l,o){return new Nc(s,a,l,o)}e.create=t;function n(s){let a=s;return!!(A.defined(a)&&A.string(a.uri)&&(A.undefined(a.languageId)||A.string(a.languageId))&&A.uinteger(a.lineCount)&&A.func(a.getText)&&A.func(a.positionAt)&&A.func(a.offsetAt))}e.is=n;function r(s,a){let l=s.getText(),o=i(a,(h,c)=>{let m=h.range.start.line-c.range.start.line;return m===0?h.range.start.character-c.range.start.character:m}),u=l.length;for(let h=o.length-1;h>=0;h--){let c=o[h],m=s.offsetAt(c.range.start),d=s.offsetAt(c.range.end);if(d<=u)l=l.substring(0,m)+c.newText+l.substring(d,l.length);else throw new Error("Overlapping edit");u=m}return l}e.applyEdits=r;function i(s,a){if(s.length<=1)return s;const l=s.length/2|0,o=s.slice(0,l),u=s.slice(l);i(o,a),i(u,a);let h=0,c=0,m=0;for(;h<o.length&&c<u.length;)a(o[h],u[c])<=0?s[m++]=o[h++]:s[m++]=u[c++];for(;h<o.length;)s[m++]=o[h++];for(;c<u.length;)s[m++]=u[c++];return s}})(no||(no={}));var Nc=class{constructor(e,t,n,r){this._uri=e,this._languageId=t,this._version=n,this._content=r,this._lineOffsets=void 0}get uri(){return this._uri}get languageId(){return this._languageId}get version(){return this._version}getText(e){if(e){let t=this.offsetAt(e.start),n=this.offsetAt(e.end);return this._content.substring(t,n)}return this._content}update(e,t){this._content=e.text,this._version=t,this._lineOffsets=void 0}getLineOffsets(){if(this._lineOffsets===void 0){let e=[],t=this._content,n=!0;for(let r=0;r<t.length;r++){n&&(e.push(r),n=!1);let i=t.charAt(r);n=i==="\r"||i===`
|
||
`,i==="\r"&&r+1<t.length&&t.charAt(r+1)===`
|
||
`&&r++}n&&t.length>0&&e.push(t.length),this._lineOffsets=e}return this._lineOffsets}positionAt(e){e=Math.max(Math.min(e,this._content.length),0);let t=this.getLineOffsets(),n=0,r=t.length;if(r===0)return Y.create(0,e);for(;n<r;){let s=Math.floor((n+r)/2);t[s]>e?r=s:n=s+1}let i=n-1;return Y.create(i,e-t[i])}offsetAt(e){let t=this.getLineOffsets();if(e.line>=t.length)return this._content.length;if(e.line<0)return 0;let n=t[e.line],r=e.line+1<t.length?t[e.line+1]:this._content.length;return Math.max(Math.min(n+e.character,r),n)}get lineCount(){return this.getLineOffsets().length}},A;(function(e){const t=Object.prototype.toString;function n(d){return typeof d<"u"}e.defined=n;function r(d){return typeof d>"u"}e.undefined=r;function i(d){return d===!0||d===!1}e.boolean=i;function s(d){return t.call(d)==="[object String]"}e.string=s;function a(d){return t.call(d)==="[object Number]"}e.number=a;function l(d,g,p){return t.call(d)==="[object Number]"&&g<=d&&d<=p}e.numberRange=l;function o(d){return t.call(d)==="[object Number]"&&-2147483648<=d&&d<=2147483647}e.integer=o;function u(d){return t.call(d)==="[object Number]"&&0<=d&&d<=2147483647}e.uinteger=u;function h(d){return t.call(d)==="[object Function]"}e.func=h;function c(d){return d!==null&&typeof d=="object"}e.objectLiteral=c;function m(d,g){return Array.isArray(d)&&d.every(g)}e.typedArray=m})(A||(A={}));var ro=class $r{constructor(t,n,r,i){this._uri=t,this._languageId=n,this._version=r,this._content=i,this._lineOffsets=void 0}get uri(){return this._uri}get languageId(){return this._languageId}get version(){return this._version}getText(t){if(t){const n=this.offsetAt(t.start),r=this.offsetAt(t.end);return this._content.substring(n,r)}return this._content}update(t,n){for(let r of t)if($r.isIncremental(r)){const i=so(r.range),s=this.offsetAt(i.start),a=this.offsetAt(i.end);this._content=this._content.substring(0,s)+r.text+this._content.substring(a,this._content.length);const l=Math.max(i.start.line,0),o=Math.max(i.end.line,0);let u=this._lineOffsets;const h=io(r.text,!1,s);if(o-l===h.length)for(let m=0,d=h.length;m<d;m++)u[m+l+1]=h[m];else h.length<1e4?u.splice(l+1,o-l,...h):this._lineOffsets=u=u.slice(0,l+1).concat(h,u.slice(o+1));const c=r.text.length-(a-s);if(c!==0)for(let m=l+1+h.length,d=u.length;m<d;m++)u[m]=u[m]+c}else if($r.isFull(r))this._content=r.text,this._lineOffsets=void 0;else throw new Error("Unknown change event received");this._version=n}getLineOffsets(){return this._lineOffsets===void 0&&(this._lineOffsets=io(this._content,!0)),this._lineOffsets}positionAt(t){t=Math.max(Math.min(t,this._content.length),0);let n=this.getLineOffsets(),r=0,i=n.length;if(i===0)return{line:0,character:t};for(;r<i;){let a=Math.floor((r+i)/2);n[a]>t?i=a:r=a+1}let s=r-1;return{line:s,character:t-n[s]}}offsetAt(t){let n=this.getLineOffsets();if(t.line>=n.length)return this._content.length;if(t.line<0)return 0;let r=n[t.line],i=t.line+1<n.length?n[t.line+1]:this._content.length;return Math.max(Math.min(r+t.character,i),r)}get lineCount(){return this.getLineOffsets().length}static isIncremental(t){let n=t;return n!=null&&typeof n.text=="string"&&n.range!==void 0&&(n.rangeLength===void 0||typeof n.rangeLength=="number")}static isFull(t){let n=t;return n!=null&&typeof n.text=="string"&&n.range===void 0&&n.rangeLength===void 0}},Ee;(function(e){function t(i,s,a,l){return new ro(i,s,a,l)}e.create=t;function n(i,s,a){if(i instanceof ro)return i.update(s,a),i;throw new Error("TextDocument.update: document must be created by TextDocument.create")}e.update=n;function r(i,s){let a=i.getText(),l=Mr(s.map(Sc),(h,c)=>{let m=h.range.start.line-c.range.start.line;return m===0?h.range.start.character-c.range.start.character:m}),o=0;const u=[];for(const h of l){let c=i.offsetAt(h.range.start);if(c<o)throw new Error("Overlapping edit");c>o&&u.push(a.substring(o,c)),h.newText.length&&u.push(h.newText),o=i.offsetAt(h.range.end)}return u.push(a.substr(o)),u.join("")}e.applyEdits=r})(Ee||(Ee={}));function Mr(e,t){if(e.length<=1)return e;const n=e.length/2|0,r=e.slice(0,n),i=e.slice(n);Mr(r,t),Mr(i,t);let s=0,a=0,l=0;for(;s<r.length&&a<i.length;)t(r[s],i[a])<=0?e[l++]=r[s++]:e[l++]=i[a++];for(;s<r.length;)e[l++]=r[s++];for(;a<i.length;)e[l++]=i[a++];return e}function io(e,t,n=0){const r=t?[n]:[];for(let i=0;i<e.length;i++){let s=e.charCodeAt(i);(s===13||s===10)&&(s===13&&i+1<e.length&&e.charCodeAt(i+1)===10&&i++,r.push(n+i+1))}return r}function so(e){const t=e.start,n=e.end;return t.line>n.line||t.line===n.line&&t.character>n.character?{start:n,end:t}:e}function Sc(e){const t=so(e.range);return t!==e.range?{newText:e.newText,range:t}:e}var H;(function(e){e[e.Undefined=0]="Undefined",e[e.EnumValueMismatch=1]="EnumValueMismatch",e[e.Deprecated=2]="Deprecated",e[e.UnexpectedEndOfComment=257]="UnexpectedEndOfComment",e[e.UnexpectedEndOfString=258]="UnexpectedEndOfString",e[e.UnexpectedEndOfNumber=259]="UnexpectedEndOfNumber",e[e.InvalidUnicode=260]="InvalidUnicode",e[e.InvalidEscapeCharacter=261]="InvalidEscapeCharacter",e[e.InvalidCharacter=262]="InvalidCharacter",e[e.PropertyExpected=513]="PropertyExpected",e[e.CommaExpected=514]="CommaExpected",e[e.ColonExpected=515]="ColonExpected",e[e.ValueExpected=516]="ValueExpected",e[e.CommaOrCloseBacketExpected=517]="CommaOrCloseBacketExpected",e[e.CommaOrCloseBraceExpected=518]="CommaOrCloseBraceExpected",e[e.TrailingComma=519]="TrailingComma",e[e.DuplicateKey=520]="DuplicateKey",e[e.CommentNotPermitted=521]="CommentNotPermitted",e[e.PropertyKeysMustBeDoublequoted=528]="PropertyKeysMustBeDoublequoted",e[e.SchemaResolveError=768]="SchemaResolveError",e[e.SchemaUnsupportedFeature=769]="SchemaUnsupportedFeature"})(H||(H={}));var Me;(function(e){e[e.v3=3]="v3",e[e.v4=4]="v4",e[e.v6=6]="v6",e[e.v7=7]="v7",e[e.v2019_09=19]="v2019_09",e[e.v2020_12=20]="v2020_12"})(Me||(Me={}));var Cr;(function(e){e.LATEST={textDocument:{completion:{completionItem:{documentationFormat:[rt.Markdown,rt.PlainText],commitCharactersSupport:!0,labelDetailsSupport:!0}}}}})(Cr||(Cr={}));function E(...e){const t=e[0];let n,r,i;if(typeof t=="string")n=t,r=t,e.splice(0,1),i=!e||typeof e[0]!="object"?e:e[0];else if(t instanceof Array){const s=e.slice(1);if(t.length!==s.length+1)throw new Error("expected a string as the first argument to l10n.t");let a=t[0];for(let l=1;l<t.length;l++)a+=`{${l-1}}`+t[l];return E(a,...s)}else r=t.message,n=r,t.comment&&t.comment.length>0&&(n+=`/${Array.isArray(t.comment)?t.comment.join(""):t.comment}`),i=t.args??{};return kc(r,i)}var Ac=/{([^}]+)}/g;function kc(e,t){return Object.keys(t).length===0?e:e.replace(Ac,(n,r)=>t[r]??n)}var Rc={"color-hex":{errorMessage:E("Invalid color format. Use #RGB, #RGBA, #RRGGBB or #RRGGBBAA."),pattern:/^#([0-9A-Fa-f]{3,4}|([0-9A-Fa-f]{2}){3,4})$/},"date-time":{errorMessage:E("String is not a RFC3339 date-time."),pattern:/^(\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9]|60)(\.[0-9]+)?(Z|(\+|-)([01][0-9]|2[0-3]):([0-5][0-9]))$/i},date:{errorMessage:E("String is not a RFC3339 date."),pattern:/^(\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])$/i},time:{errorMessage:E("String is not a RFC3339 time."),pattern:/^([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9]|60)(\.[0-9]+)?(Z|(\+|-)([01][0-9]|2[0-3]):([0-5][0-9]))$/i},email:{errorMessage:E("String is not an e-mail address."),pattern:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}))$/},hostname:{errorMessage:E("String is not a hostname."),pattern:/^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i},ipv4:{errorMessage:E("String is not an IPv4 address."),pattern:/^(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)$/},ipv6:{errorMessage:E("String is not an IPv6 address."),pattern:/^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))$/i}},it=class{constructor(e,t,n=0){this.offset=t,this.length=n,this.parent=e}get children(){return[]}toString(){return"type: "+this.type+" ("+this.offset+"/"+this.length+")"+(this.parent?" parent: {"+this.parent.toString()+"}":"")}},Ec=class extends it{constructor(e,t){super(e,t),this.type="null",this.value=null}},ao=class extends it{constructor(e,t,n){super(e,n),this.type="boolean",this.value=t}},Mc=class extends it{constructor(e,t){super(e,t),this.type="array",this.items=[]}get children(){return this.items}},Cc=class extends it{constructor(e,t){super(e,t),this.type="number",this.isInteger=!0,this.value=Number.NaN}},Tr=class extends it{constructor(e,t,n){super(e,t,n),this.type="string",this.value=""}},Tc=class extends it{constructor(e,t,n){super(e,t),this.type="property",this.colonOffset=-1,this.keyNode=n}get children(){return this.valueNode?[this.keyNode,this.valueNode]:[this.keyNode]}},Pc=class extends it{constructor(e,t){super(e,t),this.type="object",this.properties=[]}get children(){return this.properties}};function xe(e){return Ie(e)?e?{}:{not:{}}:e}var oo;(function(e){e[e.Key=0]="Key",e[e.Enum=1]="Enum"})(oo||(oo={}));var Ic={"http://json-schema.org/draft-03/schema#":Me.v3,"http://json-schema.org/draft-04/schema#":Me.v4,"http://json-schema.org/draft-06/schema#":Me.v6,"http://json-schema.org/draft-07/schema#":Me.v7,"https://json-schema.org/draft/2019-09/schema":Me.v2019_09,"https://json-schema.org/draft/2020-12/schema":Me.v2020_12},lo=class{constructor(e){this.schemaDraft=e}},Fc=class So{constructor(t=-1,n){this.focusOffset=t,this.exclude=n,this.schemas=[]}add(t){this.schemas.push(t)}merge(t){Array.prototype.push.apply(this.schemas,t.schemas)}include(t){return(this.focusOffset===-1||uo(t,this.focusOffset))&&t!==this.exclude}newSub(){return new So(-1,this.exclude)}},jt=class{constructor(){}get schemas(){return[]}add(e){}merge(e){}include(e){return!0}newSub(){return this}};jt.instance=new jt;var he=class{constructor(){this.problems=[],this.propertiesMatches=0,this.processedProperties=new Set,this.propertiesValueMatches=0,this.primaryValueMatches=0,this.enumValueMatch=!1,this.enumValues=void 0}hasProblems(){return!!this.problems.length}merge(e){this.problems=this.problems.concat(e.problems),this.propertiesMatches+=e.propertiesMatches,this.propertiesValueMatches+=e.propertiesValueMatches,this.mergeProcessedProperties(e)}mergeEnumValues(e){if(!this.enumValueMatch&&!e.enumValueMatch&&this.enumValues&&e.enumValues){this.enumValues=this.enumValues.concat(e.enumValues);for(const t of this.problems)t.code===H.EnumValueMismatch&&(t.message=E("Value is not accepted. Valid values: {0}.",this.enumValues.map(n=>JSON.stringify(n)).join(", ")))}}mergePropertyMatch(e){this.problems=this.problems.concat(e.problems),this.propertiesMatches++,(e.enumValueMatch||!e.hasProblems()&&e.propertiesMatches)&&this.propertiesValueMatches++,e.enumValueMatch&&e.enumValues&&e.enumValues.length===1&&this.primaryValueMatches++}mergeProcessedProperties(e){e.processedProperties.forEach(t=>this.processedProperties.add(t))}compare(e){const t=this.hasProblems();return t!==e.hasProblems()?t?-1:1:this.enumValueMatch!==e.enumValueMatch?e.enumValueMatch?-1:1:this.primaryValueMatches!==e.primaryValueMatches?this.primaryValueMatches-e.primaryValueMatches:this.propertiesValueMatches!==e.propertiesValueMatches?this.propertiesValueMatches-e.propertiesValueMatches:this.propertiesMatches-e.propertiesMatches}};function Vc(e,t=[]){return new co(e,t,[])}function st(e){return wc(e)}function Pr(e){return xc(e)}function uo(e,t,n=!1){return t>=e.offset&&t<e.offset+e.length||n&&t===e.offset+e.length}var co=class{constructor(e,t=[],n=[]){this.root=e,this.syntaxErrors=t,this.comments=n}getNodeFromOffset(e,t=!1){if(this.root)return vc(this.root,e,t)}visit(e){if(this.root){const t=n=>{let r=e(n);const i=n.children;if(Array.isArray(i))for(let s=0;s<i.length&&r;s++)r=t(i[s]);return r};t(this.root)}}validate(e,t,n=ye.Warning,r){if(this.root&&t){const i=new he;return le(this.root,t,i,jt.instance,new lo(r??fo(t))),i.problems.map(s=>{const a=q.create(e.positionAt(s.location.offset),e.positionAt(s.location.offset+s.location.length));return qe.create(a,s.message,s.severity??n,s.code)})}}getMatchingSchemas(e,t=-1,n){if(this.root&&e){const r=new Fc(t,n),i=fo(e),s=new lo(i);return le(this.root,e,new he,r,s),r.schemas}return[]}};function fo(e,t=Me.v2020_12){let n=e.$schema;return n?Ic[n]??t:t}function le(e,t,n,r,i){if(!e||!r.include(e))return;if(e.type==="property")return le(e.valueNode,t,n,r,i);const s=e;switch(a(),s.type){case"object":h(s);break;case"array":u(s);break;case"string":o(s);break;case"number":l(s);break}r.add({node:s,schema:t});function a(){function c(_){return s.type===_||_==="integer"&&s.type==="number"&&s.isInteger}if(Array.isArray(t.type)?t.type.some(c)||n.problems.push({location:{offset:s.offset,length:s.length},message:t.errorMessage||E("Incorrect type. Expected one of {0}.",t.type.join(", "))}):t.type&&(c(t.type)||n.problems.push({location:{offset:s.offset,length:s.length},message:t.errorMessage||E('Incorrect type. Expected "{0}".',t.type)})),Array.isArray(t.allOf))for(const _ of t.allOf){const v=new he,x=r.newSub();le(s,xe(_),v,x,i),n.merge(v),r.merge(x)}const m=xe(t.not);if(m){const _=new he,v=r.newSub();le(s,m,_,v,i),_.hasProblems()||n.problems.push({location:{offset:s.offset,length:s.length},message:t.errorMessage||E("Matches a schema that is not allowed.")});for(const x of v.schemas)x.inverted=!x.inverted,r.add(x)}const d=(_,v)=>{const x=[];let b;for(const L of _){const S=xe(L),M=new he,F=r.newSub();if(le(s,S,M,F,i),M.hasProblems()||x.push(S),!b)b={schema:S,validationResult:M,matchingSchemas:F};else if(!v&&!M.hasProblems()&&!b.validationResult.hasProblems())b.matchingSchemas.merge(F),b.validationResult.propertiesMatches+=M.propertiesMatches,b.validationResult.propertiesValueMatches+=M.propertiesValueMatches,b.validationResult.mergeProcessedProperties(M);else{const O=M.compare(b.validationResult);O>0?b={schema:S,validationResult:M,matchingSchemas:F}:O===0&&(b.matchingSchemas.merge(F),b.validationResult.mergeEnumValues(M))}}return x.length>1&&v&&n.problems.push({location:{offset:s.offset,length:1},message:E("Matches multiple schemas when only one must validate.")}),b&&(n.merge(b.validationResult),r.merge(b.matchingSchemas)),x.length};Array.isArray(t.anyOf)&&d(t.anyOf,!1),Array.isArray(t.oneOf)&&d(t.oneOf,!0);const g=_=>{const v=new he,x=r.newSub();le(s,xe(_),v,x,i),n.merge(v),r.merge(x)},p=(_,v,x)=>{const b=xe(_),L=new he,S=r.newSub();le(s,b,L,S,i),r.merge(S),n.mergeProcessedProperties(L),L.hasProblems()?x&&g(x):v&&g(v)},y=xe(t.if);if(y&&p(y,xe(t.then),xe(t.else)),Array.isArray(t.enum)){const _=st(s);let v=!1;for(const x of t.enum)if(_t(_,x)){v=!0;break}n.enumValues=t.enum,n.enumValueMatch=v,v||n.problems.push({location:{offset:s.offset,length:s.length},code:H.EnumValueMismatch,message:t.errorMessage||E("Value is not accepted. Valid values: {0}.",t.enum.map(x=>JSON.stringify(x)).join(", "))})}if(Re(t.const)){const _=st(s);_t(_,t.const)?n.enumValueMatch=!0:(n.problems.push({location:{offset:s.offset,length:s.length},code:H.EnumValueMismatch,message:t.errorMessage||E("Value must be {0}.",JSON.stringify(t.const))}),n.enumValueMatch=!1),n.enumValues=[t.const]}let w=t.deprecationMessage;if(w||t.deprecated){w=w||E("Value is deprecated");let _=s.parent?.type==="property"?s.parent:s;n.problems.push({location:{offset:_.offset,length:_.length},severity:ye.Warning,message:w,code:H.Deprecated})}}function l(c){const m=c.value;function d(x){const b=/^(-?\d+)(?:\.(\d+))?(?:e([-+]\d+))?$/.exec(x.toString());return b&&{value:Number(b[1]+(b[2]||"")),multiplier:(b[2]?.length||0)-(parseInt(b[3])||0)}}if(fe(t.multipleOf)){let x=-1;if(Number.isInteger(t.multipleOf))x=m%t.multipleOf;else{let b=d(t.multipleOf),L=d(m);if(b&&L){const S=10**Math.abs(L.multiplier-b.multiplier);L.multiplier<b.multiplier?L.value*=S:b.value*=S,x=L.value%b.value}}x!==0&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Value is not divisible by {0}.",t.multipleOf)})}function g(x,b){if(fe(b))return b;if(Ie(b)&&b)return x}function p(x,b){if(!Ie(b)||!b)return x}const y=g(t.minimum,t.exclusiveMinimum);fe(y)&&m<=y&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Value is below the exclusive minimum of {0}.",y)});const w=g(t.maximum,t.exclusiveMaximum);fe(w)&&m>=w&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Value is above the exclusive maximum of {0}.",w)});const _=p(t.minimum,t.exclusiveMinimum);fe(_)&&m<_&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Value is below the minimum of {0}.",_)});const v=p(t.maximum,t.exclusiveMaximum);fe(v)&&m>v&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Value is above the maximum of {0}.",v)})}function o(c){if(fe(t.minLength)&&la(c.value)<t.minLength&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("String is shorter than the minimum length of {0}.",t.minLength)}),fe(t.maxLength)&&la(c.value)>t.maxLength&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("String is longer than the maximum length of {0}.",t.maxLength)}),oa(t.pattern)&&(wn(t.pattern)?.test(c.value)||n.problems.push({location:{offset:c.offset,length:c.length},message:t.patternErrorMessage||t.errorMessage||E('String does not match the pattern of "{0}".',t.pattern)})),t.format)switch(t.format){case"uri":case"uri-reference":{let d;if(!c.value)d=E("URI expected.");else{const g=/^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/.exec(c.value);g?!g[2]&&t.format==="uri"&&(d=E("URI with a scheme is expected.")):d=E("URI is expected.")}d&&n.problems.push({location:{offset:c.offset,length:c.length},message:t.patternErrorMessage||t.errorMessage||E("String is not a URI: {0}",d)})}break;case"color-hex":case"date-time":case"date":case"time":case"email":case"hostname":case"ipv4":case"ipv6":const m=Rc[t.format];(!c.value||!m.pattern.exec(c.value))&&n.problems.push({location:{offset:c.offset,length:c.length},message:t.patternErrorMessage||t.errorMessage||m.errorMessage})}}function u(c){let m,d;i.schemaDraft>=Me.v2020_12?(m=t.prefixItems,d=Array.isArray(t.items)?void 0:t.items):(m=Array.isArray(t.items)?t.items:void 0,d=Array.isArray(t.items)?t.additionalItems:t.items);let g=0;if(m!==void 0){const w=Math.min(m.length,c.items.length);for(;g<w;g++){const _=m[g],v=xe(_),x=new he,b=c.items[g];b&&(le(b,v,x,r,i),n.mergePropertyMatch(x)),n.processedProperties.add(String(g))}}if(d!==void 0&&g<c.items.length)if(typeof d=="boolean")for(d===!1&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Array has too many items according to schema. Expected {0} or fewer.",g)});g<c.items.length;g++)n.processedProperties.add(String(g)),n.propertiesValueMatches++;else for(;g<c.items.length;g++){const w=new he;le(c.items[g],d,w,r,i),n.mergePropertyMatch(w),n.processedProperties.add(String(g))}const p=xe(t.contains);if(p){let w=0;for(let _=0;_<c.items.length;_++){const v=c.items[_],x=new he;le(v,p,x,jt.instance,i),x.hasProblems()||(w++,i.schemaDraft>=Me.v2020_12&&n.processedProperties.add(String(_)))}w===0&&!fe(t.minContains)&&n.problems.push({location:{offset:c.offset,length:c.length},message:t.errorMessage||E("Array does not contain required item.")}),fe(t.minContains)&&w<t.minContains&&n.problems.push({location:{offset:c.offset,length:c.length},message:t.errorMessage||E("Array has too few items that match the contains contraint. Expected {0} or more.",t.minContains)}),fe(t.maxContains)&&w>t.maxContains&&n.problems.push({location:{offset:c.offset,length:c.length},message:t.errorMessage||E("Array has too many items that match the contains contraint. Expected {0} or less.",t.maxContains)})}const y=t.unevaluatedItems;if(y!==void 0)for(let w=0;w<c.items.length;w++){if(!n.processedProperties.has(String(w)))if(y===!1)n.problems.push({location:{offset:c.offset,length:c.length},message:E("Item does not match any validation rule from the array.")});else{const _=new he;le(c.items[w],t.unevaluatedItems,_,r,i),n.mergePropertyMatch(_)}n.processedProperties.add(String(w)),n.propertiesValueMatches++}if(fe(t.minItems)&&c.items.length<t.minItems&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Array has too few items. Expected {0} or more.",t.minItems)}),fe(t.maxItems)&&c.items.length>t.maxItems&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Array has too many items. Expected {0} or fewer.",t.maxItems)}),t.uniqueItems===!0){let w=function(){for(let v=0;v<_.length-1;v++){const x=_[v];for(let b=v+1;b<_.length;b++)if(_t(x,_[b]))return!0}return!1};const _=st(c);w()&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Array has duplicate items.")})}}function h(c){const m=Object.create(null),d=new Set;for(const v of c.properties){const x=v.keyNode.value;m[x]=v.valueNode,d.add(x)}if(Array.isArray(t.required)){for(const v of t.required)if(!m[v]){const x=c.parent&&c.parent.type==="property"&&c.parent.keyNode,b=x?{offset:x.offset,length:x.length}:{offset:c.offset,length:1};n.problems.push({location:b,message:E('Missing property "{0}".',v)})}}const g=v=>{d.delete(v),n.processedProperties.add(v)};if(t.properties)for(const v of Object.keys(t.properties)){g(v);const x=t.properties[v],b=m[v];if(b)if(Ie(x))if(x)n.propertiesMatches++,n.propertiesValueMatches++;else{const L=b.parent;n.problems.push({location:{offset:L.keyNode.offset,length:L.keyNode.length},message:t.errorMessage||E("Property {0} is not allowed.",v)})}else{const L=new he;le(b,x,L,r,i),n.mergePropertyMatch(L)}}if(t.patternProperties)for(const v of Object.keys(t.patternProperties)){const x=wn(v);if(x){const b=[];for(const L of d)if(x.test(L)){b.push(L);const S=m[L];if(S){const M=t.patternProperties[v];if(Ie(M))if(M)n.propertiesMatches++,n.propertiesValueMatches++;else{const F=S.parent;n.problems.push({location:{offset:F.keyNode.offset,length:F.keyNode.length},message:t.errorMessage||E("Property {0} is not allowed.",L)})}else{const F=new he;le(S,M,F,r,i),n.mergePropertyMatch(F)}}}b.forEach(g)}}const p=t.additionalProperties;if(p!==void 0)for(const v of d){g(v);const x=m[v];if(x){if(p===!1){const b=x.parent;n.problems.push({location:{offset:b.keyNode.offset,length:b.keyNode.length},message:t.errorMessage||E("Property {0} is not allowed.",v)})}else if(p!==!0){const b=new he;le(x,p,b,r,i),n.mergePropertyMatch(b)}}}const y=t.unevaluatedProperties;if(y!==void 0){const v=[];for(const x of d)if(!n.processedProperties.has(x)){v.push(x);const b=m[x];if(b){if(y===!1){const L=b.parent;n.problems.push({location:{offset:L.keyNode.offset,length:L.keyNode.length},message:t.errorMessage||E("Property {0} is not allowed.",x)})}else if(y!==!0){const L=new he;le(b,y,L,r,i),n.mergePropertyMatch(L)}}}v.forEach(g)}if(fe(t.maxProperties)&&c.properties.length>t.maxProperties&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Object has more properties than limit of {0}.",t.maxProperties)}),fe(t.minProperties)&&c.properties.length<t.minProperties&&n.problems.push({location:{offset:c.offset,length:c.length},message:E("Object has fewer properties than the required number of {0}",t.minProperties)}),t.dependentRequired)for(const v in t.dependentRequired){const x=m[v],b=t.dependentRequired[v];x&&Array.isArray(b)&&_(v,b)}if(t.dependentSchemas)for(const v in t.dependentSchemas){const x=m[v],b=t.dependentSchemas[v];x&&Ye(b)&&_(v,b)}if(t.dependencies)for(const v in t.dependencies)m[v]&&_(v,t.dependencies[v]);const w=xe(t.propertyNames);if(w)for(const v of c.properties){const x=v.keyNode;x&&le(x,w,n,jt.instance,i)}function _(v,x){if(Array.isArray(x))for(const b of x)m[b]?n.propertiesValueMatches++:n.problems.push({location:{offset:c.offset,length:c.length},message:E("Object is missing property {0} required by property {1}.",b,v)});else{const b=xe(x);if(b){const L=new he;le(c,b,L,r,i),n.mergePropertyMatch(L)}}}}}function Dc(e,t){const n=[];let r=-1;const i=e.getText(),s=nt(i,!1),a=t&&t.collectComments?[]:void 0;function l(){for(;;){const L=s.scan();switch(h(),L){case 12:case 13:Array.isArray(a)&&a.push(q.create(e.positionAt(s.getTokenOffset()),e.positionAt(s.getTokenOffset()+s.getTokenLength())));break;case 15:case 14:break;default:return L}}}function o(L,S,M,F,O=ye.Error){if(n.length===0||M!==r){const C=q.create(e.positionAt(M),e.positionAt(F));n.push(qe.create(C,L,O,S,e.languageId)),r=M}}function u(L,S,M=void 0,F=[],O=[]){let C=s.getTokenOffset(),N=s.getTokenOffset()+s.getTokenLength();if(C===N&&C>0){for(C--;C>0&&/\s/.test(i.charAt(C));)C--;N=C+1}if(o(L,S,C,N),M&&c(M,!1),F.length+O.length>0){let k=s.getToken();for(;k!==17;){if(F.indexOf(k)!==-1){l();break}else if(O.indexOf(k)!==-1)break;k=l()}}return M}function h(){switch(s.getTokenError()){case 4:return u(E("Invalid unicode sequence in string."),H.InvalidUnicode),!0;case 5:return u(E("Invalid escape character in string."),H.InvalidEscapeCharacter),!0;case 3:return u(E("Unexpected end of number."),H.UnexpectedEndOfNumber),!0;case 1:return u(E("Unexpected end of comment."),H.UnexpectedEndOfComment),!0;case 2:return u(E("Unexpected end of string."),H.UnexpectedEndOfString),!0;case 6:return u(E("Invalid characters in string. Control characters must be escaped."),H.InvalidCharacter),!0}return!1}function c(L,S){return L.length=s.getTokenOffset()+s.getTokenLength()-L.offset,S&&l(),L}function m(L){if(s.getToken()!==3)return;const S=new Mc(L,s.getTokenOffset());l();let M=!1;for(;s.getToken()!==4&&s.getToken()!==17;){if(s.getToken()===5){M||u(E("Value expected"),H.ValueExpected);const O=s.getTokenOffset();if(l(),s.getToken()===4){M&&o(E("Trailing comma"),H.TrailingComma,O,O+1);continue}}else M&&u(E("Expected comma"),H.CommaExpected);const F=v(S);F?S.items.push(F):u(E("Value expected"),H.ValueExpected,void 0,[],[4,5]),M=!0}return s.getToken()!==4?u(E("Expected comma or closing bracket"),H.CommaOrCloseBacketExpected,S):c(S,!0)}const d=new Tr(void 0,0,0);function g(L,S){const M=new Tc(L,s.getTokenOffset(),d);let F=y(M);if(!F)if(s.getToken()===16){u(E("Property keys must be doublequoted"),H.PropertyKeysMustBeDoublequoted);const C=new Tr(M,s.getTokenOffset(),s.getTokenLength());C.value=s.getTokenValue(),F=C,l()}else return;if(M.keyNode=F,F.value!=="//"){const C=S[F.value];C?(o(E("Duplicate object key"),H.DuplicateKey,M.keyNode.offset,M.keyNode.offset+M.keyNode.length,ye.Warning),Ye(C)&&o(E("Duplicate object key"),H.DuplicateKey,C.keyNode.offset,C.keyNode.offset+C.keyNode.length,ye.Warning),S[F.value]=!0):S[F.value]=M}if(s.getToken()===6)M.colonOffset=s.getTokenOffset(),l();else if(u(E("Colon expected"),H.ColonExpected),s.getToken()===10&&e.positionAt(F.offset+F.length).line<e.positionAt(s.getTokenOffset()).line)return M.length=F.length,M;const O=v(M);return O?(M.valueNode=O,M.length=O.offset+O.length-M.offset,M):u(E("Value expected"),H.ValueExpected,M,[],[2,5])}function p(L){if(s.getToken()!==1)return;const S=new Pc(L,s.getTokenOffset()),M=Object.create(null);l();let F=!1;for(;s.getToken()!==2&&s.getToken()!==17;){if(s.getToken()===5){F||u(E("Property expected"),H.PropertyExpected);const C=s.getTokenOffset();if(l(),s.getToken()===2){F&&o(E("Trailing comma"),H.TrailingComma,C,C+1);continue}}else F&&u(E("Expected comma"),H.CommaExpected);const O=g(S,M);O?S.properties.push(O):u(E("Property expected"),H.PropertyExpected,void 0,[],[2,5]),F=!0}return s.getToken()!==2?u(E("Expected comma or closing brace"),H.CommaOrCloseBraceExpected,S):c(S,!0)}function y(L){if(s.getToken()!==10)return;const S=new Tr(L,s.getTokenOffset());return S.value=s.getTokenValue(),c(S,!0)}function w(L){if(s.getToken()!==11)return;const S=new Cc(L,s.getTokenOffset());if(s.getTokenError()===0){const M=s.getTokenValue();try{const F=JSON.parse(M);if(!fe(F))return u(E("Invalid number format."),H.Undefined,S);S.value=F}catch{return u(E("Invalid number format."),H.Undefined,S)}S.isInteger=M.indexOf(".")===-1}return c(S,!0)}function _(L){switch(s.getToken()){case 7:return c(new Ec(L,s.getTokenOffset()),!0);case 8:return c(new ao(L,!0,s.getTokenOffset()),!0);case 9:return c(new ao(L,!1,s.getTokenOffset()),!0);default:return}}function v(L){return m(L)||p(L)||y(L)||w(L)||_(L)}let x;return l()!==17&&(x=v(x),x?s.getToken()!==17&&u(E("End of file expected."),H.Undefined):u(E("Expected a JSON object, array or literal."),H.Undefined)),new co(x,n,a)}function Ir(e,t,n){if(e!==null&&typeof e=="object"){const r=t+" ";if(Array.isArray(e)){if(e.length===0)return"[]";let i=`[
|
||
`;for(let s=0;s<e.length;s++)i+=r+Ir(e[s],r,n),s<e.length-1&&(i+=","),i+=`
|
||
`;return i+=t+"]",i}else{const i=Object.keys(e);if(i.length===0)return"{}";let s=`{
|
||
`;for(let a=0;a<i.length;a++){const l=i[a];s+=r+JSON.stringify(l)+": "+Ir(e[l],r,n),a<i.length-1&&(s+=","),s+=`
|
||
`}return s+=t+"}",s}}return n(e)}var Oc=class{constructor(e,t=[],n=Promise,r={}){this.schemaService=e,this.contributions=t,this.promiseConstructor=n,this.clientCapabilities=r}doResolve(e){for(let t=this.contributions.length-1;t>=0;t--){const n=this.contributions[t].resolveCompletion;if(n){const r=n(e);if(r)return r}}return this.promiseConstructor.resolve(e)}doComplete(e,t,n){const r={items:[],isIncomplete:!1},i=e.getText(),s=e.offsetAt(t);let a=n.getNodeFromOffset(s,!0);if(this.isInComment(e,a?a.offset:0,s))return Promise.resolve(r);if(a&&s===a.offset+a.length&&s>0){const c=i[s-1];(a.type==="object"&&c==="}"||a.type==="array"&&c==="]")&&(a=a.parent)}const l=this.getCurrentWord(e,s);let o;if(a&&(a.type==="string"||a.type==="number"||a.type==="boolean"||a.type==="null"))o=q.create(e.positionAt(a.offset),e.positionAt(a.offset+a.length));else{let c=s-l.length;c>0&&i[c-1]==='"'&&c--,o=q.create(e.positionAt(c),t)}const u=new Map,h={add:c=>{let m=c.label;const d=u.get(m);if(d)d.documentation||(d.documentation=c.documentation),d.detail||(d.detail=c.detail),d.labelDetails||(d.labelDetails=c.labelDetails);else{if(m=m.replace(/[\n]/g,"↵"),m.length>60){const g=m.substr(0,57).trim()+"...";u.has(g)||(m=g)}c.textEdit=Fe.replace(o,c.insertText),c.label=m,u.set(m,c),r.items.push(c)}},setAsIncomplete:()=>{r.isIncomplete=!0},error:c=>{console.error(c)},getNumberOfProposals:()=>r.items.length};return this.schemaService.getSchemaForResource(e.uri,n).then(c=>{const m=[];let d=!0,g="",p;if(a&&a.type==="string"){const w=a.parent;w&&w.type==="property"&&w.keyNode===a&&(d=!w.valueNode,p=w,g=i.substr(a.offset+1,a.length-2),w&&(a=w.parent))}if(a&&a.type==="object"){if(a.offset===s)return r;a.properties.forEach(x=>{(!p||p!==x)&&u.set(x.keyNode.value,kr.create("__"))});let _="";d&&(_=this.evaluateSeparatorAfter(e,e.offsetAt(o.end))),c?this.getPropertyCompletions(c,n,a,d,_,h):this.getSchemaLessPropertyCompletions(n,a,g,h);const v=Pr(a);this.contributions.forEach(x=>{const b=x.collectPropertyCompletions(e.uri,v,l,d,_==="",h);b&&m.push(b)}),!c&&l.length>0&&i.charAt(s-l.length-1)!=='"'&&(h.add({kind:ve.Property,label:this.getLabelForValue(l),insertText:this.getInsertTextForProperty(l,void 0,!1,_),insertTextFormat:re.Snippet,documentation:""}),h.setAsIncomplete())}const y={};return c?this.getValueCompletions(c,n,a,s,e,h,y):this.getSchemaLessValueCompletions(n,a,s,e,h),this.contributions.length>0&&this.getContributedValueCompletions(n,a,s,e,h,m),this.promiseConstructor.all(m).then(()=>{if(h.getNumberOfProposals()===0){let w=s;a&&(a.type==="string"||a.type==="number"||a.type==="boolean"||a.type==="null")&&(w=a.offset+a.length);const _=this.evaluateSeparatorAfter(e,w);this.addFillerValueCompletions(y,_,h)}return r})})}getPropertyCompletions(e,t,n,r,i,s){t.getMatchingSchemas(e.schema,n.offset).forEach(l=>{if(l.node===n&&!l.inverted){const o=l.schema.properties;o&&Object.keys(o).forEach(h=>{const c=o[h];if(typeof c=="object"&&!c.deprecationMessage&&!c.doNotSuggest){const m={kind:ve.Property,label:h,insertText:this.getInsertTextForProperty(h,c,r,i),insertTextFormat:re.Snippet,filterText:this.getFilterTextForValue(h),documentation:this.fromMarkup(c.markdownDescription)||c.description||""};c.suggestSortText!==void 0&&(m.sortText=c.suggestSortText),m.insertText&&$t(m.insertText,`$1${i}`)&&(m.command={title:"Suggest",command:"editor.action.triggerSuggest"}),s.add(m)}});const u=l.schema.propertyNames;if(typeof u=="object"&&!u.deprecationMessage&&!u.doNotSuggest){const h=(c,m=void 0)=>{const d={kind:ve.Property,label:c,insertText:this.getInsertTextForProperty(c,void 0,r,i),insertTextFormat:re.Snippet,filterText:this.getFilterTextForValue(c),documentation:m||this.fromMarkup(u.markdownDescription)||u.description||""};u.suggestSortText!==void 0&&(d.sortText=u.suggestSortText),d.insertText&&$t(d.insertText,`$1${i}`)&&(d.command={title:"Suggest",command:"editor.action.triggerSuggest"}),s.add(d)};if(u.enum)for(let c=0;c<u.enum.length;c++){let m;u.markdownEnumDescriptions&&c<u.markdownEnumDescriptions.length?m=this.fromMarkup(u.markdownEnumDescriptions[c]):u.enumDescriptions&&c<u.enumDescriptions.length&&(m=u.enumDescriptions[c]),h(u.enum[c],m)}u.const&&h(u.const)}}})}getSchemaLessPropertyCompletions(e,t,n,r){const i=s=>{s.properties.forEach(a=>{const l=a.keyNode.value;r.add({kind:ve.Property,label:l,insertText:this.getInsertTextForValue(l,""),insertTextFormat:re.Snippet,filterText:this.getFilterTextForValue(l),documentation:""})})};if(t.parent)if(t.parent.type==="property"){const s=t.parent.keyNode.value;e.visit(a=>(a.type==="property"&&a!==t.parent&&a.keyNode.value===s&&a.valueNode&&a.valueNode.type==="object"&&i(a.valueNode),!0))}else t.parent.type==="array"&&t.parent.items.forEach(s=>{s.type==="object"&&s!==t&&i(s)});else t.type==="object"&&r.add({kind:ve.Property,label:"$schema",insertText:this.getInsertTextForProperty("$schema",void 0,!0,""),insertTextFormat:re.Snippet,documentation:"",filterText:this.getFilterTextForValue("$schema")})}getSchemaLessValueCompletions(e,t,n,r,i){let s=n;if(t&&(t.type==="string"||t.type==="number"||t.type==="boolean"||t.type==="null")&&(s=t.offset+t.length,t=t.parent),!t){i.add({kind:this.getSuggestionKind("object"),label:"Empty object",insertText:this.getInsertTextForValue({},""),insertTextFormat:re.Snippet,documentation:""}),i.add({kind:this.getSuggestionKind("array"),label:"Empty array",insertText:this.getInsertTextForValue([],""),insertTextFormat:re.Snippet,documentation:""});return}const a=this.evaluateSeparatorAfter(r,s),l=o=>{o.parent&&!uo(o.parent,n,!0)&&i.add({kind:this.getSuggestionKind(o.type),label:this.getLabelTextForMatchingNode(o,r),insertText:this.getInsertTextForMatchingNode(o,r,a),insertTextFormat:re.Snippet,documentation:""}),o.type==="boolean"&&this.addBooleanValueCompletion(!o.value,a,i)};if(t.type==="property"&&n>(t.colonOffset||0)){const o=t.valueNode;if(o&&(n>o.offset+o.length||o.type==="object"||o.type==="array"))return;const u=t.keyNode.value;e.visit(h=>(h.type==="property"&&h.keyNode.value===u&&h.valueNode&&l(h.valueNode),!0)),u==="$schema"&&t.parent&&!t.parent.parent&&this.addDollarSchemaCompletions(a,i)}if(t.type==="array")if(t.parent&&t.parent.type==="property"){const o=t.parent.keyNode.value;e.visit(u=>(u.type==="property"&&u.keyNode.value===o&&u.valueNode&&u.valueNode.type==="array"&&u.valueNode.items.forEach(l),!0))}else t.items.forEach(l)}getValueCompletions(e,t,n,r,i,s,a){let l=r,o,u;if(n&&(n.type==="string"||n.type==="number"||n.type==="boolean"||n.type==="null")&&(l=n.offset+n.length,u=n,n=n.parent),!n){this.addSchemaValueCompletions(e.schema,"",s,a);return}if(n.type==="property"&&r>(n.colonOffset||0)){const h=n.valueNode;if(h&&r>h.offset+h.length)return;o=n.keyNode.value,n=n.parent}if(n&&(o!==void 0||n.type==="array")){const h=this.evaluateSeparatorAfter(i,l),c=t.getMatchingSchemas(e.schema,n.offset,u);for(const m of c)if(m.node===n&&!m.inverted&&m.schema){if(n.type==="array"&&m.schema.items){let d=s;if(m.schema.uniqueItems){const g=new Set;n.children.forEach(p=>{p.type!=="array"&&p.type!=="object"&&g.add(this.getLabelForValue(st(p)))}),d={...s,add(p){g.has(p.label)||s.add(p)}}}if(Array.isArray(m.schema.items)){const g=this.findItemAtOffset(n,i,r);g<m.schema.items.length&&this.addSchemaValueCompletions(m.schema.items[g],h,d,a)}else this.addSchemaValueCompletions(m.schema.items,h,d,a)}if(o!==void 0){let d=!1;if(m.schema.properties){const g=m.schema.properties[o];g&&(d=!0,this.addSchemaValueCompletions(g,h,s,a))}if(m.schema.patternProperties&&!d){for(const g of Object.keys(m.schema.patternProperties))if(wn(g)?.test(o)){d=!0;const y=m.schema.patternProperties[g];this.addSchemaValueCompletions(y,h,s,a)}}if(m.schema.additionalProperties&&!d){const g=m.schema.additionalProperties;this.addSchemaValueCompletions(g,h,s,a)}}}o==="$schema"&&!n.parent&&this.addDollarSchemaCompletions(h,s),a.boolean&&(this.addBooleanValueCompletion(!0,h,s),this.addBooleanValueCompletion(!1,h,s)),a.null&&this.addNullValueCompletion(h,s)}}getContributedValueCompletions(e,t,n,r,i,s){if(!t)this.contributions.forEach(a=>{const l=a.collectDefaultCompletions(r.uri,i);l&&s.push(l)});else if((t.type==="string"||t.type==="number"||t.type==="boolean"||t.type==="null")&&(t=t.parent),t&&t.type==="property"&&n>(t.colonOffset||0)){const a=t.keyNode.value,l=t.valueNode;if((!l||n<=l.offset+l.length)&&t.parent){const o=Pr(t.parent);this.contributions.forEach(u=>{const h=u.collectValueCompletions(r.uri,o,a,i);h&&s.push(h)})}}}addSchemaValueCompletions(e,t,n,r){typeof e=="object"&&(this.addEnumValueCompletions(e,t,n),this.addDefaultValueCompletions(e,t,n),this.collectTypes(e,r),Array.isArray(e.allOf)&&e.allOf.forEach(i=>this.addSchemaValueCompletions(i,t,n,r)),Array.isArray(e.anyOf)&&e.anyOf.forEach(i=>this.addSchemaValueCompletions(i,t,n,r)),Array.isArray(e.oneOf)&&e.oneOf.forEach(i=>this.addSchemaValueCompletions(i,t,n,r)))}addDefaultValueCompletions(e,t,n,r=0){let i=!1;if(Re(e.default)){let s=e.type,a=e.default;for(let o=r;o>0;o--)a=[a],s="array";const l={kind:this.getSuggestionKind(s),label:this.getLabelForValue(a),insertText:this.getInsertTextForValue(a,t),insertTextFormat:re.Snippet};this.doesSupportsLabelDetails()?l.labelDetails={description:E("Default value")}:l.detail=E("Default value"),n.add(l),i=!0}Array.isArray(e.examples)&&e.examples.forEach(s=>{let a=e.type,l=s;for(let o=r;o>0;o--)l=[l],a="array";n.add({kind:this.getSuggestionKind(a),label:this.getLabelForValue(l),insertText:this.getInsertTextForValue(l,t),insertTextFormat:re.Snippet}),i=!0}),Array.isArray(e.defaultSnippets)&&e.defaultSnippets.forEach(s=>{let a=e.type,l=s.body,o=s.label,u,h;if(Re(l)){e.type;for(let c=r;c>0;c--)l=[l];u=this.getInsertTextForSnippetValue(l,t),h=this.getFilterTextForSnippetValue(l),o=o||this.getLabelForSnippetValue(l)}else if(typeof s.bodyText=="string"){let c="",m="",d="";for(let g=r;g>0;g--)c=c+d+`[
|
||
`,m=m+`
|
||
`+d+"]",d+=" ",a="array";u=c+d+s.bodyText.split(`
|
||
`).join(`
|
||
`+d)+m+t,o=o||u,h=u.replace(/[\n]/g,"")}else return;n.add({kind:this.getSuggestionKind(a),label:o,documentation:this.fromMarkup(s.markdownDescription)||s.description,insertText:u,insertTextFormat:re.Snippet,filterText:h}),i=!0}),!i&&typeof e.items=="object"&&!Array.isArray(e.items)&&r<5&&this.addDefaultValueCompletions(e.items,t,n,r+1)}addEnumValueCompletions(e,t,n){if(Re(e.const)&&n.add({kind:this.getSuggestionKind(e.type),label:this.getLabelForValue(e.const),insertText:this.getInsertTextForValue(e.const,t),insertTextFormat:re.Snippet,documentation:this.fromMarkup(e.markdownDescription)||e.description}),Array.isArray(e.enum))for(let r=0,i=e.enum.length;r<i;r++){const s=e.enum[r];let a=this.fromMarkup(e.markdownDescription)||e.description;e.markdownEnumDescriptions&&r<e.markdownEnumDescriptions.length&&this.doesSupportMarkdown()?a=this.fromMarkup(e.markdownEnumDescriptions[r]):e.enumDescriptions&&r<e.enumDescriptions.length&&(a=e.enumDescriptions[r]),n.add({kind:this.getSuggestionKind(e.type),label:this.getLabelForValue(s),insertText:this.getInsertTextForValue(s,t),insertTextFormat:re.Snippet,documentation:a})}}collectTypes(e,t){if(Array.isArray(e.enum)||Re(e.const))return;const n=e.type;Array.isArray(n)?n.forEach(r=>t[r]=!0):n&&(t[n]=!0)}addFillerValueCompletions(e,t,n){e.object&&n.add({kind:this.getSuggestionKind("object"),label:"{}",insertText:this.getInsertTextForGuessedValue({},t),insertTextFormat:re.Snippet,detail:E("New object"),documentation:""}),e.array&&n.add({kind:this.getSuggestionKind("array"),label:"[]",insertText:this.getInsertTextForGuessedValue([],t),insertTextFormat:re.Snippet,detail:E("New array"),documentation:""})}addBooleanValueCompletion(e,t,n){n.add({kind:this.getSuggestionKind("boolean"),label:e?"true":"false",insertText:this.getInsertTextForValue(e,t),insertTextFormat:re.Snippet,documentation:""})}addNullValueCompletion(e,t){t.add({kind:this.getSuggestionKind("null"),label:"null",insertText:"null"+e,insertTextFormat:re.Snippet,documentation:""})}addDollarSchemaCompletions(e,t){this.schemaService.getRegisteredSchemaIds(r=>r==="http"||r==="https").forEach(r=>{r.startsWith("http://json-schema.org/draft-")&&(r=r+"#"),t.add({kind:ve.Module,label:this.getLabelForValue(r),filterText:this.getFilterTextForValue(r),insertText:this.getInsertTextForValue(r,e),insertTextFormat:re.Snippet,documentation:""})})}getLabelForValue(e){return JSON.stringify(e)}getValueFromLabel(e){return JSON.parse(e)}getFilterTextForValue(e){return JSON.stringify(e)}getFilterTextForSnippetValue(e){return JSON.stringify(e).replace(/\$\{\d+:([^}]+)\}|\$\d+/g,"$1")}getLabelForSnippetValue(e){return JSON.stringify(e).replace(/\$\{\d+:([^}]+)\}|\$\d+/g,"$1")}getInsertTextForPlainText(e){return e.replace(/[\\\$\}]/g,"\\$&")}getInsertTextForValue(e,t){const n=JSON.stringify(e,null," ");return n==="{}"?"{$1}"+t:n==="[]"?"[$1]"+t:this.getInsertTextForPlainText(n+t)}getInsertTextForSnippetValue(e,t){return Ir(e,"",r=>typeof r=="string"&&r[0]==="^"?r.substr(1):JSON.stringify(r))+t}getInsertTextForGuessedValue(e,t){switch(typeof e){case"object":return e===null?"${1:null}"+t:this.getInsertTextForValue(e,t);case"string":let n=JSON.stringify(e);return n=n.substr(1,n.length-2),n=this.getInsertTextForPlainText(n),'"${1:'+n+'}"'+t;case"number":case"boolean":return"${1:"+JSON.stringify(e)+"}"+t}return this.getInsertTextForValue(e,t)}getSuggestionKind(e){if(Array.isArray(e)){const t=e;e=t.length>0?t[0]:void 0}if(!e)return ve.Value;switch(e){case"string":return ve.Value;case"object":return ve.Module;case"property":return ve.Property;default:return ve.Value}}getLabelTextForMatchingNode(e,t){switch(e.type){case"array":return"[]";case"object":return"{}";default:return t.getText().substr(e.offset,e.length)}}getInsertTextForMatchingNode(e,t,n){switch(e.type){case"array":return this.getInsertTextForValue([],n);case"object":return this.getInsertTextForValue({},n);default:const r=t.getText().substr(e.offset,e.length)+n;return this.getInsertTextForPlainText(r)}}getInsertTextForProperty(e,t,n,r){const i=this.getInsertTextForValue(e,"");if(!n)return i;const s=i+": ";let a,l=0;if(t){if(Array.isArray(t.defaultSnippets)){if(t.defaultSnippets.length===1){const o=t.defaultSnippets[0].body;Re(o)&&(a=this.getInsertTextForSnippetValue(o,""))}l+=t.defaultSnippets.length}if(t.enum&&(!a&&t.enum.length===1&&(a=this.getInsertTextForGuessedValue(t.enum[0],"")),l+=t.enum.length),Re(t.const)&&(a||(a=this.getInsertTextForGuessedValue(t.const,"")),l++),Re(t.default)&&(a||(a=this.getInsertTextForGuessedValue(t.default,"")),l++),Array.isArray(t.examples)&&t.examples.length&&(a||(a=this.getInsertTextForGuessedValue(t.examples[0],"")),l+=t.examples.length),l===0){let o=Array.isArray(t.type)?t.type[0]:t.type;switch(o||(t.properties?o="object":t.items&&(o="array")),o){case"boolean":a="$1";break;case"string":a='"$1"';break;case"object":a="{$1}";break;case"array":a="[$1]";break;case"number":case"integer":a="${1:0}";break;case"null":a="${1:null}";break;default:return i}}}return(!a||l>1)&&(a="$1"),s+a+r}getCurrentWord(e,t){let n=t-1;const r=e.getText();for(;n>=0&&`
|
||
\r\v":{[,]}`.indexOf(r.charAt(n))===-1;)n--;return r.substring(n+1,t)}evaluateSeparatorAfter(e,t){const n=nt(e.getText(),!0);switch(n.setPosition(t),n.scan()){case 5:case 2:case 4:case 17:return"";default:return","}}findItemAtOffset(e,t,n){const r=nt(t.getText(),!0),i=e.items;for(let s=i.length-1;s>=0;s--){const a=i[s];if(n>a.offset+a.length)return r.setPosition(a.offset+a.length),r.scan()===5&&n>=r.getTokenOffset()+r.getTokenLength()?s+1:s;if(n>=a.offset)return s}return 0}isInComment(e,t,n){const r=nt(e.getText(),!1);r.setPosition(t);let i=r.scan();for(;i!==17&&r.getTokenOffset()+r.getTokenLength()<n;)i=r.scan();return(i===12||i===13)&&r.getTokenOffset()<=n}fromMarkup(e){if(e&&this.doesSupportMarkdown())return{kind:rt.Markdown,value:e}}doesSupportMarkdown(){if(!Re(this.supportsMarkdown)){const e=this.clientCapabilities.textDocument?.completion?.completionItem?.documentationFormat;this.supportsMarkdown=Array.isArray(e)&&e.indexOf(rt.Markdown)!==-1}return this.supportsMarkdown}doesSupportsCommitCharacters(){return Re(this.supportsCommitCharacters)||(this.labelDetailsSupport=this.clientCapabilities.textDocument?.completion?.completionItem?.commitCharactersSupport),this.supportsCommitCharacters}doesSupportsLabelDetails(){return Re(this.labelDetailsSupport)||(this.labelDetailsSupport=this.clientCapabilities.textDocument?.completion?.completionItem?.labelDetailsSupport),this.labelDetailsSupport}},Bc=class{constructor(e,t=[],n){this.schemaService=e,this.contributions=t,this.promise=n||Promise}doHover(e,t,n){const r=e.offsetAt(t);let i=n.getNodeFromOffset(r);if(!i||(i.type==="object"||i.type==="array")&&r>i.offset+1&&r<i.offset+i.length-1)return this.promise.resolve(null);const s=i;if(i.type==="string"){const u=i.parent;if(u&&u.type==="property"&&u.keyNode===i&&(i=u.valueNode,!i))return this.promise.resolve(null)}const a=q.create(e.positionAt(s.offset),e.positionAt(s.offset+s.length)),l=u=>({contents:u,range:a}),o=Pr(i);for(let u=this.contributions.length-1;u>=0;u--){const c=this.contributions[u].getInfoContribution(e.uri,o);if(c)return c.then(m=>l(m))}return this.schemaService.getSchemaForResource(e.uri,n).then(u=>{if(u&&i){const h=n.getMatchingSchemas(u.schema,i.offset);let c,m,d,g;h.every(y=>{if(y.node===i&&!y.inverted&&y.schema&&(c=c||y.schema.title,m=m||y.schema.markdownDescription||Fr(y.schema.description),y.schema.enum)){const w=y.schema.enum.indexOf(st(i));y.schema.markdownEnumDescriptions?d=y.schema.markdownEnumDescriptions[w]:y.schema.enumDescriptions&&(d=Fr(y.schema.enumDescriptions[w])),d&&(g=y.schema.enum[w],typeof g!="string"&&(g=JSON.stringify(g)))}return!0});let p="";return c&&(p=Fr(c)),m&&(p.length>0&&(p+=`
|
||
|
||
`),p+=m),d&&(p.length>0&&(p+=`
|
||
|
||
`),p+=`\`${$c(g)}\`: ${d}`),l([p])}return null})}};function Fr(e){if(e)return e.replace(/([^\n\r])(\r?\n)([^\n\r])/gm,`$1
|
||
|
||
$3`).replace(/[\\`*_{}[\]()#+\-.!]/g,"\\$&")}function $c(e){return e.indexOf("`")!==-1?"`` "+e+" ``":e}var Uc=class{constructor(e,t){this.jsonSchemaService=e,this.promise=t,this.validationEnabled=!0}configure(e){e&&(this.validationEnabled=e.validate!==!1,this.commentSeverity=e.allowComments?void 0:ye.Error)}doValidation(e,t,n,r){if(!this.validationEnabled)return this.promise.resolve([]);const i=[],s={},a=o=>{const u=o.range.start.line+" "+o.range.start.character+" "+o.message;s[u]||(s[u]=!0,i.push(o))},l=o=>{let u=n?.trailingCommas?An(n.trailingCommas):ye.Error,h=n?.comments?An(n.comments):this.commentSeverity,c=n?.schemaValidation?An(n.schemaValidation):ye.Warning,m=n?.schemaRequest?An(n.schemaRequest):ye.Warning;if(o){const d=(g,p)=>{if(t.root&&m){const y=t.root,w=y.type==="object"?y.properties[0]:void 0;if(w&&w.keyNode.value==="$schema"){const _=w.valueNode||w,v=q.create(e.positionAt(_.offset),e.positionAt(_.offset+_.length));a(qe.create(v,g,m,p))}else{const _=q.create(e.positionAt(y.offset),e.positionAt(y.offset+1));a(qe.create(_,g,m,p))}}};if(o.errors.length)d(o.errors[0],H.SchemaResolveError);else if(c){for(const p of o.warnings)d(p,H.SchemaUnsupportedFeature);const g=t.validate(e,o.schema,c,n?.schemaDraft);g&&g.forEach(a)}ho(o.schema)&&(h=void 0),mo(o.schema)&&(u=void 0)}for(const d of t.syntaxErrors){if(d.code===H.TrailingComma){if(typeof u!="number")continue;d.severity=u}a(d)}if(typeof h=="number"){const d=E("Comments are not permitted in JSON.");t.comments.forEach(g=>{a(qe.create(g,d,h,H.CommentNotPermitted))})}return i};if(r){const o=r.id||"schemaservice://untitled/"+qc++;return this.jsonSchemaService.registerExternalSchema({uri:o,schema:r}).getResolvedSchema().then(h=>l(h))}return this.jsonSchemaService.getSchemaForResource(e.uri,t).then(o=>l(o))}getLanguageStatus(e,t){return{schemas:this.jsonSchemaService.getSchemaURIsForResource(e.uri,t)}}},qc=0;function ho(e){if(e&&typeof e=="object"){if(Ie(e.allowComments))return e.allowComments;if(e.allOf)for(const t of e.allOf){const n=ho(t);if(Ie(n))return n}}}function mo(e){if(e&&typeof e=="object"){if(Ie(e.allowTrailingCommas))return e.allowTrailingCommas;const t=e;if(Ie(t.allowsTrailingCommas))return t.allowsTrailingCommas;if(e.allOf)for(const n of e.allOf){const r=mo(n);if(Ie(r))return r}}}function An(e){switch(e){case"error":return ye.Error;case"warning":return ye.Warning;case"ignore":return}}var go=48,jc=57,Wc=65,kn=97,Hc=102;function ee(e){return e<go?0:e<=jc?e-go:(e<kn&&(e+=kn-Wc),e>=kn&&e<=Hc?e-kn+10:0)}function zc(e){if(e[0]==="#")switch(e.length){case 4:return{red:ee(e.charCodeAt(1))*17/255,green:ee(e.charCodeAt(2))*17/255,blue:ee(e.charCodeAt(3))*17/255,alpha:1};case 5:return{red:ee(e.charCodeAt(1))*17/255,green:ee(e.charCodeAt(2))*17/255,blue:ee(e.charCodeAt(3))*17/255,alpha:ee(e.charCodeAt(4))*17/255};case 7:return{red:(ee(e.charCodeAt(1))*16+ee(e.charCodeAt(2)))/255,green:(ee(e.charCodeAt(3))*16+ee(e.charCodeAt(4)))/255,blue:(ee(e.charCodeAt(5))*16+ee(e.charCodeAt(6)))/255,alpha:1};case 9:return{red:(ee(e.charCodeAt(1))*16+ee(e.charCodeAt(2)))/255,green:(ee(e.charCodeAt(3))*16+ee(e.charCodeAt(4)))/255,blue:(ee(e.charCodeAt(5))*16+ee(e.charCodeAt(6)))/255,alpha:(ee(e.charCodeAt(7))*16+ee(e.charCodeAt(8)))/255}}}var Gc=class{constructor(e){this.schemaService=e}findDocumentSymbols(e,t,n={resultLimit:Number.MAX_VALUE}){const r=t.root;if(!r)return[];let i=n.resultLimit||Number.MAX_VALUE;const s=e.uri;if((s==="vscode://defaultsettings/keybindings.json"||$t(s.toLowerCase(),"/user/keybindings.json"))&&r.type==="array"){const c=[];for(const m of r.items)if(m.type==="object"){for(const d of m.properties)if(d.keyNode.value==="key"&&d.valueNode){const g=Lt.create(e.uri,Ze(e,m));if(c.push({name:po(d.valueNode),kind:Ve.Function,location:g}),i--,i<=0)return n&&n.onResultLimitExceeded&&n.onResultLimitExceeded(s),c}}return c}const a=[{node:r,containerName:""}];let l=0,o=!1;const u=[],h=(c,m)=>{c.type==="array"?c.items.forEach(d=>{d&&a.push({node:d,containerName:m})}):c.type==="object"&&c.properties.forEach(d=>{const g=d.valueNode;if(g)if(i>0){i--;const p=Lt.create(e.uri,Ze(e,d)),y=m?m+"."+d.keyNode.value:d.keyNode.value;u.push({name:this.getKeyLabel(d),kind:this.getSymbolKind(g.type),location:p,containerName:m}),a.push({node:g,containerName:y})}else o=!0})};for(;l<a.length;){const c=a[l++];h(c.node,c.containerName)}return o&&n&&n.onResultLimitExceeded&&n.onResultLimitExceeded(s),u}findDocumentSymbols2(e,t,n={resultLimit:Number.MAX_VALUE}){const r=t.root;if(!r)return[];let i=n.resultLimit||Number.MAX_VALUE;const s=e.uri;if((s==="vscode://defaultsettings/keybindings.json"||$t(s.toLowerCase(),"/user/keybindings.json"))&&r.type==="array"){const c=[];for(const m of r.items)if(m.type==="object"){for(const d of m.properties)if(d.keyNode.value==="key"&&d.valueNode){const g=Ze(e,m),p=Ze(e,d.keyNode);if(c.push({name:po(d.valueNode),kind:Ve.Function,range:g,selectionRange:p}),i--,i<=0)return n&&n.onResultLimitExceeded&&n.onResultLimitExceeded(s),c}}return c}const a=[],l=[{node:r,result:a}];let o=0,u=!1;const h=(c,m)=>{c.type==="array"?c.items.forEach((d,g)=>{if(d)if(i>0){i--;const p=Ze(e,d),y=p,_={name:String(g),kind:this.getSymbolKind(d.type),range:p,selectionRange:y,children:[]};m.push(_),l.push({result:_.children,node:d})}else u=!0}):c.type==="object"&&c.properties.forEach(d=>{const g=d.valueNode;if(g)if(i>0){i--;const p=Ze(e,d),y=Ze(e,d.keyNode),w=[],_={name:this.getKeyLabel(d),kind:this.getSymbolKind(g.type),range:p,selectionRange:y,children:w,detail:this.getDetail(g)};m.push(_),l.push({result:w,node:g})}else u=!0})};for(;o<l.length;){const c=l[o++];h(c.node,c.result)}return u&&n&&n.onResultLimitExceeded&&n.onResultLimitExceeded(s),a}getSymbolKind(e){switch(e){case"object":return Ve.Module;case"string":return Ve.String;case"number":return Ve.Number;case"array":return Ve.Array;case"boolean":return Ve.Boolean;default:return Ve.Variable}}getKeyLabel(e){let t=e.keyNode.value;return t&&(t=t.replace(/[\n]/g,"↵")),t&&t.trim()?t:`"${t}"`}getDetail(e){if(e){if(e.type==="boolean"||e.type==="number"||e.type==="null"||e.type==="string")return String(e.value);if(e.type==="array")return e.children.length?void 0:"[]";if(e.type==="object")return e.children.length?void 0:"{}"}}findDocumentColors(e,t,n){return this.schemaService.getSchemaForResource(e.uri,t).then(r=>{const i=[];if(r){let s=n&&typeof n.resultLimit=="number"?n.resultLimit:Number.MAX_VALUE;const a=t.getMatchingSchemas(r.schema),l={};for(const o of a)if(!o.inverted&&o.schema&&(o.schema.format==="color"||o.schema.format==="color-hex")&&o.node&&o.node.type==="string"){const u=String(o.node.offset);if(!l[u]){const h=zc(st(o.node));if(h){const c=Ze(e,o.node);i.push({color:h,range:c})}if(l[u]=!0,s--,s<=0)return n&&n.onResultLimitExceeded&&n.onResultLimitExceeded(e.uri),i}}}return i})}getColorPresentations(e,t,n,r){const i=[],s=Math.round(n.red*255),a=Math.round(n.green*255),l=Math.round(n.blue*255);function o(h){const c=h.toString(16);return c.length!==2?"0"+c:c}let u;return n.alpha===1?u=`#${o(s)}${o(a)}${o(l)}`:u=`#${o(s)}${o(a)}${o(l)}${o(Math.round(n.alpha*255))}`,i.push({label:u,textEdit:Fe.replace(r,JSON.stringify(u))}),i}};function Ze(e,t){return q.create(e.positionAt(t.offset),e.positionAt(t.offset+t.length))}function po(e){return st(e)||E("<empty>")}var Vr={schemaAssociations:[],schemas:{"http://json-schema.org/draft-04/schema#":{$schema:"http://json-schema.org/draft-04/schema#",definitions:{schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},positiveInteger:{type:"integer",minimum:0},positiveIntegerDefault0:{allOf:[{$ref:"#/definitions/positiveInteger"},{default:0}]},simpleTypes:{type:"string",enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},minItems:1,uniqueItems:!0}},type:"object",properties:{id:{type:"string",format:"uri"},$schema:{type:"string",format:"uri"},title:{type:"string"},description:{type:"string"},default:{},multipleOf:{type:"number",minimum:0,exclusiveMinimum:!0},maximum:{type:"number"},exclusiveMaximum:{type:"boolean",default:!1},minimum:{type:"number"},exclusiveMinimum:{type:"boolean",default:!1},maxLength:{allOf:[{$ref:"#/definitions/positiveInteger"}]},minLength:{allOf:[{$ref:"#/definitions/positiveIntegerDefault0"}]},pattern:{type:"string",format:"regex"},additionalItems:{anyOf:[{type:"boolean"},{$ref:"#"}],default:{}},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:{}},maxItems:{allOf:[{$ref:"#/definitions/positiveInteger"}]},minItems:{allOf:[{$ref:"#/definitions/positiveIntegerDefault0"}]},uniqueItems:{type:"boolean",default:!1},maxProperties:{allOf:[{$ref:"#/definitions/positiveInteger"}]},minProperties:{allOf:[{$ref:"#/definitions/positiveIntegerDefault0"}]},required:{allOf:[{$ref:"#/definitions/stringArray"}]},additionalProperties:{anyOf:[{type:"boolean"},{$ref:"#"}],default:{}},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},enum:{type:"array",minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{anyOf:[{type:"string",enum:["date-time","uri","email","hostname","ipv4","ipv6","regex"]},{type:"string"}]},allOf:{allOf:[{$ref:"#/definitions/schemaArray"}]},anyOf:{allOf:[{$ref:"#/definitions/schemaArray"}]},oneOf:{allOf:[{$ref:"#/definitions/schemaArray"}]},not:{allOf:[{$ref:"#"}]}},dependencies:{exclusiveMaximum:["maximum"],exclusiveMinimum:["minimum"]},default:{}},"http://json-schema.org/draft-07/schema#":{definitions:{schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:!0,default:[]}},type:["object","boolean"],properties:{$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:!0,readOnly:{type:"boolean",default:!1},examples:{type:"array",items:!0},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:!0},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:!1},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:!0,enum:{type:"array",items:!0,minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},default:!0}}},Jc={id:E("A unique identifier for the schema."),$schema:E("The schema to verify this document against."),title:E("A descriptive title of the element."),description:E("A long description of the element. Used in hover menus and suggestions."),default:E("A default value. Used by suggestions."),multipleOf:E("A number that should cleanly divide the current value (i.e. have no remainder)."),maximum:E("The maximum numerical value, inclusive by default."),exclusiveMaximum:E("Makes the maximum property exclusive."),minimum:E("The minimum numerical value, inclusive by default."),exclusiveMinimum:E("Makes the minimum property exclusive."),maxLength:E("The maximum length of a string."),minLength:E("The minimum length of a string."),pattern:E("A regular expression to match the string against. It is not implicitly anchored."),additionalItems:E("For arrays, only when items is set as an array. If it is a schema, then this schema validates items after the ones specified by the items array. If it is false, then additional items will cause validation to fail."),items:E("For arrays. Can either be a schema to validate every element against or an array of schemas to validate each item against in order (the first schema will validate the first element, the second schema will validate the second element, and so on."),maxItems:E("The maximum number of items that can be inside an array. Inclusive."),minItems:E("The minimum number of items that can be inside an array. Inclusive."),uniqueItems:E("If all of the items in the array must be unique. Defaults to false."),maxProperties:E("The maximum number of properties an object can have. Inclusive."),minProperties:E("The minimum number of properties an object can have. Inclusive."),required:E("An array of strings that lists the names of all properties required on this object."),additionalProperties:E("Either a schema or a boolean. If a schema, then used to validate all properties not matched by 'properties' or 'patternProperties'. If false, then any properties not matched by either will cause this schema to fail."),definitions:E("Not used for validation. Place subschemas here that you wish to reference inline with $ref."),properties:E("A map of property names to schemas for each property."),patternProperties:E("A map of regular expressions on property names to schemas for matching properties."),dependencies:E("A map of property names to either an array of property names or a schema. An array of property names means the property named in the key depends on the properties in the array being present in the object in order to be valid. If the value is a schema, then the schema is only applied to the object if the property in the key exists on the object."),enum:E("The set of literal values that are valid."),type:E("Either a string of one of the basic schema types (number, integer, null, array, object, boolean, string) or an array of strings specifying a subset of those types."),format:E("Describes the format expected for the value."),allOf:E("An array of schemas, all of which must match."),anyOf:E("An array of schemas, where at least one must match."),oneOf:E("An array of schemas, exactly one of which must match."),not:E("A schema which must not match."),$id:E("A unique identifier for the schema."),$ref:E("Reference a definition hosted on any location."),$comment:E("Comments from schema authors to readers or maintainers of the schema."),readOnly:E("Indicates that the value of the instance is managed exclusively by the owning authority."),examples:E("Sample JSON values associated with a particular schema, for the purpose of illustrating usage."),contains:E('An array instance is valid against "contains" if at least one of its elements is valid against the given schema.'),propertyNames:E("If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema."),const:E("An instance validates successfully against this keyword if its value is equal to the value of the keyword."),contentMediaType:E("Describes the media type of a string property."),contentEncoding:E("Describes the content encoding of a string property."),if:E('The validation outcome of the "if" subschema controls which of the "then" or "else" keywords are evaluated.'),then:E('The "if" subschema is used for validation when the "if" subschema succeeds.'),else:E('The "else" subschema is used for validation when the "if" subschema fails.')};for(const e in Vr.schemas){const t=Vr.schemas[e];for(const n in t.properties){let r=t.properties[n];typeof r=="boolean"&&(r=t.properties[n]={});const i=Jc[n];i&&(r.description=i)}}var bo;(()=>{var e={470:i=>{function s(o){if(typeof o!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(o))}function a(o,u){for(var h,c="",m=0,d=-1,g=0,p=0;p<=o.length;++p){if(p<o.length)h=o.charCodeAt(p);else{if(h===47)break;h=47}if(h===47){if(!(d===p-1||g===1))if(d!==p-1&&g===2){if(c.length<2||m!==2||c.charCodeAt(c.length-1)!==46||c.charCodeAt(c.length-2)!==46){if(c.length>2){var y=c.lastIndexOf("/");if(y!==c.length-1){y===-1?(c="",m=0):m=(c=c.slice(0,y)).length-1-c.lastIndexOf("/"),d=p,g=0;continue}}else if(c.length===2||c.length===1){c="",m=0,d=p,g=0;continue}}u&&(c.length>0?c+="/..":c="..",m=2)}else c.length>0?c+="/"+o.slice(d+1,p):c=o.slice(d+1,p),m=p-d-1;d=p,g=0}else h===46&&g!==-1?++g:g=-1}return c}var l={resolve:function(){for(var o,u="",h=!1,c=arguments.length-1;c>=-1&&!h;c--){var m;c>=0?m=arguments[c]:(o===void 0&&(o=process.cwd()),m=o),s(m),m.length!==0&&(u=m+"/"+u,h=m.charCodeAt(0)===47)}return u=a(u,!h),h?u.length>0?"/"+u:"/":u.length>0?u:"."},normalize:function(o){if(s(o),o.length===0)return".";var u=o.charCodeAt(0)===47,h=o.charCodeAt(o.length-1)===47;return(o=a(o,!u)).length!==0||u||(o="."),o.length>0&&h&&(o+="/"),u?"/"+o:o},isAbsolute:function(o){return s(o),o.length>0&&o.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var o,u=0;u<arguments.length;++u){var h=arguments[u];s(h),h.length>0&&(o===void 0?o=h:o+="/"+h)}return o===void 0?".":l.normalize(o)},relative:function(o,u){if(s(o),s(u),o===u||(o=l.resolve(o))===(u=l.resolve(u)))return"";for(var h=1;h<o.length&&o.charCodeAt(h)===47;++h);for(var c=o.length,m=c-h,d=1;d<u.length&&u.charCodeAt(d)===47;++d);for(var g=u.length-d,p=m<g?m:g,y=-1,w=0;w<=p;++w){if(w===p){if(g>p){if(u.charCodeAt(d+w)===47)return u.slice(d+w+1);if(w===0)return u.slice(d+w)}else m>p&&(o.charCodeAt(h+w)===47?y=w:w===0&&(y=0));break}var _=o.charCodeAt(h+w);if(_!==u.charCodeAt(d+w))break;_===47&&(y=w)}var v="";for(w=h+y+1;w<=c;++w)w!==c&&o.charCodeAt(w)!==47||(v.length===0?v+="..":v+="/..");return v.length>0?v+u.slice(d+y):(d+=y,u.charCodeAt(d)===47&&++d,u.slice(d))},_makeLong:function(o){return o},dirname:function(o){if(s(o),o.length===0)return".";for(var u=o.charCodeAt(0),h=u===47,c=-1,m=!0,d=o.length-1;d>=1;--d)if((u=o.charCodeAt(d))===47){if(!m){c=d;break}}else m=!1;return c===-1?h?"/":".":h&&c===1?"//":o.slice(0,c)},basename:function(o,u){if(u!==void 0&&typeof u!="string")throw new TypeError('"ext" argument must be a string');s(o);var h,c=0,m=-1,d=!0;if(u!==void 0&&u.length>0&&u.length<=o.length){if(u.length===o.length&&u===o)return"";var g=u.length-1,p=-1;for(h=o.length-1;h>=0;--h){var y=o.charCodeAt(h);if(y===47){if(!d){c=h+1;break}}else p===-1&&(d=!1,p=h+1),g>=0&&(y===u.charCodeAt(g)?--g==-1&&(m=h):(g=-1,m=p))}return c===m?m=p:m===-1&&(m=o.length),o.slice(c,m)}for(h=o.length-1;h>=0;--h)if(o.charCodeAt(h)===47){if(!d){c=h+1;break}}else m===-1&&(d=!1,m=h+1);return m===-1?"":o.slice(c,m)},extname:function(o){s(o);for(var u=-1,h=0,c=-1,m=!0,d=0,g=o.length-1;g>=0;--g){var p=o.charCodeAt(g);if(p!==47)c===-1&&(m=!1,c=g+1),p===46?u===-1?u=g:d!==1&&(d=1):u!==-1&&(d=-1);else if(!m){h=g+1;break}}return u===-1||c===-1||d===0||d===1&&u===c-1&&u===h+1?"":o.slice(u,c)},format:function(o){if(o===null||typeof o!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof o);return(function(u,h){var c=h.dir||h.root,m=h.base||(h.name||"")+(h.ext||"");return c?c===h.root?c+m:c+"/"+m:m})(0,o)},parse:function(o){s(o);var u={root:"",dir:"",base:"",ext:"",name:""};if(o.length===0)return u;var h,c=o.charCodeAt(0),m=c===47;m?(u.root="/",h=1):h=0;for(var d=-1,g=0,p=-1,y=!0,w=o.length-1,_=0;w>=h;--w)if((c=o.charCodeAt(w))!==47)p===-1&&(y=!1,p=w+1),c===46?d===-1?d=w:_!==1&&(_=1):d!==-1&&(_=-1);else if(!y){g=w+1;break}return d===-1||p===-1||_===0||_===1&&d===p-1&&d===g+1?p!==-1&&(u.base=u.name=g===0&&m?o.slice(1,p):o.slice(g,p)):(g===0&&m?(u.name=o.slice(1,d),u.base=o.slice(1,p)):(u.name=o.slice(g,d),u.base=o.slice(g,p)),u.ext=o.slice(d,p)),g>0?u.dir=o.slice(0,g-1):m&&(u.dir="/"),u},sep:"/",delimiter:":",win32:null,posix:null};l.posix=l,i.exports=l}},t={};function n(i){var s=t[i];if(s!==void 0)return s.exports;var a=t[i]={exports:{}};return e[i](a,a.exports,n),a.exports}n.d=(i,s)=>{for(var a in s)n.o(s,a)&&!n.o(i,a)&&Object.defineProperty(i,a,{enumerable:!0,get:s[a]})},n.o=(i,s)=>Object.prototype.hasOwnProperty.call(i,s),n.r=i=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(i,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(i,"__esModule",{value:!0})};var r={};(()=>{let i;n.r(r),n.d(r,{URI:()=>m,Utils:()=>O}),typeof process=="object"?i=process.platform==="win32":typeof navigator=="object"&&(i=navigator.userAgent.indexOf("Windows")>=0);const s=/^\w[\w\d+.-]*$/,a=/^\//,l=/^\/\//;function o(C,N){if(!C.scheme&&N)throw new Error(`[UriError]: Scheme is missing: {scheme: "", authority: "${C.authority}", path: "${C.path}", query: "${C.query}", fragment: "${C.fragment}"}`);if(C.scheme&&!s.test(C.scheme))throw new Error("[UriError]: Scheme contains illegal characters.");if(C.path){if(C.authority){if(!a.test(C.path))throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character')}else if(l.test(C.path))throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")')}}const u="",h="/",c=/^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/;class m{static isUri(N){return N instanceof m||!!N&&typeof N.authority=="string"&&typeof N.fragment=="string"&&typeof N.path=="string"&&typeof N.query=="string"&&typeof N.scheme=="string"&&typeof N.fsPath=="string"&&typeof N.with=="function"&&typeof N.toString=="function"}scheme;authority;path;query;fragment;constructor(N,k,R,I,T,P=!1){typeof N=="object"?(this.scheme=N.scheme||u,this.authority=N.authority||u,this.path=N.path||u,this.query=N.query||u,this.fragment=N.fragment||u):(this.scheme=(function(D,$){return D||$?D:"file"})(N,P),this.authority=k||u,this.path=(function(D,$){switch(D){case"https":case"http":case"file":$?$[0]!==h&&($=h+$):$=h}return $})(this.scheme,R||u),this.query=I||u,this.fragment=T||u,o(this,P))}get fsPath(){return _(this)}with(N){if(!N)return this;let{scheme:k,authority:R,path:I,query:T,fragment:P}=N;return k===void 0?k=this.scheme:k===null&&(k=u),R===void 0?R=this.authority:R===null&&(R=u),I===void 0?I=this.path:I===null&&(I=u),T===void 0?T=this.query:T===null&&(T=u),P===void 0?P=this.fragment:P===null&&(P=u),k===this.scheme&&R===this.authority&&I===this.path&&T===this.query&&P===this.fragment?this:new g(k,R,I,T,P)}static parse(N,k=!1){const R=c.exec(N);return R?new g(R[2]||u,L(R[4]||u),L(R[5]||u),L(R[7]||u),L(R[9]||u),k):new g(u,u,u,u,u)}static file(N){let k=u;if(i&&(N=N.replace(/\\/g,h)),N[0]===h&&N[1]===h){const R=N.indexOf(h,2);R===-1?(k=N.substring(2),N=h):(k=N.substring(2,R),N=N.substring(R)||h)}return new g("file",k,N,u,u)}static from(N){const k=new g(N.scheme,N.authority,N.path,N.query,N.fragment);return o(k,!0),k}toString(N=!1){return v(this,N)}toJSON(){return this}static revive(N){if(N){if(N instanceof m)return N;{const k=new g(N);return k._formatted=N.external,k._fsPath=N._sep===d?N.fsPath:null,k}}return N}}const d=i?1:void 0;class g extends m{_formatted=null;_fsPath=null;get fsPath(){return this._fsPath||(this._fsPath=_(this)),this._fsPath}toString(N=!1){return N?v(this,!0):(this._formatted||(this._formatted=v(this,!1)),this._formatted)}toJSON(){const N={$mid:1};return this._fsPath&&(N.fsPath=this._fsPath,N._sep=d),this._formatted&&(N.external=this._formatted),this.path&&(N.path=this.path),this.scheme&&(N.scheme=this.scheme),this.authority&&(N.authority=this.authority),this.query&&(N.query=this.query),this.fragment&&(N.fragment=this.fragment),N}}const p={58:"%3A",47:"%2F",63:"%3F",35:"%23",91:"%5B",93:"%5D",64:"%40",33:"%21",36:"%24",38:"%26",39:"%27",40:"%28",41:"%29",42:"%2A",43:"%2B",44:"%2C",59:"%3B",61:"%3D",32:"%20"};function y(C,N,k){let R,I=-1;for(let T=0;T<C.length;T++){const P=C.charCodeAt(T);if(P>=97&&P<=122||P>=65&&P<=90||P>=48&&P<=57||P===45||P===46||P===95||P===126||N&&P===47||k&&P===91||k&&P===93||k&&P===58)I!==-1&&(R+=encodeURIComponent(C.substring(I,T)),I=-1),R!==void 0&&(R+=C.charAt(T));else{R===void 0&&(R=C.substr(0,T));const D=p[P];D!==void 0?(I!==-1&&(R+=encodeURIComponent(C.substring(I,T)),I=-1),R+=D):I===-1&&(I=T)}}return I!==-1&&(R+=encodeURIComponent(C.substring(I))),R!==void 0?R:C}function w(C){let N;for(let k=0;k<C.length;k++){const R=C.charCodeAt(k);R===35||R===63?(N===void 0&&(N=C.substr(0,k)),N+=p[R]):N!==void 0&&(N+=C[k])}return N!==void 0?N:C}function _(C,N){let k;return k=C.authority&&C.path.length>1&&C.scheme==="file"?`//${C.authority}${C.path}`:C.path.charCodeAt(0)===47&&(C.path.charCodeAt(1)>=65&&C.path.charCodeAt(1)<=90||C.path.charCodeAt(1)>=97&&C.path.charCodeAt(1)<=122)&&C.path.charCodeAt(2)===58?C.path[1].toLowerCase()+C.path.substr(2):C.path,i&&(k=k.replace(/\//g,"\\")),k}function v(C,N){const k=N?w:y;let R="",{scheme:I,authority:T,path:P,query:D,fragment:$}=C;if(I&&(R+=I,R+=":"),(T||I==="file")&&(R+=h,R+=h),T){let j=T.indexOf("@");if(j!==-1){const te=T.substr(0,j);T=T.substr(j+1),j=te.lastIndexOf(":"),j===-1?R+=k(te,!1,!1):(R+=k(te.substr(0,j),!1,!1),R+=":",R+=k(te.substr(j+1),!1,!0)),R+="@"}T=T.toLowerCase(),j=T.lastIndexOf(":"),j===-1?R+=k(T,!1,!0):(R+=k(T.substr(0,j),!1,!0),R+=T.substr(j))}if(P){if(P.length>=3&&P.charCodeAt(0)===47&&P.charCodeAt(2)===58){const j=P.charCodeAt(1);j>=65&&j<=90&&(P=`/${String.fromCharCode(j+32)}:${P.substr(3)}`)}else if(P.length>=2&&P.charCodeAt(1)===58){const j=P.charCodeAt(0);j>=65&&j<=90&&(P=`${String.fromCharCode(j+32)}:${P.substr(2)}`)}R+=k(P,!0,!1)}return D&&(R+="?",R+=k(D,!1,!1)),$&&(R+="#",R+=N?$:y($,!1,!1)),R}function x(C){try{return decodeURIComponent(C)}catch{return C.length>3?C.substr(0,3)+x(C.substr(3)):C}}const b=/(%[0-9A-Za-z][0-9A-Za-z])+/g;function L(C){return C.match(b)?C.replace(b,N=>x(N)):C}var S=n(470);const M=S.posix||S,F="/";var O;(function(C){C.joinPath=function(N,...k){return N.with({path:M.join(N.path,...k)})},C.resolvePath=function(N,...k){let R=N.path,I=!1;R[0]!==F&&(R=F+R,I=!0);let T=M.resolve(R,...k);return I&&T[0]===F&&!N.authority&&(T=T.substring(1)),N.with({path:T})},C.dirname=function(N){if(N.path.length===0||N.path===F)return N;let k=M.dirname(N.path);return k.length===1&&k.charCodeAt(0)===46&&(k=""),N.with({path:k})},C.basename=function(N){return M.basename(N.path)},C.extname=function(N){return M.extname(N.path)}})(O||(O={}))})(),bo=r})();var{URI:At,Utils:R1}=bo;function Xc(e,t){if(typeof e!="string")throw new TypeError("Expected a string");const n=String(e);let r="";const i=!!t,s=!!t;let a=!1;const l=t&&typeof t.flags=="string"?t.flags:"";let o;for(let u=0,h=n.length;u<h;u++)switch(o=n[u],o){case"/":case"$":case"^":case"+":case".":case"(":case")":case"=":case"!":case"|":r+="\\"+o;break;case"?":if(i){r+=".";break}case"[":case"]":if(i){r+=o;break}case"{":if(i){a=!0,r+="(";break}case"}":if(i){a=!1,r+=")";break}case",":if(a){r+="|";break}r+="\\"+o;break;case"*":const c=n[u-1];let m=1;for(;n[u+1]==="*";)m++,u++;const d=n[u+1];s?m>1&&(c==="/"||c===void 0||c==="{"||c===",")&&(d==="/"||d===void 0||d===","||d==="}")?(d==="/"?u++:c==="/"&&r.endsWith("\\/")&&(r=r.substr(0,r.length-2)),r+="((?:[^/]*(?:/|$))*)"):r+="([^/]*)":r+=".*";break;default:r+=o}return(!l||!~l.indexOf("g"))&&(r="^"+r+"$"),new RegExp(r,l)}var Qc="!",Yc="/",Zc=class{constructor(e,t,n){this.folderUri=t,this.uris=n,this.globWrappers=[];try{for(let r of e){const i=r[0]!==Qc;i||(r=r.substring(1)),r.length>0&&(r[0]===Yc&&(r=r.substring(1)),this.globWrappers.push({regexp:Xc("**/"+r,{extended:!0,globstar:!0}),include:i}))}t&&(t=vo(t),t.endsWith("/")||(t=t+"/"),this.folderUri=t)}catch{this.globWrappers.length=0,this.uris=[]}}matchesPattern(e){if(this.folderUri&&!e.startsWith(this.folderUri))return!1;let t=!1;for(const{regexp:n,include:r}of this.globWrappers)n.test(e)&&(t=r);return t}getURIs(){return this.uris}},Kc=class{constructor(e,t,n){this.service=e,this.uri=t,this.dependencies=new Set,this.anchors=void 0,n&&(this.unresolvedSchema=this.service.promise.resolve(new Wt(n)))}getUnresolvedSchema(){return this.unresolvedSchema||(this.unresolvedSchema=this.service.loadSchema(this.uri)),this.unresolvedSchema}getResolvedSchema(){return this.resolvedSchema||(this.resolvedSchema=this.getUnresolvedSchema().then(e=>this.service.resolveSchemaContent(e,this))),this.resolvedSchema}clearSchema(){const e=!!this.unresolvedSchema;return this.resolvedSchema=void 0,this.unresolvedSchema=void 0,this.dependencies.clear(),this.anchors=void 0,e}},Wt=class{constructor(e,t=[]){this.schema=e,this.errors=t}},yo=class{constructor(e,t=[],n=[],r){this.schema=e,this.errors=t,this.warnings=n,this.schemaDraft=r}getSection(e){const t=this.getSectionRecursive(e,this.schema);if(t)return xe(t)}getSectionRecursive(e,t){if(!t||typeof t=="boolean"||e.length===0)return t;const n=e.shift();if(t.properties&&typeof t.properties[n])return this.getSectionRecursive(e,t.properties[n]);if(t.patternProperties){for(const r of Object.keys(t.patternProperties))if(wn(r)?.test(n))return this.getSectionRecursive(e,t.patternProperties[r])}else{if(typeof t.additionalProperties=="object")return this.getSectionRecursive(e,t.additionalProperties);if(n.match("[0-9]+")){if(Array.isArray(t.items)){const r=parseInt(n,10);if(!isNaN(r)&&t.items[r])return this.getSectionRecursive(e,t.items[r])}else if(t.items)return this.getSectionRecursive(e,t.items)}}}},e1=class{constructor(e,t,n){this.contextService=t,this.requestService=e,this.promiseConstructor=n||Promise,this.callOnDispose=[],this.contributionSchemas={},this.contributionAssociations=[],this.schemasById={},this.filePatternAssociations=[],this.registeredSchemasIds={}}getRegisteredSchemaIds(e){return Object.keys(this.registeredSchemasIds).filter(t=>{const n=At.parse(t).scheme;return n!=="schemaservice"&&(!e||e(n))})}get promise(){return this.promiseConstructor}dispose(){for(;this.callOnDispose.length>0;)this.callOnDispose.pop()()}onResourceChange(e){this.cachedSchemaForResource=void 0;let t=!1;e=Ke(e);const n=[e],r=Object.keys(this.schemasById).map(i=>this.schemasById[i]);for(;n.length;){const i=n.pop();for(let s=0;s<r.length;s++){const a=r[s];a&&(a.uri===i||a.dependencies.has(i))&&(a.uri!==i&&n.push(a.uri),a.clearSchema()&&(t=!0),r[s]=void 0)}}return t}setSchemaContributions(e){if(e.schemas){const t=e.schemas;for(const n in t){const r=Ke(n);this.contributionSchemas[r]=this.addSchemaHandle(r,t[n])}}if(Array.isArray(e.schemaAssociations)){const t=e.schemaAssociations;for(let n of t){const r=n.uris.map(Ke),i=this.addFilePatternAssociation(n.pattern,n.folderUri,r);this.contributionAssociations.push(i)}}}addSchemaHandle(e,t){const n=new Kc(this,e,t);return this.schemasById[e]=n,n}getOrAddSchemaHandle(e,t){return this.schemasById[e]||this.addSchemaHandle(e,t)}addFilePatternAssociation(e,t,n){const r=new Zc(e,t,n);return this.filePatternAssociations.push(r),r}registerExternalSchema(e){const t=Ke(e.uri);return this.registeredSchemasIds[t]=!0,this.cachedSchemaForResource=void 0,e.fileMatch&&e.fileMatch.length&&this.addFilePatternAssociation(e.fileMatch,e.folderUri,[t]),e.schema?this.addSchemaHandle(t,e.schema):this.getOrAddSchemaHandle(t)}clearExternalSchemas(){this.schemasById={},this.filePatternAssociations=[],this.registeredSchemasIds={},this.cachedSchemaForResource=void 0;for(const e in this.contributionSchemas)this.schemasById[e]=this.contributionSchemas[e],this.registeredSchemasIds[e]=!0;for(const e of this.contributionAssociations)this.filePatternAssociations.push(e)}getResolvedSchema(e){const t=Ke(e),n=this.schemasById[t];return n?n.getResolvedSchema():this.promise.resolve(void 0)}loadSchema(e){if(!this.requestService){const t=E("Unable to load schema from '{0}'. No schema request service available",Ht(e));return this.promise.resolve(new Wt({},[t]))}return e.startsWith("http://json-schema.org/")&&(e="https"+e.substring(4)),this.requestService(e).then(t=>{if(!t){const s=E("Unable to load schema from '{0}': No content.",Ht(e));return new Wt({},[s])}const n=[];t.charCodeAt(0)===65279&&(n.push(E("Problem reading content from '{0}': UTF-8 with BOM detected, only UTF 8 is allowed.",Ht(e))),t=t.trimStart());let r={};const i=[];return r=yc(t,i),i.length&&n.push(E("Unable to parse content from '{0}': Parse error at offset {1}.",Ht(e),i[0].offset)),new Wt(r,n)},t=>{let n=t.toString();const r=t.toString().split("Error: ");return r.length>1&&(n=r[1]),$t(n,".")&&(n=n.substr(0,n.length-1)),new Wt({},[E("Unable to load schema from '{0}': {1}.",Ht(e),n)])})}resolveSchemaContent(e,t){const n=e.errors.slice(0),r=e.schema;let i=r.$schema?Ke(r.$schema):void 0;if(i==="http://json-schema.org/draft-03/schema")return this.promise.resolve(new yo({},[E("Draft-03 schemas are not supported.")],[],i));let s=new Set;const a=this.contextService,l=(g,p)=>{p=decodeURIComponent(p);let y=g;return p[0]==="/"&&(p=p.substring(1)),p.split("/").some(w=>(w=w.replace(/~1/g,"/").replace(/~0/g,"~"),y=y[w],!y)),y},o=(g,p,y)=>(p.anchors||(p.anchors=d(g)),p.anchors.get(y)),u=(g,p)=>{for(const y in p)p.hasOwnProperty(y)&&y!=="id"&&y!=="$id"&&(g[y]=p[y])},h=(g,p,y,w)=>{let _;w===void 0||w.length===0?_=p:w.charAt(0)==="/"?_=l(p,w):_=o(p,y,w),_?u(g,_):n.push(E("$ref '{0}' in '{1}' can not be resolved.",w||"",y.uri))},c=(g,p,y,w)=>{a&&!/^[A-Za-z][A-Za-z0-9+\-.+]*:\/\/.*/.test(p)&&(p=a.resolveRelativePath(p,w.uri)),p=Ke(p);const _=this.getOrAddSchemaHandle(p);return _.getUnresolvedSchema().then(v=>{if(w.dependencies.add(p),v.errors.length){const x=y?p+"#"+y:p;n.push(E("Problems loading reference '{0}': {1}",x,v.errors[0]))}return h(g,v.schema,_,y),m(g,v.schema,_)})},m=(g,p,y)=>{const w=[];return this.traverseNodes(g,_=>{const v=new Set;for(;_.$ref;){const x=_.$ref,b=x.split("#",2);if(delete _.$ref,b[0].length>0){w.push(c(_,b[0],b[1],y));return}else if(!v.has(x)){const L=b[1];h(_,p,y,L),v.add(x)}}_.$recursiveRef&&s.add("$recursiveRef"),_.$dynamicRef&&s.add("$dynamicRef")}),this.promise.all(w)},d=g=>{const p=new Map;return this.traverseNodes(g,y=>{const w=y.$id||y.id,_=oa(w)&&w.charAt(0)==="#"?w.substring(1):y.$anchor;_&&(p.has(_)?n.push(E("Duplicate anchor declaration: '{0}'",_)):p.set(_,y)),y.$recursiveAnchor&&s.add("$recursiveAnchor"),y.$dynamicAnchor&&s.add("$dynamicAnchor")}),p};return m(r,r,t).then(g=>{let p=[];return s.size&&p.push(E("The schema uses meta-schema features ({0}) that are not yet supported by the validator.",Array.from(s.keys()).join(", "))),new yo(r,n,p,i)})}traverseNodes(e,t){if(!e||typeof e!="object")return Promise.resolve(null);const n=new Set,r=(...u)=>{for(const h of u)Ye(h)&&l.push(h)},i=(...u)=>{for(const h of u)if(Ye(h))for(const c in h){const d=h[c];Ye(d)&&l.push(d)}},s=(...u)=>{for(const h of u)if(Array.isArray(h))for(const c of h)Ye(c)&&l.push(c)},a=u=>{if(Array.isArray(u))for(const h of u)Ye(h)&&l.push(h);else Ye(u)&&l.push(u)},l=[e];let o=l.pop();for(;o;)n.has(o)||(n.add(o),t(o),r(o.additionalItems,o.additionalProperties,o.not,o.contains,o.propertyNames,o.if,o.then,o.else,o.unevaluatedItems,o.unevaluatedProperties),i(o.definitions,o.$defs,o.properties,o.patternProperties,o.dependencies,o.dependentSchemas),s(o.anyOf,o.allOf,o.oneOf,o.prefixItems),a(o.items)),o=l.pop()}getSchemaFromProperty(e,t){if(t.root?.type==="object"){for(const n of t.root.properties)if(n.keyNode.value==="$schema"&&n.valueNode?.type==="string"){let r=n.valueNode.value;return this.contextService&&!/^\w[\w\d+.-]*:/.test(r)&&(r=this.contextService.resolveRelativePath(r,e)),r}}}getAssociatedSchemas(e){const t=Object.create(null),n=[],r=vo(e);for(const i of this.filePatternAssociations)if(i.matchesPattern(r))for(const s of i.getURIs())t[s]||(n.push(s),t[s]=!0);return n}getSchemaURIsForResource(e,t){let n=t&&this.getSchemaFromProperty(e,t);return n?[n]:this.getAssociatedSchemas(e)}getSchemaForResource(e,t){if(t){let i=this.getSchemaFromProperty(e,t);if(i){const s=Ke(i);return this.getOrAddSchemaHandle(s).getResolvedSchema()}}if(this.cachedSchemaForResource&&this.cachedSchemaForResource.resource===e)return this.cachedSchemaForResource.resolvedSchema;const n=this.getAssociatedSchemas(e),r=n.length>0?this.createCombinedSchema(e,n).getResolvedSchema():this.promise.resolve(void 0);return this.cachedSchemaForResource={resource:e,resolvedSchema:r},r}createCombinedSchema(e,t){if(t.length===1)return this.getOrAddSchemaHandle(t[0]);{const n="schemaservice://combinedSchema/"+encodeURIComponent(e),r={allOf:t.map(i=>({$ref:i}))};return this.addSchemaHandle(n,r)}}getMatchingSchemas(e,t,n){if(n){const r=n.id||"schemaservice://untitled/matchingSchemas/"+t1++;return this.addSchemaHandle(r,n).getResolvedSchema().then(s=>t.getMatchingSchemas(s.schema).filter(a=>!a.inverted))}return this.getSchemaForResource(e.uri,t).then(r=>r?t.getMatchingSchemas(r.schema).filter(i=>!i.inverted):[])}},t1=0;function Ke(e){try{return At.parse(e).toString(!0)}catch{return e}}function vo(e){try{return At.parse(e).with({fragment:null,query:null}).toString(!0)}catch{return e}}function Ht(e){try{const t=At.parse(e);if(t.scheme==="file")return t.fsPath}catch{}return e}function n1(e,t){const n=[],r=[],i=[];let s=-1;const a=nt(e.getText(),!1);let l=a.scan();function o(g){n.push(g),r.push(i.length)}for(;l!==17;){switch(l){case 1:case 3:{const g=e.positionAt(a.getTokenOffset()).line,p={startLine:g,endLine:g,kind:l===1?"object":"array"};i.push(p);break}case 2:case 4:{const g=l===2?"object":"array";if(i.length>0&&i[i.length-1].kind===g){const p=i.pop(),y=e.positionAt(a.getTokenOffset()).line;p&&y>p.startLine+1&&s!==p.startLine&&(p.endLine=y-1,o(p),s=p.startLine)}break}case 13:{const g=e.positionAt(a.getTokenOffset()).line,p=e.positionAt(a.getTokenOffset()+a.getTokenLength()).line;a.getTokenError()===1&&g+1<e.lineCount?a.setPosition(e.offsetAt(Y.create(g+1,0))):g<p&&(o({startLine:g,endLine:p,kind:Ut.Comment}),s=g);break}case 12:{const p=e.getText().substr(a.getTokenOffset(),a.getTokenLength()).match(/^\/\/\s*#(region\b)|(endregion\b)/);if(p){const y=e.positionAt(a.getTokenOffset()).line;if(p[1]){const w={startLine:y,endLine:y,kind:Ut.Region};i.push(w)}else{let w=i.length-1;for(;w>=0&&i[w].kind!==Ut.Region;)w--;if(w>=0){const _=i[w];i.length=w,y>_.startLine&&s!==_.startLine&&(_.endLine=y,o(_),s=_.startLine)}}}break}}l=a.scan()}const u=t&&t.rangeLimit;if(typeof u!="number"||n.length<=u)return n;t&&t.onRangeLimitExceeded&&t.onRangeLimitExceeded(e.uri);const h=[];for(let g of r)g<30&&(h[g]=(h[g]||0)+1);let c=0,m=0;for(let g=0;g<h.length;g++){const p=h[g];if(p){if(p+c>u){m=g;break}c+=p}}const d=[];for(let g=0;g<n.length;g++){const p=r[g];typeof p=="number"&&(p<m||p===m&&c++<u)&&d.push(n[g])}return d}function r1(e,t,n){function r(l){let o=e.offsetAt(l),u=n.getNodeFromOffset(o,!0);const h=[];for(;u;){switch(u.type){case"string":case"object":case"array":const m=u.offset+1,d=u.offset+u.length-1;m<d&&o>=m&&o<=d&&h.push(i(m,d)),h.push(i(u.offset,u.offset+u.length));break;case"number":case"boolean":case"null":case"property":h.push(i(u.offset,u.offset+u.length));break}if(u.type==="property"||u.parent&&u.parent.type==="array"){const m=a(u.offset+u.length,5);m!==-1&&h.push(i(u.offset,m))}u=u.parent}let c;for(let m=h.length-1;m>=0;m--)c=Sn.create(h[m],c);return c||(c=Sn.create(q.create(l,l))),c}function i(l,o){return q.create(e.positionAt(l),e.positionAt(o))}const s=nt(e.getText(),!0);function a(l,o){return s.setPosition(l),s.scan()===o?s.getTokenOffset()+s.getTokenLength():-1}return t.map(r)}function Dr(e,t,n){let r;if(n){const s=e.offsetAt(n.start),a=e.offsetAt(n.end)-s;r={offset:s,length:a}}const i={tabSize:t?t.tabSize:4,insertSpaces:t?.insertSpaces===!0,insertFinalNewline:t?.insertFinalNewline===!0,eol:`
|
||
`,keepLines:t?.keepLines===!0};return _c(e.getText(),r,i).map(s=>Fe.replace(q.create(e.positionAt(s.offset),e.positionAt(s.offset+s.length)),s.content))}var ie;(function(e){e[e.Object=0]="Object",e[e.Array=1]="Array"})(ie||(ie={}));var Rn=class{constructor(e,t){this.propertyName=e??"",this.beginningLineNumber=t,this.childrenProperties=[],this.lastProperty=!1,this.noKeyName=!1}addChildProperty(e){if(e.parent=this,this.childrenProperties.length>0){let t=0;e.noKeyName?t=this.childrenProperties.length:t=s1(this.childrenProperties,e,i1),t<0&&(t=t*-1-1),this.childrenProperties.splice(t,0,e)}else this.childrenProperties.push(e);return e}};function i1(e,t){const n=e.propertyName.toLowerCase(),r=t.propertyName.toLowerCase();return n<r?-1:n>r?1:0}function s1(e,t,n){const r=t.propertyName.toLowerCase(),i=e[0].propertyName.toLowerCase(),s=e[e.length-1].propertyName.toLowerCase();if(r<i)return 0;if(r>s)return e.length;let a=0,l=e.length-1;for(;a<=l;){let o=l+a>>1,u=n(t,e[o]);if(u>0)a=o+1;else if(u<0)l=o-1;else return o}return-a-1}function a1(e,t){const n={...t,keepLines:!1},r=Ee.applyEdits(e,Dr(e,n,void 0)),i=Ee.create("test://test.json","json",0,r),s=o1(i),a=l1(i,s),l=Dr(a,n,void 0),o=Ee.applyEdits(a,l);return[Fe.replace(q.create(Y.create(0,0),e.positionAt(e.getText().length)),o)]}function o1(e){const t=e.getText(),n=nt(t,!1);let r=new Rn,i=r,s=r,a=r,l,o=0,u=0,h,c,m=-1,d=-1,g=0,p=0,y=[],w=!1,_=!1;for(;(l=n.scan())!==17;){if(w===!0&&l!==14&&l!==15&&l!==12&&l!==13&&s.endLineNumber===void 0){let v=n.getTokenStartLine();c===2||c===4?a.endLineNumber=v-1:s.endLineNumber=v-1,g=v,w=!1}if(_===!0&&l!==14&&l!==15&&l!==12&&l!==13&&(g=n.getTokenStartLine(),_=!1),n.getTokenStartLine()!==o){for(let v=o;v<n.getTokenStartLine();v++){const x=e.getText(q.create(Y.create(v,0),Y.create(v+1,0))).length;u=u+x}o=n.getTokenStartLine()}switch(l){case 10:{if(h===void 0||h===1||h===5&&y[y.length-1]===ie.Object){const v=new Rn(n.getTokenValue(),g);a=s,s=i.addChildProperty(v)}break}case 3:{if(r.beginningLineNumber===void 0&&(r.beginningLineNumber=n.getTokenStartLine()),y[y.length-1]===ie.Object)i=s;else if(y[y.length-1]===ie.Array){const v=new Rn(n.getTokenValue(),g);v.noKeyName=!0,a=s,s=i.addChildProperty(v),i=s}y.push(ie.Array),s.type=ie.Array,g=n.getTokenStartLine(),g++;break}case 1:{if(r.beginningLineNumber===void 0)r.beginningLineNumber=n.getTokenStartLine();else if(y[y.length-1]===ie.Array){const v=new Rn(n.getTokenValue(),g);v.noKeyName=!0,a=s,s=i.addChildProperty(v)}s.type=ie.Object,y.push(ie.Object),i=s,g=n.getTokenStartLine(),g++;break}case 4:{p=n.getTokenStartLine(),y.pop(),s.endLineNumber===void 0&&(h===2||h===4)&&(s.endLineNumber=p-1,s.lastProperty=!0,s.lineWhereToAddComma=m,s.indexWhereToAddComa=d,a=s,s=s?s.parent:void 0,i=s),r.endLineNumber=p,g=p+1;break}case 2:{p=n.getTokenStartLine(),y.pop(),h!==1&&(s.endLineNumber===void 0&&(s.endLineNumber=p-1,s.lastProperty=!0,s.lineWhereToAddComma=m,s.indexWhereToAddComa=d),a=s,s=s?s.parent:void 0,i=s),r.endLineNumber=n.getTokenStartLine(),g=p+1;break}case 5:{p=n.getTokenStartLine(),s.endLineNumber===void 0&&(y[y.length-1]===ie.Object||y[y.length-1]===ie.Array&&(h===2||h===4))&&(s.endLineNumber=p,s.commaIndex=n.getTokenOffset()-u,s.commaLine=p),(h===2||h===4)&&(a=s,s=s?s.parent:void 0,i=s),g=p+1;break}case 13:{h===5&&m===n.getTokenStartLine()&&(y[y.length-1]===ie.Array&&(c===2||c===4)||y[y.length-1]===ie.Object)&&(y[y.length-1]===ie.Array&&(c===2||c===4)||y[y.length-1]===ie.Object)&&(s.endLineNumber=void 0,w=!0),(h===1||h===3)&&m===n.getTokenStartLine()&&(_=!0);break}}l!==14&&l!==13&&l!==12&&l!==15&&(c=h,h=l,m=n.getTokenStartLine(),d=n.getTokenOffset()+n.getTokenLength()-u)}return r}function l1(e,t){if(t.childrenProperties.length===0)return e;const n=Ee.create("test://test.json","json",0,e.getText()),r=[];for(xo(r,t,t.beginningLineNumber);r.length>0;){const i=r.shift(),s=i.propertyTreeArray;let a=i.beginningLineNumber;for(let l=0;l<s.length;l++){const o=s[l],u=q.create(Y.create(o.beginningLineNumber,0),Y.create(o.endLineNumber+1,0)),h=e.getText(u),c=Ee.create("test://test.json","json",0,h);if(o.lastProperty===!0&&l!==s.length-1){const g=o.lineWhereToAddComma-o.beginningLineNumber,p=o.indexWhereToAddComa,y={range:q.create(Y.create(g,p),Y.create(g,p)),text:","};Ee.update(c,[y],1)}else if(o.lastProperty===!1&&l===s.length-1){const g=o.commaIndex,y=o.commaLine-o.beginningLineNumber,w={range:q.create(Y.create(y,g),Y.create(y,g+1)),text:""};Ee.update(c,[w],1)}const m=o.endLineNumber-o.beginningLineNumber+1,d={range:q.create(Y.create(a,0),Y.create(a+m,0)),text:c.getText()};Ee.update(n,[d],1),xo(r,o,a),a=a+m}}return n}function xo(e,t,n){if(t.childrenProperties.length!==0)if(t.type===ie.Object){let r=1/0;for(const s of t.childrenProperties)s.beginningLineNumber<r&&(r=s.beginningLineNumber);const i=r-t.beginningLineNumber;n=n+i,e.push(new _o(n,t.childrenProperties))}else t.type===ie.Array&&wo(e,t,n)}function wo(e,t,n){for(const r of t.childrenProperties){if(r.type===ie.Object){let i=1/0;for(const a of r.childrenProperties)a.beginningLineNumber<i&&(i=a.beginningLineNumber);const s=i-r.beginningLineNumber;e.push(new _o(n+r.beginningLineNumber-t.beginningLineNumber+s,r.childrenProperties))}r.type===ie.Array&&wo(e,r,n+r.beginningLineNumber-t.beginningLineNumber)}}var _o=class{constructor(e,t){this.beginningLineNumber=e,this.propertyTreeArray=t}};function u1(e,t){const n=[];return t.visit(r=>{if(r.type==="property"&&r.keyNode.value==="$ref"&&r.valueNode?.type==="string"){const i=r.valueNode.value,s=f1(t,i);if(s){const a=e.positionAt(s.offset);n.push({target:`${e.uri}#${a.line+1},${a.character+1}`,range:c1(e,r.valueNode)})}}return!0}),Promise.resolve(n)}function c1(e,t){return q.create(e.positionAt(t.offset+1),e.positionAt(t.offset+t.length-1))}function f1(e,t){const n=h1(t);return n?Or(n,e.root):null}function Or(e,t){if(!t)return null;if(e.length===0)return t;const n=e.shift();if(t&&t.type==="object"){const r=t.properties.find(i=>i.keyNode.value===n);return r?Or(e,r.valueNode):null}else if(t&&t.type==="array"&&n.match(/^(0|[1-9][0-9]*)$/)){const r=Number.parseInt(n),i=t.items[r];return i?Or(e,i):null}return null}function h1(e){return e==="#"?[]:e[0]!=="#"||e[1]!=="/"?null:e.substring(2).split(/\//).map(m1)}function m1(e){return e.replace(/~1/g,"/").replace(/~0/g,"~")}function d1(e){const t=e.promiseConstructor||Promise,n=new e1(e.schemaRequestService,e.workspaceContext,t);n.setSchemaContributions(Vr);const r=new Oc(n,e.contributions,t,e.clientCapabilities),i=new Bc(n,e.contributions,t),s=new Gc(n),a=new Uc(n,t);return{configure:l=>{n.clearExternalSchemas(),l.schemas?.forEach(n.registerExternalSchema.bind(n)),a.configure(l)},resetSchema:l=>n.onResourceChange(l),doValidation:a.doValidation.bind(a),getLanguageStatus:a.getLanguageStatus.bind(a),parseJSONDocument:l=>Dc(l,{collectComments:!0}),newJSONDocument:(l,o)=>Vc(l,o),getMatchingSchemas:n.getMatchingSchemas.bind(n),doResolve:r.doResolve.bind(r),doComplete:r.doComplete.bind(r),findDocumentSymbols:s.findDocumentSymbols.bind(s),findDocumentSymbols2:s.findDocumentSymbols2.bind(s),findDocumentColors:s.findDocumentColors.bind(s),getColorPresentations:s.getColorPresentations.bind(s),doHover:i.doHover.bind(i),getFoldingRanges:n1,getSelectionRanges:r1,findDefinition:()=>Promise.resolve([]),findLinks:u1,format:(l,o,u)=>Dr(l,u,o),sort:(l,o)=>a1(l,o)}}var Lo;typeof fetch<"u"&&(Lo=function(e){return fetch(e).then(t=>t.text())});var g1=class{constructor(e,t){this._ctx=e,this._languageSettings=t.languageSettings,this._languageId=t.languageId,this._languageService=d1({workspaceContext:{resolveRelativePath:(n,r)=>{const i=r.substr(0,r.lastIndexOf("/")+1);return y1(i,n)}},schemaRequestService:t.enableSchemaRequest?Lo:void 0,clientCapabilities:Cr.LATEST}),this._languageService.configure(this._languageSettings)}async doValidation(e){let t=this._getTextDocument(e);if(t){let n=this._languageService.parseJSONDocument(t);return this._languageService.doValidation(t,n,this._languageSettings)}return Promise.resolve([])}async doComplete(e,t){let n=this._getTextDocument(e);if(!n)return null;let r=this._languageService.parseJSONDocument(n);return this._languageService.doComplete(n,t,r)}async doResolve(e){return this._languageService.doResolve(e)}async doHover(e,t){let n=this._getTextDocument(e);if(!n)return null;let r=this._languageService.parseJSONDocument(n);return this._languageService.doHover(n,t,r)}async format(e,t,n){let r=this._getTextDocument(e);if(!r)return[];let i=this._languageService.format(r,t,n);return Promise.resolve(i)}async resetSchema(e){return Promise.resolve(this._languageService.resetSchema(e))}async findDocumentSymbols(e){let t=this._getTextDocument(e);if(!t)return[];let n=this._languageService.parseJSONDocument(t),r=this._languageService.findDocumentSymbols2(t,n);return Promise.resolve(r)}async findDocumentColors(e){let t=this._getTextDocument(e);if(!t)return[];let n=this._languageService.parseJSONDocument(t),r=this._languageService.findDocumentColors(t,n);return Promise.resolve(r)}async getColorPresentations(e,t,n){let r=this._getTextDocument(e);if(!r)return[];let i=this._languageService.parseJSONDocument(r),s=this._languageService.getColorPresentations(r,i,t,n);return Promise.resolve(s)}async getFoldingRanges(e,t){let n=this._getTextDocument(e);if(!n)return[];let r=this._languageService.getFoldingRanges(n,t);return Promise.resolve(r)}async getSelectionRanges(e,t){let n=this._getTextDocument(e);if(!n)return[];let r=this._languageService.parseJSONDocument(n),i=this._languageService.getSelectionRanges(n,t,r);return Promise.resolve(i)}async parseJSONDocument(e){let t=this._getTextDocument(e);if(!t)return null;let n=this._languageService.parseJSONDocument(t);return Promise.resolve(n)}async getMatchingSchemas(e){let t=this._getTextDocument(e);if(!t)return[];let n=this._languageService.parseJSONDocument(t);return Promise.resolve(this._languageService.getMatchingSchemas(t,n))}_getTextDocument(e){let t=this._ctx.getMirrorModels();for(let n of t)if(n.uri.toString()===e)return Ee.create(e,this._languageId,n.version,n.getValue());return null}},p1=47,Br=46;function b1(e){return e.charCodeAt(0)===p1}function y1(e,t){if(b1(t)){const n=At.parse(e),r=t.split("/");return n.with({path:No(r)}).toString()}return v1(e,t)}function No(e){const t=[];for(const r of e)r.length===0||r.length===1&&r.charCodeAt(0)===Br||(r.length===2&&r.charCodeAt(0)===Br&&r.charCodeAt(1)===Br?t.pop():t.push(r));e.length>1&&e[e.length-1].length===0&&t.push("");let n=t.join("/");return e[0].length===0&&(n="/"+n),n}function v1(e,...t){const n=At.parse(e),r=n.path.split("/");for(let i of t)r.push(...i.split("/"));return n.with({path:No(r)}).toString()}self.onmessage=()=>{Zs((e,t)=>new g1(e,t))}})();
|