@sheetxl/sdk
Version:
SDK - A high-performance, embeddable spreadsheet engine.
55 lines • 837 kB
JavaScript
"use strict";var Kg=Object.create;var za=Object.defineProperty;var Xg=Object.getOwnPropertyDescriptor;var Yg=Object.getOwnPropertyNames;var Qg=Object.getPrototypeOf,Zg=Object.prototype.hasOwnProperty;var tm=(l,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let r of Yg(t))!Zg.call(l,r)&&r!==e&&za(l,r,{get:()=>t[r],enumerable:!(n=Xg(t,r))||n.enumerable});return l};var em=(l,t,e)=>(e=l!=null?Kg(Qg(l)):{},tm(t||!l||!l.__esModule?za(e,"default",{value:l,enumerable:!0}):e,l));/**
* @license @sheetxl/sdk - SDK - A high-performance, embeddable spreadsheet engine. - v0.6.4
*
* (C) 2025-present SheetXL Inc. & Michael T. Ford
* License: The license can be found at https://www.sheetxl.com/license.
*/const A=require("@sheetxl/primitives"),E=require("@sheetxl/utils"),Pa=(l,t)=>{const e=new Map;return l.forEach((n,r)=>{t.get(r)!==n&&e.set(r,n)}),e};let Ha=!1;class Wa{constructor(t){this._record=t}getId(){return this._record.id}getDescription(){return this._record.description}getMeta(){return Object.freeze(this._record.meta)}getAuthor(){return this._record.author}getTimestamp(){return this._record.timestamp}getOperation(){return this._record.operation}}class ve{constructor(t){this._listeners=new Set,this._listenersState=new Map,this._commits=new Map,this._locked=!1,this._current=null,this._pending=null,this._isSync=t?.sync??Ha,this._isTransient=t?.transient??!1,this._author=t?.author;const e={id:"0",description:"initial",meta:{},author:this._author,timestamp:Date.now(),states:new Map,version:0,previousId:null},n={record:e,commit:new Wa(e)};this._current=n,this._cacheModel=null,this._cacheState=null,this._states=e.states,this._transactionStack=[],this._transactionOpen=!1;const r=new Map;r.set(e.id,n),this._commits=r}static{this.setDefaultSync=t=>{Ha=t}}getLog(t,e=100){const n=[];let r=t;do{const o=this._commits.get(r);if(!o)throw new Error(`Invalid commit id: '${r}'`);if(n.push(o.commit),r=o.record.previousId,!r)return n}while(n.length<e)}getCommitCount(){return this._commits.size}isOpenTransaction(){return this._transactionStack.length>0||this._transactionOpen}getPendingView(){const t=this._transactionStack;return t.length>0?t[0].getView():null}getState(t){const e=this._transactionStack;if(e.length===0){if(this._cacheModel===t)return this._cacheState;const n=this._states.get(t);return this._cacheModel=t,this._cacheState=n,n}return e[e.length-1].getState(t)}getCurrentCommit(){return this._pending?.commit??this._current.commit}restore(t,e){const n=this._getCommitContainer(t,e);if(this._current.commit.getId()===n.commit.getId())return n.commit;let r;e?.viewId&&e?.viewId!=="custom"||(r=n.record.viewAfter);const o=Pa(n.record.states,this._current.record.states);this._notifyStates("onBeforeCommitStart",this._current,o,r,!0,!1),this._current=n,this._states=this._current.record.states,this._cacheModel=null,this._cacheState=null,this._notifyStates("onAfterStateChange",n,o,r,!1,!0,!0),this._notify("onCommitChange",n.commit,!0),this._transactionOpen=!0;try{this._notifyStates("onRestoreOrRevert",n,n.record.states,r,!1,!0)}finally{this._transactionOpen=!1}return n.commit}revert(t,e){const n=this._getCommitContainer(t,e),r=this._commits.get(n.record.previousId);if(!r)throw new Error(`Invalid commit id: '${n.record.previousId}'`);let o;e?.viewId&&e?.viewId!==" custom"||(o=n.record.viewBefore??n.record.viewAfter);const s=Pa(r.record.states,this._current.record.states);this._notifyStates("onBeforeCommitStart",this._current,s,o,!0,!1),this._current=r,this._states=this._current.record.states,this._cacheModel=null,this._cacheState=null,this._notifyStates("onAfterStateChange",r,s,o,!0,!1,!0),this._notify("onCommitChange",r.commit,!0),this._transactionOpen=!0;try{this._notifyStates("onRestoreOrRevert",r,r.record.states,o,!0,!0)}finally{this._transactionOpen=!1}return r.commit}_getCommitContainer(t,e){const n=this._commits.get(t);if(!n)throw new Error(`Invalid commit id: '${t}'`);if(this._isTransient)throw new Error("Cannot revert transient store");if(e?.force&&this._transactionStack.length>0&&this._transactionStack[0].rollback(),this._transactionStack.length!==0)throw new Error("Open transactions.");return n}_pruneForwards(t){}beginCommit(t,e){const n=this._transactionStack,r=n.length;if(this._locked)throw console.warn("TransactionStore locked",n),new Error(`TransactionStore is locked by '${n[r-1].getDescription()}`);const o=t?.preventFurtherTransactions,s=this,i=(c,h,d)=>{const u=s._transactionStack;r!==u.length-1&&console.warn("Transaction stack out of sync",r,u.length,u),o&&(this._locked=!1),u.pop(),e?.(c,h,d),u.length===0&&(s._pending=null)};let a;if(n.length===0){const c=this._current.record,h={states:new Map,id:E.CommonUtils.uuidV4(),description:typeof t=="string"?t:t?.description??null,meta:{},timestamp:Date.now(),author:null,version:c.version+1,previousId:c.id,viewBefore:null,viewAfter:{},operation:t?.operation},d={record:h,commit:new Wa(h)};this._pending=d,this._notify("onCommitStart",d.commit),a=new nm(this,d,c?.states,t,i)}else a=n[n.length-1].beginTransaction(t,i);return o&&(this._locked=!0),this._transactionStack.push(a),a}doBatch(t,e,n){let r;const o=this.beginCommit(e,n),s=this.getCurrentCommit();try{r=t?.(s);const i=()=>{o.commit(e)};if(r&&typeof r.then=="function")return new Promise((a,c)=>{r.then(h=>{try{i(),a(h)}catch(d){c(d)}}).catch(h=>{o.rollback(),c(h)})});i()}catch(i){throw o.rollback(),i}return r}remove(t){return!!t}addListener(t){const e=this._listeners;return e.add(t),()=>{e.delete(t)}}addStateListener(t,e){if(!t)throw new Error("Model is required");if(!e)throw new Error("Listener is required");let n=this._listenersState.get(t);return n||(n=new Set,this._listenersState.set(t,n)),n.add(e),()=>{n.delete(e),n.size===0&&this._listenersState.delete(t)}}dispatchEvents(t,e=!1){!e||this._isSync?t():setTimeout(t,0)}_commitRecord(t,e,n){let r=t.record,o=t.commit;if(!this._isTransient){if(n){const s=this._commits.get(r.previousId);if(s){r.previousId=s.record.id;const i=s.record,a=i.states;a&&r.states.forEach((c,h)=>{a.set(h,c)}),i.viewAfter={...i.viewAfter,...r.viewAfter},i.meta={...i.meta,...r.meta},i.timestamp=r.timestamp,r=i,o=s.commit,t={record:r,commit:o}}}this._commits.set(r.id,t)}this._current=t,this._states=this._current.record.states,this._cacheModel=null,this._cacheState=null,n||this._notify("onCommitChange",o),this._notifyStates("onAfterStateChange",t,e,t.record.viewAfter,!1,!1,!0),n||this._notify("onCommitEnd",o,!0)}_notifyStates(t,e,n,r,o=!1,s=!1,i=!1){const a=e.commit,c=this._listenersState;n.forEach((h,d)=>{const u=c.get(d);u&&this.dispatchEvents(()=>{u.forEach(g=>{g[t]?.(h,r,a,o,s)})},i)})}_notify(t,e,n=!1){this.dispatchEvents(()=>{this._listeners.forEach(r=>{r[t]?.(e)})},n)}}class Xd{constructor(t,e){this._children=new Set,this._depth=0,this._container=null,this._closed=!1,this._container=t,e=typeof e=="string"?{description:e}:e,this._description=e?.description??"",e?.viewBefore!==void 0&&(t.record.viewBefore=t.record.viewBefore&&e.viewBefore?{...t.record.viewBefore,...e.viewBefore}:e.viewBefore),e?.viewAfter!==void 0&&(t.record.viewAfter=t.record.viewAfter&&e.viewAfter?{...t.record.viewAfter,...e.viewAfter}:e.viewAfter)}getView(){return this._container.record.viewAfter??this._container.record.viewBefore}getDepth(){return this._depth}getDescription(){return this._description}getStates(){return this._states}beginTransaction(t,e){this._ensureOpen();const n=new rm(this,this._container,typeof t=="string"?{description:t}:t,e);return this._children||this._children,this._children.add(n),n}updateState(t,e){this._ensureOpen();const n=this.getState(t),r=typeof e=="function"?e(n):e===void 0?n:{...n,...e};if(r){let o=this._states;o||(o=new Map,this._states=o),o.set(t,r)}return r}commit(t){if(this._ensureOpen(),typeof t=="string"&&(t={description:t}),t){if(t.description&&(this._description=t.description),t.meta&&(this._meta=E.CommonUtils.mergeContentful(t.meta,this._meta)),t.viewAfter!==void 0){const e=this._container.record;let n=t.viewAfter;if(n===null)e.viewAfter=null;else{const r=e.viewAfter;typeof n=="function"&&(n=n(r)),e.viewAfter={...r,...n}}}if(t.viewBefore!==void 0){const e=this._container.record;let n=t.viewBefore;if(n===null)e.viewAfter=null;else{const r=e.viewBefore;typeof n=="function"&&(n=n(r)),e.viewBefore={...r,...n}}}}return this._children&&this._children.forEach(e=>{e.commit(t)}),this}isClose(){return this._closed}_ensureOpen(){if(this._closed)throw this._descriptions&&console.warn(`stack: [${this._descriptions.join(",")}]`),new Error("Transaction already closed")}_removeChild(t){this._children.delete(t),this._mergeStates(t._states)}_mergeStates(t){if(!t||t.size===0)return;let e=this._states;return e?(t.forEach((n,r)=>{const o=this.updateState(r,n);e.set(r,o)}),e):(this._states=t,t)}}class nm extends Xd{constructor(t,e,n,r,o){super(e,r),this._store=t,this._prevStates=n,this._onClose=o,this._states=new Map,this._meta=e.record.meta}getId(){return this._container.commit.getId()}getParent(){return this}commit(t){const e=this._states,n=this._container,r=n.record.viewAfter;this._store._notifyStates("onBeforeCommitStart",n,e,r,!1,!1),super.commit(t),this._store._notifyStates("onBeforeCommitEnd",n,e,r,!1,!1);const o=new Map(this._prevStates);return this._states.forEach((s,i)=>{s===null?o.delete(i):o.set(i,s)}),this._states=o,this._description&&(n.record.description=this._description),this._meta&&(n.record.meta=this._meta),n.record.states=o,this._closed=!0,this._onClose?.(this,!1,t),this._store._commitRecord(n,e,t?.forceAmend??!1),this}rollback(){return this._ensureOpen(),this._children&&this._children.forEach(t=>{t.rollback()}),this._closed=!0,this._onClose?.(this,!0,null),this}updateState(t,e){const n=super.updateState(t,e);return this._states.set(t,n),n}getState(t){let e=this._states.get(t);return e||(e=this._prevStates.get(t)),e}_mergeStates(t){return!t||t.size===0?new Map:super._mergeStates(t)}}class rm extends Xd{constructor(t,e,n,r){if(super(e,n),!t)throw new Error("Parent transaction required");this._parent=t,this._depth=this._parent.getDepth()+1,this._onClose=r}getId(){return this._parent.getId()}getParent(){return this._parent}getState(t){const e=this._states?this._states.get(t):void 0;return e!==void 0?e:this._parent.getState(t)}commit(t){return super.commit(t),this._parent._removeChild(this),this._closed=!0,this._onClose?.(this,!1,t),this._parent??this}rollback(){return this._ensureOpen(),this._children&&this._children.forEach(t=>{t.rollback()}),this._parent._removeChild(this),this._closed=!0,this._onClose?.(this,!0,null),this._parent??this}}class om extends E.UndoManager{constructor(t,e=50){super(e),this._transactions=t;const n=this;t?.addListener({onCommitEnd:r=>{r.getDescription()&&n.addUndoOperation({description:r.getDescription(),undo:()=>(t.revert(r.getId()),()=>{t.restore(r.getId())})})}})}clear(){super.clear()}close(){this._removeLister()}}const Yd=()=>{try{return"0.6.4"}catch{return""}},qe=Object.freeze(Object.defineProperty({__proto__:null,getBuildDate:()=>{try{return"Thu Aug 21 2025"}catch{return""}},getBuildVersion:Yd},Symbol.toStringTag,{value:"Module"})),sm=`
https://www.sheetxl.com ${Yd()}`,Ri="#1976d2",im=()=>typeof window=="object"?window.location.hostname:E.CommonUtils.getOS(),Xn=Object.freeze(Object.defineProperty({__proto__:null,generateNodeId:async()=>"0",getKey:async()=>{throw new Error("getKey is not implemented in browser environment")},printBanner:async l=>{const t=l?console.log:E.CommonUtils.consoleWithNoSource,e=`%c
███████╗██╗ ██╗███████╗███████╗████████╗ ██╗ ██╗██╗
██╔════╝██║ ██║██╔════╝██╔════╝╚══██╔══╝ ╚██╗██╔╝██║
███████╗███████║█████╗ █████╗ ██║ ╚███╔╝ ██║
╚════██║██╔══██║██╔══╝ ██╔══╝ ██║ ██╔██╗ ██║
███████║██║ ██║███████╗███████╗ ██║ ██╔╝ ██╗███████╗
╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝${sm}
`;return await t(`${e}`,`font-family:monospace;color:${Ri};font-size:12px;`),Promise.resolve()},printDetails:async(l,t=!1,e=!1,n=!1)=>{let r;const o=console.log,s=[`color:${Ri};font-size:12px`];if(l.isEval()?(s.push(`font-family:monospace;color:${Ri};font-size:12px;`),r="%cEvaluation Only",s[0]="color:#E12929;font-size:12px",r+=`%c
Please visit https://my.sheetxl.com to register.`):(r=`%cLicensee: ${l.licensee()??"Invalid License"}
`,r+=`Expires: ${l.expiration()?.toLocaleDateString()??"Never"}`,l.domains()&&l.domains().length>0&&(r+=`
Domains: ${l.domains().join(", ")}`),l.cpuCount()>0&&(r+=`
Cpus: ${l.cpuCount()}`)),!n&&l.exceptions().length>0){s.push("color:red;font-size:12px"),r+=`
Exceptions:
%c`;for(let i=0;i<l.exceptions().length;i++)r+=` ${l.exceptions()[i]}`}return e&&(s.push("color:#FFA726;font-size:12px"),r+="%c",r+=`
Location: '${im()}'`,r+=`
KeyFrom: '${l.keyFrom()}'`),await o(`${r}`,...s),Promise.resolve()},setKey:async(l,t=!1)=>{throw new Error("setKey is not implemented in browser environment")}},Symbol.toStringTag,{value:"Module"})),lm=(l,t,e=126)=>((n,r,o=126)=>{let s=n.split("");for(let i=0;i<s.length;i++)s[i].charCodeAt(0)<=o&&(s[i]=String.fromCharCode((s[i].charCodeAt(0)+r)%o));return s.join("")})(l,e-t),am=l=>typeof window=="object"?window.atob(l):Buffer.from(l,"base64").toString("ascii");function se(l,t,e,n,r){return yt(t-508,n)}(function(){const t=")&5E",e="e$L5",r="*rPU",s="4uRu";function a(g,m,f,_,p){return yt(f-622,p)}function c(g,m,f,_,p){return yt(m- -260,p)}function h(g,m,f,_,p){return yt(m- -223,g)}function d(g,m,f,_,p){return yt(m- -437,f)}const u=fa();for(;;)try{if(-parseInt(h("70A6",426))/1+parseInt(c(0,337,0,0,"*rPU"))/2+-parseInt(c(0,311,0,0,t))/3*(-parseInt(d(0,133,"wj3Q"))/4)+parseInt(h(e,409))/5+-parseInt(c(0,278,0,0,"b0Sp"))/6+-parseInt(d(0,209,"bLtP"))/7+-parseInt(h(r,267))/8*(-parseInt(a(0,0,1211,0,s))/9)===430105)break;u.push(u.shift())}catch{u.push(u.shift())}})();const Gs=()=>{const l="]Wfy",t="Nns7";function n(a,c,h,d,u){return yt(a-727,u)}return typeof window===n(1282,0,0,0,"*rPU")?window[r=819,o="DXBj",yt(r-190,o)][n(1223,0,0,0,l)]:E.CommonUtils[s=t,i=1530,yt(i-905,s)]();var r,o,s,i};function Me(l,t,e,n,r){return yt(e-541,n)}const Ul=()=>{const l=")&5E",t="d3gQ";function n(r,o,s,i,a){return yt(s- -450,o)}return Gs()[n(0,l,155)](n(0,"wAgp",215))||Gs()===n(0,t,161)};function Pe(l,t,e,n,r){return yt(l-591,n)}const ja=l=>{const t="[c$g",r="DEAz",i="Gda1",d="!qWp",_="($u9";let S=E.CommonUtils[b(t,1481,1488,1471,1421)];if(Ul()||E.CommonUtils[b(r,1270,1317,1260,1326)]()){const x=qe[b(i,1464,1473,1371,1387)](),R=new Date(x),v=new Date;Math[I(97,132,182,"EKeb",150)]((v[C=d,y=-164,yt(y- -713,C)]()-R[b("!qWp",1399,1374,1393,1394)]())/864e5)>=120&&(S=[I(41,-8,-18,"[c$g",55)])}else S=[];var C,y;function I(x,R,v,T,M){return yt(M- -452,T)}function w(x,R,v,T,M){return yt(v- -335,x)}function b(x,R,v,T,M){return yt(M-845,x)}return{licensee:()=>b("$LH]",0,0,0,1411),expiration:()=>null,domains:()=>[Gs()],developerCount:()=>1,cpuCount:()=>0,type:()=>w("*rPU",0,226),isEval:()=>!0,exceptions:()=>S,isValidFor:()=>S[w("Nns7",0,192)]===0,isValid:()=>!1,features:()=>Object[b("CV8D",0,0,0,1508)]({}),keyFrom:()=>l,getBuildVersion:qe[I(0,0,0,"H#1x",208)],getBuildDate:qe[b(_,0,0,0,1413)]}};function Tn(l,t,e,n,r){return yt(t-154,r)}const It={promise:null,details:null,bannerPrinted:!1,detailsPrinted:!1,licenseKey:null,keyFrom:null};let Ai=!1,Va=!1;const $a=se(0,1155,0,"$BFF")[se(0,1062,0,"DEAz")]("")[Me(0,0,1116,"b0Sp")]((l,t)=>t+l,"");function fa(){const l=["WOHXdJSzW68","bCkTicBdTCog","W7JcGHNcLCk9W6hcKCkg","hCoBtbVcO8oEWQuE","W4NcI8kLW7ZcMmo5whpcL8oi","h0BdIrxdKMdcSIBcL8oRhMBcHG4","xmkjamk5agJcVG","WQlcQHxcRSo0aCkdtCo/WPbKW7FdKH1a","WOalW43cGSkQWQVcHmk6W517","B8kEdCkGee/cVdLYACokySowWQKKESkmwSkvndG+wSoXcG","gmkZW5jsEItcJdFdRW","rfFdQ0NcHYu","CCokW6i8WOzocWyt","W7ZdT8oTW78Hj8k7","WQ/cPSoDp2DjvaLgWRJdGmkK","WRBdTmojW7hdNmkuB1RdVh0nWQu","E8kPW50tW4L8W5u","gmoiW6/dQcZdKx3cImk4","zmkhtmkPhv7cOsj8C8kdFCoD","gYhdPL1ThdhdGSkBWQNdReC","iCkHW4PyWPtcOYNcQWXyfG","jSkRW5bFWPtcQaNcJXfdhCodWQ1x","vmkTW5msW4LRW5hdNSkM","e8k/W4v5EZpcJdxdRSkn","cCkMbJxdPmoEWP/dKCoEpG","gCkZW5j/FwJdJLdcPa","W5xcG2JcGLZdMN3dP8oJDZRdQSkTeGzO","d8kJW5v0","tf7dIIRcKuqQW6lcRmkrqSkwW77dQG","vMBcMmo1pmow","W7BcGMHWbmo+","W7ZdU8ozeHCeW5G","hSocFSotW5pcJWtdTCkUbcJdPq","umkLx8oSqq","sNhcMCo/iContq","j8ofwGhcMSodWPmxD8oheMG","Dmosy2KsEYLX","WQ9uvt/cISkIEG","W7VdTmkytcSqErTAWQ7dRCkB","mSk8W4TtWPtcTX8","tCkKz8o9W4/dHSoBWPTCp8o/W4NdJW","WRhdO8kAifBcRa4","nCoMW75ynqbDw8kBc14fdG","WOajW4ZcG8oRW5pcP8kxW4n8hSoT","W59CWONdSSkSWO3cGmkDW7n/c8on","pmodzSoXvSoB","ymofWPLpb8oJbXRcJCo4","WPe3WP8WW4TKwa","WQ8FW45rumoL","W405WO9FWPlcQtddNhBdPW","W4RdUmo9gHuz","WRuId1aSWOZcTW","WRj5hZChW6/cKmkpWRZdJW","W63dL3KzcvpcVs/dGd4Hw8kl","WRbKeJCfW7RcJCkfWPZdKYuOCCky","WPXZwCk3WRtcRCofWOVcR1ZcPmoq","WPi1WPW0W5y","zmk5W5GBW4n7","W40OWPPMWOpcOW","xLddHflcLJm","WPddNqFcUSoqWQy","WQJcJCo+CtWuxSkwA8kH","n0RdNHhdLx/cPfBcI8oTbdlcLqVdUtmYECkovSoTWQj4W5tcUrxcImo3W7u","BSkTW5ms","dshdQLzJpq","u2ZcUIzHWRJcKshdUmol","o8oIW75rjbO","W7tcIgjYoCoY","WPtdP8oCW5/dNmkCD1FdL3jzWOZdHW1/W5JdJSo0","xKZdGepcLZJcUSo3k8osW6Csp8oDhrT7WRBdPa","uxhcRqfKWQxcLcRdKSozAsO","W6e9WPXeWOJcRIpdKhBdRI8nEa","sbxcIrldS2dcJJdcRW","eaNcJNNcI2CXW7hcTmkD","h8oqxcZcKCodWRaFDCoA","tSonWQxcOwlcQmoMWRXOW7D0WQaVygldTG","guldKXRdNN7cKqtcJmoSbhFcHW","c8o3m8k5WP/cMW","B8kfhmk4hg/cUIj8FG","WOZcOrFcJCoTaCklcComWO1MW63dIrnAW7tdM8ky","fmoqrG/cGmoF","W7ddKmkUiMiPCCkOwSkqW5y","wmoqWP9IdmoJiHBcLCoQwgRdHa","jtZcR39WoZhdMmkjWQxcOh8yW74","xwBcGSoqpCoxrmkeW5ldUJ/dUSk9kCoE","W5ddQwCfa1xcGGldTG","WRrdrrFcJa","z8oHwfLJWOe9WRmZja","gCoOWRbDnqS","lmkEW6nzqrJcPq","u2ZcQsPJWRu","WOX+W5GAWRlcJWZdHLldVW","oL7dK8oMdaa","WRBdTmojW7hdNmkuB1RdRNKlWRpdHWf0","CCo7t312WOa","y8ofWPLQc8o7fq","W6BdHuewaeJcIq","WORdKrRcTmoqW64","uCoIWPzjW6VdOmkzWOu8WQCW","oSoQWOriWPC8WOJdK8koD8k8g8o4","W5XCWONdKCkWWOJcN8kPW4v3eCoCWPaH","AuVcQtf+WRJcLXhdIq","cCoGpSkIWOJcVmkcWRrHc8ok","WOtdLrRcVCobW7tcKCovxKVcMdlcNW","WPNcVCoPWRtdSq","WR3dTmotW5tdNCkv","rCo1WOTgW7BdJSklWRSGWQSSW4PBuq","tvxdMJJcR0eTW5O","q8kBiSkJauS","WO7dOCopW5RdH8kj","CCoJW7mIWObEbs0P","ySocCxu","W6/cMg7cK0ldLMRcTmoDAJFdOCkq","fCoLaCkJhsmYW6hcUq","qNVcLsXYWQ3cLcVdKSozAsRcHrFcM8oIWO8a","fNdcTIzIW6ZcLIhdOSkyCc7cOGdcGCkR","WOflv8o2g8kU","WQCvW41xtCoJWQq","BSotWRTQdSo+aG","mCoBxGNcMmoEWRvwDCoafh92W6GLW7G3W6aQCa","DCkEdCkGdeRcQsr4","W7pdRCoUbW4FW5NcHW","WQzTxq","hXFcKXhcTXxcVCoBf8ol","WQqFW5rYqCo5WRzsW6nv","WRmpW5nE","vmkLx8oJwuLNWRVdQthdJKG","xwBcGSoDgW","mg1PWO5ajW","WRldQCkdbvRcTHZdRCotWO4","EN3cUIz/WR/cNw7dS8oaBsBcPaBcJCkRWO4jiW","lSkHW4DFWONcRrxcSq","WOZcTmoYWPFdQSkXW5JcVwmHW5O9DW","CComW7e5WOfE","zmkWWQehAujmx8kQeNm6","gmooW7ZdRsVdGq","WQqFW5r0uCoKWRTFW4Thg8oh","tSkngSkPcuhcUdvVrmkfz8oDWQ8","WPu8WOa4","W7ddUmkpAZakCdr7WRy","tf7dIIRcKuqQ","W5C+WQbcWOlcVW","dSoqW7JdPsNdNhJdNmkXDISMcmk0W796o8oSWOPY","W5rqWP7dLCk3WPFcICkC","WQ1cAq/cMCkH","WRjEs8o4aCkYW5FcU3JcMZFcOW","mCk5WOz4EI3cIbFdPCkhW4q2W4BdQ8klW6CMnSkAAq","WPBdHHVcVSonW7xcPa","imkcncLFpx5Bst/cTcNcRq","D8o8vqv7WOOEWR8IjmoH","WQnbgCo9bSkLW7dcTgxcKhlcOxT2sHeIWRvQ","gCkGW44uWQ3cLCkZWOuMWQaJW7S","bmorW6pdQtddM3xcImkK","WPFcRmoyuqy/D8kcqSkrW5JdU1RdPJNdL8kctWu","D0VdJclcLLW","zmkXWQrqgb5cB8k4","WQBdPmksjeVcUHe","rmoMWP5l","m8kUfZNdUSoEWRldM8oelc1RW5a","k8oBW6ddOZhdNq","WO3dKq3cLCowW6NcRa","t0xdI0JcHJlcHSoAlSovW7asnq","h8oqxcRcGCoEWR0st8ombwLXW7qU","nCobya","qmkYqSoSrgfXWP/dUJhdJe9yW6i","yCosWOHUgmoY","umkkEKveW7WjaGfW","WOfbwSoWa8kUW7RcQwi","W7NcLw7cIKldIG","sxFcL8oGpmonF8kjW7ddTW","zcO6W58cDSoKW5ySuM8pvW","WQFdSmorW4BdJmk7Dq","BCkPW5CBW5PQ","xvhdLK4","qCkFDvLvW70ogrX2WOpcTtu","w8ozDhWlycGIzJhcHcNcSSoTFG7cVauRumoVWPBcSXrCWQdcIa","i1JdPCo4","jfpdJX3dLxJcHrpcKCoJgx7cKa","hConwahcHSoo","WRbdrrq","W63dVCoWW6mIpCk7pJyHhSk9khP/EHZcRLe","W4HmWO7dMa","E8ozDhWlycG","WOG2WR4YW4zY","nColACo/tSkt","W6hcUSohCaZdUKxdHCoSWQZcSt9O","W7pcHCkNW7xcGCoPugJcNa","u8klAf8","v8oXWPnsW7RdPmko","WPWmW4fAtCoPWRzpW6O","W6/cMx/cKutdGe7cRSo5Ca","imoMW6nMiHTJxCkxaq","p8oVWOfiWPbbW7RdN8kxBSkA","uxhcTYzJWQ3cJcVdMmoxEsRcNWC","DCosDLycCa","w0VdKIlcJa","iJ3dUvj1mtdcLSkEWQ/dRvuuW6K","W7RdT8oMW6q","W7pcNr/cOSk8W7xcKSkx","WR5YmJ0tW74"];return(fa=function(){return l})()}function Yn(l,t,e,n,r){return yt(n- -961,t)}class cm{constructor(){const e="$LH]";function n(r,o,s,i,a){return Me(0,0,i- -725,a)}this[n(0,0,0,415,"($u9")][n(0,0,0,485,e)]=null}async[Tn(0,784,0,0,"EKeb")](t,e=!1){const g="I^RK",m="4uRu",b="kD1l",x="CV8D",R="DEAz",T="dJ7W",F="4uRu",N="vPt$";if(!t||t[B(1523,1572,1554,"##1)")](U(621,646,"4!Tp",634))||t[D("$BFF",1255,1356,1268,1278)](D("vLwY",1171,1263,1302,1236))||t[B(1442,1379,1378,g)](U(512,650,"d3gQ",607))||t[D(m,1143,1218,1286,1240)](D("70A6",1391,1344,1367,1348)))return Ai=!0,await this[z(-348,"dJ7W",-279,-249)](!0);function B(j,H,W,V,$){return Me(0,0,W-349,V)}function U(j,H,W,V,$){return se(0,V- -432,0,W)}function D(j,H,W,V,$){return Tn(0,$-539,0,0,j)}if(Ai=!1,!e&&It[z(-111,"*U&x",-107,-205)]){const j=await this[D("B&#O",0,0,0,1203)]();if(j[U(0,0,"CZ9L",670)]()&&!j[U(0,0,"LHOe",575)]())return j}function z(j,H,W,V,$){return Me(0,0,V- -1305,H)}It[B(0,0,1527,b)]=t,It[P(-188,-170,-126,"4!Tp")]=P(-158,-216,-154,"EKeb"),It[P(-234,-163,-191,x)]=null,It[P(-272,-226,-239,R)]=null;const k=await this[B(0,0,1377,"O9ng")]();if(!k[U(0,0,"CV8D",692)]())throw await this[U(0,0,"vPt$",624)](!0),new Error(z(0,T,0,-124));function P(j,H,W,V,$){return se(0,W- -1292,0,V)}if(E.CommonUtils[U(0,0,"!h[j",573)]()&&(await Xn[P(0,0,-228,F)](t,e),!(await this[P(0,0,-300,"TECB")]())[z(0,N,0,-235)]()))throw await this[P(0,0,-151,T)](!0),new Error(D("H#1x",0,0,0,1310));return k}async[se(0,1126,0,"[c$g")](t=!1){const e="4!Tp",i="CZ9L",a="70A6",h="Nns7",d="1TsQ",u="RzYp",g="OvMJ",m="LH%L",p="*U&x",C="VT$[",I="$BFF",x="bLtP",v="DXBj",F="zs#a",O=")&5E",k=")&5E",j="TECB",W="vLwY",nt="!h[j";if(It[st(1463,1389,1399,1372,"DEAz")])return It[st(1520,1584,1499,1519,e)];if(!this[q(1384,1419,1325,"B&#O",1361)][rt(-220,"[c$g",-141)]&&(this[q(1415,1304,1382,i,1336)][rt(-139,a,-159)]=new Error("FV")),It[X(648,"*rPU",688)])return It[J(718,729,745,h)];function q(Q,ct,ft,Z,ot){return Pe(ot-162,0,0,Z)}let K=null;function rt(Q,ct,ft,Z,ot){return Pe(ft- -1236,0,0,ct)}It[rt(-183,"DXBj",-108)]=new Promise(Q=>{K=Q});let mt,G=null;const lt=async(Q,ct)=>{function ft(Z,ot,ut,dt,it){return q(0,0,0,it,ot- -452)}try{const Z=(ut=>{let dt=ut;const it=dt[dt.length-1],St=it.charCodeAt(0)-52;if(dt=dt.substring(0,dt.length-1),dt=dt.split("").reverse().join(""),dt=am(dt),dt=dt.trim(),dt[dt.length-1]!==it)throw new Error;dt=dt.substring(0,dt.length-1),dt=lm(dt,St);try{dt.startsWith("{")||(dt="{"+dt);const gt=JSON.parse(dt),xt={licensee:gt.l,domains:gt.d,nodeId:gt.n,expiry:gt.e,developerCount:gt.dc,cpuCount:gt.cc,type:gt.t};return gt.f&&(xt.features=gt.f),xt}catch{throw new Error("Invalid license key.")}})(ct),ot=((ut,dt,it)=>{const St="O9ng",xt="dJ7W";function Lt(ie,Wt,Mt,jt,ne){return yt(ne- -597,jt)}function Ut(ie,Wt,Mt,jt,ne){return yt(Wt-375,ie)}function Ht(ie,Wt,Mt,jt,ne){return yt(Wt-505,jt)}function Re(ie,Wt,Mt,jt,ne){return yt(jt-229,ne)}return{licensee:()=>ut[Ht(0,1146,0,"Gda1")],expiration:()=>new Date(ut[Ht(0,1171,0,"I^RK")]),domains:()=>ut[Ht(0,1120,0,"O9ng")]??[],developerCount:()=>ut[Ut("[c$g",1010)]??1,cpuCount:()=>ut[Re(0,0,0,729,"]Wfy")]??0,type:()=>ut[Lt(0,0,0,"DEAz",39)]??Ht(0,1155,0,"dJ7W"),exceptions:()=>dt,isValidFor:ie=>{return!(dt?.[Wt=xt,Mt=218,Re(0,0,0,Mt- -668,Wt)]>0);var Wt,Mt},isValid:()=>!0,isEval:()=>!1,features:()=>Object[Re(0,0,0,791,"my]0")](ut[Ht(0,1124,0,"vPt$")]??{}),keyFrom:()=>it,getBuildVersion:qe[Ut("$LH]",966)],getBuildDate:qe[Lt(0,0,0,St,37)]}})(Z,await(async ut=>{const it="($u9",Ut="H#1x",Ht="hd28",Re="Gda1",Mt="##1)",jt="bJ@o",$g="J#cY",Gg="($u9",Jg="O9ng",qg="1TsQ";function qn(me,ke,an,kr,cn){return yt(ke- -513,me)}const Lo=ut[Or(744,"VT$[",745,745,755)],Uo=ut[Or(767,it,842,733,804)]?new Date(ut[Kn(198,318,280,288,Ut)]):null,xi=ut[Or(688,Ht,818,788,781)],Oe=[];function zo(me,ke,an,kr,cn){return yt(ke- -78,cn)}if(Uo?isNaN(Uo)?Oe[Kn(302,199,304,297,Mt)](Or(851,jt,813,872,793)):Uo<new Date&&Oe[Kn(433,539,457,483,"LH%L")](zo(0,550,0,0,"($u9")+Uo[Kn(498,509,388,424,it)]()):Oe[qn(Re,-34)](qn("[c$g",3)),E.CommonUtils[Po(1557,"4uRu",1700,1568,1630)]()){if(!xi)return Oe[qn($g,-39)](zo(0,482,0,0,"wj3Q")),Oe;const me=await Xn[qn("($u9",-22)]();me!==xi&&Oe[Po(1557,"bLtP",1529,1513,1600)](Or(665,"I^RK",748,747,740)+xi+qn(Gg,100)+me)}else{if(Ul())return Oe;if(Lo&&Lo[Po(1538,"H#1x",1655,1481,1569)]!==0){let me=!1;const ke=Gs();for(let an=0;!me&&an<Lo[Po(1560,"wAgp",1634,1688,1605)];an++)me=ke[Kn(237,324,248,313,"H#1x")](Lo[an]);!me&&Oe[zo(0,447,0,0,qg)](Kn(281,259,314,306,"my]0"))}else Oe[zo(0,545,0,0,Jg)](qn("1TsQ",131))}function Po(me,ke,an,kr,cn){return yt(cn-991,ke)}function Kn(me,ke,an,kr,cn){return yt(kr- -188,cn)}function Or(me,ke,an,kr,cn){return yt(cn-216,ke)}return Oe})(Z),Q);return ot[ft(0,851,0,0,"!h[j")]()[ft(0,829,0,0,"hd28")]>0&&(mt=ot),ot}catch{mt=(ot=>{const ut="bLtP";function it(gt,xt,Lt,Ut,Ht){return yt(xt-98,gt)}function St(gt,xt,Lt,Ut,Ht){return yt(Ut- -665,gt)}return{licensee:()=>null,expiration:()=>null,domains:()=>[],developerCount:()=>0,cpuCount:()=>0,type:()=>it("bLtP",578),exceptions:()=>{return[(gt=588,xt=ut,it(xt,gt-17)+ot+"'")];var gt,xt},isValidFor:gt=>!1,isValid:()=>!1,isEval:()=>!1,features:()=>Object[St("%Fm@",0,0,-39)]({}),keyFrom:()=>ot,getBuildVersion:qe[St("Nns7",0,0,-83)],getBuildDate:qe[St("kD1l",0,0,-129)]}})(Q)}};function st(Q,ct,ft,Z,ot){return Pe(ft-263,0,0,ot)}It[st(0,0,1375,0,d)]&&(G=await lt(It[rt(0,u,-110)],It[st(0,0,1375,0,"1TsQ")]));let tt=!1;function J(Q,ct,ft,Z,ot){return se(0,ct- -311,0,Z)}if(Ai&&(tt=!0,G=ja(J(0,770,0,g))),!G)if(E.CommonUtils[q(0,0,0,m,1262)]()){if(!G){const Q=process[J(0,817,0,"A9SG")],ct=Q[q(0,0,0,p,1404)]||Q[rt(0,d,-58)]||Q[st(0,0,1508,0,C)]||Q[q(0,0,0,"LH%L",1320)];ct&&(G=await lt(q(0,0,0,I,1345),ct))}if(!G){const Q=await Xn[st(0,0,1346,0,x)]();Q&&(G=await lt(J(0,715,0,v),Q))}!G&&(tt=!0)}else{if(!G)try{const Q=await fetch("./"+$a);let ct=null;if(Q[X(707,m,731,773,781)]===200){const ft=(await Q[rt(0,F,-150)]())[rt(0,O,-152)](`
`);for(let Z=0;!ct&&Z<ft[rt(0,"e$L5",-81)];Z++){const ot=ft[Z][X(572,u,651,573,583)]();ot[q(0,0,0,"Nns7",1420)]("#")||ot[rt(0,"O9ng",-99)]===0||(ct=ot)}}if(ct){const ft=rt(0,"1TsQ",-122)+$a+"')";G=await lt(ft,ct)}}catch{}!G&&Ul()&&(tt=!0)}function X(Q,ct,ft,Z,ot){return Yn(0,ct,0,ft-1135)}if(!G&&tt&&(G=ja(q(0,0,0,"my]0",1334))),!G&&mt&&(G=mt),!G&&(G={licensee:()=>null,expiration:()=>null,domains:()=>[],developerCount:()=>0,cpuCount:()=>0,type:()=>null,isEval:()=>!1,exceptions:()=>[rt(0,"wAgp",3)],isValidFor:Q=>!1,isValid:()=>!1,features:()=>Object[st(0,0,1524,0,"*rPU")]({}),keyFrom:()=>rt(0,"e$L5",-59),getBuildVersion:qe[J(0,702,0,"bJ@o")],getBuildDate:qe[X(0,"$LH]",687)]}),It[rt(0,k,-7)]=G,K(G),t&&!(It[rt(0,"LH%L",14)]&&It[J(0,795,0,"Gda1")])&&(tt||G[q(0,0,0,j,1255)]()[X(0,W,656)]>0||G[q(0,0,0,x,1287)]()?.pb)){if(Va)return void setTimeout(()=>{var Q,ct;this[Q=254,ct=nt,q(0,0,0,ct,Q- -997)](!1,!1)},8e3);await this[rt(0,O,7)](!1,!1)}return It[rt(0,"CV8D",-52)]}async[Yn(0,"H#1x",0,-428)](t){const e="CV8D",r="$LH]",s="zs#a";function i(u,g,m,f,_){return Tn(0,f- -597,0,0,u)}function a(u,g,m,f,_){return se(0,u- -381,0,f)}It[d("CZ9L",960,871,983,957)]=!0;const c=await this[h(-318,e,-373,-231,-299)]();function h(u,g,m,f,_){return Me(0,0,_- -1384,g)}function d(u,g,m,f,_){return Me(0,0,_- -135,u)}return await Xn[h(-147,"70A6",-286,-275,-247)](t),!It[a(653,0,0,")&5E")]&&(c[i("RzYp",0,0,199)]()||c[a(690,0,0,"($u9")]()[i(r,0,0,160)]>0)&&await this[d("CV8D",973,903,940,986)](t),Promise[i(s,0,0,68)]()}async[se(0,1077,0,"4uRu")](t=!1,e=!1,n=!1){const s="J#cY",h="Xc0]";function g(I,w,b,x,R){return Yn(0,b,0,I-481)}It[y(-3,"70A6",118,80)]=!0;const m=await this[y(99,"VT$[",177,103)]();function f(I,w,b,x,R){return Me(0,0,w-294,R)}var _,p,S,C;It[f(0,1436,0,0,"4!Tp")]||!(m[S=s,C=942,se(0,C- -156,0,S)]()||m[f(0,1357,0,0,"LHOe")]()[_=468,p="4!Tp",Tn(0,_- -281,0,0,p)]>0)?await Xn[g(144,0,"d3gQ")](m,t,e,n):await this[g(50,0,h)](t);function y(I,w,b,x,R){return Pe(x- -1115,0,0,w)}}async[Tn(0,785,0,0,"B&#O")](t,e){const r="wj3Q",o="DXBj",s="A9SG",i="[c$g",a="vLwY",h="zs#a";if(!t&&(It[g(661,685,"e$L5",684)]||It[g(673,568,r,647)]))return;function g(w,b,x,R,v){return Pe(R- -447,0,0,x)}function m(w,b,x,R,v){return se(0,b-110,0,v)}var f,_;function p(w,b,x,R,v){return Pe(x- -1397,0,0,w)}It[p("##1)",-170,-134)]=!0,It[f=452,_=o,Yn(0,_,0,f-894)]=!0,await this[p(s,0,-253)](t);const S=E.CommonUtils[m(0,1224,0,0,i)](),C=t||S?console[g(0,0,a,805)]:E.CommonUtils[m(0,1096,0,0,h)];var y,I;S&&C(""),await this[y=1416,I="wj3Q",Yn(0,I,0,y-1902)](t,e),C("")}[Pe(1163,0,0,"H#1x")](){return this[t=866,e="*rPU",Tn(0,t-192,0,0,e)]();var t,e}[Me(0,0,1125,"RzYp")](t){return this[e="$LH]",n=341,Yn(0,e,0,n-695)](!0,t);var e,n}[Pe(1080,0,0,"e$L5")](){const t="d3gQ";function e(n,r,o,s,i){return Me(0,0,r- -824,o)}return It[e(0,291,"wj3Q")]||It[e(0,379,t)]}[Pe(1201,0,0,"I^RK")](t){Va=!0}async[se(0,1108,0,"b0Sp")](){return this[t="wAgp",e=262,se(0,e- -889,0,t)](!0);var t,e}async[Tn(0,671,0,0,"my]0")](t,e){const n="LHOe",o=await this[s=505,i="O9ng",Me(0,0,s- -658,i)]();var s,i,a,c;return await this[a=n,c=1431,Me(0,0,c-234,a)](!0,t,e),o}async[se(0,1016,0,"1TsQ")](){var t,e;return await Xn[t=-386,e="!h[j",se(0,t- -1446,0,e)]()}}const pa=new cm;function yt(l,t){const e=fa();return yt=function(n,r){let o=e[n-=473];if(yt.vbArKj===void 0){const a=function(c,h){let d,u,g=[],m=0,f="";for(c=function(_){let p="",S="";for(let C,y,I=0,w=0;y=_.charAt(w++);~y&&(C=I%4?64*C+y:y,I++%4)?p+=String.fromCharCode(255&C>>(-2*I&6)):0)y="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=".indexOf(y);for(let C=0,y=p.length;C<y;C++)S+="%"+("00"+p.charCodeAt(C).toString(16)).slice(-2);return decodeURIComponent(S)}(c),u=0;u<256;u++)g[u]=u;for(u=0;u<256;u++)m=(m+g[u]+h.charCodeAt(u%h.length))%256,d=g[u],g[u]=g[m],g[m]=d;u=0,m=0;for(let _=0;_<c.length;_++)u=(u+1)%256,m=(m+g[u])%256,d=g[u],g[u]=g[m],g[m]=d,f+=String.fromCharCode(c.charCodeAt(_)^g[(g[u]+g[m])%256]);return f};yt.sWZulW=a,l=arguments,yt.vbArKj=!0}const s=n+e[0],i=l[s];return i?o=i:(yt.STUJxL===void 0&&(yt.STUJxL=!0),o=yt.sWZulW(o,r),l[s]=o),o},yt(l,t)}const zl=(l,t)=>{const e=[];for(let n=0;n<l.length;n++){const r=l[n];e.push({x:r.x+t.x,y:r.y+t.y})}return e},Pl=(l,t)=>{if(!l)return{...t};if(!t)return{...l};let e=Math.min(l.x,t.x),n=Math.min(l.y,t.y);return{x:e,y:n,width:Math.max(l.width+l.x,t.width+t.x)-e,height:Math.max(l.height+l.y,t.height+t.y)-n}},Ti=l=>[{x:l.x,y:l.y},{x:l.x+l.width,y:l.y},{x:l.x+l.width,y:l.y+l.height},{x:l.x,y:l.y+l.height}],Hl=l=>{let t=Number.MAX_SAFE_INTEGER,e=Number.MAX_SAFE_INTEGER,n=Number.MIN_SAFE_INTEGER,r=Number.MIN_SAFE_INTEGER;for(let o=0;o<l.length;o++){let s=l[o];t=Math.min(t,s.x),e=Math.min(e,s.y),n=Math.max(n,s.x),r=Math.max(r,s.y)}return{x:t,y:e,width:n-t,height:r-e}},Mi=(l,t,e)=>{if(!e){const i=Hl(l);e={x:i.x+i.width/2,y:i.y+i.height/2}}l=zl(l,{x:-e.x,y:-e.y});const n=t*Math.PI/180,r=Math.sin(n),o=Math.cos(n),s=[];for(let i=0;i<l.length;i++){const a=l[i],c=o*a.x-r*a.y,h=r*a.x+o*a.y;s.push({x:c,y:h})}return l=zl(s,{x:e.x,y:e.y})},Qd=(l,t,e,n,r,o,s,i,a=!0)=>{if(l===e&&t===n||r===s&&o===i)return!1;let c=(i-o)*(e-l)-(s-r)*(n-t);if(c===0)return!1;let h=((s-r)*(t-o)-(i-o)*(l-r))/c,d=((e-l)*(t-o)-(n-t)*(l-r))/c;return(!a||!(h<0||h>1||d<0||d>1))&&{x:l+h*(e-l),y:t+h*(n-t)}},Qt=(l,t,e=!0)=>Qd(l.p1.x,l.p1.y,l.p2.x,l.p2.y,t.p1.x,t.p1.y,t.p2.x,t.p2.y,e),Ho=l=>({top:{p1:l[0],p2:l[1]},left:{p1:l[3],p2:l[0]},right:{p1:l[1],p2:l[2]},bottom:{p1:l[2],p2:l[3]}}),Ga=(l,t,e)=>{let n=e*Math.PI/180,r=Math.sin(n),o=Math.cos(n);return{x:l*o-t*r,y:l*r+t*o}},hn=(l,t)=>{let e=l.p2.x-t.x,n=l.p2.y-t.y;const r=Ga(e,n,90);e=r.x+t.x,n=r.y+t.y;let o=l.p1.x-t.x,s=l.p1.y-t.y;const i=Ga(o,s,90);return o=i.x+t.x,s=i.y+t.y,{p1:{x:o,y:s},p2:{x:e,y:n}}},hm=Object.freeze(Object.defineProperty({__proto__:null,angleToPoints:(l,t)=>{const e=(180-l)/180*Math.PI,n=Math.abs(t.width*Math.sin(e))+Math.abs(t.height*Math.cos(e)),r=Math.sin(e)*n/2,o=Math.cos(e)*n/2,s=t.width/2,i=t.height/2;return{x1:s-r,y1:i-o,x2:s+r,y2:i+o}},boundsToPoints:Ti,centerPoint:l=>({x:l.width/2+l.x,y:l.height/2+l.y}),clipToOuterRect:(l,t,e=0)=>{if(e<0&&(e+=360),e>90&&e<=180?e+=180:e>180&&e<=270&&(e-=180),e===0||e===180)return{height:t.height,width:t.width};if(e===90||e===270)return{height:t.width,width:t.height};let n=Ti({...t,x:0,y:0}),r=Ti({...l,x:0,y:0});r=zl(r,{x:t.width/2-l.width/2,y:t.height/2-l.height/2}),r=Mi(r,e);let o=Ho(r),s=Ho(n);if(e>90){const a=Qt(o.top,s.top);if(a){const h=a,d=Qt(o.bottom,s.bottom,!1)||r[3];r[0]=Qt(o.top,hn(o.bottom,d),!1)||r[0],r[1]=h,r[3]=d,r[2]=Qt(o.bottom,hn(o.top,h),!1)||r[2],o=Ho(r)}const c=Qt(o.top,s.left);if(c){const h=c,d=Qt(o.bottom,s.right,!1)||r[2];r[0]=h,r[1]=Qt(o.top,hn(o.bottom,d),!1)||r[1],r[3]=Qt(o.bottom,hn(o.top,h),!1)||r[3],r[2]=d}}else if(e<90){const a=Qt(o.top,s.top);if(a){const h=a,d=Qt(o.bottom,s.bottom,!1)||r[2];r[0]=h,r[1]=Qt(o.top,hn(o.bottom,d),!1)||r[1],r[3]=Qt(o.bottom,hn(o.top,h),!1)||r[3],r[2]=d,o=Ho(r)}const c=Qt(o.top,s.right);if(c){const h=c,d=Qt(o.bottom,s.left,!1)||r[3];r[0]=Qt(o.top,hn(o.bottom,d),!1)||r[0],r[1]=h,r[3]=d,r[2]=Qt(o.bottom,hn(o.top,h),!1)||r[2]}}r=Mi(r,-e);const i=Hl(r);return{width:i.width,height:i.height}},findIntersectMath:(l,t,e,n)=>{let r=Qd(l.x,l.y,t.x,t.y,5e4,0,-5e4,0);return r&&(e=Math.min(e,r.x),n=Math.max(n,r.x)),{min:e,max:n}},leastSquaresSlopeAndIntercept:l=>{let t=0,e=0,n=0,r=0,o=0,s=0,i=0,a=l.length;if(a===0)return{m:0,b:0};if(a===1)return{m:1,b:l[0]};for(let h=0;h<a;h++)s=h+1,i=l[h],i==null||isNaN(i)||(t+=s,e+=i,r+=s*s,n+=s*i,o++);const c=(o*n-t*e)/(o*r-t*t);return{m:c,b:e/o-c*t/o}},minBoundingRect:Hl,rotatePoints:Mi,unionBounds:Pl},Symbol.toStringTag,{value:"Module"}));class _t{constructor(t,e,n){this._root=Fi,this._size=0,this._maxNodeSize=n>=4?Math.min(n,256):32,this._compare=e||_t.defaultComparator,t&&this.setPairs(t)}get size(){return this._size}get length(){return this._size}get isEmpty(){return this._size===0}clear(){this._root=Fi,this._size=0}forEach(t,e){return e!==void 0&&(t=t.bind(e)),this.forEachPair((n,r)=>t(r,n,this))}forEachPair(t,e){const n=this.minKey(),r=this.maxKey();return this.forRange(n,r,!0,t,e)}get(t,e){return this._root.get(t,e,this)}set(t,e,n){this._root.isShared&&(this._root=this._root.clone());const r=this._root.set(t,e,n,this);return r===!0||r===!1?r:(this._root=new mo([this._root,r]),!0)}has(t){return this.forRange(t,t,!0,void 0)!==0}delete(t){return this.editRange(t,t,!0,_t.DeleteRange)!==0}with(t,e,n){const r=this.clone();return r.set(t,e,n)||n?r:this}withPairs(t,e){const n=this.clone();return n.setPairs(t,e)!==0||e?n:this}withKeys(t,e){const n=this.clone();let r=!1;for(let o=0;o<t.length;o++)r=n.set(t[o],void 0,!1)||r;return e&&!r?this:n}without(t,e){return this.withoutRange(t,t,!0,e)}withoutKeys(t,e){const n=this.clone();return n.deleteKeys(t)||!e?n:this}withoutRange(t,e,n,r){const o=this.clone();return o.deleteRange(t,e,n)===0&&r?this:o}filter(t,e){const n=this.greedyClone();let r;return n.editAll((o,s,i)=>{if(!t(o,s,i))return r=_t.DeleteValue}),!r&&e?this:n}mapValues(t){const e=this.greedyClone();return e.editAll((n,r,o)=>t(r,n,o)),e}reduce(t,e){let n,r=0,o=e;const s=this.entries(this.minKey());for(;!(n=s.next()).done;)o=t(o,n.value,r++,this);return o}entries(t,e){const n=this.findPath(t);if(n===void 0)return Qn();let{nodeQueue:r,nodeIndex:o,leaf:s}=n,i=e!==void 0?1:0,a=t===void 0?-1:s.indexOf(t,0,this._compare)-1;return Qn(()=>{t:for(;;)switch(i){case 0:if(++a<s.keys.length)return{done:!1,value:[s.keys[a],s.values[a]]};i=2;continue;case 1:if(++a<s.keys.length){const h=s.keys[a],d=s.values[a];return e?(e.done=!1,e.value[0]=h,e.value[1]=d,e):{done:!1,value:[h,d]}}i=2;case 2:for(var c=-1;;){if(++c>=r.length){i=3;continue t}if(++o[c]<r[c].length)break}for(;c>0;c--)r[c-1]=r[c][o[c]].children,o[c-1]=0;s=r[0][o[0]],a=-1,i=e!==void 0?1:0;continue;case 3:return Wl}})}entriesReversed(t,e,n){if(t===void 0&&(n=void 0,(t=this.maxKey())===void 0))return Qn();let{nodeQueue:r,nodeIndex:o,leaf:s}=this.findPath(t)||this.findPath(this.maxKey());de(!r[0]||s===r[0][o[0]],"wat!");let i=s.indexOf(t,0,this._compare);!n&&i<s.keys.length&&this._compare(s.keys[i],t)<=0&&i++;let a=e!==void 0?1:0;return Qn(()=>{t:for(;;)switch(a){case 0:if(--i>=0)return{done:!1,value:[s.keys[i],s.values[i]]};a=2;continue;case 1:if(--i>=0){const h=s.keys[i],d=s.values[i];return e?(e.done=!1,e.value[0]=h,e.value[1]=d,e):{done:!1,value:[h,d]}}a=2;case 2:for(var c=-1;;){if(++c>=r.length){a=3;continue t}if(--o[c]>=0)break}for(;c>0;c--)r[c-1]=r[c][o[c]].children,o[c-1]=r[c-1].length-1;s=r[0][o[0]],i=s.keys.length,a=e!==void 0?1:0;continue;case 3:return Wl}})}findPath(t){let e,n,r=this._root;if(r.isLeaf)e=Ja,n=Ja;else{e=[],n=[];for(let o=0;!r.isLeaf;o++){if(e[o]=r.children,n[o]=t===void 0?0:r.indexOf(t,0,this._compare),n[o]>=e[o].length)return;r=e[o][n[o]]}e.reverse(),n.reverse()}return{nodeQueue:e,nodeIndex:n,leaf:r}}diffAgainst(t,e,n,r){if(t._compare!==this._compare)throw new Error("SortedMap: Comparators are not the same.");if(this.isEmpty||t.isEmpty)return this.isEmpty&&t.isEmpty?void 0:this.isEmpty?n===void 0?void 0:_t.stepToEnd(_t.makeDiffCursor(t),n):e===void 0?void 0:_t.stepToEnd(_t.makeDiffCursor(this),e);const{_compare:o}=this,s=_t.makeDiffCursor(this),i=_t.makeDiffCursor(t);let a=!0,c=!0,h=_t.compare(s,i,o);for(;a&&c;){const d=_t.compare(s,i,o),{leaf:u,internalSpine:g,levelIndices:m}=s,{leaf:f,internalSpine:_,levelIndices:p}=i;if(u||f){if(h!==0){if(d===0){if(u&&f&&r){const S=u.values[m[m.length-1]],C=f.values[p[p.length-1]];if(!Object.is(S,C)){const y=r(s.currentKey,S,C);if(y&&y.break)return y.break}}}else if(d>0){if(f&&n){const S=f.values[p[p.length-1]],C=n(i.currentKey,S);if(C&&C.break)return C.break}}else if(e&&u&&h!==0){const S=u.values[m[m.length-1]],C=e(s.currentKey,S);if(C&&C.break)return C.break}}}else if(!u&&!f&&d===0){const S=g.length-1,C=_.length-1,y=g[S][m[S]];if(_[C][p[C]]===y){h=0,a=_t.step(s,!0),c=_t.step(i,!0);continue}}h=d,d<0?a=_t.step(s):c=_t.step(i)}return a&&e?_t.finishCursorWalk(s,i,o,e):c&&n?_t.finishCursorWalk(i,s,o,n):void 0}static finishCursorWalk(t,e,n,r){const o=_t.compare(t,e,n);if(o===0){if(!_t.step(t))return}else o<0&&de(!1,"cursor walk terminated early");return _t.stepToEnd(t,r)}static stepToEnd(t,e){let n=!0;for(;n;){const{leaf:r,levelIndices:o,currentKey:s}=t;if(r){const i=e(s,r.values[o[o.length-1]]);if(i&&i.break)return i.break}n=_t.step(t)}}static makeDiffCursor(t){const{_root:e,height:n}=t;return{height:n,internalSpine:[[e]],levelIndices:[0],leaf:void 0,currentKey:e.maxKey()}}static step(t,e){const{internalSpine:n,levelIndices:r,leaf:o}=t;if(e===!0||o){const s=r.length;if(e===!0||r[s-1]===0){const i=n.length;if(i===0)return!1;const a=i-1;let c=a;for(;c>=0;){if(r[c]>0)return c<s-1&&(t.leaf=void 0,r.pop()),c<a&&(t.internalSpine=n.slice(0,c+1)),t.currentKey=n[c][--r[c]].maxKey(),!0;c--}return!1}{const i=--r[s-1];return t.currentKey=o.keys[i],!0}}{const s=n.length,i=s-1,a=n[i][r[i]];if(a.isLeaf){t.leaf=a;const c=r[s]=a.values.length-1;t.currentKey=a.keys[c]}else{const c=a.children;n[s]=c;const h=c.length-1;r[s]=h,t.currentKey=c[h].maxKey()}return!0}}static compare(t,e,n){const{height:r,currentKey:o,levelIndices:s}=t,{height:i,currentKey:a,levelIndices:c}=e,h=n(a,o);if(h!==0)return h;const d=r<i?r:i;return s.length-(r-d)-(c.length-(i-d))}keys(t,e){const n=this.entries(t,e);return Qn(()=>{const r=n.next();return r.value&&(r.value=r.value[0]),r})}values(t,e){const n=this.entries(t,e);return Qn(()=>{const r=n.next();return r.value&&(r.value=r.value[1]),r})}get maxNodeSize(){return this._maxNodeSize}minKey(){return this._root.minKey()}maxKey(){return this._root.maxKey()}clone(){this._root.isShared=!0;const t=new _t(void 0,this._compare,this._maxNodeSize);return t._root=this._root,t._size=this._size,t}greedyClone(t){const e=new _t(void 0,this._compare,this._maxNodeSize);return e._root=this._root.greedyClone(t),e._size=this._size,e}toArray(t=2147483647){const e=this.minKey(),n=this.maxKey();return e!==void 0?this.getRange(e,n,!0,t):[]}keysArray(){const t=[];return this._root.forRange(this.minKey(),this.maxKey(),!0,!1,this,0,(e,n)=>{t.push(e)}),t}valuesArray(){const t=[];return this._root.forRange(this.minKey(),this.maxKey(),!0,!1,this,0,(e,n)=>{t.push(n)}),t}toString(){return this.toArray().toString()}setIfNotPresent(t,e){return this.set(t,e,!1)}nextHigherPair(t,e){return t===void 0?this._root.minPair(e):this._root.getPairOrNextHigher(t,this._compare,!1,e)}nextHigherKey(t,e){const n=this.nextHigherPair(t,e);return n&&n[0]}nextLowerPair(t,e){return t===void 0?this._root.maxPair(e):this._root.getPairOrNextLower(t,this._compare,!1,e)}nextLowerKey(t,e){const n=this.nextLowerPair(t,e);return n&&n[0]}getPairOrNextLower(t,e){return this._root.getPairOrNextLower(t,this._compare,!0,e)}getPairOrNextHigher(t,e){return this._root.getPairOrNextHigher(t,this._compare,!0,e)}changeIfPresent(t,e){return this.editRange(t,t,!0,(n,r)=>({value:e}))!==0}getRange(t,e,n,r=67108863){const o=[];return this._root.forRange(t,e,n,!1,this,0,(s,i)=>(o.push([s,i]),o.length>r?_t.Break:void 0)),o}setPairs(t,e){let n=0;for(let r=0;r<t.length;r++)this.set(t[r][0],t[r][1],e)&&n++;return n}forRange(t,e,n,r,o){const s=this._root.forRange(t,e,n,!1,this,o||0,r);return typeof s=="number"?s:s.break}forEditRange(t,e,n,r,o,s){return this._root.forRange(t,e,n,r,this,s||0,o)}editRange(t,e,n,r,o){let s=this._root;s.isShared&&(this._root=s=s.clone());try{const i=s.forRange(t,e,n,!0,this,o||0,r);return typeof i=="number"?i:i.break}finally{let i;for(;s.keys.length<=1&&!s.isLeaf;)i||=s.isShared,this._root=s=s.keys.length===0?Fi:s.children[0];i&&(s.isShared=!0)}}editAll(t,e){return this.editRange(this.minKey(),this.maxKey(),!0,t,e)}deleteRange(t,e,n){return this.editRange(t,e,n,_t.DeleteRange)}deleteKeys(t){let e=0;for(let n=0;n<t.length;n++)this.delete(t[n])&&e++;return e}get height(){let t=this._root,e=-1;for(;t;)e++,t=t.isLeaf?void 0:t.children[0];return e}freeze(){const t=this;t.clear=t.set=t.editRange=function(){throw new Error("SortedMap: Attempted to modify when frozen.")}}unfreeze(){delete this.clear,delete this.set,delete this.editRange}get isFrozen(){return this.hasOwnProperty("editRange")}checkValid(){const t=this._root.checkValid(0,this,0);de(t===this.size,"size mismatch: counted ",t,"but stored",this.size)}}function Qn(l=()=>Wl){const t={next:l};return Symbol&&Symbol.iterator&&(t[Symbol.iterator]=function(){return this}),t}Symbol&&Symbol.iterator&&(_t.prototype[Symbol.iterator]=_t.prototype.entries),_t.prototype.where=_t.prototype.filter,_t.prototype.setRange=_t.prototype.setPairs,_t.prototype.add=_t.prototype.set;class So{get isLeaf(){return this.children===void 0}constructor(t=[],e){this.keys=t,this.values=e||Gt,this.isShared=void 0}maxKey(){return this.keys[this.keys.length-1]}indexOf(t,e,n){const r=this.keys;let o=0,s=r.length,i=s>>1;for(;o<s;){const a=n(r[i],t);if(a<0)o=i+1;else{if(!(a>0)){if(a===0)return i;if(t==t)return r.length;throw new Error("SortedMap: NaN was used as a key.")}s=i}i=o+s>>1}return i^e}minKey(){return this.keys[0]}minPair(t){if(this.keys.length!==0)return(t=t??[null,null])[0]=this.keys[0],t[1]=this.values[0],t}maxPair(t){if(this.keys.length===0)return;const e=this.keys.length-1;return(t=t??[null,null])[0]=this.keys[e],t[1]=this.values[e],t}clone(){const t=this.values,e=t===Gt?t:t.slice(0),n=this.keys.slice(0);return new So(n,e)}greedyClone(t){return this.isShared&&!t?this:this.clone()}get(t,e,n){const r=this.indexOf(t,-1,n._compare);return r<0?e:this.values[r]}getPairOrNextLower(t,e,n,r){const o=this.indexOf(t,-1,e),s=o<0?~o-1:n?o:o-1;if(s>=0){const i=this.keys[s],a=this.values[s];return r?(r[0]=i,r[1]=a,r):[i,a]}}getPairOrNextHigher(t,e,n,r){const o=this.indexOf(t,-1,e),s=o<0?~o:n?o:o+1;if(s<this.keys.length){const i=this.keys[s],a=this.values[s];return r?(r[0]=i,r[1]=a,r):[i,a]}}checkValid(t,e,n){const r=this.keys.length,o=this.values.length;return de(this.values===Gt?r<=o:r===o,"keys/values length mismatch: depth",t,"with lengths",r,o,"and baseIndex",n),de(t===0||r>0,"empty leaf at depth",t,"and baseIndex",n),r}set(t,e,n,r){let o=this.indexOf(t,-1,r._compare);if(o<0){if(o=~o,r._size++,this.keys.length<r._maxNodeSize)return this.insertInLeaf(o,t,e,n,r);{const s=this.splitOffRightSide();let i=this;return o>this.keys.length&&(o-=this.keys.length,i=s),i.insertInLeaf(o,t,e,n,r),s}}if(n!==!1){e!==void 0&&this.reifyValues(),this.keys[o]=t;let s=e;if(typeof n=="function"){const i=n(this.values[o],t,e);i!==void 0&&(s=i)}this.values[o]=s}return!1}reifyValues(){return this.values===Gt?this.values=this.values.slice(0,this.keys.length):this.values}insertInLeaf(t,e,n,r,o){if(this.keys.splice(t,0,e),this.values===Gt){for(;Gt.length<o._maxNodeSize;)Gt.push(void 0);if(n===void 0)return!0;this.values=Gt.slice(0,this.keys.length-1)}let s=n;if(typeof r=="function"){const i=r(void 0,e,n);i!==void 0&&(s=i)}return this.values.splice(t,0,s),!0}takeFromRight(t){let e=this.values;t.values===Gt?e!==Gt&&e.push(void 0):(e=this.reifyValues(),e.push(t.values.shift())),this.keys.push(t.keys.shift())}takeFromLeft(t){let e=this.values;t.values===Gt?e!==Gt&&e.unshift(void 0):(e=this.reifyValues(),e.unshift(t.values.pop())),this.keys.unshift(t.keys.pop())}splitOffRightSide(){const t=this.keys.length>>1,e=this.keys.splice(t),n=this.values===Gt?Gt:this.values.splice(t);return new So(e,n)}forRange(t,e,n,r,o,s,i){const a=o._compare;let c,h;if(e===t){if(!n||(h=(c=this.indexOf(t,-1,a))+1,c<0))return s}else c=this.indexOf(t,0,a),h=this.indexOf(e,-1,a),h<0?h=~h:n===!0&&h++;const d=this.keys,u=this.values;if(i!==void 0)for(let g=c;g<h;g++){const m=d[g],f=i(m,u[g],s++);if(f!==void 0){if(f.break!==void 0)return f;if(r===!0){if(m!==d[g]&&o._compare(m,d[g])!==0||this.isShared===!0)throw new Error("SortedMap: illegally changed or cloned in editRange.");f.delete?(this.keys.splice(g,1),this.values!==Gt&&this.values.splice(g,1),o._size--,g--,h--):f.hasOwnProperty("value")&&(u[g]=f.value)}}}else s+=h-c;return s}mergeSibling(t,e){if(this.keys.push.apply(this.keys,t.keys),this.values===Gt){if(t.values===Gt)return;this.values=this.values.slice(0,this.keys.length)}this.values.push.apply(this.values,t.reifyValues())}}class mo extends So{constructor(t,e){if(!e){e=[];for(let n=0;n<t.length;n++)e[n]=t[n].maxKey()}super(e),this.children=t}clone(){const t=this.children.slice(0);for(let e=0;e<t.length;e++)t[e].isShared=!0;return new mo(t,this.keys.slice(0))}greedyClone(t){if(this.isShared&&!t)return this;const e=new mo(this.children.slice(0),this.keys.slice(0));for(let n=0;n<e.children.length;n++)e.children[n]=e.children[n].greedyClone(t);return e}minKey(){return this.children[0].minKey()}minPair(t){return this.children[0].minPair(t)}maxPair(t){return this.children[this.children.length-1].maxPair(t)}get(t,e,n){const r=this.indexOf(t,0,n._compare),o=this.children;return r<o.length?o[r].get(t,e,n):void 0}getPairOrNextLower(t,e,n,r){const o=this.indexOf(t,0,e),s=this.children;if(o>=s.length)return this.maxPair(r);const i=s[o].getPairOrNextLower(t,e,n,r);return i===void 0&&o>0?s[o-1].maxPair(r):i}getPairOrNextHigher(t,e,n,r){const o=this.indexOf(t,0,e),s=this.children,i=s.length;if(o>=i)return;const a=s[o].getPairOrNextHigher(t,e,n,r);return a===void 0&&o<i-1?s[o+1].minPair(r):a}checkValid(t,e,n){const r=this.keys.length,o=this.children.length;de(r===o,"keys/children length mismatch: depth",t,"lengths",r,o,"baseIndex",n),de(r>1||t>0,"internal node has length",r,"at depth",t,"baseIndex",n);let s=0,i=this.children,a=this.keys,c=0;for(let d=0;d<o;d++)s+=i[d].checkValid(t+1,e,n+s),c+=i[d].keys.length,de(s>=c,"wtf",n),de(d===0||i[d-1].constructor===i[d].constructor,"type mismatch, baseIndex:",n),i[d].maxKey()!==a[d]&&de(!1,"keys[",d,"] =",a[d],"is wrong, should be ",i[d].maxKey(),"at depth",t,"baseIndex",n),d===0||e._compare(a[d-1],a[d])<0||de(!1,"sort violation at depth",t,"index",d,"keys",a[d-1],a[d]);const h=c===0;return(h||c>e.maxNodeSize*o)&&de(!1,h?"too few":"too many","children (",c,s,") at depth",t,"maxNodeSize:",e.maxNodeSize,"children.length:",o,"baseIndex:",n),s}set(t,e,n,r){const o=this.children,s=r._maxNodeSize,i=r._compare;let a=Math.min(this.indexOf(t,0,i),o.length-1),c=o[a];if(c.isShared&&(o[a]=c=c.clone()),c.keys.length>=s){let d;a>0&&(d=o[a-1]).keys.length<s&&i(c.keys[0],t)<0?(d.isShared&&(o[a-1]=d=d.clone()),d.takeFromRight(c),this.keys[a-1]=d.maxKey()):(d=o[a+1])!==void 0&&d.keys.length<s&&i(c.maxKey(),t)<0&&(d.isShared&&(o[a+1]=d=d.clone()),d.takeFromLeft(c),this.keys[a]=o[a].maxKey())}const h=c.set(t,e,n,r);if(h===!1)return!1;if(this.keys[a]=c.maxKey(),h===!0)return!0;if(this.keys.length<s)return this.insert(a+1,h),!0;{const d=this.splitOffRightSide();let u=this;return i(h.maxKey(),this.maxKey())>0&&(u=d,a-=this.keys.length),u.insert(a+1,h),d}}insert(t,e){this.children.splice(t,0,e),this.keys.splice(t,0,e.maxKey())}splitOffRightSide(){const t=this.children.length>>1;return new mo(this.children.splice(t),this.keys.splice(t))}takeFromRight(t){this.keys.push(t.keys.shift()),this.children.push(t.children.shift())}takeFromLeft(t){this.keys.unshift(t.keys.pop()),this.children.unshift(t.children.pop())}forRange(t,e,n,r,o,s,i){const a=o._compare,c=this.keys,h=this.children;let d=this.indexOf(t,0,a),u=d,g=Math.min(e===t?d:this.indexOf(e,0,a),c.length-1);if(r){if(u<=g)try{for(;u<=g;u++){h[u].isShared&&(h[u]=h[u].clone());const m=h[u].forRange(t,e,n,r,o,s,i);if(c[u]=h[u].maxKey(),typeof m!="number")return m;s=m}}finally{const m=o._maxNodeSize>>1;for(d>0&&d--,u=g;u>=d;u--)h[u].keys.length<=m&&(h[u].keys.length!==0?this.tryMerge(u,o._maxNodeSize):(c.splice(u,1),h.splice(u,1)));h.length!==0&&h[0].keys.length===0&&de(!1,"emptiness bug")}}else for(;u<=g;u++){const m=h[u].forRange(t,e,n,r,o,s,i);if(typeof m!="number")return m;s=m}return s}tryMerge(t,e){const n=this.children;return t>=0&&t+1<n.length&&n[t].keys.length+n[t+1].keys.length<=e&&(n[t].isShared&&(n[t]=n[t].clone()),n[t].mergeSibling(n[t+1],e),n.splice(t+1,1),this.keys.splice(t+1,1),this.keys[t]=n[t].maxKey(),!0)}mergeSibling(t,e){const n=this.keys.length;this.keys.push.apply(this.keys,t.keys);const r=t.children;if(this.children.push.apply(this.children,r),t.isShared&&!this.isShared)for(let o=0;o<r.length;o++)r[o].isShared=!0;this.tryMerge(n-1,e)}}const Gt=[],Wl=Object.freeze({done:!0,value:void 0}),Fi=function(){const l=new So;return l.isShared=!0,l}(),Ja=[],de=(l,...t)=>{if(!l)throw t.unshift("SortedMap:"),new Error(t.join(" "))};var dn;(dn=_t||(_t={})).DeleteValue=Object.freeze({delete:!0}),dn.Break=Object.freeze({break:!0}),dn.DeleteRange=()=>dn.DeleteValue,dn.EmptySortedMap=(()=>{const l=new dn;return l.freeze(),l})(),dn.defaultComparator=function(l,t){if(Number.isFinite(l)&&Number.isFinite(t))return l-t;let e=typeof l,n=typeof t;if(e!==n)return e<n?-1:1;if(e==="object"){if(l===null)return t===null?0:-1;if(t===null)return 1;if(e=typeof(l=l.valueOf()),n=typeof(t=t.valueOf()),e!==n)return e<n?-1:1}return l<t?-1:l>t?1:l===t?0:Number.isNaN(l)?Number.isNaN(t)?0:-1:Number.isNaN(t)?1:Array.isArray(l)?0:Number.NaN},dn.simpleComparator=function(l,t){return l>t?1:l<t?-1:0};const qa=[-1,null],dm={done:!1,value:[-1,null]};exports.Tuple=void 0,(l=>{l.Builder=class{constructor(e,n=0,r=0){this._tuples=[],this._minors=null,this._values=null,this._minorMin=Number.MAX_SAFE_INTEGER,this._minorMax=0,this._majorIndex=Number.MIN_SAFE_INTEGER,this._minorIndex=Number.MIN_SAFE_INTEGER,this._offsetMajor=0,this._offsetMinor=0,this._createList=e,this._offsetMajor=n,this._offsetMinor=r}addValues(e,n,r){if(r&&r.isIList)return this.addValue(e,n,r);Array.isArray(r)||(r=[r]),this.addValue(e,n,r[0]);const o=r.length,s=this._values;for(let i=1;i<o;i++)s.push(r[i]);return this._minorIndex=this._minorIndex+s.length-1,this}addValue(e,n,r){const o=this._majorIndex,s=this._minorIndex;if(e+=this._offsetMajor,n+=this._offsetMinor,e<o||e===o&&n<=s)throw new t(`major: ${e}, minor: ${n}, prevMajor: ${this._majorIndex}, prevMinor: ${this._minorIndex}`);let i=this._minors;if(e!==o){if(i){this._minorMin=Math.min(this._minorMin,i[0][0]);const a=i[i.length-1];this._minorMax=Math.max(this._minorMax,a[0]+a[1].length-1)}this._minors=i=[],this._tuples.push([e,i]),this._majorIndex=e}if(r&&r.isIList){n===s+1&&o!==e&&this._values;const a=r;i.push([n,a]),n=n+a.length-1}else{let a=null;n!==s+1||o!==e?(this._values=a=[],i.push([n,a])):a=this._values,a.push(r)}return this._minorIndex=n,this}build(){const e=this._tuples;if(e.length===0)return null;const n=this._minors;this._minorMin=Math.min(this._minorMin,n[0][0]);const r=n[n.length-1];this._minorMax=Math.max(this._minorMax,r[0]+r[1].length-1);const o=this._createList;if(o){const s=n.length;for(let i=0;i<s;i++)n[i][1]=o(n[i][1])}return{tuples:e,bounds:{majorStart:e[0][0],minorStart:this._minorMin,majorEnd:e[e.length-1][0],minorEnd:this._minorMax}}}},l.TransposedBuilder=class{constructor(e,n=0,r=0){this._majorMin=Number.MAX_SAFE_INTEGER,this._majorMax=0,this._majorIndex=Number.MIN_SAFE_INTEGER,this._minorIndex=Number.MIN_SAFE_INTEGER,this._offsetMajor=0,this._offsetMinor=0,this._createList=e,this._offsetMajor=n,this._offsetMinor=r,this._minors=new _t}addValues(e,n,r){Array.isArray(r)||(r=[r]);const o=r.length;for(let s=0;s<o;s++){const i=n+s;this.addValue(e,i,r[s])}return this}addValue(e,n,r){let o,s;const i=this._majorIndex;let a=this._minorIndex;if(e+=this._offsetMajor,n+=this._offsetMinor,s=this._current,e!==i){if(this._majorIndex=e,e<i)throw new t(`major: ${e}, minor: ${n}, prevMajor: ${this._majorIndex}, prevMinor: ${this._minorIndex}`);a=Number.MIN_SAFE_INTEGER}else if(s=this._current,n<=a)throw new t(`major: ${e}, minor: ${n}, prevMajor: ${this._majorIndex}, prevMinor: ${this._minorIndex}`);if(s&&s.minor===n&&(o=s.span),o)s.minor>=n&&s.next&&(this._current=s.next);else{const g=this._minors,m=s?s.next??s.prev:null;if(m){let f;const _=m.minor;m&&m.minor===n?(s=m,o=s.span):f=_>n?g.getPairOrNextHigher(n,qa):g.getPairOrNextLower(n,qa),f&&(s=f[1],f[0]===n&&(o=s.span))}if(!o){this._majorMin=Math.min(this._majorMin,e),o=[n,[[e,[]]]];const f={minor:n,span:o,prev:null,next:null};s&&(s.minor<n?(f.prev=s,f.next=s.next,s.next&&(s.next.prev=f),s.next=f):(f.prev=s.prev,f.next=s,s.prev&&(s.prev.next=f),s.prev=f)),g.set(n,f),this._current=f;const _=this._first;(!_||n<_.minor)&&(this._first=f),f.next&&(this._current=f.next)}}let c=o[1];const h=c[c.length-1];let d=h[0],u=h[1];return d+u.length!==e&&(u=[],d=e,c.push([d,u])),u.push(r),this._majorMax=Math.max(this._majorMax,e),this._minorIndex=n,this}build(){const e=[],n=this._createList,r=this._minors.entries(void 0,dm);let o=r.next();for(;!o.done;){const s=o.value[1].span;if(n)for(let i=0;i<s.length;i++)s[i][1]=this._createList(s[i][1]);e.push(s),o=r.next()}return e.length===0?null:{tuples:e,bounds:{majorStart:e[0][0],minorStart:this._majorMin,majorEnd:e[e.length-1][0],minorEnd:this._majorMax}}}};class t extends E.ChainedError{constructor(n="Out of order",r=null){super(n,r),this.name="OutOfOrderError"}}l.OutOfOrderError=t})(exports.Tuple||(exports.Tuple={}));const um={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function Ni(l){return(t={})=>{const e=t.width?String(t.width):l.defaultWidth;return l.formats[e]||l.formats[l.defaultWidth]}}const gm={date:Ni({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:Ni({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:Ni({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})},mm={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function Br(l){return(t,e)=>{let n;if((e?.context?String(e.context):"standalone")==="formatting"&&l.formattingValues){const r=l.defaultFormattingWidth||l.defaultWidth,o=e?.width?String(e.width):r;n=l.formattingValues[o]||l.formattingValues[r]}else{const r=l.defaultWidth,o=e?.width?String(e.width):l.defaultWidth;n=l.values[o]||l.values[r]}return n[l.argumentCallback?l.argumentCallback(t):t]}}function Dr(l){return(t,e={})=>{const n=e.width,r=n&&l.matchPatterns[n]||l.matchPatterns[l.defaultMatchWidth],o=t.match(r);if(!o)return null;const s=o[0],i=n&&l.parsePatterns[n]||l.parsePatterns[l.defaultParseWidth],a=Array.isArray(i)?function(h,d){for(let u=0;u<h.length;u++)if(d(h[u]))return u}(i,h=>h.test(s)):function(h,d){for(const u in h)if(Object.prototype.hasOwnProperty.call(h,u)&&d(h[u]))return u}(i,h=>h.test(s));let c;return c=l.valueCallback?l.valueCallback(a):a,c=e.valueCallback?e.valueCallback(c):c,{value:c,rest:t.slice(s.length)}}}var Lr;const fm={code:"en-US",formatDistance:(l,t,e)=>{let n;const r=um[l];return n=typeof r=="string"?r:t===1?r.one:r.other.replace("{{count}}",t.toString()),e?.addSuffix?e.comparison&&e.comparison>0?"in "+n:n+" ago":n},formatLong:gm,formatRelative:(l,t,e,n)=>mm[l],localize:{ordinalNumber:(l,t)=>{const e=Number(l),n=e%100;if(n>20||n<10)switch(n%10){case 1:return e+"st";case 2:return e+"nd";case 3:return e+"rd"}return e+"th"},era:Br({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:Br({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:l=>l-1}),month:Br({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:Br({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:Br({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})},match:{ordinalNumber:(Lr={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:l=>parseInt(l,10)},(l,t={})=>{const e=l.match(Lr.matchPattern);if(!e)return null;const n=e[0],r=l.match(Lr.parsePattern);if(!r)return null;let o=Lr.valueCallback?Lr.valueCallback(r[0]):r[0];return o=t.valueCallback?t.valueCallback(o):o,{value:o,rest:l.slice(n.length)}}),era:Dr({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:Dr({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:l=>l+1}),month:Dr({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:Dr({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:Dr({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},options:{weekStartsOn:0,firstWeekContainsDate:1}},Ka=(l,t)=>{switch(l){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});default:return t.date({width:"full"})}},Xa=(l,t)=>{switch(l){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});default:return t.time({width:"full"})}},Ya={p:Xa,P:(l,t)=>{const e=l.match(/(P+)(p+)?/)||[],n=e[1],r=e[2];if(!r)return Ka(l,t);let o;switch(n){case"P":o=t.dateTime({width:"short"});break;case"PP":o=t.dateTime({width:"medium"});break;case"PPP":o=t.dateTime({width:"long"});break;default:o=t.dateTime({width:"full"})}return o.replace("{{date}}",Ka(n,t)).replace("{{time}}",Xa(r,t))}},pm=/^D+$/,_m=/^Y+$/,Sm=["D","DD","YY","YYYY"];function wm(l){return pm.test(l)}function ym(l){return _m.test(l)}function Qa(l,t,e){const n=function(r,o,s){const i=r[0]==="Y"?"years":"days of the month";return`Use \`${r.toLowerCase()}\` instead of \`${r}\` (in \`${o}\`) for formatting ${i} to the input \`${s}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}(l,t,e);if(console.warn(n),Sm.includes(l))throw new RangeError(n)}const Za=Symbol.for("constructDateFrom");function pr(l,t){return typeof l=="function"?l(t):l&&typeof l=="object"&&Za in l?l[Za](t):l instanceof Date?new l.constructor(t):new Date(t)}let Cm={};function Zd(){return Cm}function Js(l,t){return pr(t||l,l)}class tu{constructor(){this.subPriority=0}validate(t,e){return!0}}class Em extends tu{constructor(t,e,n,r,o){super(),this.value=t,this.validateValue=e,this.setValue=n,this.priority=r,o&&(this.subPriority=o)}validate(t,e){return this.validateValue(t,this.value,e)}set(t,e,n){return this.setValue(t,e,this.value,n)}}class Im extends tu{constructor(t,e){super(),this.priority=10,this.subPriority=-1,this.context=t||(n=>pr(e,n))}set(t,e){return e.timestampIsSet?t:pr(t,function(n,r){const o=function(s){return typeof s=="function"&&s.prototype?.constructor===s}(r)?new r(0):pr(r,0);return o.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),o.setHours(n.getHours(),n.getMinutes(),n.getSeconds(),n.getMilliseconds()),o}(t,this.context))}}let ps=class{run(l,t,e,n){const r=this.parse(l,t,e,n);return r?{setter:new Em(r.value,this.validate,this.set,this.priority,this.subPriority),rest:r.rest}:null}validate(l,t,e){return!0}};const eu=/^(1[0-2]|0?\d)/,bm=/^(3[0-1]|[0-2]?\d)/,vm=/^\d/,xm=/^\d{1,2}/,Rm=/^\d{1,3}/,Am=/^\d{1,4}/;function nn(l,t){return l&&{value:t(l.value),rest:l.rest}}function Cn(l,t){const e=t.match(l);return e?{value:parseInt(e[0],10),rest:t.slice(e[0].length)}:null}function fo(l,t){switch(l){case 1:return Cn(vm,t);case 2:return Cn(xm,t);case 3:return Cn(Rm,t);case 4:return Cn(Am,t);default:return Cn(new RegExp("^\\d{1,"+l+"}"),t)}}class nu extends ps{constructor(){super(...arguments),this.incompatibleTokens=["Y","R","q","Q","L","w","I","D","i","e","c","t","T"],this.priority=110}parse(t,e,n){const r=o=>o-1;switch(e){case"M":return nn(Cn(eu,t),r);case"MM":return nn(fo(2,t),r);case"Mo":return nn(n.ordinalNumber(t,{unit:"month"}),r);case"MMM":return n.month(t,{width:"abbreviated",context:"formatting"})||n.month(t,{width:"narrow",context:"formatting"});case"MMMMM":return n.month(t,{width:"narrow",context:"formatting"});default:return n.month(t,{width:"wide",context:"formatting"})||n.month(t,{width:"abbreviated",context:"formatting"})||n.month(t,{width:"narrow",context:"formatting"})}}validate(t,e){return e>=0&&e<=11}set(t,e,n){return t.setMonth(n,1),t.setHours(0,0,0,0),t}}const Tm=[31,28,31,30,31,30,31,31,30,31,30,31],Mm=[31,29,31,30,31,30,31,31,30,31,30,31];function Fm(l,t,e){const n=Zd(),r=e?.weekStartsOn??e?.locale?.options?.weekStartsOn??n.weekStartsOn??n.locale?.options?.weekStartsOn??0,o=Js(l,e?.in),s=o.getDay(),i=7-r;return function(a,c,h){const d=Js(a,h?.in);return isNaN(c)?pr(h?.in||a,NaN):(c&&d.setDate(d.getDate()+c),d)}(o,t<0||t>6?t-(s+i)%7:((t%7+7)%7+i)%7-(s+i)%7,e)}const eo={y:new class extends ps{constructor(){super(...arguments),this.priority=130,this.incompatibleTokens=["Y","R","u","w","I","i","e","c","t","T"]}parse(l,t,e){const n=r=>({year:r,isTwoDigitYear:t==="yy"});switch(t){case"y":return nn(fo(4,l),n);case"yo":return nn(e.ordinalNumber(l,{unit:"year"}),n);default:return nn(fo(t.length,l),n)}}validate(l,t){return t.isTwoDigitYear||t.year>0}set(l,t,e){const n=l.getFullYear();if(e.isTwoDigitYear){const o=function(s,i){const a=i>0,c=a?i:1-i;let h;if(c<=50)h=s||100;else{const d=c+50;h=s+100*Math.trunc(d/100)-(s>=d%100?100:0)}return a?h:1-h}(e.year,n);return l.setFullYear(o,0,1),l.setHours(0,0,0,0),l}const r="era"in t&&t.era!==1?1-e.year:e.year;return l.setFullYear(r,0,1),l.setHours(0,0,0,0),l}},M:new nu,d:new class extends ps{constructor(){super(...arguments),this.priority=90,this.subPriority=1,this.incompatibleTokens=["Y","R","q","Q","w","I","D","i","e","c","t","T"]}parse(l,t,e){switch(t){case"d":return Cn(bm,l);case"do":return e.ordinalNumber(l,{unit:"date"});default:return fo(t.length,l)}}validate(l,t){const e=function(r){return r%400==0||r%4==0&&r%100!=0}(l.getFullYear()),n=l.getMonth();return e?t>=1&&t<=Mm[n]:t>=1&&t<=Tm[n]}set(l,t,e){return l.setDate(e),l.setHours(0,0,0,0),l}},E:new class extends ps{constructor(){super(...arguments),this.priority=90,this.incompatibleTokens=["D","i","e","c","t","T"]}parse(l,t,e){switch(t){case"E":case"EE":case"EEE":return e.day(l,{width:"abbreviated",context:"formatting"})||e.day(l,{width:"short",context:"formatting"})||e.day(l,{width:"narrow",context:"formatting"});case"EEEEE":return e.day(l,{width:"narrow",context:"formatting"});case"EEEEEE":return e.day(l,{width:"short",context:"formatting"})||e.day(l,{width:"narrow",context:"formatting"});default:return e.day(l,{width:"wide",context:"formatting"})||e.day(l,{width:"abbreviated",context:"formatting"})||e.day(l,{width:"short",context:"formatting"})||e.day(l,{width:"narrow",context:"formatting"})}}validate(l,t){return t>=0&&t<=6}set(l,t,e,n){return(l=Fm(l,e,n)).setHours(0,0,0,0),l}}},Nm=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Om=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,km=/^'([^]*?)'?$/,Bm=/''/g,Dm=/\S/,Lm=/[a-zA-Z]/;function Um(l,t,e,n){const r=()=>pr(n?.in||e,NaN),o=Object.assign({},Zd()),s=n?.locale??o.locale??fm,i=n?.firstWeekContainsDate??n?.locale?.options?.firstWeekContainsDate??o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,a=n?.weekStartsOn??n?.locale?.options?.weekStartsOn??o.weekStartsOn??o.locale?.options?.weekStartsOn??0;if(!t)return l?r():Js(e,n?.in);const c={firstWeekContainsDate:i,weekStartsOn:a,locale:s},h=[new Im(n?.in,e)],d=t.match(Om).map(_=>{const p=_[0];return p in Ya?(0,Ya[p])(_,s.formatLong):_}).join("").match(Nm),u=[];for(let _ of d){!n?.useAdditionalWeekYearTokens&&ym(_)&&Qa(_,t,l),!n?.useAdditionalDayOfYearTokens&&wm(_)&&Qa(_,t,l);const p=_[0],S=eo[p];if(S){const{incompatibleTokens:C}=S;if(Array.isArray(C)){const I=u.find(w=>C.includes(w.token)||w.token===p);if(I)throw new RangeError(`The format string mustn't contain \`${I.fullToken}\` and \`${_}\` at the same time`)}else if(S.incompatibleTokens==="*"&&u.length>0)throw new RangeError(`The format string mustn't contain \`${_}\` and any other token at the same time`);u.push({token:p,fullToken:_});const y=S.run(l,_,s.match,c);if(!y)return r();h.push(y.setter),l=y.rest}else{if(p.match(Lm))throw new RangeError("Format string contains an unescaped latin alphabet character `"+p+"`");if(_==="''"?_="'":p==="'"&&(_=zm(_)),l.indexOf(_)!==0)return r();l=l.slice(_.length)}}if(l.length>0&&Dm.test(l))return r();const g=h.map(_=>_.priority).sort((_,p)=>p-_).filter((_,p,S)=>S.indexOf(_)===p).map(_=>h.filter(p=>p.priority===_).sort((p,S)=>S.subPriority-p.subPriority)).map(_=>_[0]);let m=Js(e,n?.in);if(isNaN(+m))return r();const f={};for(const _ of g){if(!_.validate(m,c))return r();const p=_.set(m,f,c);Array.isArray(p)?(m=p[0],Object.assign(f,p[1])):m=p}return m}function zm(l){return l.match(km)[1].replace(Bm,"'")}const ru=l=>!isNaN(l)&&(Object.prototype.toString.call(l)==="[object Date]"||l instanceof Date);function tc(l,t,e){let n=l,r=l.length,o=t.length;for(var s=r;s<o;++s){const i=t[s];if(i==="#")return n;n=e?n+i:i+n}return n}function ge(l,t){for(var e="";e.length<t;)e+=l;return e}function _r(l){for(var t="",e=l.length-1;e>=0;)t+=l.charAt(e--);return t}function Ee(l,t){var e=""+l;return e.length>=t?e:ge("0",t-e.length)+e}function jl(l,t){var e=""+l;return e.length>=t?e:ge(" ",t-e.length)+e}function qs(l,t){var e=""+l;return e.length>=t?e:e+ge(" ",t-e.length)}var ec=Math.pow(2,32);function Zn(l,t){return l>ec||l<-ec?function(e,n){var r=""+Math.round(e);return r.length>=n?r:ge("0",n-r.length)+r}(l,t):function(e,n){var r=""+e;return r.length>=n?r:ge("0",n-r.length)+r}(Math.round(l),t)}function _s(l,t){return t=t||0,l.length>=7+t&&(32|l.charCodeAt(t))==103&&(32|l.charCodeAt(t+1))==101&&(32|l.charCodeAt(t+2))==110&&(32|l.charCodeAt(t+3))==101&&(32|l.charCodeAt(t+4))==114&&(32|l.charCodeAt(t+5))==97&&(32|l.charCodeAt(t+6))==108}var nc=[["Sun","Sunday"],["Mon","Monday"],["Tue","Tuesday"],["Wed","Wednesday"],["Thu","Thursday"],["Fri","Friday"],["Sat","Saturday"]],Oi=[["J","Jan","January"],["F","Feb","February"],["M","Mar","March"],["A","Apr","April"],["M","May","May"],["J","Jun","June"],["J","Jul","July"],["A","Aug","August"],["S","Sep","September"],["O","Oct","October"],["N","Nov","November"],["D","Dec","December"]],zn={0:"General",1:"0",2:"0.00",3:"#,##0",4:"#,##0.00",5:"$#,##0_);($#,##0)",6:"$#,##0_);[Red]($#,##0)",7:"$#,##0.00_);($#,##0.00)",8:"$#,##0.00_);[Red]($#,##0.00)",9:"0%",10:"0.00%",11:"0.00E+00",12:"# ?/?",13:"# ??/??",14:"m/d/yy",15:"d-mmm-yy",16:"d-mmm",17:"mmm-yy",18:"h:mm AM/PM",19:"h:mm:ss AM/PM",20:"h:mm",21:"h:mm:ss",22:"m/d/yy h:mm",23:"General",24:"General",25:"General",26:"General",27:"m/d/yyyy",28:"m/d/yyyy",29:"m/d/yyyy",30:"m/d/yyyy",32:"h:mm:ss",31:"m/d/yyyy",33:"h:mm:ss",34:"h:mm:ss",35:"h:mm:ss",36:"m/d/yyyy",37:"#,##0_);(#,##0)",38:"#,##0_);[Red](#,##0)",39:"#,##0.00_);(#,##0.00)",40:"#,##0.00_);[Red](#,##0.00)",41:'_(* #,##0_);_(* (#,##0);_(* "-"_);_(@_)',42:'_($* #,##0_);_($* (#,##0);_($* "-"_);_(@_)',43:'_(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_)',44:'_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)',45:"mm:ss",46:"[h]:mm:ss",47:"mmss.0",48:"##0.0E+0",49:"@",50:"m/d/yyyy",51:"m/d/yyyy",52:"m/d/yyyy",53:"m/d/yyyy",54:"m/d/yyyy",55:"m/d/yyyy",56:'"上午/下午 "hh"時"mm"分"ss"秒 "'},rc={5:37,6:38,7:39,8:40,23:0,24:0,25:0,26:0,27:14,28:14,29:14,30:14,31:14,50:14,51:14,52:14,53:14,54:14,55:14,56:14,57:14,58:14,59:1,60:2,61:3,62:4,67:9,68:10,69:12,70:13,71:14,72:14,73:15,74:16,75:17,76:20,77:21,78:22,79:45,80:46,81:47,82:0},Pm={5:'"$"#,##0_);\\("$"#,##0\\)',63:'"$"#,##0_);\\("$"#,##0\\)',6:'"$"#,##0_);[Red]\\("$"#,##0\\)',64:'"$"#,##0_);[Red]\\("$"#,##0\\)',7:'"$"#,##0.00_);\\("$"#,##0.00\\)',65:'"$"#,##0.00_);\\("$"#,##0.00\\)',8:'"$"#,##0.00_);[Red]\\("$"#,##0.00\\)',66:'"$"#,##0.00_);[Red]\\("$"#,##0.00\\)',41:'_(* #,##0_);_(* \\(#,##0\\);_(* "-"_);_(@_)',42:'_("$"* #,##0_);_("$"* \\(#,##0\\);_("$"* "-"_);_(@_)',43:'_(* #,##0.00_);_(* \\(#,##0.00\\);_(* "-"??_);_(@_)',44:'_("$"* #,##0.00_);_("$"* \\(#,##0.00\\);_("$"* "-"??_);_(@_)'};function Ks(l,t,e){for(var n=l<0?-1:1,r=l*n,o=0,s=1,i=0,a=1,c=0,h=0,d=Math.floor(r);c<t&&(i=(d=Math.floor(r))*s+o,h=d*c+a,!(r-d<5e-8));)r=1/(r-d),o=s,s=i,a=c,c=h;if(h>t&&(c>t?(h=a,i=o):(h=c,i=s)),!e)return[0,n*i,h];var u=Math.floor(n*i/h);return[u,n*i-u*h,h]}function no(l,t,e){if(l>2958465||l<0)return null;var n=0|l,r=Math.floor(86400*(l-n)),o=0,s=[],i={D:n,T:r,u:86400*(l-n)-r,y:0,m:0,d:0,H:0,M:0,S:0,q:0};if(Math.abs(i.u)<1e-6&&(i.u=0),t&&t.date1904&&(n+=1462),i.u>.9999&&(i.u=0,++r===86400&&(i.T=r=0,++n,++i.D)),n===60)s=e?[1317,10,29]:[1900,2,29],o=3;else if(n===0)s=e?[1317,8,29]:[1900,1,0],o=6;else{n>60&&--n;var a=new Date(1900,0,1);a.setDate(a.getDate()+n-1),s=[a.getFullYear(),a.getMonth()+1,a.getDate()],o=a.getDay(),n<60&&(o=(o+6)%7),e&&(o=function(c,h){h[0]-=581;var d=c.getDay();return c<60&&(d=(d+6)%7),d}(a,s))}return i.y=s[0],i.m=s[1],i.d=s[2],i.S=r%60,r=Math.floor(r/60),i.M=r%60,r=Math.floor(r/60),i.H=r,i.q=o,i}var ou=new Date(1899,11,31,0,0,0),Hm=ou.getTime(),Wm=new Date(1900,2,1,0,0,0);function _a(l,t=!1){var e=l.getTime();return t?e-=1262304e5:l>=Wm&&(e+=864e5),(e-(Hm+6e4*(l.getTimezoneOffset()-ou.getTimezoneOffset())))/864e5}function ki(l){return l.indexOf(".")===-1?l:l.replace(/(?:\.0*|(\.\d*[1-9])0+)$/,"$1")}function jm(l){var t,e=Math.floor(Math.log(Math.abs(l))*Math.LOG10E);return t=e>=-4&&e<=-1?l.toPrecision(10+e):Math.abs(e)<=9?function(n){var r=n<0?12:11,o=ki(n.toFixed(12));return o.length<=r||(o=n.toPrecision(10)).length<=r?o:n.toExponential(5)}(l):e===10?l.toFixed(10).substr(0,12):function(n){var r=ki(n.toFixed(11));return r.length>(n<0?12:11)||r==="0"||r==="-0"?n.toPrecision(6):r}(l),ki(function(n){return n.indexOf("E")===-1?n:n.replace(/(?:\.0*|(\.\d*[1-9])0+)[Ee]/,"$1E").replace(/(E[+-])(\d)$/,"$10$2")}(t.toUpperCase()))}function Bi(l,t){switch(typeof l){case"string":return l;case"boolean":return l?"TRUE":"FALSE";case"number":return(0|l)===l?l.toString(10):jm(l);case"undefined":return"";case"object":if(l==null)return"";if(ru(l))return fu(14,_a(l,t&&t.date1904),t)}throw new Error("unsupported value in General format: "+l)}function Vm(l,t,e,n){var r,o="",s=0,i=0,a=e.y,c=0;switch(l){case 98:a=e.y+543;case 121:switch(t.length){case 1:case 2:r=a%100,c=2;break;default:r=a%1e4,c=4}break;case 109:switch(t.length){case 1:case 2:r=e.m,c=t.length;break;case 3:return Oi[e.m-1][1];case 5:return Oi[e.m-1][0];default:return Oi[e.m-1][2]}break;case 100:switch(t.length){case 1:case 2:r=e.d,c=t.length;break;case 3:return nc[e.q][0];default:return nc[e.q][1]}break;case 104:switch(t.length){case 1:case 2:r=1+(e.H+11)%12,c=t.length;break;default:throw new Error("bad hour format: "+t)}break;case 72:switch(t.length){case 1:case 2:r=e.H,c=t.length;break;default:throw new Error("bad hour format: "+t)}break;case 77:switch(t.length){case 1:case 2:r=e.M,c=t.length;break;default:throw new Error("bad minute format: "+t)}break;case 115:if(t!=="s"&&t!=="ss"&&t!==".0"&&t!==".00"&&t!==".000")throw new Error("bad second format: "+t);return e.u!==0||t!=="s"&&t!=="ss"?(i=n>=2?n===3?1e3:100:n===1?10:1,(s=Math.round(i*(e.S+e.u)))>=60*i&&(s=0),t==="s"?s===0?"0":""+s/i:(o=Ee(s,2+n),t==="ss"?o.substr(0,2):"."+o.substr(2,t.length-1))):Ee(e.S,t.length);case 90:switch(t){case"[h]":case"[hh]":r=24*e.D+e.H;break;case"[m]":case"[mm]":r=60*(24*e.D+e.H)+e.M;break;case"[s]":case"[ss]":r=60*(60*(24*e.D+e.H)+e.M)+Math.round(e.S+e.u);break;default:throw new Error("bad absolute time format: "+t)}c=t.length===3?1:2;break;case 101:r=a,c=1}return c>0?Ee(r,c):""}function En(l){if(l.length<=3)return l;for(var t=l.length%3,e=l.substr(0,t);t!==l.length;t+=3)e+=(e.length>0?",":"")+l.substr(t,3);return e}var su=/%/g;function iu(l,t){var e,n=l.indexOf("E")-l.indexOf(".")-1;if(l.match(/^#+0.0E\+0$/)){if(t===0)return"0.0E+0";if(t<0)return"-"+iu(l,-t);var r=l.indexOf(".");r===-1&&(r=l.indexOf("E"));var o=Math.floor(Math.log(t)*Math.LOG10E)%r;if(o<0&&(o+=r),(e=(t/Math.pow(10,o)).toPrecision(n+1+(r+o)%r)).indexOf("e")===-1){var s=Math.floor(Math.log(t)*Math.LOG10E);for(e.indexOf(".")===-1?e=e.charAt(0)+"."+e.substr(1)+"E+"+(s-e.length+o):e+="E+"+(s-o);e.substr(0,2)==="0.";)e=(e=e.charAt(0)+e.substr(2,r)+"."+e.substr(2+r)).replace(/^0+([1-9])/,"$1").replace(/^0+\./,"0.");e=e.replace(/\+-/,"-")}e=e.replace(/^([+-]?)(\d*)\.(\d*)[Ee]/,function(i,a,c,h){return a+c+h.substr(0,(r+o)%r)+"."+h.substr(o)+"E"})}else e=t.toExponential(n);return l.match(/E\+00$/)&&e.match(/e[+-]\d$/)&&(e=e.substr(0,e.length-1)+"0"+e.charAt(e.length-1)),l.match(/E-/)&&e.match(/e\+/)&&(e=e.replace(/e\+/,"e")),e.replace("e","E")}var lu=/[0#?] (\?+)( ?)\/( ?)(\d+)/,au=/^([0#?]+)\.([0#?]+)/,cu=/\).*[0#]/,hu=/\(###\) ###\\?-####/;function we(l){var t="";let e,n=l.length;for(var r=0;r!==n;++r)switch(e=l.charAt(r),e){case"#":break;case" ":t+=" ";break;case"0":t+="0";break;case"?":t+="?";break;default:t+=String.fromCharCode(cc)}return t}function oc(l,t){var e=Math.pow(10,t);return""+Math.round(l*e)/e}function sc(l,t){var e=Math.pow(10,t);return Math.round(l*e)/e}function ic(l,t){var e=l-Math.floor(l),n=Math.pow(10,t);return t<(""+Math.round(e*n)).length?0:Math.round(e*n)}function ce(l,t,e){if(l.charCodeAt(0)===40&&!t.match(cu)){var n=t.replace(/\( */,"").replace(/ \)/,"").replace(/\)/,"");return e>=0?ce("n",n,e):"("+ce("n",n,-e)+")"}if(t.charCodeAt(t.length-1)===44)return function(f,_,p){let S=_.length-1;for(;_.charCodeAt(S-1)===44;)--S;return rn(f,_.substr(0,S),p/Math.pow(10,3*(_.length-S)))}(l,t,e);if(t.indexOf("%")!==-1)return function(f,_,p){let S=_.replace(su,""),C=_.length-S.length;return rn(f,S,p*Math.pow(10,2*C))+ge("%",C)}(l,t,e);if(t.indexOf("E")!==-1)return iu(t,e);if(t.charCodeAt(0)===36)return"$"+ce(l,t.substr(t.charAt(1)===" "?2:1),e);var r,o,s,i,a=Math.abs(e),c=e<0?"-":"";if(t.match(/^00+$/))return c+Zn(a,t.length);if(t.match(/^[#?]+$/))return(r=Zn(e,0))==="0"&&(r=""),r.length>t.length?r:we(t.substr(0,t.length-r.length))+r;if(o=t.match(lu))return function(f,_,p){var S=parseInt(f[4],10),C=Math.round(_*S),y=Math.floor(C/S),I=C-y*S,w=S;return p+(y===0?"":""+y)+" "+(I===0?ge(" ",f[1].length+1+f[4].length):jl(I,f[1].length)+f[2]+"/"+f[3]+Ee(w,f[4].length))}(o,a,c);if(t.match(/^#+0+$/))return c+Zn(a,t.length-t.indexOf("0"));if(o=t.match(au)){s=Math.trunc(oc(e,o[2].length));var h=function(f){if(!isFinite(f))return 0;for(var _=1,p=0;Math.round(f*_)/_!==f;)_*=10,p++;return p}(i=sc(Math.abs(s-e),o[2].length));return i=(i=""+sc(i,h)).replace(/^0\./,""),r=tc(""+Math.abs(s),o[1])+"."+tc(""+i,o[2],!0),r=t.indexOf("0.")!==-1?r:r.replace(/^0\./,"."),e<0?"-"+r:r}if(o=(t=t.replace(/^#+([0.])/,"$1")).match(/^(0*)\.(#*)$/))return c+oc(a,o[2].length).replace(/\.(\d*[1-9])0*$/,".$1").replace(/^(-?\d*)$/,"$1.").replace(/^0\./,o[1].length?"0.":".");if(o=t.match(/^#{1,3},##0(\.?)$/))return c+En(Zn(a,0));if(o=t.match(/^#,##0\.([#0]*0)$/))return e<0?"-"+ce(l,t,-e):En(""+(Math.floor(e)+function(f,_){return _<(""+Math.round((f-Math.floor(f))*Math.pow(10,_))).length?1:0}(e,o[1].length)))+"."+Ee(ic(e,o[1].length),o[1].length);if(o=t.match(/^#,#*,#0/))return ce(l,t.replace(/^#,#*,/,""),e);if(o=t.match(/^([0#]+)(\\?-([0#]+))+$/))return r=_r(ce(l,t.replace(/[\\-]/g,""),e)),s=0,_r(_r(t.replace(/\\/g,"")).replace(/[0#]/g,function(f){return s<r.length?r.charAt(s++):f==="0"?"0":""}));if(t.match(hu))return"("+(r=ce(l,"##########",e)).substr(0,3)+") "+r.substr(3,3)+"-"+r.substr(6);var d="";if(o=t.match(/^([#0?]+)( ?)\/( ?)([#0?]+)/))return s=Math.min(o[4].length,7),i=Ks(a,Math.pow(10,s)-1,!1),r=""+c,(d=rn("n",o[1],i[1])).charAt(d.length-1)===" "&&(d=d.substr(0,d.length-1)+"0"),r+=d+o[2]+"/"+o[3],(d=qs(i[2],s)).length<o[4].length&&(d=we(o[4].substr(o[4].length-d.length))+d),r+=d;if(o=t.match(/[#0?] ([#0?]+)( ?)\/( ?)([#0?]+)/))return s=Math.min(Math.max(o[1].length,o[4].length),7),i=Ks(a,Math.pow(10,s)-1,!0),c+ce(l,t.substring(0,o.index+1),i[0])+" "+(i[1]?jl(i[1],s)+o[2]+"/"+o[3]+qs(i[2],s):ge(" ",2*s+1+o[2].length+o[3].length));if(o=t.match(/^[#0?]+$/))return r=Zn(e,0),t.length<=r.length?r:we(t.substr(0,t.length-r.length))+r;if(o=t.match(/^([#0?]+)\.([#0]+)$/)){r=""+e.toFixed(Math.min(o[2].length,10)).replace(/([^0])0+$/,"$1"),s=r.indexOf(".");var u=t.indexOf(".")-s,g=t.length-r.length-u;return we(t.substr(0,u)+r+t.substr(t.length-g))}if(o=t.match(/^00,000\.([#0]*0)$/))return s=ic(e,o[1].length),e<0?"-"+ce(l,t,-e):En(function(f){return f<2147483647&&f>-2147483648?""+(f>=0?0|f:f-1|0):""+Math.floor(f)}(e)).replace(/^\d,\d{3}$/,"0$&").replace(/^\d*$/,function(f){return"00,"+(f.length<3?Ee(0,3-f.length):"")+f})+"."+Ee(s,o[1].length);switch(t){case"###,##0.00":return ce(l,"#,##0.00",e);case"###,###":case"##,###":case"#,###":var m=En(Zn(a,0));return m!=="0"?c+m:"";case"###,###.00":return ce(l,"###,##0.00",e).replace(/^0\./,".");case"#,###.00":return ce(l,"#,##0.00",e).replace(/^0\./,".")}throw new Error("unsupported format |"+t+"|")}function du(l,t){var e,n=l.indexOf("E")-l.indexOf(".")-1;if(l.match(/^#+0.0E\+0$/)){if(t===0)return"0.0E+0";if(t<0)return"-"+du(l,-t);var r=l.indexOf(".");r===-1&&(r=l.indexOf("E"));var o=Math.floor(Math.log(t)*Math.LOG10E)%r;if(o<0&&(o+=r),!(e=(t/Math.pow(10,o)).toPrecision(n+1+(r+o)%r)).match(/[Ee]/)){var s=Math.floor(Math.log(t)*Math.LOG10E);e.indexOf(".")===-1?e=e.charAt(0)+"."+e.substr(1)+"E+"+(s-e.length+o):e+="E+"+(s-o),e=e.replace(/\+-/,"-")}e=e.replace(/^([+-]?)(\d*)\.(\d*)[Ee]/,function(i,a,c,h){return a+c+h.substr(0,(r+o)%r)+"."+h.substr(o)+"E"})}else e=t.toExponential(n);return l.match(/E\+00$/)&&e.match(/e[+-]\d$/)&&(e=e.substr(0,e.length-1)+"0"+e.charAt(e.length-1)),l.match(/E-/)&&e.match(/e\+/)&&(e=e.replace(/e\+/,"e")),e.replace("e","E")}function De(l,t,e){if(l.charCodeAt(0)===40&&!t.match(cu)){var n=t.replace(/\( */,"").replace(/ \)/,"").replace(/\)/,"");return e>=0?De("n",n,e):"("+De("n",n,-e)+")"}if(t.charCodeAt(t.length-1)===44)return function(m,f,_){for(var p=f.length-1;f.charCodeAt(p-1)===44;)--p;return rn(m,f.substr(0,p),_/Math.pow(10,3*(f.length-p)))}(l,t,e);if(t.indexOf("%")!==-1)return function(m,f,_){var p=f.replace(su,""),S=f.length-p.length;return rn(m,p,_*Math.pow(10,2*S))+ge("%",S)}(l,t,e);if(t.indexOf("E")!==-1)return du(t,e);if(t.charCodeAt(0)===36)return"$"+De(l,t.substr(t.charAt(1)===" "?2:1),e);var r,o,s,i,a=Math.abs(e),c=e<0?"-":"";if(t.match(/^00+$/))return c+Ee(a,t.length);if(t.match(/^[#?]+$/))return r=""+e,e===0&&(r=""),r.length>t.length?r:we(t.substr(0,t.length-r.length))+r;if(o=t.match(lu))return function(m,f,_){return _+(f===0?"":""+f)+ge(" ",m[1].length+2+m[4].length)}(o,a,c);if(t.match(/^#+0+$/))return c+Ee(a,t.length-t.indexOf("0"));if(o=t.match(au))return r=(""+e).replace(/^([^.]+)$/,"."+we(o[2])).replace(/\.$/,"."+we(o[2])),r=Ee(Math.abs(e),o[1].length)+r.replace(/\.(\d*)$/,function(m,f){return"."+f+ge("0",we(o[2]).length-f.length)}),r=t.indexOf("0.")!==-1?r:r.replace(/^0\./,"."),e<0?"-"+r:r;if(t=t.replace(/^#+([0.])/,"$1"),o=t.match(/^(0*)\.(#*)$/))return c+(""+a).replace(/\.(\d*[1-9])0*$/,".$1").replace(/^(-?\d*)$/,"$1.").replace(/^0\./,o[1].length?"0.":".");if(o=t.match(/^#{1,3},##0(\.?)$/))return c+En(""+a);if(o=t.match(/^#,##0\.([#0]*0)$/))return e<0?"-"+De(l,t,-e):En(""+e)+"."+ge("0",o[1].length);if(o=t.match(/^#,#*,#0/))return De(l,t.replace(/^#,#*,/,""),e);if(o=t.match(/^([0#]+)(\\?-([0#]+))+$/))return r=_r(De(l,t.replace(/[\\-]/g,""),e)),s=0,_r(_r(t.replace(/\\/g,"")).replace(/[0#]/g,function(m){return s<r.length?r.charAt(s++):m==="0"?"0":""}));if(t.match(hu))return"("+(r=De(l,"##########",e)).substr(0,3)+") "+r.substr(3,3)+"-"+r.substr(6);var h="";if(o=t.match(/^([#0?]+)( ?)\/( ?)([#0?]+)/))return s=Math.min(o[4].length,7),i=Ks(a,Math.pow(10,s)-1,!1),r=""+c,(h=rn("n",o[1],i[1])).charAt(h.length-1)===" "&&(h=h.substr(0,h.length-1)+"0"),r+=h+o[2]+"/"+o[3],(h=qs(i[2],s)).length<o[4].length&&(h=we(o[4].substr(o[4].length-h.length))+h),r+=h;if(o=t.match(/^# ([#0?]+)( ?)\/( ?)([#0?]+)/))return s=Math.min(Math.max(o[1].length,o[4].length),7),c+((i=Ks(a,Math.pow(10,s)-1,!0))[0]||(i[1]?"":"0"))+" "+(i[1]?jl(i[1],s)+o[2]+"/"+o[3]+qs(i[2],s):ge(" ",2*s+1+o[2].length+o[3].length));if(o=t.match(/^[#0?]+$/))return r=""+e,t.length<=r.length?r:we(t.substr(0,t.length-r.length))+r;if(o=t.match(/^([#0]+)\.([#0]+)$/)){r=""+e.toFixed(Math.min(o[2].length,10)).replace(/([^0])0+$/,"$1"),s=r.indexOf(".");var d=t.indexOf(".")-s,u=t.length-r.length-d;return we(t.substr(0,d)+r+t.substr(t.length-u))}if(o=t.match(/^00,000\.([#0]*0)$/))return e<0?"-"+De(l,t,-e):En(""+e).replace(/^\d,\d{3}$/,"0$&").replace(/^\d*$/,function(m){return"00,"+(m.length<3?Ee(0,3-m.length):"")+m})+"."+Ee(0,o[1].length);switch(t){case"###,###":case"##,###":case"#,###":var g=En(""+a);return g!=="0"?c+g:"";default:if(t.match(/\.[0#?]*$/))return De(l,t.slice(0,t.lastIndexOf(".")),e)+we(t.slice(t.lastIndexOf(".")))}throw new Error("unsupported format |"+t+"|")}function rn(l,t,e){return(0|e)===e?De(l,t,e):ce(l,t,e)}function uu(l){var t=[],e=!1;const n=l.length;for(var r=0,o=0;r<n;++r)switch(l.charCodeAt(r)){case 34:e=!e;break;case 95:case 42:case 92:++r;break;case 59:t[t.length]=l.substr(o,r-o),o=r+1}if(t[t.length]=l.substr(o),e===!0)throw new Error("Format |"+l+"| unterminated string ");return t}var gu=/\[[HhMmSs\u0E0A\u0E19\u0E17]*\]/;function mu(l){for(var t=0,e="",n="",r=l.length;t<r;)switch(e=l.charAt(t)){case"G":_s(l,t)&&(t+=6),t++;break;case'"':for(;l.charCodeAt(++t)!==34&&t<l.length;);++t;break;case"\\":case"_":t+=2;break;case"@":++t;break;case"B":case"b":if(l.charAt(t+1)==="1"||l.charAt(t+1)==="2")return!0;case"M":case"D":case"Y":case"H":case"S":case"E":case"m":case"d":case"y":case"h":case"s":case"e":case"g":return!0;case"A":case"a":case"上":if(l.substr(t,3).toUpperCase()==="A/P"||l.substr(t,5).toUpperCase()==="AM/PM"||l.substr(t,5).toUpperCase()==="上午/下午")return!0;++t;break;case"[":for(n=e;l.charAt(t++)!=="]"&&t<l.length;)n+=l.charAt(t);if(n.match(gu))return!0;break;case".":case"0":case"#":for(;t<l.length&&("0#?.,E+-%".indexOf(e=l.charAt(++t))>-1||e==="\\"&&l.charAt(t+1)==="-"&&"0#".indexOf(l.charAt(t+2))>-1););break;case"?":for(;l.charAt(++t)===e;);break;case"*":++t,l.charAt(t)!==" "&&l.charAt(t)!=="*"||++t;break;case"(":case")":++t;break;case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":for(;t<l.length&&"0123456789".indexOf(l.charAt(++t))>-1;);break;default:++t}return!1}var lc=/\[(=|>[=]?|<[>=]?)(-?\d+(?:\.\d*)?)\]/;function ac(l,t){if(t==null)return!1;var e=parseFloat(t[2]);switch(t[1]){case"=":if(l===e)return!0;break;case">":if(l>e)return!0;break;case"<":if(l<e)return!0;break;case"<>":if(l!==e)return!0;break;case">=":if(l>=e)return!0;break;case"<=":if(l<=e)return!0}return!1}function fu(l,t,e){e==null&&(e=E.CommonUtils.EmptyObject);var n="";switch(typeof l){case"string":n=l==="m/d/yy"&&e.dateNF?e.dateNF:l;break;case"number":(n=l===14&&e.dateNF?e.dateNF:(e.table!=null?e.table:zn)[l])==null&&(n=e.table&&e.table[rc[l]]||zn[rc[l]]),n==null&&(n=Pm[l]||"General")}if(_s(n,0))return Bi(t,e);ru(t)&&(t=_a(t,e.date1904));var r=function(o,s){var i=uu(o),a=i.length,c=i[a-1].indexOf("@");if(c!==-1&&i[a-1][c-1]==="\\"&&(c=-1),a<4&&c>-1&&--a,i.length>4)throw new Error("We can't find right format for |"+i.join("|")+"|");if(typeof s!="number")return[4,i.length===4||c>-1?i[i.length-1]:"@"];switch(i.length){case 1:i=c>-1?["General","General","General",i[0]]:[i[0],i[0],i[0],"@"];break;case 2:i=c>-1?[i[0],i[0],i[0],i[1]]:[i[0],i[1],i[0],"@"];break;case 3:i=c>-1?[i[0],i[1],i[0],i[2]]:[i[0],i[1],i[2],"@"]}var h=s>0?i[0]:s<0?i[1]:i[2];if(i[0].indexOf("[")===-1&&i[1].indexOf("[")===-1)return[a,h];if(i[0].match(/\[[=<>]/)!=null||i[1].match(/\[[=<>]/)!=null){var d=i[0].match(lc),u=i[1].match(lc);return ac(s,d)?[a,i[0]]:ac(s,u)?[a,i[1]]:[a,i[d!=null&&u!=null?2:1]]}return[a,h]}(n,t);if(_s(r[1]))return Bi(t,e);if(t===!0)t="TRUE";else if(t===!1)t="FALSE";else if(t===""||t==null)return"";return function(o,s,i,a){var c,h,d,u=[],g="",m=0,f="",_="t",p="H";let S=o.length;for(;m<S;)switch(f=o.charAt(m)){case"G":if(!_s(o,m))throw new Error("unrecognized character "+f+" in "+o);u[u.length]={t:"G",v:"General"},m+=7;break;case'"':for(g="";(d=o.charCodeAt(++m))!==34&&m<o.length;)g+=String.fromCharCode(d);u[u.length]={t:"t",v:g},++m;break;case"\\":var C=o.charAt(++m),y=C==="("||C===")"?C:"t";u[u.length]={t:y,v:C},++m;break;case"@":u[u.length]={t:"T",v:s},++m;break;case"B":case"b":if(o.charAt(m+1)==="1"||o.charAt(m+1)==="2"){if(c==null&&(c=no(s,i,o.charAt(m+1)==="2"))==null)return"";u[u.length]={t:"X",v:o.substr(m,2)},_=f,m+=2;break}case"M":case"D":case"Y":case"H":case"S":case"E":f=f.toLowerCase();case"m":case"d":case"y":case"h":case"s":case"e":case"g":if(s<0||c==null&&(c=no(s,i))==null)return"";for(g=f;++m<o.length&&o.charAt(m).toLowerCase()===f;)g+=f;f==="m"&&_.toLowerCase()==="h"&&(f="M"),f==="h"&&(f=p),u[u.length]={t:f,v:g},_=f;break;case"A":case"a":case"上":var I={t:f,v:f};if(c==null&&(c=no(s,i)),o.substr(m,3).toUpperCase()==="A/P"?(c!=null&&(I.v=c.H>=12?"P":"A"),I.t="T",p="h",m+=3):o.substr(m,5).toUpperCase()==="AM/PM"?(c!=null&&(I.v=c.H>=12?"PM":"AM"),I.t="T",m+=5,p="h"):o.substr(m,5).toUpperCase()==="上午/下午"?(c!=null&&(I.v=c.H>=12?"下午":"上午"),I.t="T",m+=5,p="h"):(I.t="t",++m),c==null&&I.t==="T")return"";u[u.length]=I,_=f;break;case"[":for(g=f;o.charAt(m++)!=="]"&&m<o.length;)g+=o.charAt(m);if(g.slice(-1)!=="]")throw new Error('unterminated "[" block: |'+g+"|");if(g.match(gu)){if(c==null&&(c=no(s,i))==null)return"";u[u.length]={t:"Z",v:g.toLowerCase()},_=g.charAt(1)}else g.indexOf("$")>-1&&(g=(g.match(/\$([^-[\]]*)/)||[])[1]||"$",mu(o)||(u[u.length]={t:"t",v:g}));break;case".":if(c!=null){for(g=f;++m<o.length&&(f=o.charAt(m))==="0";)g+=f;u[u.length]={t:"s",v:g};break}case"0":case"#":for(g=f;++m<o.length&&"0#?.,E+-%".indexOf(f=o.charAt(m))>-1;)g+=f;u[u.length]={t:"n",v:g};break;case"?":for(g=f;o.charAt(++m)===f;)g+=f;u[u.length]={t:f,v:g},_=f;break;case"*":if(++m,!(g=o.charAt(m)))throw new Error("no character specified for repeat function: "+o);u[u.length]={t:"R",v:g},++m;break;case"_":if(++m,!(g=o.charAt(m)))throw new Error("no character specified for spacing function: "+o);u[u.length]={t:"S",v:g},++m;break;case"(":case")":u[u.length]={t:a===1?"t":f,v:f},++m;break;case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":for(g=f;m<o.length&&"0123456789".indexOf(o.charAt(++m))>-1;)g+=o.charAt(m);u[u.length]={t:"D",v:g};break;case" ":u[u.length]={t:f,v:f},++m;break;case"$":u[u.length]={t:"t",v:"$"},++m;break;default:if(",$-+/():!^&'~{}<>=€acfijklopqrtuvwxzP".indexOf(f)===-1)throw new Error("unrecognized character "+f+" in "+o);u[u.length]={t:"t",v:f},++m}var w,b=0,x=0;for(m=u.length-1,_="t";m>=0;--m)switch(u[m].t){case"h":case"H":u[m].t=p,_="h",b<1&&(b=1);break;case"s":(w=u[m].v.match(/\.0+$/))&&(x=Math.max(x,w[0].length-1)),b<3&&(b=3);case"d":case"y":case"M":case"e":_=u[m].t;break;case"m":_==="s"&&(u[m].t="M",b<2&&(b=2));break;case"X":break;case"Z":b<1&&u[m].v.match(/[Hh]/)&&(b=1),b<2&&u[m].v.match(/[Mm]/)&&(b=2),b<3&&u[m].v.match(/[Ss]/)&&(b=3)}switch(b){case 0:break;case 1:c.u>=.5&&(c.u=0,++c.S),c.S>=60&&(c.S=0,++c.M),c.M>=60&&(c.M=0,++c.H);break;case 2:c.u>=.5&&(c.u=0,++c.S),c.S>=60&&(c.S=0,++c.M)}var R,v="";for(S=u.length,m=0;m<S;++m)switch(u[m].t){case"t":case"T":case" ":case"D":break;case"X":u[m].v="",u[m].t=";";break;case"d":case"m":case"y":case"h":case"H":case"M":case"s":case"e":case"b":case"Z":u[m].v=Vm(u[m].t.charCodeAt(0),u[m].v,c,x),u[m].t="t";break;case"n":case"?":for(R=m+1;u[R]!=null&&((f=u[R].t)==="?"||f==="D"||(f===" "||f==="t")&&u[R+1]!=null&&(u[R+1].t==="?"||u[R+1].t==="t"&&u[R+1].v==="/")||u[m].t==="("&&(f===" "||f==="n"||f===")")||f==="t"&&(u[R].v==="/"||u[R].v===" "&&u[R+1]!=null&&u[R+1].t==="?"));)u[m].v+=u[R].v,u[R]={v:"",t:";"},++R;v+=u[m].v,m=R-1;break;case"G":u[m].t="t",u[m].v=Bi(s,i)}var T,M,F="";if(v.length>0){v.charCodeAt(0)===40?(T=s<0&&v.charCodeAt(0)===45?-s:s,M=rn("n",v,T)):(M=rn("n",v,T=s<0&&a>1?-s:s),T<0&&u[0]&&u[0].t==="t"&&(M=M.substr(1),u[0].v="-"+u[0].v)),R=M.length-1;var N=u.length;for(S=u.length,m=0;m<S;++m)if(u[m]!=null&&u[m].t!=="t"&&u[m].v.indexOf(".")>-1){N=m;break}var O=S;if(N===S&&M.indexOf("E")===-1){for(m=u.length-1;m>=0;--m)u[m]!=null&&"n?".indexOf(u[m].t)!==-1&&(R>=u[m].v.length-1?(R-=u[m].v.length,u[m].v=M.substr(R+1,u[m].v.length)):R<0?u[m].v="":(u[m].v=M.substr(0,R+1),R=-1),u[m].t=u[m].v.indexOf("?")>=0?"N":"t",O=m);R>=0&&O<u.length&&(u[O].v=M.substr(0,R+1)+u[O].v)}else if(N!==u.length&&M.indexOf("E")===-1){for(R=M.indexOf(".")-1,m=N;m>=0;--m)if(u[m]!=null&&"n?".indexOf(u[m].t)!==-1){for(h=u[m].v.indexOf(".")>-1&&m===N?u[m].v.indexOf(".")-1:u[m].v.length-1,F=u[m].v.substr(h+1);h>=0;--h)R>=0&&(u[m].v.charAt(h)==="0"||u[m].v.charAt(h)==="#"||u[m].v.charAt(h)==="?")&&(F=M.charAt(R--)+F);u[m].v=F,u[m].t=F.indexOf("?")>=0?"N":"t",O=m}for(R>=0&&O<u.length&&(u[O].v=M.substr(0,R+1)+u[O].v),R=M.indexOf(".")+1,m=N;m<u.length;++m)if(u[m]!=null&&("n?(".indexOf(u[m].t)!==-1||m===N)){for(h=u[m].v.indexOf(".")>-1&&m===N?u[m].v.indexOf(".")+1:0,F=u[m].v.substr(0,h);h<u[m].v.length;++h)R<M.length&&(F+=M.charAt(R++));u[m].v=F,u[m].t=F.indexOf("?")>=0?"N":"t",O=m}}}for(m=0;m<S;++m)u[m]!=null&&"n?".indexOf(u[m].t)>-1&&(T=a>1&&s<0&&m>0&&u[m-1].v==="-"?-s:s,u[m].v=rn(u[m].t,u[m].v,T),u[m].t=u[m].v.indexOf("?")>=0?"N":"t");var L="";for(S=u.length,m=0;m<S;m++)if(u[m].t==="R")i?.onRepeatChar?.(L.length,u[m].v);else if(u[m].t==="S")i?.onSpacingChar?.(L.length,u[m].v),L+=i?.spacingCharacter??" ";else if(u[m].t==="N"){F=u[m].v;for(var B=0;B<F.length;B++)(f=F[B])==="?"&&(i?.onDigitChar?.(L.length,f),f=i?.digitCharacter??" "),L+=f}else u[m]!=null&&(L+=u[m].v);return L}(r[1],t,e,r[0])}function hc(l,t){if(typeof t!="number"){t=+t||-1;for(var e=0;e<392;++e)if(zn[e]!==void 0){if(zn[e]===l){t=e;break}}else t<0&&(t=e);t<0&&(t=391)}return zn[t]=l,t}const Ot={format:fu,dateNumLocal:_a,load:hc,split_fmt:uu,_table:zn,load_table:function(l){for(var t=0;t!==392;++t)l[t]!==void 0&&hc(l[t],t)},parse_date_code:no,is_date:mu,get_table:function(){return Ot._table=zn}},Bt="\\s*([-]?[0-9e]*[.]?[0-9]+)",$m=new RegExp(`^rgb\\(${Bt},${Bt},${Bt}\\)$`),Gm=new RegExp(`^rgba\\(${Bt},${Bt},${Bt},${Bt}\\)$`),Jm=new RegExp(`^lrgb\\(${Bt},${Bt},${Bt}\\)$`),qm=new RegExp(`^lrgba\\(${Bt},${Bt},${Bt},${Bt}\\)$`),Km=new RegExp(`^hsl\\(${Bt},${Bt},${Bt}\\)$`),Xm=new RegExp(`^hsla\\(${Bt},${Bt},${Bt},${Bt}\\)$`),Ym=new RegExp(/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/),Qm=new RegExp(/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/),Zm=new RegExp("^index(\\d+)$","i"),Di=(l,t,e)=>[parseFloat(l),parseFloat(t),parseFloat(e)],Li=(l,t=255)=>{const e=[...l];for(var n=0;n<l.length;n++)e[n]=l[n]/t;return e},dc=(l,t=0)=>{const e=[...l];for(var n=0;n<l.length;n++)E.CommonUtils.roundAccurately(l[n],t+8)%1==.5?e[n]=Math.floor(l[n]):e[n]=E.CommonUtils.roundAccurately(l[n],t);return e},Xt=(l,t=!0)=>{const e=[...l],n=t?1:255;for(var r=0;r<l.length;r++)e[r]=Math.max(0,Math.min(n,l[r]));return e},gr=l=>Math.max(0,Math.min(1,l)),pu=l=>((l%=360)<0&&(l-=360),l),Hn=l=>{const t=[...l];for(var e=0;e<l.length;e++)t[e]=Ss(l[e]);return t},Wn=l=>{const t=[...l];for(var e=0;e<l.length;e++)t[e]=ws(l[e]);return t},Ss=l=>l<.04045?l/12.92:Math.pow((l+.055)/1.055,2.4),ws=l=>l<.0031308?12.92*l:1.055*Math.pow(l,1/2.4)-.055,jn=l=>{let t=l[0],e=l[1],n=l[2];t%=360,t/=360,e/=100,n/=100;let r=n<.5?n*(1+e):n+e-e*n,o=2*n-r;return[Math.max(0,Ui(o,r,t+1/3)),Math.max(0,Ui(o,r,t)),Math.max(0,Ui(o,r,t-1/3))]},Ui=(l,t,e)=>(e<0&&(e+=1),e>1&&(e-=1),6*e<1?l+6*(t-l)*e:2*e<1?t:3*e<2?l+6*(t-l)*(2/3-e):l),vn=l=>{let t=l[0],e=l[1],n=l[2],r=Math.min(t,Math.min(e,n)),o=Math.max(t,Math.max(e,n)),s=0;o===r?s=0:o===t?s=(60*(e-n)/(o-r)+360)%360:o===e?s=60*(n-t)/(o-r)+120:o===n&&(s=60*(t-e)/(o-r)+240);const i=(o+r)/2;let a=0;return a=o===r?0:i<=.5?(o-r)/(o+r):(o-r)/(2-o-r),[s,100*a,100*i]},Kt=0,zi=1,Ur=2,ys=0,Cs=1,Es=2,Is=0,bs=1,vs=2,tf=(l,t)=>{let e=t/100;return((n,r)=>{let o=Hn(n);o[0]=r(o[0],o),o[1]=r(o[1],o),o[2]=r(o[2],o);let s=Wn(o);return s=Xt(s),s})(l,(n,r)=>n*e)},Wo=2.55,ef=(l,t)=>{const e=vn(l),n=e[2],r=E.CommonUtils.roundAccurately((o=n,(s=t)>0?(o*Wo*(1-s)+(255-255*(1-s)))/Wo:s<0?o*Wo*(1+s)/Wo:o),3);var o,s;e[2]=r;let i=jn(e);return i=Xt(i),i},nf=(l,t)=>{let e=Hn(l),n=t/100;for(var r=0;r<3;r++)e[r]=e[r]*n+(1-n);let o=Wn(e);return o=Xt(o),o},Pi=(l,t,e)=>{let n=vn(t),r=e/1;l===Kt&&(r=pu(e)),n[l]=r;let o=jn(n);return o=Xt(o),o},Hi=(l,t,e)=>{let n=vn(t);if(l===Kt){let o=e/360;n[Kt]=360*(n[Kt]/360+o),n[Kt]%=360,n[Kt]<0&&(n[Kt]-=360)}else{let o=e/.1;n[l]=.1*(n[l]/.1+o)}let r=jn(n);return r=Xt(r),r},Wi=(l,t,e)=>{let n=vn(t),r=e/100;n[l]=n[l]*r,l===Kt&&(n[Kt]=pu(n[Kt]));let o=jn(n);return o=Xt(o),o},He=(l,t,e,n)=>{let r=Hn(t),o=e/100;n===Is?r[l]=o:n===bs?r[l]+=o:n===vs&&(r[l]*=o);let s=Wn(r);return s=Xt(s),s},rf=l=>{let t=Hn(l),e=.213*t[ys]+.715*t[Cs]+.072*t[Es];t[0]=e,t[1]=e,t[2]=e;let n=Wn(t);return n=Xt(n),n},of=l=>{let t=vn(l);t[Kt]+=180,t[Kt]%=360,t[Kt]<0&&(t[Kt]-=360);let e=jn(t);return e=Xt(e),e},uc=(l,t=!0)=>{let e=t?Hn(l):[...l];const n=t?1:255;return e[0]=n-e[0],e[1]=n-e[1],e[2]=n-e[2],t&&(e=Wn(e)),e=Xt(e,t),e},sf=l=>{const t=[0,0,0];return t[0]=ws(l[0]),t[1]=ws(l[1]),t[2]=ws(l[2]),Xt(t)},lf=l=>{const t=[0,0,0];return t[0]=Ss(l[0]),t[1]=Ss(l[1]),t[2]=Ss(l[2]),Xt(t)},gc=(l,t,e,n=null)=>{const r=o=>{let s=o.toString(16);return s.length===1?"0"+s:s};return(n===null?"":r(Math.round(255*n)))+r(Number(l)).toUpperCase()+r(Number(t)).toUpperCase()+r(Number(e)).toUpperCase()},tr=.2126,un=.7152,er=.0722;var Ye;(l=>{l.RGBA=class{constructor(e,n,r,o=1){this._private={red:e,green:n,blue:r,alpha:o}}get red(){return this._private.red}get green(){return this._private.green}get blue(){return this._private.blue}get alpha(){return this._private.alpha??1}toString(e=!0){return e&&this._private.alpha!==null?`rgba(${this.red},${this.green},${this.blue},${this.alpha})`:`rgb(${this.red},${this.green},${this.blue})`}isEqual(e){return!!e&&e.red===this.red&&e.green===this.green&&e.blue===this.blue&&e.alpha===this.alpha}isAlmostEqual(e){if(!e)return!1;const n=1.5;return!(Math.abs(e.red-this.red)>n)&&!(Math.abs(e.green-this.green)>n)&&!(Math.abs(e.blue-this.blue)>n)&&!(Math.abs(e.alpha-this.alpha)>n)}},l.HSLA=class{constructor(e,n,r,o){this._private={hue:e,sat:n,lum:r,alpha:o}}get hue(){return this._private.hue}get sat(){return this._private.sat}get lum(){return this._private.lum}get alpha(){return this._private.alpha??1}toString(e=!0){return e&&this._private.alpha!==null?`hsla(${this.hue},${this.sat},${this.lum},${this.alpha})`:`hsl(${this.hue},${this.sat},${this.lum})`}isEqual(e){return!!e&&e.hue===this.hue&&e.sat===this.sat&&e.lum===this.lum&&e.alpha===this.alpha}isAlmostEqual(e){if(!e)return!1;const n=1.5;return!(Math.abs(e.hue-this.hue)>n)&&!(Math.abs(e.sat-this.sat)>n)&&!(Math.abs(e.lum-this.lum)>n)&&!(Math.abs(e.alpha-this.alpha)>n)}};class t extends l.RGBA{toString(n=!0){return n&&this._private.alpha!==null?"#"+gc(this.red,this.green,this.blue,this.alpha??1).toUpperCase():"#"+gc(this.red,this.green,this.blue).toUpperCase()}}l.HEX=t})(Ye||(Ye={}));const af=/^#?([a-f\d])([a-f\d])([a-f\d])$/i,cf=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,xs=function(l){if(!l)return null;l=l.replace(af,function(e,n,r,o){return n+n+r+r+o+o});let t=cf.exec(l);return t?new Ye.RGBA(parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)):null},mc=["000000","FFFFFF","FF0000","00FF00","0000FF","FFFF00","FF00FF","00FFFF","000000","FFFFFF","FF0000","00FF00","0000FF","FFFF00","FF00FF","00FFFF","800000","008000","000080","808000","800080","008080","C0C0C0","808080","9999FF","993366","FFFFCC","CCFFFF","660066","FF8080","0066CC","CCCCFF","000080","FF00FF","FFFF00","00FFFF","800080","800000","008080","0000FF","00CCFF","CCFFFF","CCFFCC","FFFF99","99CCFF","FF99CC","CC99FF","FFCC99","3366FF","33CCCC","99CC00","FFCC00","FF9900","FF6600","666699","969696","003366","339966","003300","333300","993300","993366","333399","333333"],Ln=new Map;for(let l=0;l<mc.length;l++)Ln.set(l,xs(mc[l]));Ln.set(-4105,null),Ln.set(-4142,null),Ln.set(64,xs("000000")),Ln.set(65,xs("FFFFFF")),Ln.set(81,xs("FFFFFF"));const Xs=l=>Ln.get(l),ht={General:"General",Number:"Number",Currency:"Currency",Accounting:"Accounting",ShortDate:"Short Date",LongDate:"Long Date",MediumDate:"Medium Date",ShortTime:"Short Time",MediumTime:"Medium Time",LongTime:"Long Time",Comma:"Comma",Percentage:"Percentage",Fraction:"Fraction",Scientific:"Scientific",Text:"Text",Special:"Special",Custom:"Custom"};let ji=null;const _u=()=>ji||(ji=Intl.DateTimeFormat().resolvedOptions().locale??"en-US",ji),hf=/^\[\$-(.*?)\]/i,df=/^[0-9a-fA-F]+$/,uf=Ot.split_fmt,Sa=(l,t,e)=>{const n=hf.exec(l);let r=_u();if(n&&n[1]){let o=n[1];df.test(o)||o.includes("-")}if(fc[l]&&(l=fc[l]),typeof t=="number"){const o=ro(l,t,{locale:r,...e});if(o!==null)return o.fmt}return Ot.format(l,t,e)},ro=(l,t,e)=>{if(typeof t!="number")return null;const n=Mr(t,e?.date1904??!1),r=e?.locale??_u();let o=!1,s=l,i=-1;if((i=s.indexOf("Short Date"))!==-1){const a=new Intl.DateTimeFormat(r).format(n);s=s.substring(0,i)+a+s.substring(i+10),o=!0}if((i=s.indexOf("Medium Date"))!==-1){const a=Ot.format(Ot.get_table()[15],t,e);s=s.substring(0,i)+a+s.substring(i+11),o=!0}if((i=s.indexOf("Long Date"))!==-1){const a=new Intl.DateTimeFormat(r,{dateStyle:"full"}).format(n);s=s.substring(0,i)+a+s.substring(i+9),o=!0}if((i=s.indexOf("Short Time"))!==-1){const a=Ot.format(Ot.get_table()[20],t,e);s=s.substring(0,i)+a+s.substring(i+10),o=!0}if((i=s.indexOf("Medium Time"))!==-1){const a=Ot.format(Ot.get_table()[18],t,e);s=s.substring(0,i)+a+s.substring(i+11),o=!0}if((i=s.indexOf("Long Time"))!==-1){const a=new Intl.DateTimeFormat(r,{timeStyle:"medium"}).format(n);s=s.substring(0,i)+a+s.substring(i+9),o=!0}return o?{fmt:s,date:n}:null},fc=Object.freeze({"General Number":"General","General Date":"m/d/yyyy h:mm","Medium Date":Ot.get_table()[15],"Medium Time":Ot.get_table()[18],"Short Time":Ot.get_table()[20],Currency:'"$"#,##0.00_);[Red]\\("$"#,##0.00\\)',Fixed:Ot.get_table()[2],Standard:Ot.get_table()[4],Percent:Ot.get_table()[10],Scientific:Ot.get_table()[11],"Yes/No":'"Yes";"Yes";"No";@',"True/False":'"True";"True";"False";@',"On/Off":'"Yes";"Yes";"No";@'}),gf=Object.freeze({black:0,white:1,red:2,green:3,blue:4,yellow:5,magenta:6,cyan:7}),mf=l=>{let t=null;if((l=l.toLowerCase()).startsWith("color")){const e=parseInt(l.substring(5));e>=0&&e<=56&&(t=`Index${e+7}`)}if(!t){const e=gf[l];e!==void 0&&(t=Xs(e).toString())}return t},Su="=",ff="<>",wu=">",Vl="<",yu=">=",pf="<=",On=new Map;On.set(Su,(l,t)=>l===t),On.set(ff,(l,t)=>l!==t),On.set(wu,(l,t)=>l>t),On.set(Vl,(l,t)=>l<t),On.set(yu,(l,t)=>l>=t),On.set(pf,(l,t)=>l<=t);const _f=/(Black|Blue|Cyan|Green|Magenta|Red|White|Yellow|Color[0-9]+)/i,Sf=/(=|>[=]?|<[>=]?)(-?\d+(?:\.\d*)?)/i,wf=/\[(.*?)\]/g,yf=(l,t)=>{const e={color:null,condition:null};let n=null,r=new RegExp(wf);for(;(n=r.exec(l))!==null;){let o=!1,s=_f.exec(n[1]);if(s){if(o=!0,e.color)throw new Error(`format error, two colors specified: '${l}' and '${e.color}'.`);e.color=mf(s[1]),e.color||console.warn("Unable to parse LegacyColor",s[1])}let i=Sf.exec(n[1]);if(i){if(o=!0,e.condition)throw new Error(`Format error, two conditions specified: ' ${l}'`);e.condition={op:i[1],comp:parseFloat(i[2])}}if(!o)return e}return e.condition||(e.condition=t),e},Cf=(l,t)=>{let e=(r=>{const o=[];if(!r)return o;const s=r.split(";");for(let i=0;i<s.length;i++){let a=null;s.length===2?i===0?a={op:yu,comp:0}:i===1&&(a={op:Vl,comp:0}):s.length!==3&&s.length!==4||(a=i===0?{op:wu,comp:0}:i===1?{op:Vl,comp:0}:i===2?{op:Su,comp:0}:null);const c=s[i],h=yf(c,a);o.push({format:c,colorAndCondition:h})}return o})(l),n=e[0].colorAndCondition;if(e.length===1&&n&&!n.condition&&n.color)return n.color;for(let r=0;r<e.length;r++){n=e[r].colorAndCondition;let o=n?.condition??void 0;if(r===3)return typeof t=="string"&&n?.color?n.color:null;if(o&&typeof t=="number"&&On.get(o.op)(t,o.comp))return n?.color??null}},pc=l=>{if(l===ht.MediumDate||l===ht.LongDate||l===ht.ShortDate||l===ht.MediumTime||l===ht.LongTime||l===ht.ShortTime)return!0},Ef=(l,t)=>l===t?0:pc(l)?1:pc(t)?-1:l===ht.Percentage?1:t===ht.Percentage?-1:l===ht.Currency||l===ht.Accounting?1:t===ht.Currency||t===ht.Accounting?-1:0,Tr=l=>(l instanceof Date||Object.prototype.toString.call(l)==="[object Date]")&&!isNaN(l.getTime()),If=(l,t,e)=>{return e==="month"||e==="months"||e==="m"?(n=l,12*((r=t).getUTCFullYear()-n.getUTCFullYear())+(r.getUTCMonth()-n.getUTCMonth())+(r.getUTCDate()-n.getUTCDate()<0?-1:0)):e==="year"||e==="years"||e==="y"?((o,s)=>Math.abs(s.getFullYear()-o.getFullYear()))(l,t):e==="day"||e==="days"||e==="d"?((o,s)=>Math.floor((Date.UTC(s.getFullYear(),s.getMonth(),s.getDate())-Date.UTC(o.getFullYear(),o.getMonth(),o.getDate()))/864e5))(l,t):void console.warn("invalid unit"+e);var n,r},jo="d",_c="m",Sc="y",wc=(l,t,e)=>{if(e==="month"||e==="months"||e==="m"){const n=new Date(l.getTime());return new Date(n.setMonth(n.getMonth()+t))}if(e==="year"||e==="years"||e==="y"){const n=new Date(l.getTime());return n.setFullYear(n.getFullYear()+t),n}if(e==="day"||e==="days"||e==="d"){const n=new Date(l.getTime());return n.setDate(n.getDate()+t),n}if(e==="hour"||e==="hours"||e==="h"){const n=new Date(l.getTime());return n.setHours(n.getHours()+t),n}return console.warn("invalid unit"+e),null},Mr=(l,t=!1)=>{let e=Ot.parse_date_code(l,{date1904:t});return e?new Date(e.y,e.m-1,e.d,e.H,e.M,e.S,Math.round(1e3*e.u)):null},Ao=(l,t=!1)=>isNaN(l)?null:Ot.dateNumLocal(l,t),bf=new class extends nu{parse(l,t,e){const n=r=>r-1;switch(t){case"M":return nn(Cn(eu,l),n);case"MM":return nn(fo(2,l),n);case"Mo":return nn(e.ordinalNumber(l,{unit:"month"}),n);case"MMM":return e.month(l,{width:"abbreviated",context:"formatting"});case"MMMMM":return e.month(l,{width:"narrow",context:"formatting"});default:return e.month(l,{width:"wide",context:"formatting"})}}},We=(l=>{let t=l,e=[];for(let n=0;n<t.length;n++){let r=t[n][0].indexOf("yyy")>-1,o=t[n][0].indexOf(".")>-1,s=t[n][0].indexOf("-")>-1;e.push({parseFormat:t[n][0],numberFormat:t[n][1],todaysYear:!r,windowYear:!0,containsDot:o,containsDash:s}),r&&e.push({parseFormat:t[n][0].replace(/yyy/g,"yyyy"),numberFormat:t[n][1],todaysYear:!1,windowYear:!1,containsDot:o,containsDash:s})}return e})([["MM-d","d-mmm"],["MM-yyy","mmm-yy"],["M-yyy","mmm-yy"],["M-d-yyy","m/d/yyyy"],["yyy-M-d","m/d/yyyy"],["yyy-d-M","m/d/yyyy"],["d.MMM","d-mmm"],["d.MMMM","d-mmm"],["d.MMM.yyy","d-mmm-yy"],["d.MMMM.yyy","d-mmm-yy"],["MMM.d","d-mmm"],["MMMM.d","d-mmm"],["MMM.yyy","mmm-yy"],["MMMM.yyy","mmm-yy"],["MMM dd, yyy","d-mmm-yy"],["MMMM dd, yyy","d-mmm-yy"],["EEE, MMMM dd, yyy","[$-x-sysdate]ddd, mmmm dd, yyyy"],["EEEE, MMMM dd, yyy","[$-x-sysdate]dddd, mmmm dd, yyyy"]]),vf={year:0,month:1,day:0,hour:0,minute:0,second:0,millis:0},xf=(l,t=!1)=>{const e={...vf,...l};return e.year=t?1904:1900,e.dow=-1,e.oaDateTime=((n,r=!1)=>{if(!n)return null;let o=n.day,s=n.hour;s>24&&(o+=Math.floor(s/24),s%=24),o>60&&--o;const i=new Date(n.year,n.month-1,o,s,n.minute,n.second,n.millis);return Ao(i,r)})(e,t),e},Rf=new RegExp("([0-9]{1,2})\\s*(P[M]?|A[M]?)\\s*$","i"),Af=new RegExp("([0-9]+)\\s*\\:$","i"),Vi=new RegExp("(\\s*[0-9]{1,2})\\s+(P[M]?|A[M]?)\\s*$","i"),yc=new RegExp("(\\s*[0-9]{1,4})\\s*([\\.]{1}\\s*[0-9]+)?\\s*\\:","i"),Tf=new RegExp("(\\s*[0-9]{1,4})\\s*([\\.]{1}\\s*[0-9]*)?\\s*$","i"),Cu=(l,t=!1,e=!1)=>{if(!l||l.trim().length<2||l.indexOf(":")===-1&&l.match(Vi)===null)return null;let n=null,r=null,o=null,s=!1,i=!1,a="h:mm AM/PM",c=[],h=l,d=null;do{let _=h.indexOf(":");_===-1?(c.push(h),h=null):(c.push(h.substring(0,_+1)),h=h.substring(_+1,h.length))}while(c.length<3&&h&&h.length>0);if(h?.length>0)return null;const u=(_,p,S)=>{let C=_.match(p);if(!C)return null;d===null&&(d=_.substring(0,C.index));let y=parseInt(C[1]);if(C[2]&&o===null){if(S){let w=parseFloat(C[2].substring(1,C[2].length));isNaN(w)||(r=w)}let I=parseFloat(C[2]);isNaN(I)||(n=I),o=S}return y},g=(_,p)=>{let S=_.match(p);if(!S||S.length!==3)return null;d===null&&(d=_.substring(0,S.index)),s=!0;let C=parseInt(S[1]);return i=S[2].charAt(0)==="p"||S[2].charAt(0)==="P",C};c[c.length-1].trim().length===0&&c.pop();const m=[];if(c.length>0){let _=u(c[0],Af,!1);if(_===null&&(_=g(c[0],Rf)),_===null)return null;m.push(_)}if(c.length>2){let _=u(c[1],yc,!0);if(_===null&&(_=g(c[0],Vi)),_===null)return null;m.push(_)}if(c.length>1){const _=c[c.length-1];let p=u(_,yc,!1);if(p===null&&(p=u(_,Tf,!1)),p===null&&(p=g(_,Vi)),p===null)return null;m.push(p)}if(d!==null&&d.length>0&&!e)return null;if(o===!0&&(m.length===2&&m.splice(1,0,0),m[2]=r||0),s){if(m[0]>12||m[1]>=60||m[2]>=60)return null;m[0]===12?m[0]=i?12:0:i&&(m[0]+=12)}else a=c.length>2?"h:mm:ss":"h:mm",m[0]>23&&(a="[h]:mm:ss"),n!==null&&(a="mm:ss.0"),m[1]>=60&&(a="General"),m[2]>=60&&(a="General");a!=="General"&&(m.length===1&&m.push(0),m.length===2&&(n===null?m.push(0):m.unshift(0)));let f={hour:m[0]??0,minute:m[1]??0,second:m[2]??0,millis:1e3*(n??0)};return{numberFormat:a,parsed:xf(f,t),leadingText:d}},Mf={},wa=(l,t=!1,e=null)=>{const n=e??Date.now(),r=new Date(n).getFullYear();let o=l.trim().replaceAll(/\s+/g," ");o=o.replaceAll(/\s*([-/])\s*/g,"$1");let s=o.replaceAll(/[-/ ]/g,"."),i=o.replaceAll(/[/]/g,"-");const a=eo.M;eo.M=bf;for(let c=0;c<We.length;c++){let h=o;We[c].containsDot?h=s:We[c].containsDash&&(h=i);let d=Um(h,We[c].parseFormat,n,Mf),u=Ot.dateNumLocal(d,t);if(Tr(d)&&(We[c].windowYear||u>0)){if(We[c].windowYear){let m=d.getFullYear()<=29?2e3+d.getFullYear():1900+d.getFullYear();d.setFullYear(m)}if(We[c].todaysYear&&d.setFullYear(r),u=Ot.dateNumLocal(d,t),We[c].parseFormat.indexOf("EEE")>-1){const m=Sa("ddd",u,{date1904:t});if(!h.toLowerCase().includes(m.toLowerCase()))return null}let g=We[c].numberFormat;return eo.M=a,{asOADate:u,asJSDate:d,numberFormat:g}}}return eo.M=a,null};function To(l){if(!l)return!1;let t=l.replaceAll(/\[([^)]+)\]/g,"").toLowerCase();return t=t.replaceAll(/".*"/g,""),t=t.replaceAll(/\\./g,""),t=t.replace(/[_*]./g,""),!t.includes("time")&&!!(t.includes("d")||t.includes("m")&&!t.includes("h")&&!t.includes("s")||t.includes("y")||t==="short date"||t==="medium date"||t==="long date")}function gi(l){if(!l)return!1;let t=l.replaceAll(/\[([^)]+)\]/g,"").toLowerCase();return t=t.replaceAll(/".*"/g,""),t=t.replaceAll(/\\./g,""),t=t.replace(/[_*]./g,""),!t.includes("date")&&!(!t.includes("h")&&!t.includes("s")&&t!=="short time"&&t!=="medium time"&&t!=="long time")}var Cc,je;exports.IText=void 0,(Cc=exports.IText||(exports.IText={})).SmallCaps={None:"none",Small:"small",All:"all"},Cc.StrikeStyle={None:"none",Single:"single",Double:"double"},exports.ITextFrame=void 0,(je=exports.ITextFrame||(exports.ITextFrame={})).TabStop=class{},je.HorizontalAlignment={General:"general",Left:"left",Center:"center",Right:"right",Justify:"justify",Distributed:"distributed",CenterContinuous:"centerContinuous",Fill:"fill"},je.VerticalAlignment={Top:"top",Center:"center",Bottom:"bottom",Justify:"justify",Distributed:"distributed"},je.Orientation={Horizontal:"horizontal",Vertical:"90",Vertical270:"270",Stacked:"stacked"},je.ReadingDirection={Auto:"auto",LeftToRight:"ltr",RightToLeft:"rtl"},je.Overflow={Visible:"visible",Wrap:"wrap",Clip:"clip",Shrink:"shrink",Ellipsis:"ellipsis"},je.Autofit={None:"none",Normal:"normal",Shape:"shape"},je.TabStopAlignment={Default:"default",Left:"left",Right:"right",Center:"center"},je.toCSSHorizontalTextAlign=l=>l?l.toLowerCase():null;const Eu=(l,t,e=1e3)=>{if(!l)throw new Error("A template string must be specified.");if(t(l))return l;let n=new RegExp(/\d+/,"g").exec(l),r=null,o=0;n!==null?(r=l,o=parseFloat(n[0]),isNaN(o)&&(o=0)):(o=1,r=`${l}_${o}`);let s=isNaN(o)?0:o;for(;o<s+e;)try{const i=r.replace(/\d+/g,()=>""+o++);if(t(i))return i}catch{}throw new Error(`Unable to find valid name for '${l}'.`)},Ir=(l,t=!1)=>{if(!l||l.length===0)return l;const e=l.charAt(0);if(e>="a"&&e<="z"){const n=String.fromCharCode(e.charCodeAt(0)-32);return t?n+l.slice(1).toLowerCase():n+l.slice(1)}return l},Ec=l=>{if(!l||typeof l!="string")return"";const t=l.split(/[\\/]/).pop()||"",e=t.lastIndexOf(".");return t===""||e<1?"":t.slice(e+1)},Iu=l=>l.toLowerCase().replace(/([-_][a-z])/g,t=>t.toUpperCase().replace("-","").replace("_","")),bu=(l,t=36)=>l.substring(0,36)+(l.length>t?"…":""),Rs=l=>{if(l===void 0)return 0;let t=l.toString().split(".");return t.length<=1?0:t[1].length||0},vu=new RegExp(/^["|'|`](.*)["|'|`]$/),Ff=new RegExp("^([a-zA-Z]+:\\/\\/)?((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|((\\d{1,3}\\.){3}\\d{1,3}))(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*(\\?[;&a-z\\d%_.~+=-]*)?(\\#[-a-z\\d_]*)?$","i"),xu=(l=",",t="'")=>new RegExp(`\\s*${l}\\s*(?=(?:[^${t}]*${t}[^${t}]*${t})*[^${t}]*$)`,"g"),Ru=xu(),ya=l=>l.replace(vu,"$1"),Au=(l,t="'")=>`${t}${l}${t}`,Tu=(l,t=void 0,e=void 0)=>{let n=Ru;return t===void 0&&e===void 0||(n=xu(t,e)),l.split(n)},Mu=l=>{let t;try{t=new URL(l)}catch{return!1}return(t.protocol==="http:"||t.protocol==="https:")&&Ff.test(l)},Nf=new RegExp(/^[^\s@]+@[^\s@]+\.[^\s@]+$/i),Fu=l=>!!l.toLowerCase().startsWith("mailto:")||Nf.test(l),Nu=l=>((l>=26?Nu((l/26|0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[l%26|0]).toUpperCase(),Of=Object.freeze(Object.defineProperty({__proto__:null,DefaultUnQuoteRegEx:Ru,camelToSnake:l=>l&&l.replace(/[A-Z]/g,t=>`_${t.toLowerCase()}`),capitalize:Ir,clampString:bu,countDecimals:Rs,findValidTextValue:Eu,getBaseName:(l,t=!1)=>{if(!l||typeof l!="string")return"";const e=l.split(/[\\/]/).pop()||"";if(e==="")return"";const n=Ec(e),r=n.length===0?e:e.slice(0,e.length-n.length-1);return t?Ir(r,!0):r},getFileNameExtension:Ec,isQuoted:l=>l&&l.length>1&&vu.test(l)&&l[0]===l[l.length-1],isValidEmail:Fu,isValidHttpUrl:Mu,numberToAlphabet:Nu,quote:Au,snakeToCamel:Iu,splitUnquoted:Tu,unquote:ya},Symbol.toStringTag,{value:"Module"})),kf=(l,t,e,n=null)=>{const r=(t||11*exports.IFont.getDeviceScale())/exports.IFont.getDeviceScale(),o=n?.letterSpacing||0,s=l.length,i=s*(.55*r)-(l.match(/[il.,;!|]/g)||[]).length*r*.15+(l.match(/[mwMW]/g)||[]).length*r*.1+(s>0?(s-1)*o:0),a=Math.ceil(1.2*r),c=Math.ceil(.8*r),h=Math.ceil(.2*r),d=Math.ceil(.45*r),u=Math.ceil(1.1*r),g=Math.max(1,Math.ceil(.08*r));return{width:i,lineHeight:a,baseline:c,lineGap:h,strikePosition:d,underlinePosition:u,strikeThickness:g,underlineThickness:g,actualBoundingBoxLeft:0,actualBoundingBoxRight:i,actualBoundingBoxAscent:c,actualBoundingBoxDescent:a-c,fontBoundingBoxAscent:c,fontBoundingBoxDescent:a-c,emHeightAscent:c,emHeightDescent:a-c,hangingBaseline:.8*c,alphabeticBaseline:c,ideographicBaseline:a}},Jt={},Ic=(l,t)=>{let e="normal";return l&&t?e="bold italic":l?e="bold":t&&(e="italic"),e},bc=l=>l.split(",").map(t=>{const e=(t=t.trim()).indexOf(" ")>=0,n=t.indexOf('"')>=0||t.indexOf("'")>=0;return e&&!n&&(t=`"${t}"`),t}).join(", "),vc=new Map,$i=new Map;let Ve=null;const Bf=(l,t,e,n=null)=>{const r=n?.letterSpacing||0;typeof window>"u"||Jt.contextMeasure||(Jt.canvasMeasure=document?document.createElement("canvas"):null,Jt.contextMeasure=Jt.canvasMeasure.getContext("2d"),Jt.contextMeasure.letterSpacing=`${r}px`,Jt.contextMeasure.textRendering="geometricPrecision",Jt.contextMeasure.textBaseline="alphabetic",Jt.contextMeasure.textAlign="left");const o=e||"calibri",s=t||11*exports.IFont.getDeviceScale(),i=n?.isBold||!1,a=n?.isItalic||!1;let c=null;if(l==="#"||l==="0"||l==="M"||l===""||l==="_"||l==="-"){c=((f,_,p,S,C,y)=>f+Math.round(100*_)/100+p+S+C+y)(l,s,o,i,a,r);const m=vc.get(c);if(m)return m}if(Ve&&Ve.text===l&&Ve.size===t&&Ve.family===e&&Ve.options?.isBold===n?.isBold&&Ve.options?.isItalic===n?.isItalic&&Ve.options?.letterSpacing===n?.letterSpacing)return Ve.metrics;let h={};const d=Ic(i,a)+" "+E.CommonUtils.roundAccurately(s,2)+"px "+bc(o);Jt.contextMeasure?(Jt.contextMeasure.font=d,Jt.contextMeasure.letterSpacing=`${n?.letterSpacing??0}px`,h=Jt.contextMeasure.measureText(l)):h.width=l.length*E.CommonUtils.roundAccurately(s/exports.IFont.getDeviceScale()*.6,2);let u=$i.get(d);if(!u&&typeof window<"u"){const m=document.createElement("div");m.style.visibility="hidden",m.style.position="absolute";const f=document.createElement("span");f.textContent="Mj",f.style.fontSize="100px",f.style.fontWeight=n?.isBold?"bold":"normal",f.style.fontStyle=n?.isItalic?"italic":"normal",f.style.fontFamily=`'${o}'`,f.style.lineHeight="1.2",m.appendChild(f),document.body.appendChild(m);const _=m.getBoundingClientRect(),p=f.getBoundingClientRect();document.body.removeChild(m),Jt.contextMeasure.font=Ic(i,a)+" "+E.CommonUtils.roundAccurately(100,2)+"px "+bc(o);const S=Jt.contextMeasure.measureText("M"),C=_.bottom-_.top,y=C-(S.fontBoundingBoxAscent+S.fontBoundingBoxDescent),I=S.fontBoundingBoxAscent+p.top,w=Jt.contextMeasure.measureText("_"),b=I-w.actualBoundingBoxAscent,x=Math.max(1,Math.abs(w.actualBoundingBoxAscent+w.actualBoundingBoxDescent)),R=Jt.contextMeasure.measureText("-"),v=E.CommonUtils.roundAccurately(I-R.actualBoundingBoxAscent+Math.max(1,.05*C,0)),T=x,M=s/100;u={lineHeight:Math.ceil(C*M),baseline:Math.ceil(I*M),lineGap:Math.ceil(y*M),strikePosition:Math.ceil(v*M),underlinePosition:Math.ceil(b*M),strikeThickness:Math.ceil(T*M),underlineThickness:Math.ceil(x*M)},Jt.contextMeasure.font=d,$i.set(d,u)}u||(u={lineHeight:Math.ceil(1.2*s),baseline:Math.ceil(s)+Math.floor(.1*s),lineGap:Math.ceil(.1*s),strikePosition:Math.ceil(.55*s)+Math.floor(.1*s),strikeThickness:1,underlinePosition:Math.ceil(1.1*s),underlineThickness:1},$i.set(d,u));const g={...h,width:h.width,...u};return c!==null&&vc.set(c,g),Ve={text:l,size:t,family:e,options:n,metrics:g},g};let nr=null;const Df=()=>{if(nr)return nr;try{const l=document.createElement("canvas"),t=l.getContext&&l.getContext("2d");t&&typeof t.fillText=="function"&&(nr=Bf)}catch{}return nr||(console.warn("⚠️ CanvasFontMeasurer not available, falling back to SimpleFontMeasurer"),nr=kf),nr};let Vo=null;var $e;exports.IFont=void 0,($e=exports.IFont||(exports.IFont={})).Style={Normal:"normal",Italic:"italic"},$e.Scheme={Major:"major",Minor:"minor",None:"none"},$e.UnderlineStyle={None:"none",Double:"double",DoubleAccounting:"doubleAccounting",Single:"single",SingleAccounting:"singleAccounting"},$e.VerticalAlignment={Baseline:"baseline",Sub:"sub",Super:"super"},$e.setSharedMeasurer=l=>{Vo=l},$e.getSharedMeasurer=()=>Vo||(Vo=Df(),Vo),$e.getDeviceScale=()=>96/72*1,$e.getPanoseFallback=l=>{const t=[],e=l.length;for(let s=0;s<e;s+=2)t.push(parseInt(l.substring(s,s+2),16));const n=t[0],r=t[1],o=t[3];switch(n){case 2:return o===9?"monospace":r>=2&&r<=8?"serif":"sans-serif";case 3:return"cursive";case 4:return"fantasy";case 5:return"monospace";default:return"sans-serif"}},$e.GenericName={Serif:"serif",SanSerif:"sans-serif",MonoSpace:"monospace",Cursive:"cursive",Fantasy:"fantasy",SystemUI:"system-ui",UISystem:"ui-system",UISerif:"ui-serif",UISanSerif:"ui-sans-serif",UIMonoSpace:"ui-monospace",UIRounded:"ui-rounded",Math:"math",Emoji:"emoji",Fangsong:"fangsong"};class Ou{constructor(t){this._private={input:t},typeof t=="string"?this._private.name=t:Object.assign(this._private,t)}toJSON(){return this._private.input}getFamily(){return this._private.name}getPitch(){return this._private.pitch}getPanose(){return this._private.panose}toString(){return typeof this._private.input=="string"?this._private.input:JSON.stringify(this._private.input)}get isIFont(){return!0}}const ku=["Arial","Arial Black","Brush Script MT","Calibri","Comic Sans MS","Courier New","Garamond","Georgia","Impact","Luminari","Palatino Linotype","Tahoma","Times New Roman","Trebuchet MS","Verdana"],oe=new Map;oe.set(exports.IFont.GenericName.Serif,["Tahoma"]),oe.set(exports.IFont.GenericName.SanSerif,["Calibri"]),oe.set(exports.IFont.GenericName.MonoSpace,["Courier New"]),oe.set(exports.IFont.GenericName.Cursive,["Comic Sans MS"]),oe.set(exports.IFont.GenericName.Fantasy,["Luminari"]),oe.set(exports.IFont.GenericName.UISystem,["Arial"]),oe.set(exports.IFont.GenericName.UISerif,["Tahoma"]),oe.set(exports.IFont.GenericName.UISanSerif,["Arial"]),oe.set(exports.IFont.GenericName.UIMonoSpace,["Courier New"]),oe.set(exports.IFont.GenericName.UIRounded,["Arial"]),oe.set(exports.IFont.GenericName.Math,[]),oe.set(exports.IFont.GenericName.Emoji,[]),oe.set(exports.IFont.GenericName.Fangsong,[]);const $l=new Map;let Bu=[];Ca(ku);const Lf=eval;function Ca(l){l||Ca(ku);let t=[];for(let e=0;e<l.length;e++){let n=l[e];typeof n=="string"&&(n=new Ou(n));let r=!0;const o="document";try{r=Lf(`${o}.fonts.check('12px ${n.getFamily()}')`)}catch{}const s={fontRef:n,loaded:r};t.push(s),$l.set(n.getFamily(),s)}Bu=Object.freeze(t)}const Gi=new Map,Uf=Object.freeze(Object.defineProperty({__proto__:null,findBestMatch:(l,t)=>{const e=Gi.get(l);if(e)return e.fontRef===null?null:e;let n=[l];t.fallbacks&&(n=n.concat(t.fallbacks));let r=null;for(let o=0;!r&&o<n.length;o++){let s=n[o];if(r=$l.get(s),!r){const i=oe.get(s);if(i)for(let a=0;!r&&a<i.length;a++)r=$l.get(i[a])}}return r?Gi.set(l,r):Gi.set(l,{fontRef:null,loaded:!1}),r},getFontList:function(){return Bu},setFontList:Ca},Symbol.toStringTag,{value:"Module"}));class mi{constructor(t,e,n,r=null,o=null,s=null){this._private={wrapped:!0,insets:E.TypesUtils.EmptyRect,orientation:exports.ITextFrame.Orientation.Horizontal,autoFit:exports.ITextFrame.Autofit.None,fontScale:1,vertical:!1,columnCount:1,columnSpacing:0,verticalAlignment:exports.ITextFrame.VerticalAlignment.Center,horizontalCentered:!1,lineReduction:0,isSpaceFirstLastPara:!1,presetTextWarp:null,paragraphs:E.CommonUtils.EmptyArray},this._bounds=null,this._textBounds=null,this._lines=null,this._lastLayoutDims=void 0,this._lastLayout=void 0,this._private=Object.assign(this._private,t||{}),this._defaultFont=e,this._alignment=n,this._lines=r,this._bounds=Object.freeze(o),this._textBounds=Object.freeze(s)}visitParas(t){t?.visitTextFrame?.(this);const e=this.paragraphs,n=e.length;for(let r=0;r<n;r++){const o=e[r];t?.visitTextParagraph?.(o,r,n);const s=o.runs,i=s.length;for(let a=0;a<i;a++)t?.visitTextRun?.(s[a],a,i)}}visitLines(t){t?.visitTextFrame?.(this);const e=this.lines,n=e.length;for(let r=0;r<n;r++){const o=e[r];t?.visitTextLine?.(o,r,n);const s=o.runs,i=s.length;for(let a=0;a<i;a++)t?.visitTextRun?.(s[a],a,i)}}layout(t=null){return this._lastLayout&&this._lastLayoutDims?.width===t?.width&&this._lastLayoutDims?.height===t?.height||(this._lastLayout=Gf(this,this._defaultFont,this._alignment,t),this._lastLayoutDims=t),this._lastLayout}clone(t){const e=t?.visitTextFrame?.(this),n=Object.assign(this._private,e||{});return delete n.bounds,new mi(n,this._defaultFont,this._alignment)}equals(t){return E.CommonUtils.deepEqual(this._private,t._private)}createTemporaryTextFrame(t,e){return _i(t,this._defaultFont,this._alignment,e??this._private.wrapped)}get bounds(){if(this._bounds===null)throw new Error(xc);return this._bounds}get textBounds(){if(this._textBounds===null)throw new Error(xc);return this._textBounds}get lines(){return this._lines}get wrapped(){return this._private.wrapped}get insets(){return this._private.insets}get orientation(){return this._private.orientation}get autoFit(){return this._private.autoFit}get fontScale(){return this._private.fontScale}get vertical(){return this._private.vertical}get columnCount(){return this._private.columnCount}get columnSpacing(){return this._private.columnSpacing}get verticalAlignment(){return this._private.verticalAlignment}get horizontalCentered(){return this._private.horizontalCentered}get lineReduction(){return this._private.lineReduction}get isSpaceFirstLastPara(){return this._private.isSpaceFirstLastPara}get presetTextWarp(){return this._private.presetTextWarp}get paragraphs(){return this._private.paragraphs}}const xc="bounds can not be used until layout";class Rc{static{this.NL=`
`}static{this.DefaultLineSpacing=100}static{this.DefaultTabWidth=72}}class fi{constructor(t){this._private={defaultFontSize:11,defaultTabSize:Rc.DefaultTabWidth,tabOverrides:E.CommonUtils.EmptyArray,spacingBefore:0,spacingAfter:0,lineSpacing:Rc.DefaultLineSpacing,align:exports.ITextFrame.HorizontalAlignment.Left,endParagraphSize:0,indentLevel:0,leadingIndent:0,hangingIndent:0,rightMargin:0,bullet:null},this._private=Object.assign(this._private,t||{})}clone(t){const e=t?.visitTextParagraph?.(this,0,1),n=Object.assign(this._private,e||{});return delete n.bounds,new fi(n)}equals(t){return E.CommonUtils.deepEqual(this._private,t._private)}get bounds(){return this._bounds}get defaultFontSize(){return this._private.defaultFontSize}get defaultTabSize(){return this._private.defaultTabSize}get tabOverrides(){return this._private.tabOverrides}get spacingBefore(){return this._private.spacingBefore}get spacingAfter(){return this._private.spacingAfter}get lineSpacing(){return this._private.lineSpacing}get align(){return this._private.align}get endParagraphSize(){return this._private.endParagraphSize}get indentLevel(){return this._private.indentLevel}get leadingIndent(){return this._private.leadingIndent}get hangingIndent(){return this._private.hangingIndent}get rightMargin(){return this._private.rightMargin}get bullet(){return this._private.bullet}get runs(){return this._private.runs}}class pi{constructor(t,e=null){this._private={text:null,fontName:"Arial",bold:!1,italic:!1,superSub:!1,fontSize:11,letterSpacing:0,kerningMin:10,smallCaps:exports.IText.SmallCaps.None,offset:0,strikeStyle:exports.IText.StrikeStyle.None},this._private={...this._private,...t},this._bounds=e}clone(t){const e=t?.visitTextRun?.(this,0,1),n=Object.assign(this._private,e||{});return delete n.bounds,new pi(n)}equals(t){return E.CommonUtils.deepEqual(this._private,t._private)}get bounds(){return this._bounds}get text(){return this._private.text}get fontName(){return this._private.fontName}get bold(){return this._private.bold}get italic(){return this._private.italic}get fontSize(){return this._private.fontSize}get superSub(){return this._private.superSub}get letterSpacing(){return this._private.letterSpacing}get kerningMin(){return this._private.kerningMin}get smallCaps(){return this._private.smallCaps}get offset(){return this._private.offset}get strikeStyle(){return this._private.strikeStyle}}class Du{constructor(t,e,n){this._private={},this._private={bounds:t,baseline:e,runs:n}}get bounds(){return this._private.bounds}get baseline(){return this._private.baseline}get runs(){return this._private.runs}get bullet(){return null}}function Ea(l){return l&&l.__esModule&&Object.prototype.hasOwnProperty.call(l,"default")?l.default:l}var Ac,Tc,Mc,Fc,Nc,Oc;function zf(){if(Fc)return Mc;Fc=1;const l=new Uint8Array(new Uint32Array([305419896]).buffer)[0]===18,t=(e,n,r)=>{let o=e[n];e[n]=e[r],e[r]=o};return Mc={swap32LE:e=>{l&&(n=>{const r=n.length;for(let o=0;o<r;o+=4)t(n,o,o+3),t(n,o+1,o+2)})(e)}}}var Pf=function(){if(Oc)return Nc;Oc=1;const l=function(){if(Tc)return Ac;function e(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function n(w,b){this.source=w,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=b,this.destLen=0,this.ltree=new e,this.dtree=new e}Tc=1;var r=new e,o=new e,s=new Uint8Array(30),i=new Uint16Array(30),a=new Uint8Array(30),c=new Uint16Array(30),h=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),d=new e,u=new Uint8Array(320);function g(w,b,x,R){var v,T;for(v=0;v<x;++v)w[v]=0;for(v=0;v<30-x;++v)w[v+x]=v/x|0;for(T=R,v=0;v<30;++v)b[v]=T,T+=1<<w[v]}var m=new Uint16Array(16);function f(w,b,x,R){var v,T;for(v=0;v<16;++v)w.table[v]=0;for(v=0;v<R;++v)w.table[b[x+v]]++;for(w.table[0]=0,T=0,v=0;v<16;++v)m[v]=T,T+=w.table[v];for(v=0;v<R;++v)b[x+v]&&(w.trans[m[b[x+v]]++]=v)}function _(w){w.bitcount--||(w.tag=w.source[w.sourceIndex++],w.bitcount=7);var b=1&w.tag;return w.tag>>>=1,b}function p(w,b,x){if(!b)return x;for(;w.bitcount<24;)w.tag|=w.source[w.sourceIndex++]<<w.bitcount,w.bitcount+=8;var R=w.tag&65535>>>16-b;return w.tag>>>=b,w.bitcount-=b,R+x}function S(w,b){for(;w.bitcount<24;)w.tag|=w.source[w.sourceIndex++]<<w.bitcount,w.bitcount+=8;var x=0,R=0,v=0,T=w.tag;do R=2*R+(1&T),T>>>=1,++v,x+=b.table[v],R-=b.table[v];while(R>=0);return w.tag=T,w.bitcount-=v,b.trans[x+R]}function C(w,b,x){var R,v,T,M,F,N;for(R=p(w,5,257),v=p(w,5,1),T=p(w,4,4),M=0;M<19;++M)u[M]=0;for(M=0;M<T;++M){var O=p(w,3,0);u[h[M]]=O}for(f(d,u,0,19),F=0;F<R+v;){var L=S(w,d);switch(L){case 16:var B=u[F-1];for(N=p(w,2,3);N;--N)u[F++]=B;break;case 17:for(N=p(w,3,3);N;--N)u[F++]=0;break;case 18:for(N=p(w,7,11);N;--N)u[F++]=0;break;default:u[F++]=L}}f(b,u,0,R),f(x,u,R,v)}function y(w,b,x){for(;;){var R,v,T,M,F=S(w,b);if(F===256)return 0;if(F<256)w.dest[w.destLen++]=F;else for(R=p(w,s[F-=257],i[F]),v=S(w,x),M=T=w.destLen-p(w,a[v],c[v]);M<T+R;++M)w.dest[w.destLen++]=w.dest[M]}}function I(w){for(var b,x;w.bitcount>8;)w.sourceIndex--,w.bitcount-=8;if((b=256*(b=w.source[w.sourceIndex+1])+w.source[w.sourceIndex])!==(65535&~(256*w.source[w.sourceIndex+3]+w.source[w.sourceIndex+2])))return-3;for(w.sourceIndex+=4,x=b;x;--x)w.dest[w.destLen++]=w.source[w.sourceIndex++];return w.bitcount=0,0}return function(w,b){var x;for(x=0;x<7;++x)w.table[x]=0;for(w.table[7]=24,w.table[8]=152,w.table[9]=112,x=0;x<24;++x)w.trans[x]=256+x;for(x=0;x<144;++x)w.trans[24+x]=x;for(x=0;x<8;++x)w.trans[168+x]=280+x;for(x=0;x<112;++x)w.trans[176+x]=144+x;for(x=0;x<5;++x)b.table[x]=0;for(b.table[5]=32,x=0;x<32;++x)b.trans[x]=x}(r,o),g(s,i,4,3),g(a,c,2,1),s[28]=0,i[28]=258,Ac=function(w,b){var x,R,v=new n(w,b);do{switch(x=_(v),p(v,2,0)){case 0:R=I(v);break;case 1:R=y(v,r,o);break;case 2:C(v,v.ltree,v.dtree),R=y(v,v.ltree,v.dtree);break;default:R=-3}if(R!==0)throw new Error("Data error")}while(!x);return v.destLen<v.dest.length?typeof v.dest.slice=="function"?v.dest.slice(0,v.destLen):v.dest.subarray(0,v.destLen):v.dest}}(),{swap32LE:t}=zf();return Nc=class{constructor(e){const n=typeof e.readUInt32BE=="function"&&typeof e.slice=="function";if(n||e instanceof Uint8Array){let r;if(n)this.highStart=e.readUInt32LE(0),this.errorValue=e.readUInt32LE(4),r=e.readUInt32LE(8),e=e.slice(12);else{const o=new DataView(e.buffer);this.highStart=o.getUint32(0,!0),this.errorValue=o.getUint32(4,!0),r=o.getUint32(8,!0),e=e.subarray(12)}e=l(e,new Uint8Array(r)),e=l(e,new Uint8Array(r)),t(e),this.data=new Uint32Array(e.buffer)}else({data:this.data,highStart:this.highStart,errorValue:this.errorValue}=e)}get(e){let n;return e<0||e>1114111?this.errorValue:e<55296||e>56319&&e<=65535?(n=(this.data[e>>5]<<2)+(31&e),this.data[n]):e<=65535?(n=(this.data[2048+(e-55296>>5)]<<2)+(31&e),this.data[n]):e<this.highStart?(n=this.data[2080+(e>>11)],n=this.data[n+(e>>5&63)],n=(n<<2)+(31&e),this.data[n]):this.data[this.data.length-4]}}}();const Hf=Ea(Pf);var kc,Bc={},Wf=(kc||(kc=1,function(l){var t=typeof Uint8Array<"u"?Uint8Array:Array,e=43,n=47,r=48,o=97,s=65,i=45,a=95;function c(h){var d=h.charCodeAt(0);return d===e||d===i?62:d===n||d===a?63:d<r?-1:d<r+10?d-r+26+26:d<s+26?d-s:d<o+26?d-o+26:void 0}l.toByteArray=function(h){var d,u,g,m,f,_;if(h.length%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var p=h.length;f=h.charAt(p-2)==="="?2:h.charAt(p-1)==="="?1:0,_=new t(3*h.length/4-f),g=f>0?h.length-4:h.length;var S=0;function C(y){_[S++]=y}for(d=0,u=0;d<g;d+=4,u+=3)C((16711680&(m=c(h.charAt(d))<<18|c(h.charAt(d+1))<<12|c(h.charAt(d+2))<<6|c(h.charAt(d+3))))>>16),C((65280&m)>>8),C(255&m);return f===2?C(255&(m=c(h.charAt(d))<<2|c(h.charAt(d+1))>>4)):f===1&&(C((m=c(h.charAt(d))<<10|c(h.charAt(d+1))<<4|c(h.charAt(d+2))>>2)>>8&255),C(255&m)),_},l.fromByteArray=function(h){var d,u,g,m=h.length%3,f="";function _(S){return"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(S)}function p(S){return _(S>>18&63)+_(S>>12&63)+_(S>>6&63)+_(63&S)}for(d=0,g=h.length-m;d<g;d+=3)f+=p(u=(h[d]<<16)+(h[d+1]<<8)+h[d+2]);switch(m){case 1:f+=_((u=h[h.length-1])>>2),f+=_(u<<4&63),f+="==";break;case 2:f+=_((u=(h[h.length-2]<<8)+h[h.length-1])>>10),f+=_(u>>4&63),f+=_(u<<2&63),f+="="}return f}}(Bc)),Bc),Gl={};const jf=[[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4],[0,4,4,1,1,4,4,4,4,1,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,4,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[4,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,0,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,1,1,1,1,0,0,4,2,4,1,1,1,1,1,0,1,1,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,1,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,4,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,1,1,1,1,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,1,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,1,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0]],Vf=new Hf(Ea(Wf).toByteArray("AAgOAAAAAAAQ4QAAAQ0P8vDtnQuMXUUZx+eyu7d7797d9m5bHoWltKVUlsjLWE0VJNigQoMVqkStEoNQQUl5GIo1KKmogEgqkKbBRki72lYabZMGKoGAjQRtJJDaCCIRiiigREBQS3z+xzOTnZ3O+3HOhd5NfpkzZx7fN9988zivu2M9hGwB28F94DnwEngd/Asc1EtIs9c/bIPDwCxwLDgezHcodyo4w5C+CCwBS8FnwSXgCnA1uFbI93XwbXAbWAfWgx+CzWAb+An4KfgFeAzsYWWfYuFz4CXwGvgb+Dfo6yNkEEwGh4CZYB44FpwI3g1OY+kfBItZOo2fB84Hy8DF4HJwNbiWpV8PVoO1LH4n2NRXyN+KcAd4kNVP9XsY4aPgcfAbsBfs6SniL4K/sPjfEf6HlanXCRkCw2BGvUh/keWfXS/CY+pFXs7x9XHmM94LTmWIeU2cgbxnS/k/B3kf86jDhU8L9V2E40vAFWAlWFUfb++NOL4F3C7JX4/4GiE+hvgWsF0oS7mXldspnN+F493gyXrh9xTav0cg3EvzgVfBG6wsmVSEkxBOBgdPGpd7JI6PnqRvJ68/xlbHof53gPeA94OzwLngk+ACsAwsByvASrAK3MB0Ws3CtQjvBJvAVrADPMDSHkb4CNijaccTwvnf4fiPEs8Lxy+D18A/QU8/xjgYBjPAbDAKTgYLwOngTHAO+EQ/8wuEF4EvsPiVCFf2+9tsFStzA8LVHuXXBsi6QyqzUYiPMR/7Mc7dAx7oL8bzw/3u/Bw8Bp4Az4AXwCtgHzsmDXP5fiF9iiVvly5d0sHngar16NKlS5cuXbp06fLmYlqHXrcd3ph4P0THUY3iXh49novju4S0tzfs5d+JPKewfAsRntZb3K9ZhOMlrO6lCC8An28U9+OuovcPcPxlVu5rCL/VmHh/iHIrzn3fIPu7SN8Axmg+8AOwEWwCm7tp3bRuWjetm5Y8bSu4B9zbKO6ZVsnORrVU3f4uXTqZ2H3sLoyx3eDXjfDndE9qyj6L838CfwVvgFpzYnof4oNgOhgBc8Fos9DrZIQLmtXPP1MmF6wGj4H+KXoWguvADkXaPil+YpuQy8Am8Ey7ODdtmJDF4HowBp4De6HDTNjhfHAHeBr0DBBy0kDxfPbcgSIusgrcWhtnJ8vL+TPix7UIOQtcBq4C28Cr4KRBnANbwSuDE+s50JgyNNFuXbp06XIgsXjIvPafjvXozKY+fVFz/z0LT1uCtKVSWbrOLWPnztG8e0Xfy7ol8XtZJi7WtG+5od2UFXQ/A12vUeS7jp27yVKHjdsU9lXB869TyNvAzt0lpP2oWbwLdjiO78bx/Sz+EMJHwK9Y/LcIfw+eZ3F67/Hl5vh9xX80J+rwX8SvRDhpgL17iPAQMHNArfPrqHPewLheI+AERV6efwV418B4nOZ/H+IfYHV8GOF5LJ3eAz0fx8sM9S0fUNud39O9CulfGZhY5huI3wzWgNvBelbHZoTbNPVpfYjKQpkHwUNgl0LWblbnk0LbbDxr0OMFpL3iqWdu9nWYPlVAWkXY39LnGdCkDbeqv1YNbfcMQ3t9oe8lzm6NH9N1ZB6Ln4BwfkJZJk7RyFnYKt6b/JDQXx9p5X+eFdqOjzM9P9MB/lUlFzr20aXIdzlY4dmn9F3YqtvoO76/2hp/D/xA5Zue88nNyL8GbFbs075X0tyUig3Qd2MCnf//HjnzpbsR3g9+1kHzzVjdnE71/qVBX9rGPUh/ysNWe1neFzvIDi5zAufV1sT0N0poR22wkFUfTOPfA4N2mbZ5fSrqOHSw+IbkSBbOGSzSRgf91/GTUWYBOB2cIZQ/G8cfBZ8CFwrnL8XxF8FKcA24jqXdiPA7Qr61OF7H4mMItwzuv2/YLth1ISt3Hzu3k4W7EH5JqPdRHD/O4k+z8A8IX5Lq3y7Z4nXE9xn6kX6vQ4bKfy+ok+hH+xf3hq9dnTTHhjKd2GmDuWA242iHMq4cC7A8kJ7i8o1+skSa7Jieo38HCWnoNjKFhdSFBxzpZ7QE6lI8N4S14aASZcryaV/WWHw66f6NHuCoxuQxmvM56GX9QMd8Q4D65ywGP+ZzRJuM+zQvx/MOS2VFeqQ4IXnH26zM9Xe6/E6D+4foAzzuajPZp8Qyw5ayZVDWuH0z0BtYRkeIDqH9KO9VbH1btd/lhNqCzvl8zeLnG0S/hnU6baHfpiuO6yy0rd+DHURo/zYF5H26j03rQsip2ndzz82u1z9N4VjWKWeb68Tedpt95HRVXp7H1R6p+/Wt4FPy/PpWwscOLRJ+PVWF/+W0iVyGzs18TIvXkOJ1Wxm66vSXz+vylenrZcj1ub439W+K8RNCGTJi2p/TJ1K23VaXr35tRpnzmjxequgfcfyk6B/TGBVlyedsNgpdd/h+W1U3P99QyFPNo1X3TwpM/WLTIWYfoBqXrv6iskHZ/RFr79R6hIyHBrH3f1nrUVnjP8SnZZ+rYtzr9Exld5MNbPNErusAPg+77u/eDOPftU9yj39TH7rezxd1LvsZQJlzkWlOirG/79zjMj/mtHUKu7vKy+3/LnXr9okyKedjX5/0He9iP/j63LwOQdarEVlfy8OO/Lqw023j6xcqmwxLiOd6heM2i9cV9LJy8jMJ23yQ+rpbfu7EQ/pXE8KYvUSqvVnb4XzZa6LrHMXHR+zcLvqWbm/Bn0/HzIs6fWPHoat8XfnDKmZGxRxeMbn2UqZ5Q94nmcZRbqqUXbZ8+lcjE+cPX11t814orvvAXNcG8vqj2vvk1MGn3anlj0bIT72v47bvE+Lc98T9b6r7AKn6j+8Duf7D0nnZx/j7Zjn0j9nbpSTndaLr9WNLivP+iN23xF7L+fqv6ZouFyb78jxVXvv5jJ9YUs9/sddO8h7KNg5jrhfaJGztT6G7KF+1d6yCmD5Kdb2fan60rSc552fZr3zeQ9DpnPp+Si5cx5Ktv2QfSzF/mMbWdOm46rFI4XstnU9xeqX4NKb7TKEdcr6pZOK3ID1k/LvFHkVczEuZLEDr499YqvqBym1aEHWgcvoYOtv0M91qQl5TfpO/in6rWx8OVpT1Wedkv3f5xom3T/xeR/6Gx6V86PWAOB4bBpqWdN+yTcVxjIyGRz/FrDGu6w/3d7kPm8StX8RyPu+uuvpNju/vTLJV37GpvoM0oZPnW87VLnL/5pDno1NoW1R6yedU6TyUv3u19a3KFnIbTLYz+ZCLP4T0tU1uivFgso0pnsJ/UtXvarNY28Xq5cvkBDrQP/E5ZaiuQwwfmTlsOiQRU1fMuqrDd/3ISSuwjOwXOfTyGUMpZIXq4GpLn3pUcdfzch2x7XO1u2uZHOPb1G6b3Xg9PH1IIWeEpJlPQtqos2EKW8b0u8rnuP1UeVLoXJb9be0uG9nnbchjU+XTszT5VeNBThPHnc5OKj1U9aj0GTHIVaGy1YhEWT4ixns00DT+XEzWn/7VAsIc63Cov3OdyhwjrnaqQqZvWKXdypRdlq+k8msZ031U+Rm4fA+3TtyeR9hwfW9G9yxDN0fZMN33F+9TE6md4hwoxumfaUzI9fN3PFT3xVV2msrQ3UsnChm6Nulk8TndpS28D3zX9tTIPsF/z7Am5OkTjm1tI1JZW74+4VgsZ0N3L1yXV3WeP5uR7TGHHdvC3JQlxybfpd22tDlk/2eofRK8TzrN/qnar/K/OUTth6I/+jAnEptNbPvFHP2gs40N3+dfMWtwqvVct7/wfd8gtQ7imifial9ZJ9/3IHLYU6eDj3+4PhsNhX+vwvcWLnu6kGfEMe8DuciPfUfGZB8X/7HJy/Gefe5n+VRGFd/wyP2ta7/LO4yh/sbLV/k9lev6kfO9Dt/5U67b1/6u/epqB1U9Me23jfHY9sscAg4tkbLl+e4/U36rJ9ddxfd6sg5vq5ice42Wpk/pb9FOJ36/W9tpv4kbC79nUbZceX8Zu6/qJ+P3WvhvA8v3reh7Jbn2d6rrNC7XNZTLma4Ba0JI9efX2uLzF5scG/w9UNU1ZxW+ymUfzELeTllXlQ1rUuhzjS5fp9c964iFBOqeSz63bU065nZKdU+mDEz3qHIjjifquw0pnb/raRtvrnsYcb46ihT3taoYz6brdNW9l6rWRnE/navdPn1XlR1km7hcz1WlH/elKuSOSvLLuE8U6m8uzwRdfcGl73VyTHuyMvzJ1Sa2cWDTP/Z63Kc94n2B1PYr24dz1JlyHLlcP+S4B6vD1c9EW4q2LWstCvUjeVy63k/LMYdUNd5D1xQfvVTzX1VjkMsUv88N8VH5fReVn/Fjn++/h6X6Q8a6b1/q3g/i/ewi0/Scs8zxXeV6mWIOUPlPzBgdFerW+bZrm2P18dnjuK6HunEp+rHvPMXbr+sHVb/lnL+pTP57jPw9Cvk3PW178JD9qChfzuvTf7Htl38L1QUf/VKu9SFjwWbTWPvFEvu7Uq76y7+31g6QlYPc669pbsm9Xur2LWI9Pu8ypfDXqm3A2z8s1FWGn4ntL9NfQu2oSlftX9uetvTtv7J8Ql4zxfXGZ3zk8PeQ9w59x2uMfqI8/q5eKh/l9cb2rwsu9rSNl06ZP2Pmxtz+rNMx93yno0n2/82rVH7rQ+y9P15H6FyRun9ViH81ATmffI7nJ5r8uXXW6enbP6b/B8/l5OifVHYLnb9S39s2zcc+Ph+rh8+eQgVPS72elzGWY/tUtbbabBpDiI7yN1q6/4th2y+ErAc5+9BVvu/7KamJbWNZeuqI/R4tRf+YyD1HmOZM1bMV3/14Sn10c0Xu+Sj1nOXb5jL73ncdy02uvlXZNde65dOHYl7Vs4KYuS6FzWLn2zJlpZqPXPVPOa5yzKOyn1VhT9lmMfdbfH7D11Wf2PXN5h9y+dD287+qxgSnaYmnIrRtIb8pJe6/Uv9OVer6Whn0zfGO/BEloZI9ojmfAlUflClDd178bTmVHVTpZXOkAlk/lb42UujmI89HH5V+cl7XtowY6vTxLVWok6UrGzoGTHN+bB+6ri05687VNpvfuvRfaP2uMlNQth1D5JjGelm/8yn+9p3p/7qk9gnfeddXZmq/Sm333PJT659Kv1zjNbZ9uv2Oi//67CV8/N1nj1DmviyXDNVeJkaeaX8UsyesYg8cu2+NvdaPfb+lLDu5tvt/")),Dc=function(l){switch(l){case 33:case 39:case 40:case 42:return 12;case 35:return 5;default:return l}},Lc=function(l){switch(l){case 37:case 38:return 34;case 41:return 22;default:return l}};class Ji{constructor(t,e=!1){this.position=t,this.required=e}}Gl=class{nextCodePoint(){const l=this.string.charCodeAt(this.pos++),t=this.string.charCodeAt(this.pos);return 55296<=l&&l<=56319&&56320<=t&&t<=57343?(this.pos++,1024*(l-55296)+(t-56320)+65536):l}nextCharClass(){return Dc(Vf.get(this.nextCodePoint()))}getSimpleBreak(){switch(this.nextClass){case 41:return!1;case 34:case 37:case 38:return this.curClass=34,!1;case 36:return this.curClass=36,!1}return null}getPairTableBreak(l){let t=!1;switch(jf[this.curClass][this.nextClass]){case 0:t=!0;break;case 1:t=l===41;break;case 2:if(t=l===41,!t)return t=!1,t;break;case 3:if(l!==41)return t}return this.LB8a&&(t=!1),!this.LB21a||this.curClass!==16&&this.curClass!==17?this.LB21a=this.curClass===13:(t=!1,this.LB21a=!1),this.curClass===28?(this.LB30a++,this.LB30a==2&&this.nextClass===28&&(t=!0,this.LB30a=0)):this.LB30a=0,this.curClass=this.nextClass,t}nextBreak(){if(this.curClass==null){let l=this.nextCharClass();this.curClass=Lc(l),this.nextClass=l,this.LB8a=l===31,this.LB30a=0}for(;this.pos<this.string.length;){this.lastPos=this.pos;const l=this.nextClass;if(this.nextClass=this.nextCharClass(),this.curClass===34||this.curClass===36&&this.nextClass!==37)return this.curClass=Lc(Dc(this.nextClass)),new Ji(this.lastPos,!0);let t=this.getSimpleBreak();if(t===null&&(t=this.getPairTableBreak(l)),this.LB8a=this.nextClass===31,t)return new Ji(this.lastPos)}return this.lastPos<this.string.length?(this.lastPos=this.string.length,new Ji(this.string.length)):null}constructor(l){this.string=l,this.pos=0,this.lastPos=0,this.curClass=null,this.nextClass=null,this.LB8a=!1,this.LB21a=!1,this.LB30a=0}};class $f{constructor(t){this._textMeasurer=t}_measureText(t){const e=this._fontSize,n=this._fontName,r=this._metricOptions;if(this._isSuperSub){const o=this._textMeasurer(t,.6*e,n,r);return{...this._textMeasurer("M",e,n,r),width:o.width}}return this._textMeasurer(t,e,n,r)}_breakWord(t,e,n){let r=0;for(;r<t.length;){let o={startPosition:this._charactersRead+r,text:"",x:0,y:0,width:0,widthWhitespace:0,height:0,baseline:0},s=!1,i=0;const a=this._maxWidth;do{s=!1;const c=t.substring(r,r+i+1),h=c.replace(/\s+$/,""),d=this._measureText(h);let u=d;c.length!==h.length&&(u=this._measureText(c)),(o.x+d.width<=a||c.length<=1)&&(o.text=c,o.width=d.width,o.widthWhitespace=u.width,o.height=Math.max(o.height,d.lineHeight),o.baseline=Math.max(o.baseline,d.baseline),s=!0,i++)}while(s&&r+i<t.length);if(s){const c=t.substring(r,t.length),h=c.replace(/\s+$/,""),d=this._measureText(h);let u=d;c.length!==h.length&&(u=this._measureText(c)),e.startPosition=this._charactersRead+r,e.width=d.width,o.widthWhitespace=u.width,e.height=Math.max(e.height,d.lineHeight),e.baseline=Math.max(e.baseline,d.baseline),e.text=c}else if(n?.(o)===!1)return!1;r+=i}}_breakWhiteSpace(t,e=null){for(;t&&this._charactersRead<t.length;){let n={startPosition:this._charactersRead,text:"",x:0,y:0,width:0,widthWhitespace:0,height:0,baseline:0},r=!1;const o=this._maxWidth,s=this._indent,i=this._breaker;do if(r=!1,n.startPosition===0&&n.text.length===0&&(n.x=s,this._lastBreak=i.nextBreak()),this._lastBreak){const c=t.substring(n.startPosition,this._lastBreak.position),h=c.replace(/\s+$/,""),d=this._measureText(h);let u=d;c.length!==h.length&&(u=this._measureText(c)),n.x+d.width<=o?(n.text=c,n.width=d.width,n.widthWhitespace=u.width,n.height=Math.max(n.height,d.lineHeight),n.baseline=Math.max(n.baseline,d.baseline),r=!0,this._charactersRead=this._lastBreak.position):n.text.length===0&&this._breakWord(c,n,e)!==!1&&(r=!0,this._charactersRead=this._lastBreak.position),(r||c.indexOf(`
`)===-1)&&this._lastBreak.required&&(this._lastBreak=i.nextBreak(),r=!1)}while(r&&(this._lastBreak=i.nextBreak()));if(e?.(n)===!1)return!1}}wrap(t,e=null){this._breaker=new Gl(t),this._linesRead=[],this._charactersRead=0,this._maxXRead=0,this._maxXWhitespaceRead=0,this._maxYRead=0,this._fontName=e?.fontName??"Arial",this._fontSize=e?.fontSize??12,this._metricOptions={isBold:e?.bold??!1,isItalic:e?.italic??!1,letterSpacing:e?.letterSpacing??0},this._isSuperSub=e?.superSub??!1,this._indent=e?.indent??0,this._maxWidth=e?.maxWidth??Number.MAX_SAFE_INTEGER,this._maxWidth<=0&&(this._maxWidth=Number.MAX_SAFE_INTEGER),this._maxHeight=e?.maxHeight??Number.MAX_SAFE_INTEGER,this._maxHeight<=0&&(this._maxHeight=Number.MAX_SAFE_INTEGER);const n=o=>{if(this._linesRead.length>0){let s=this._linesRead[this._linesRead.length-1];o.y=s.y+s.height}if(o.y+o.height>this._maxHeight)return!1;this._maxXRead=Math.max(this._maxXRead,o.x+o.width),this._maxXWhitespaceRead=Math.max(this._maxXWhitespaceRead,o.x+o.widthWhitespace),this._maxYRead=Math.max(this._maxYRead,o.y+o.height),this._linesRead.push(o)};if(t===""){const o=this._measureText(t);n({startPosition:0,text:"",x:0,y:0,width:0,widthWhitespace:0,height:o.lineHeight,baseline:o.baseline})}else if(this._breakWhiteSpace(t,n),new Gl(t.charAt(t.length-1).repeat(2)).nextBreak().required){const o=this._measureText(t);n({startPosition:t.length,text:"",x:0,y:0,width:0,widthWhitespace:0,height:o.lineHeight,baseline:o.baseline})}const r={bounds:{x:0,y:0,width:this._maxXRead,widthWhitespace:this._maxXWhitespaceRead,height:this._maxYRead},lines:this._linesRead};return this._breaker=null,this._linesRead=[],r}}const Gf=(l,t,e,n=null,r=exports.IFont.getSharedMeasurer())=>{let o="",s=null,i=null;const a=l.paragraphs,c=a.length;for(let y=0;y<c;y++){const I=a[y].runs,w=I.length;for(let b=0;b<w;b++)o+=I[b].text,b===0&&(s=I[b]);y===0&&(i=a[y])}const h=l.insets??E.TypesUtils.EmptyRect,d=new $f(r),u=n?.width?n.width-h.right-h.left:n?.width,g=n?.height?n.height-h.bottom-h.top:null,m=d.wrap(o,{fontName:s.fontName,fontSize:s.fontSize*exports.IFont.getDeviceScale(),bold:s.bold,italic:s.italic,superSub:s.superSub,letterSpacing:s.letterSpacing,maxWidth:l.wrapped&&u?u:null,maxHeight:g});let f=[];const _=m.lines,p=_.length,S=new Array(p);for(let y=0;y<p;y++){const I=_[y],w={x:I.x,y:I.y,width:I.width,height:I.height},b=new pi({text:I.text,fontName:s.fontFamily,fontSize:s.fontSize,bold:s.bold,italic:s.italic,superSub:s.superSub,letterSpacing:s.letterSpacing},w);f.push(b),S[y]=new Du(w,I.baseline,[b])}const C=new fi({runs:f,align:i.align});return new mi({paragraphs:[C],wrapped:l.wrapped,verticalAlignment:l.verticalAlignment},t,e,S,{x:m.bounds.x,y:m.bounds.y,width:m.bounds.widthWhitespace,height:m.bounds.height},{x:m.bounds.x,y:m.bounds.y,width:m.bounds.width,height:m.bounds.height})},Uc=l=>{let t=!1,e=!1;for(let n=0;n<l.length;n++){const r=l.charCodeAt(n);if(r>=65&&r<=90?t=!0:r>=97&&r<=122&&(e=!0),t&&e)return 0}return t?1:e?-1:0},_i=(l,t,e,n,r=!1)=>{if(l==null)return null;const o=new pi({text:l,fontName:t.toCSS().fontFamily,fontSize:t.getSize(),bold:t.getWeight()>400,italic:t.getStyle()===exports.IFont.Style.Italic,superSub:!r&&(t.getVerticalAlignment()===exports.IFont.VerticalAlignment.Sub||t.getVerticalAlignment()===exports.IFont.VerticalAlignment.Super),letterSpacing:t.getLetterSpacing()}),s=r?exports.ITextFrame.HorizontalAlignment.Left:e.getHorizontal(),i=e.getVertical(),a=new fi({runs:[o],align:s});let c=[];return c.push(new Du(null,t.getSize(),[o])),new mi({paragraphs:[a],wrapped:n&&(e.getOverflow()===exports.ITextFrame.Overflow.Wrap||s===exports.ITextFrame.HorizontalAlignment.Justify||s===exports.ITextFrame.HorizontalAlignment.Distributed||i===exports.ITextFrame.VerticalAlignment.Justify||i===exports.ITextFrame.VerticalAlignment.Distributed),verticalAlignment:i},t,e,c)},$o=(l,t,e,n)=>({x:l*n-t*e,y:l*e+t*n}),zc=l=>{let t=0,e=0,n=0,r=0,o=0,s=0,i=0,a=l.length;if(a===0)return{m:0,b:0};if(a===1)return{m:1,b:l[0]};for(let h=0;h<a;h++)s=h+1,i=l[h],i==null||isNaN(i)||(t+=s,e+=i,r+=s*s,n+=s*i,o++);const c=(o*n-t*e)/(o*r-t*t);return{m:c,b:e/o-c*t/o}},Jl=(l,t)=>{if(t===null)return null;const e=E.CommonUtils.isObject(t);return l!=null&&e?E.CommonUtils.mergeContentful(l,t):e?E.CommonUtils.cloneObject(t):t},Jf=(l,t,e)=>l==null||typeof l=="object"&&Object.keys(l).length===0;function Ia(l,t,e,n){if(l===t)return l??null}function qf(l){return l==null}function Kf(l,t,e=1,n){if(e===0)return{preceding:l?[...l]:[],modified:[],trailing:[]};const r=function(a,c,h=1){let d=E.CommonUtils.findEqualOrGreater(a,c,f=>f.max);const u=a.slice(0,d),g=[],m=[];if(!a[d])return{preceding:u,modified:g,trailing:m};for(let f=d;f<a.length;f++)c+h<a[f].min?m.push({...a[f],min:a[f].min-h,max:a[f].max-h}):c>=a[f].min?Math.max(c,a[f].max+1-h)>a[f].min&&g.push({...a[f],max:Math.max(c-1,a[f].max-h)}):c<a[f].min&&c+h<=a[f].max&&g.push({...a[f],min:Math.max(c,a[f].min-h),max:a[f].max-h});return{preceding:u,modified:g,trailing:m}}(l,t,e),o=r.preceding,s=r.trailing;let i=[];return o.length>0&&i.push(o.pop()),i=i.concat(r.modified),s.length>0&&i.push(s.shift()),{preceding:o,modified:wo(i,{onMerge:Ia}).modified,trailing:s}}function ql(l,t,e){if(!l)throw new Error("runs can not be null");if(!t)return{preceding:[],modified:l?[...l]:[],trailing:[]};const n=function(s,i,a,c,h=!1){if(!i)return{preceding:[],modified:s?[...s]:[],trailing:[]};let d,u=E.CommonUtils.findEqualOrGreater(s,i.min,S=>S.max),g=s.slice(0,u),m=s.slice(u),f=[],_={...i},p=m[0]||{min:i.min,max:i.max,value:void 0};for(d=h?(S,C,y)=>{const I=(c||Jl)(C,y,S);I!==void 0?S.value=I:delete S.value,f.push(S)}:(S,C,y)=>{const I=(c||Jl)(C??null,y,S);I!==void 0?S.value=I:delete S.value,f.push(S)};m.length>=0&&_.max-_.min>=0;){if(_.min<p.min)d({min:_.min,max:Math.min(_.max,p.min-1)},void 0,_.value),_={min:p.min,max:_.max,value:_.value},p={min:_.min,max:p.max,value:p.value};else if(_.min>p.min){const S=p.value!==void 0&&a?a(p,_.min):[p.value,p.value];f.push({min:p.min,max:Math.min(_.min,p.max)-1,value:S[0]}),_={min:Math.min(_.min,p.max),max:_.max,value:_.value},p={min:_.min,max:p.max,value:S[1]}}else{const S=p.value!==void 0&&a?a(p,_.min):[p.value,p.value];d({min:p.min,max:Math.min(_.max,p.max)},S[0],_.value),_={min:Math.min(_.max,p.max)+1,max:_.max,value:_.value},p={min:Math.min(_.max,p.max)+1,max:p.max,value:S[1]}}p.min<=p.max?m[0]=p:(m=m.slice(1),p=m[0]||{min:p.min,max:_.max})}return{preceding:g,modified:f,trailing:m}}(l,t,e?.onSplit,e?.onUpdate,e?.inPlace);let r=[];n.preceding.length>0&&r.push(n.preceding.pop()),r=r.concat(n.modified),n.trailing.length>0&&r.push(n.trailing.shift());const o=function(s,i){if(!s||s.length===0)return{preceding:[],modified:s?[...s]:[],trailing:[]};const a=Math.min(s.length-1,i?.startOffset??0),c=Math.min(s.length,i?.endOffset??s.length),h=i?.cull??qf;let d=s.slice(0,a),u=s.slice(c);const g=[];for(let m=a;m<c;m++)h(s[m].value,s[m].min,s[m].max)!==!0&&g.push(s[m]);return{preceding:d,modified:g,trailing:u}}(wo(r,{onMerge:e?.onMerge??Ia}).modified,{cull:e?.isCull||Jf});return{preceding:n.preceding,modified:o.modified,trailing:n.trailing}}function wn(l){return[...l.preceding,...l.modified,...l.trailing]}function wo(l,t){if(!l||l.length===0)return{preceding:[],modified:l?[...l]:[],trailing:[]};const e=Math.min(l.length-1,t?.startOffset??0),n=Math.min(l.length,t?.endOffset??l.length),r=t?.onMerge??Ia;let o=l.slice(0,e),s=l.slice(n);const i=[];let a={...l[e]},c=l[e]?.max||0;for(let h=e+1;h<=n;h++){const d=l[h];let u=!1;if(d&&d.min<=l[h-1].max+1)if(a.value===void 0&&d.value===void 0)u=!0;else{const g=r(a.value,d.value,a.max-a.min+1,d.max-d.min+1);g!==void 0&&(u=!0,a.value=g)}u?a.max=Math.max(c,d.max):(i.push(a),a={...l[h]},d&&(a.max=Math.max(c,d.max))),a&&(c=a.max)}return{preceding:o,modified:i,trailing:s}}const Pc=(l,t=!1)=>{if(!l||l.length===0)return E.CommonUtils.EmptyArray;const e=t?l:l.sort(),n=[];let r=null;for(let o=0;o<e.length;o++){const s=e[o];r?r.max===s-1?r.max=s:(n.push(r),r={min:s,max:s}):r={min:s,max:s}}return r&&n.push(r),n},Hc=(l,t)=>l?t?l||t?l.min>t.max||l.max<t.min?null:{min:Math.max(l.min,t.min),max:Math.min(l.max,t.max)}:null:{...l}:{...t},Lu=l=>{const t=l.length===0;return{runs:l,run:{min:t?Number.MIN_SAFE_INTEGER:Number.MAX_SAFE_INTEGER,max:t?Number.MAX_SAFE_INTEGER:Number.MIN_SAFE_INTEGER,value:null},index:Number.MAX_SAFE_INTEGER}},Uu=(l,t)=>{const e=t.run,n=e.min,r=e.max;if(l>=n&&l<=r)return e.value;let o=t.index;const s=t.runs;if(o<s.length-1&&l>r){o++;const h=s[o],d=h.min,u=h.max;if(l>=d&&l<=u)return t.index=o,e.min=d,e.max=u,e.value=h.value,e.value}if(o!==Number.MAX_SAFE_INTEGER&&o>0&&l<n){o--;const h=s[o],d=h.min,u=h.max;if(l>=d&&l<=u)return t.index=o,e.min=d,e.max=u,e.value=h.value,e.value}if(o=E.CommonUtils.findEqualOrGreater(s,l,h=>h.max),o===s.length)return o=s.length,t.index=o,e.min=s[o-1].max+1,e.max=Number.MAX_SAFE_INTEGER,e.value=null,null;const i=s[o],a=i.min,c=i.max;if(l>=a&&l<=c){t.index=o,e.min=a,e.max=c;const h=i.value;return e.value=h,h}return o--,t.index=o,e.min=o>=0?s[o].max+1:Number.MIN_SAFE_INTEGER,e.max=a-1,e.value=null,null},Wc=function(l,t,e,n){if(l.length===0){if(e!=null||n!=null){const c=t({min:e??n,max:n??e});if(c&&c.break)return c}return}const r=e??l[0].min,o=n??l[l.length-1].max;let s=r-1,i=E.CommonUtils.findEqualOrGreater(l,r,c=>c.max),a=l[i];for(;a&&a.min<=o;){if(s<a.min-1){const h=t({min:Math.max(s+1,r),max:Math.min(a.min-1,o)});if(h&&h.break)return h}const c=t({...a,min:Math.max(a.min,r),max:Math.min(a.max,o)});if(c&&c.break)return c;s=a.max,a=l[++i]}if(s<o){const c=t({min:Math.min(s+1,o),max:o});if(c&&c.break)return c}},jc=new RegExp("([0-9]+)$");var Go,Jo;exports.AutoFill=void 0,(l=>{l.Date=class{constructor(i){this._options=i}canFill(i,a){return Tr(i)}createFillAt(i,a){a={...this._options,...a};let c=0,h=this._options?.unit;h||(h=i.length===1?jo:((g,m=!1)=>{if(!g||g.length<1)return jo;let f=g;m||(f=g.slice(),f=f.sort((C,y)=>C.getTime()-y.getTime()));let _=!1,p=-1,S=-1;for(let C=0;C<f.length;C++){let y=f[C];if(C>f.length-1&&y.getTime()<f[C+1].getTime())throw new Error("Dates are expected to be sorted.");let I=12*y.getFullYear()+y.getMonth();if(I===S)return jo;S=I;let w=y.getFullYear();w>p?p=w:_=!0}return _?_c:Sc})(i));const d=wc(i[0],0,h);d.setHours(0,0,0,0);let u=1;a?.reverse&&(u*=-1,c*=-1);for(let g=1;g<i.length;g++){let m=If(i[g-1],i[g],h);if(g===1)u=m;else if(m!==u)return null}return i.length===1&&a.multiFill,g=>{const m=wc(d,u*g,h);if(c!==0){const f=0+c*g,_=f%1440,p=Math.floor(_/60),S=_%60;m.setHours(p,S,0,0);const C=Math.floor(f/1440),y=Math.floor(C/365),I=C%365,w=Math.floor(I/30),b=I%30;y>0&&m.setFullYear(m.getFullYear()+y),w>0&&m.setMonth(m.getMonth()+w),b>0&&m.setDate(m.getDate()+b)}return m}}},l.Linear=class{constructor(i){this._options=i}canFill(i,a){return typeof i=="number"||i===null}createFillAt(i,a){a={...this._options,...a};const c=zc(i),h=c.b;let d=c.m;return i.length===1?(a.reverse&&(d=-d),a.multiFill?u=>u*d+h:null):u=>d*(u+1)+h}};const t={value:null,template:null},e={sensitivity:"accent"};l.Ordinal=class{_template(i){const a=i.match(jc);if(!a)return null;const c=a[1],h=i.lastIndexOf(c);return h===-1?null:i.substring(0,h)}canFill(i,a){if(i===null)return!0;if(typeof i!="string")return t.value=null,!1;const c=this._template(i);return c&&(a===void 0||a===t.value&&c.localeCompare(t.template,void 0,e)===0)?(t.value=i,t.template=c,!0):(t.value=null,!1)}createFillAt(i,a){const c=[],h=i[0];let d=null,u=null,g=0;if(h){const S=h.match(jc);if(S){d=S[1],d.startsWith("0")&&(g=d.length);const C=h.lastIndexOf(d);u=h.substring(0,C)}}const m=i.length;for(let S=0;S<m;S++){const C=i[S];let y=null;if(C){const I=C.substring(u.length,C.length);I.startsWith("0")&&(g=Math.max(g,I.length));const w=parseFloat(I);isNaN(w)||(y=w)}c.push(y)}const f=zc(c),_=f.b;let p=f.m;return p!==0&&Number.isInteger(p)?S=>{if(i[S%m]===null)return null;const C=(m===1?a.reverse?-S:S:p*(S+1))+_,y=""+Math.abs(C),I="0".repeat(Math.max(0,g-y.length))+y;return u+I}:null}},l.Copy=class{canFill(i,a){return!0}createFillAt(i,a){const c=i.length;return h=>i[h%c]??null}};const n=Object.freeze(["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]),r=Object.freeze(["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]),o=Object.freeze(["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),s=Object.freeze(["January","February","March","April","May","June","July","August","September","October","November","December"]);l.List=class{constructor(i){this._lists=[],this._map=new Map;const a=[];if(i?.customLists){const d=i.customLists;for(let u=d.length-1;u>0;u--)a.push(d[u])}a.push(s),a.push(o),a.push(r),a.push(n);const c=this._map,h=[];for(let d=0;d<a.length;d++){const u=a[d],g=[];h.push(g);for(let m=0;m<u.length;m++){const f=u[m],_=Ir(f,!0),p=_.toLowerCase().trim();let S=c.get(p);S||(S=[],c.set(p,S));const C={value:_,asKey:p,major:d,minor:m};S.push(C),g.push(C)}}this._lists=Object.freeze(h)}canFill(i,a){return i===null?!0:typeof i!="string"?!1:!!this._map.get(i.toLowerCase().trim())}createFillAt(i,a){const c=[],h=i[0];c.push(h.toLowerCase().trim());const d=this._map.get(c[0]);let u;const g=new Map,m=new Set;for(let v=0;v<d.length;v++){const T=d[v];g.set(T.major,T)}if(i.length>1){for(let v=1;v<i.length;v++){const T=i[v].toLowerCase().trim(),M=this._map.get(T);if(!M)return null;v===1&&(u=M),c.push(T);for(let F=0;F<M.length;F++){const N=M[F].major;g.has(N)&&m.add(N)}}if(m.size===0)return null}let f=null;const _=this._lists;for(let v=0;!f&&v<_.length;v++)(i.length===1||m.has(v))&&(f=g.get(v));if(!f)return null;let p=null;for(let v=0;!p&&u&&v<u.length;v++)u[v].asKey===c[1]&&(p=u[v]);let S=!1,C=!1;const y=Uc(h);y===1?S=!0:(y===-1||Uc(h[0])===-1)&&(C=!0);const I=_[f.major];let w=f.minor,b=1;if(c.length>1){b=p.minor-f.minor;for(let v=2;v<c.length;v++)if(I[v+w].minor-I[v-1+w].minor!==b)return null}i.length===1&&a?.reverse&&(b=-b);const x=i.length,R=I.length;return v=>{if(i[v%x]===null)return null;let T=(v*b+w)%R;T<0&&(T=R+T);const M=I[T].value??null;return S?M.toUpperCase():C?M.toLowerCase():M}}},l.Composite=class{constructor(i){i=Array.isArray(i)?[...i]:[i],this._fillers=i}canFill(i,a){return!0}createFillAt(i,a){const c=this._fillers;a={multiFill:i.length>1,...a};const h=i.length;let d=0,u=!1;for(let b=0;!u&&b<=h;b++)i[b]===null?d++:u=!0;let g=0;u=!1;for(let b=h-1;!u&&b>=d;b--)i[b]===null?g++:u=!0;const m=[];let f=null,_=null,p=[],S=d,C=0;const y=b=>{if(f&&f.max+1===S){const x=f.value;x.fillAt.push(b),f.max=S,x.length++,x.valuesLength++}else f={min:S,max:S,value:{fillAt:[b],start:S,length:1,valuesLength:h,blankInterval:0}};m.push(f)},I=h-g;for(S=d;S<I;){let b=i[S];if(b===null){S++;continue}_=null;let x,R=1,v=!1;for(let N=0;!v&&N<c.length+1;N++){const O=c[N];O&&(v=O.canFill(b,x),v&&(_=O))}if(!_){b!==null&&y(b),S++;continue}let T=0;C=0,x=b;do b=i[S+R],v=_.canFill(b,x),v&&(b!==null?(x=b,T>0&&(R-T===1?C=T:T!==C&&(C=0)),T=0):T++,R++);while(v&&S+R<I);p=[i[S]];const M=1+C,F=R-T;for(let N=M;N<F;N+=M)p.push(i[S+N]);if(p.length>0){const N=p.length,O=N+(N-1)*C,L=_.createFillAt?.(p,a)??p;m.push({min:S,max:S+O-1,value:{fillAt:L,start:S,length:O,valuesLength:N,blankInterval:C}})}S+=R}const w=Lu(m);return b=>{const x=b>=0,R=Math.abs(b),v=Uu(R%h,w);if(!v)return null;const T=Math.floor(R/h),M=v.length,F=v.start,N=(T+(x?1:0))*F+(T+(x?0:1))*(h-(F+M));let O=b+(x?-N:N);const L=v.blankInterval;if(L!==0){let U=O%M;if(U%(1+L)!==0)return null;O=Math.floor(U/(1+L))+v.valuesLength*T}const B=v.fillAt;return typeof B=="function"?B(O):B[O%B.length]}}},l.Types={Series:new l.Composite([new l.Date,new l.Linear,new l.Ordinal,new l.List]),DateDays:new l.Date({unit:jo}),DateMonths:new l.Date({unit:_c}),DateYears:new l.Date({unit:Sc}),Copy:new l.Copy},l.fillTo=(i,a,c,h)=>{const d=[],u=a.length,g=i.createFillAt(a,h);for(let m=u;m<c;m++)d.push(g(m));return d}})(exports.AutoFill||(exports.AutoFill={})),exports.IPrint=void 0,exports.IPrint||(exports.IPrint={}),exports.IFill=void 0,(Go=exports.IFill||(exports.IFill={})).Type={None:"none",Solid:"solid",Gradient:"gradient",Pattern:"pattern",Image:"pattern",Background:"background",Group:"group",Custom:"custom"},Go.GradientType={Linear:"linear",Path:"path",Circular:"circular",Rect:"rect"},Go.TileMirror={None:"none",Vertical:"v",Horizontal:"h",Both:"b"},Go.BuiltInSheetPattern={None:"none",Solid:"solid",DarkGray:"darkGray",MediumGray:"mediumGray",LightGray:"lightGray",Gray0625:"gray0625",Gray125:"gray125",DarkHorizontal:"darkHorizontal",DarkVertical:"darkVertical",DarkDown:"darkDown",DarkUp:"darkUp",DarkGrid:"darkGrid",DarkTrellis:"darkTrellis",LightHorizontal:"lightHorizontal",LightVertical:"lightVertical",LightDown:"lightDown",LightUp:"lightUp",LightGrid:"lightGrid",LightTrellis:"lightTrellis",Custom:"custom"},exports.IColor=void 0,(Jo=exports.IColor||(exports.IColor={})).AdjustmentType={Alpha:"alpha",AlphaOff:"alphaOff",AlphaMod:"alphaMod",Hue:"hue",Sat:"sat",Lum:"lum",HueOff:"hueOff",SatOff:"satOff",LumOff:"lumOff",HueMod:"hueMod",SatMod:"satMod",LumMod:"lumMod",Red:"red",Green:"green",Blue:"blue",RedOff:"redOff",GreenOff:"greenOff",BlueOff:"blueOff",RedMod:"redMod",GreenMod:"greenMod",BlueMod:"blueMod",Shade:"shade",Tint:"tint",ETint:"eTint",Gray:"gray",Comp:"comp",Inv:"inv",Gamma:"gamma",InvGamma:"invGamma"},Jo.Named={ActiveBorder:"activeBorder",ActiveCaption:"activeCaption",CaptionText:"captionText",AppWorkspace:"appWorkspace",BtnFace:"btnFace",BtnShadow:"btnShadow",DkShadow3d:"3dDkShadow",BtnHighlight:"btnHighlight",Light3d:"3dLight",BtnText:"btnText",Background:"background",GrayText:"grayText",Highlight:"highlight",HighlightText:"highlightText",HotLight:"hotLight",InactiveBorder:"inactiveBorder",InactiveCaption:"inactiveCaption",InactiveCaptionText:"inactiveCaptionText",InfoBk:"infoBk",InfoText:"infoText",Menu:"menu",MenuText:"menuText",ScrollBar:"scrollBar",Window:"window",WindowFrame:"windowFrame",WindowText:"windowText",Transparent:"transparent",AliceBlue:"aliceBlue",AntiqueWhite:"antiqueWhite",Aqua:"aqua",Aquamarine:"aquamarine",Azure:"azure",Beige:"beige",Bisque:"bisque",Black:"black",BlanchedAlmond:"blanchedAlmond",Blue:"blue",BlueViolet:"blueViolet",Brown:"brown",BurlyWood:"burlyWood",CadetBlue:"cadetBlue",Chartreuse:"chartreuse",Chocolate:"chocolate",Coral:"coral",CornflowerBlue:"cornflowerBlue",Cornsilk:"cornsilk",Crimson:"crimson",Cyan:"cyan",DkBlue:"dkBlue",DkCyan:"dkCyan",DkGoldenrod:"dkGoldenrod",DkGray:"dkGray",DkGreen:"dkGreen",DkKhaki:"dkKhaki",DkMagenta:"dkMagenta",DkOliveGreen:"dkOliveGreen",DkOrange:"dkOrange",DkOrchid:"dkOrchid",DkRed:"dkRed",DkSalmon:"dkSalmon",DkSeaGreen:"dkSeaGreen",DkSlateBlue:"dkSlateBlue",DkSlateGray:"dkSlateGray",DkTurquoise:"dkTurquoise",DkViolet:"dkViolet",DeepPink:"deepPink",DeepSkyBlue:"deepSkyBlue",DimGray:"dimGray",DodgerBlue:"dodgerBlue",Firebrick:"firebrick",FloralWhite:"floralWhite",ForestGreen:"forestGreen",Fuchsia:"fuchsia",Gainsboro:"gainsboro",GhostWhite:"ghostWhite",Gold:"gold",Goldenrod:"goldenrod",Gray:"gray",Green:"green",GreenYellow:"greenYellow",Honeydew:"honeydew",HotPink:"hotPink",IndianRed:"indianRed",Indigo:"indigo",Ivory:"ivory",Khaki:"khaki",Lavender:"lavender",LavenderBlush:"lavenderBlush",LawnGreen:"lawnGreen",LemonChiffon:"lemonChiffon",LtBlue:"ltBlue",LtCoral:"ltCoral",LtCyan:"ltCyan",LtGoldenrodYellow:"ltGoldenrodYellow",LtGray:"ltGray",LtGreen:"ltGreen",LtPink:"ltPink",LtSalmon:"ltSalmon",LtSeaGreen:"ltSeaGreen",LtSkyBlue:"ltSkyBlue",LtSlateGray:"ltSlateGray",LtSteelBlue:"ltSteelBlue",LtYellow:"ltYellow",Lime:"lime",LimeGreen:"limeGreen",Linen:"linen",Magenta:"magenta",Maroon:"maroon",MedAquamarine:"medAquamarine",MedBlue:"medBlue",MedOrchid:"medOrchid",MedPurple:"medPurple",MedSeaGreen:"medSeaGreen",MedSlateBlue:"medSlateBlue",MedSpringGreen:"medSpringGreen",MedTurquoise:"medTurquoise",MedVioletRed:"medVioletRed",MidnightBlue:"midnightBlue",MintCream:"mintCream",MistyRose:"mistyRose",Moccasin:"moccasin",NavajoWhite:"navajoWhite",Navy:"navy",OldLace:"oldLace",Olive:"olive",OliveDrab:"oliveDrab",Orange:"orange",OrangeRed:"orangeRed",Orchid:"orchid",PaleGoldenrod:"paleGoldenrod",PaleGreen:"paleGreen",PaleTurquoise:"paleTurquoise",PaleVioletRed:"paleVioletRed",PapayaWhip:"papayaWhip",PeachPuff:"peachPuff",Peru:"peru",Pink:"pink",Plum:"plum",PowderBlue:"powderBlue",Purple:"purple",Red:"red",RosyBrown:"rosyBrown",RoyalBlue:"royalBlue",SaddleBrown:"saddleBrown",Salmon:"salmon",SandyBrown:"sandyBrown",SeaGreen:"seaGreen",SeaShell:"seaShell",Sienna:"sienna",Silver:"silver",SkyBlue:"skyBlue",SlateBlue:"slateBlue",SlateGray:"slateGray",Snow:"snow",SpringGreen:"springGreen",SteelBlue:"steelBlue",Tan:"tan",Teal:"teal",Thistle:"thistle",Tomato:"tomato",Turquoise:"turquoise",Violet:"violet",Wheat:"wheat",White:"white",WhiteSmoke:"whiteSmoke",Yellow:"yellow",YellowGreen:"yellowGreen",ButtonFace:"buttonFace",ButtonHighlight:"buttonHighlight",ButtonShadow:"buttonShadow",GradientActiveCaption:"gradientActiveCaption",GradientInactiveCaption:"gradientInactiveCaption",MenuBar:"menuBar",MenuHighlight:"menuHighlight"},Jo.Scheme={Bg1:"bg1",Bg2:"bg2",Tx1:"tx1",Tx2:"tx2",Accent1:"accent1",Accent2:"accent2",Accent3:"accent3",Accent4:"accent4",Accent5:"accent5",Accent6:"accent6",Hlink:"hlink",FolHlink:"folHlink"},Jo.Type={Scheme:"scheme",Named:"named",Index:"index",HSL:"hsl",RGB:"rgb",LRGB:"lrgb",Hex:"hex"};const Vc=[[4290032820,1,exports.IColor.Named.ActiveBorder,!0],[4288263377,2,exports.IColor.Named.ActiveCaption,!0],[4278190080,3,exports.IColor.Named.CaptionText,!0],[4289440683,4,exports.IColor.Named.AppWorkspace,!0],[4293980400,5,exports.IColor.Named.BtnFace,!0],[4285098345,6,exports.IColor.Named.BtnShadow,!0],[4278190080,7,exports.IColor.Named.DkShadow3d,!0],[4293125091,8,exports.IColor.Named.BtnHighlight,!0],[4293125091,9,exports.IColor.Named.Light3d,!0],[4278190080,10,exports.IColor.Named.BtnText,!0],[4278190080,11,exports.IColor.Named.Background,!0],[4285361517,12,exports.IColor.Named.GrayText,!0],[4281571839,13,exports.IColor.Named.Highlight,!0],[4294967295,14,exports.IColor.Named.HighlightText,!0],[4278216396,15,exports.IColor.Named.HotLight,!0],[4294244348,16,exports.IColor.Named.InactiveBorder,!0],[4290760155,17,exports.IColor.Named.InactiveCaption,!0],[4278190080,18,exports.IColor.Named.InactiveCaptionText,!0],[4294967265,19,exports.IColor.Named.InfoBk,!0],[4278190080,20,exports.IColor.Named.InfoText,!0],[4293980400,21,exports.IColor.Named.Menu,!0],[4278190080,22,exports.IColor.Named.MenuText,!0],[4291348680,23,exports.IColor.Named.ScrollBar,!0],[4294967295,24,exports.IColor.Named.Window,!0],[4284769380,25,exports.IColor.Named.WindowFrame,!0],[4278190080,26,exports.IColor.Named.WindowText,!0],[16777215,27,exports.IColor.Named.Transparent],[4293982463,28,exports.IColor.Named.AliceBlue],[4294634455,29,exports.IColor.Named.AntiqueWhite],[4278255615,30,exports.IColor.Named.Aqua],[4286578644,31,exports.IColor.Named.Aquamarine],[4293984255,32,exports.IColor.Named.Azure],[4294309340,33,exports.IColor.Named.Beige],[4294960324,34,exports.IColor.Named.Bisque],[4278190080,35,exports.IColor.Named.Black],[4294962125,36,exports.IColor.Named.BlanchedAlmond],[4278190335,37,exports.IColor.Named.Blue],[4287245282,38,exports.IColor.Named.BlueViolet],[4289014314,39,exports.IColor.Named.Brown],[4292786311,40,exports.IColor.Named.BurlyWood],[4284456608,41,exports.IColor.Named.CadetBlue],[4286578432,42,exports.IColor.Named.Chartreuse],[4291979550,43,exports.IColor.Named.Chocolate],[4294934352,44,exports.IColor.Named.Coral],[4284782061,45,exports.IColor.Named.CornflowerBlue],[4294965468,46,exports.IColor.Named.Cornsilk],[4292613180,47,exports.IColor.Named.Crimson],[4278255615,48,exports.IColor.Named.Cyan],[4278190219,49,exports.IColor.Named.DkBlue],[4278225803,50,exports.IColor.Named.DkCyan],[4290283019,51,exports.IColor.Named.DkGoldenrod],[4289309097,52,exports.IColor.Named.DkGray],[4278215680,53,exports.IColor.Named.DkGreen],[4290623339,54,exports.IColor.Named.DkKhaki],[4287299723,55,exports.IColor.Named.DkMagenta],[4283788079,56,exports.IColor.Named.DkOliveGreen],[4294937600,57,exports.IColor.Named.DkOrange],[4288230092,58,exports.IColor.Named.DkOrchid],[4287299584,59,exports.IColor.Named.DkRed],[4293498490,60,exports.IColor.Named.DkSalmon],[4287609995,61,exports.IColor.Named.DkSeaGreen],[4282924427,62,exports.IColor.Named.DkSlateBlue],[4281290575,63,exports.IColor.Named.DkSlateGray],[4278243025,64,exports.IColor.Named.DkTurquoise],[4287889619,65,exports.IColor.Named.DkViolet],[4294907027,66,exports.IColor.Named.DeepPink],[4278239231,67,exports.IColor.Named.DeepSkyBlue],[4285098345,68,exports.IColor.Named.DimGray],[4280193279,69,exports.IColor.Named.DodgerBlue],[4289864226,70,exports.IColor.Named.Firebrick],[4294966e3,71,exports.IColor.Named.FloralWhite],[4280453922,72,exports.IColor.Named.ForestGreen],[4294902015,73,exports.IColor.Named.Fuchsia],[4292664540,74,exports.IColor.Named.Gainsboro],[4294506751,75,exports.IColor.Named.GhostWhite],[4294956800,76,exports.IColor.Named.Gold],[4292519200,77,exports.IColor.Named.Goldenrod],[4286611584,78,exports.IColor.Named.Gray],[4278222848,79,exports.IColor.Named.Green],[4289593135,80,exports.IColor.Named.GreenYellow],[4293984240,81,exports.IColor.Named.Honeydew],[4294928820,82,exports.IColor.Named.HotPink],[4291648604,83,exports.IColor.Named.IndianRed],[4283105410,84,exports.IColor.Named.Indigo],[4294967280,85,exports.IColor.Named.Ivory],[4293977740,86,exports.IColor.Named.Khaki],[4293322490,87,exports.IColor.Named.Lavender],[4294963445,88,exports.IColor.Named.LavenderBlush],[4286381056,89,exports.IColor.Named.LawnGreen],[4294965965,90,exports.IColor.Named.LemonChiffon],[4289583334,91,exports.IColor.Named.LtBlue],[4293951616,92,exports.IColor.Named.LtCoral],[4292935679,93,exports.IColor.Named.LtCyan],[4294638200,94,exports.IColor.Named.LtGoldenrodYellow],[4292072403,95,exports.IColor.Named.LtGray],[4287688336,96,exports.IColor.Named.LtGreen],[4294948545,97,exports.IColor.Named.LtPink],[4294942842,98,exports.IColor.Named.LtSalmon],[4280332970,99,exports.IColor.Named.LtSeaGreen],[4287090426,100,exports.IColor.Named.LtSkyBlue],[4286023833,101,exports.IColor.Named.LtSlateGray],[4289774814,102,exports.IColor.Named.LtSteelBlue],[4294967264,103,exports.IColor.Named.LtYellow],[4278255360,104,exports.IColor.Named.Lime],[4281519410,105,exports.IColor.Named.LimeGreen],[4294635750,106,exports.IColor.Named.Linen],[4294902015,107,exports.IColor.Named.Magenta],[4286578688,108,exports.IColor.Named.Maroon],[4284927402,109,exports.IColor.Named.MedAquamarine],[4278190285,110,exports.IColor.Named.MedBlue],[4290401747,111,exports.IColor.Named.MedOrchid],[4287852763,112,exports.IColor.Named.MedPurple],[4282168177,113,exports.IColor.Named.MedSeaGreen],[4286277870,114,exports.IColor.Named.MedSlateBlue],[4278254234,115,exports.IColor.Named.MedSpringGreen],[4282962380,116,exports.IColor.Named.MedTurquoise],[4291237253,117,exports.IColor.Named.MedVioletRed],[4279834992,118,exports.IColor.Named.MidnightBlue],[4294311930,119,exports.IColor.Named.MintCream],[4294960353,120,exports.IColor.Named.MistyRose],[4294960309,121,exports.IColor.Named.Moccasin],[4294958765,122,exports.IColor.Named.NavajoWhite],[4278190208,123,exports.IColor.Named.Navy],[4294833638,124,exports.IColor.Named.OldLace],[4286611456,125,exports.IColor.Named.Olive],[4285238819,126,exports.IColor.Named.OliveDrab],[4294944e3,127,exports.IColor.Named.Orange],[4294919424,128,exports.IColor.Named.OrangeRed],[4292505814,129,exports.IColor.Named.Orchid],[4293847210,130,exports.IColor.Named.PaleGoldenrod],[4288215960,131,exports.IColor.Named.PaleGreen],[4289720046,132,exports.IColor.Named.PaleTurquoise],[4292571283,133,exports.IColor.Named.PaleVioletRed],[4294963157,134,exports.IColor.Named.PapayaWhip],[4294957753,135,exports.IColor.Named.PeachPuff],[4291659071,136,exports.IColor.Named.Peru],[4294951115,137,exports.IColor.Named.Pink],[4292714717,138,exports.IColor.Named.Plum],[4289781990,139,exports.IColor.Named.PowderBlue],[4286578816,140,exports.IColor.Named.Purple],[4294901760,141,exports.IColor.Named.Red],[4290547599,142,exports.IColor.Named.RosyBrown],[4282477025,143,exports.IColor.Named.RoyalBlue],[4287317267,144,exports.IColor.Named.SaddleBrown],[4294606962,145,exports.IColor.Named.Salmon],[4294222944,146,exports.IColor.Named.SandyBrown],[4281240407,147,exports.IColor.Named.SeaGreen],[4294964718,148,exports.IColor.Named.SeaShell],[4288696877,149,exports.IColor.Named.Sienna],[4290822336,150,exports.IColor.Named.Silver],[4287090411,151,exports.IColor.Named.SkyBlue],[4285160141,152,exports.IColor.Named.SlateBlue],[4285563024,153,exports.IColor.Named.SlateGray],[4294966010,154,exports.IColor.Named.Snow],[4278255487,155,exports.IColor.Named.SpringGreen],[4282811060,156,exports.IColor.Named.SteelBlue],[4291998860,157,exports.IColor.Named.Tan],[4278222976,158,exports.IColor.Named.Teal],[4292394968,159,exports.IColor.Named.Thistle],[4294927175,160,exports.IColor.Named.Tomato],[4282441936,161,exports.IColor.Named.Turquoise],[4293821166,162,exports.IColor.Named.Violet],[4294303411,163,exports.IColor.Named.Wheat],[4294967295,164,exports.IColor.Named.White],[4294309365,165,exports.IColor.Named.WhiteSmoke],[4294967040,166,exports.IColor.Named.Yellow],[4288335154,167,exports.IColor.Named.YellowGreen],[4293980400,168,exports.IColor.Named.ButtonFace],[4294967295,169,exports.IColor.Named.ButtonHighlight],[4288716960,170,exports.IColor.Named.ButtonShadow],[4290367978,171,exports.IColor.Named.GradientActiveCaption],[4292338930,172,exports.IColor.Named.GradientInactiveCaption],[4293980400,173,exports.IColor.Named.MenuBar],[4281571839,174,exports.IColor.Named.MenuHighlight]],Xf=new class{constructor(){this._lookupByName=new Map;for(let l=0;l<Vc.length;l++){const t=Vc[l],e=t[0],n=(e>>24&255)/255,r=e>>16&255,o=e>>8&255,s=255&e,i={id:t[1],name:t[2],rgbaColor:{r,g:o,b:s,a:n},system:t.length>3};this._lookupByName.set(i.name.toLowerCase(),i)}}valueOfName(l){return this._lookupByName.get(l?l.toLowerCase():"transparent")}},qi=[{scheme:exports.IColor.Scheme.Tx1,description:"First Text Color"},{scheme:exports.IColor.Scheme.Tx2,description:"Second Text Color"},{scheme:exports.IColor.Scheme.Bg1,description:"First Background Color"},{scheme:exports.IColor.Scheme.Bg2,description:"Second Background Color"},{scheme:exports.IColor.Scheme.Accent1,description:"Accent 1"},{scheme:exports.IColor.Scheme.Accent2,description:"Accent 2"},{scheme:exports.IColor.Scheme.Accent3,description:"Accent 3"},{scheme:exports.IColor.Scheme.Accent4,description:"Accent 4"},{scheme:exports.IColor.Scheme.Accent5,description:"Accent 5"},{scheme:exports.IColor.Scheme.Accent6,description:"Accent 6"},{scheme:exports.IColor.Scheme.Hlink,description:"Hyperlink"},{scheme:exports.IColor.Scheme.FolHlink,description:"Followed Hyperlink"},{scheme:"dk1",description:"Text/Background - Dark 1"},{scheme:"lt1",description:"Text/Background - Light 1"},{scheme:"dk2",description:"Text/Background - Dark 2"},{scheme:"lt2",description:"Text/Background - Light 2"}],zu=new Map;for(let l=0;l<qi.length;l++)zu.set(qi[l].scheme.toLowerCase(),qi[l]);const $c=l=>l?{srgb:[l.red/255,l.green/255,l.blue/255],alpha:l.alpha!==void 0?l.alpha:1}:null,Gc=function(l,t,e,n){let r=$c((c=>{let h=Xf.valueOfName(c);return h?new Ye.RGBA(h.rgbaColor.r,h.rgbaColor.g,h.rgbaColor.b,h.rgbaColor.a):null})(l)),o=null,s=null,i=null;if(r===null&&(a=l,zu.get(a.toLowerCase()))){if(!t)throw new Error("a scheme val was used but a schemeLookup was not provided");o=l,s=t(o),r=$c(s),i=exports.IColor.Type.Scheme}var a;if(r===null){let c=l.match(Ym)||l.match(Qm);if(c){let h,d=1;c.length===4?h=[parseInt(c[1],16),parseInt(c[2],16),parseInt(c[3],16)]:(h=[parseInt(c[2],16),parseInt(c[3],16),parseInt(c[4],16)],d=gr(parseInt(c[1],16)/255)),h=Li(h),h=Xt(h),r={srgb:h,alpha:d},i=exports.IColor.Type.Hex}}if(r===null){let c=l.match($m)||l.match(Gm);if(c){let h=Di(c[1],c[2],c[3]);h=Li(h),h=Xt(h),r={srgb:h,alpha:c[4]?gr(parseFloat(c[4])):1},i=exports.IColor.Type.RGB}}if(r===null){let c=l.match(Jm)||l.match(qm);if(c){let h=Di(c[1],c[2],c[3]);h=Li(h,100),h=Wn(h),h=Xt(h),r={srgb:h,alpha:c[4]?gr(parseFloat(c[4])):1},i=exports.IColor.Type.LRGB}}if(r===null){let c=l.match(Km)||l.match(Xm);if(c){let h=Di(c[1],c[2],c[3]);h=jn(h),h=Xt(h),r={srgb:h,alpha:c[4]?gr(parseFloat(c[4])):1},i=exports.IColor.Type.HSL}}if(r===null){let c=l.match(Zm);if(c){const h=parseInt(c[1]);let d=e?.(h)??Xs(h);d&&(r={srgb:[d.red/255,d.green/255,d.blue/255],alpha:d.alpha},i=exports.IColor.Type.Index)}}if(r===null)throw new Error("Not a valid color format: "+l);return{srgbAlpha:r,key:o,color:s,type:i}},Kl=new Map,Ki=Object.keys(exports.IColor.AdjustmentType);for(let l=0;l<Ki.length;l++)Kl.set(exports.IColor.AdjustmentType[Ki[l]].toLowerCase(),exports.IColor.AdjustmentType[Ki[l]]);const Jc=new RegExp("\\s+\\s*(?![^()]*\\))|,\\s*(?![^()]*\\))"),qc=new RegExp("\\s*[,]\\s*|\\s+");let Xi=null;const Kc={[exports.IColor.Scheme.Bg1]:"window",[exports.IColor.Scheme.Bg2]:"E7E6E6",[exports.IColor.Scheme.Tx1]:"windowText",[exports.IColor.Scheme.Tx2]:"44546A",[exports.IColor.Scheme.Accent1]:"4472C4",[exports.IColor.Scheme.Accent2]:"ED7D31",[exports.IColor.Scheme.Accent3]:"A5A5A5",[exports.IColor.Scheme.Accent4]:"FFC000",[exports.IColor.Scheme.Accent5]:"5B9BD5",[exports.IColor.Scheme.Accent6]:"70AD47",[exports.IColor.Scheme.Hlink]:"0563C1",[exports.IColor.Scheme.FolHlink]:"954F72"};class kt{constructor(t,e,n,r=null){let o=null,s=null;if(t instanceof kt)o=t.getVal(),t.getAdjustments()&&(s=[...t.getAdjustments()]);else if(typeof t=="string"){const i=this._parse(t);o=i.val,s=i.adjs}else t?.val&&(o=t.val,s=t.adjs);if(!o)throw new Error("Unable to determine color value");this._private={val:o,adjs:s,schemeLookup:e,indexedLookup:n,parsedVal:Gc(o,e,n),adjusted:null,resolved:null}}_parse(t){let e=null,n=t.toLowerCase().trim();const r=n.split(Jc);if(r&&(e=r[0],n=n.substring(e.length,n.length).trim()),!e)throw new Error("no color key found");const o=[],s=n.split(qc);for(let i=0;i<s.length;i++){const a=s[i];if(!a)continue;const c=Kl.get(a.toLowerCase());if(!c)throw new Error("Invalid adjustment type:"+a);let h=null;if(!(c===exports.IColor.AdjustmentType.Gray||c===exports.IColor.AdjustmentType.Comp||c===exports.IColor.AdjustmentType.Inv||c===exports.IColor.AdjustmentType.Gamma||c===exports.IColor.AdjustmentType.InvGamma)){i++;const d=s[i];if(h=parseFloat(d),h==null)throw new Error(`Invalid adjustment value: missing value for'${a}'`);if(isNaN(h))throw new Error("Invalid adjustment value:"+d)}o.push({[c]:h})}return{val:e,adjs:o}}_forceDark(t=!0){this._resolve();const e=this._private.resolved;let n=[e.red,e.green,e.blue];n=((i,a)=>{a=(a%360+360)%360;const c=[1,0,0,0,1,0,0,0,1],h=Math.cos(a*Math.PI/180),d=Math.sin(a*Math.PI/180);c[0]=tr+.7874*h-tr*d,c[1]=un-un*h-un*d,c[2]=er-er*h+.9278*d,c[3]=tr-tr*h+.143*d,c[4]=un+(1-un)*h+.14*d,c[5]=er-er*h-.283*d,c[6]=tr-tr*h-.7874*d,c[7]=un-un*h+un*d,c[8]=er+.9278*h+er*d;const u=_=>Math.round(Math.max(0,Math.min(255,_))),g=i[0],m=i[1],f=i[2];return[u(c[0]*g+c[1]*m+c[2]*f),u(c[3]*g+c[4]*m+c[5]*f),u(c[6]*g+c[7]*m+c[8]*f)]})(n,180),n=uc(n,!1);let r=Hn(n);const o=vn(r);if(o[Ur]=.95*o[Ur],r=jn(o),n=Wn(r),n=dc(n),n=Xt(n,!1),t)return new Ye.RGBA(n[0],n[1],n[2],e.alpha);const s=vn(Hn(n));return new Ye.HSLA(s[0],s[1],s[2],e.alpha)}_resolve(){if(this._private.resolved){if(!this._private.parsedVal.key)return;let o=this._private.schemeLookup(this._private.parsedVal.key);if(o===this._private.parsedVal.color||o?.isEqual(this._private.parsedVal.color))return}const t=Gc(this._private.val,this._private.schemeLookup,this._private.indexedLookup,this._private.last);let e=((o,s)=>{let i=[...o.srgb],a=o.alpha!==void 0?o.alpha:1;for(var c=0;s&&c<s.length;c++){const h=s[c],d=Object.keys(h)[0],u=h[d];d===exports.IColor.AdjustmentType.Alpha?(a=u/100,a=Math.max(0,Math.min(1,a))):d===exports.IColor.AdjustmentType.AlphaOff?(a+=u/100,a=Math.max(0,Math.min(1,a))):d===exports.IColor.AdjustmentType.AlphaMod?(a*=u/100,a=Math.max(0,Math.min(1,a))):d===exports.IColor.AdjustmentType.Hue?i=Pi(Kt,i,u):d===exports.IColor.AdjustmentType.Sat?i=Pi(zi,i,u):d===exports.IColor.AdjustmentType.Lum?i=Pi(Ur,i,u):d===exports.IColor.AdjustmentType.HueOff?i=Hi(Kt,i,u):d===exports.IColor.AdjustmentType.SatOff?i=Hi(zi,i,u):d===exports.IColor.AdjustmentType.LumOff?i=Hi(Ur,i,u):d===exports.IColor.AdjustmentType.HueMod?i=Wi(Kt,i,u):d===exports.IColor.AdjustmentType.SatMod?i=Wi(zi,i,u):d===exports.IColor.AdjustmentType.LumMod?i=Wi(Ur,i,u):d===exports.IColor.AdjustmentType.Red?i=He(ys,i,u,Is):d===exports.IColor.AdjustmentType.Green?i=He(Cs,i,u,Is):d===exports.IColor.AdjustmentType.Blue?i=He(Es,i,u,Is):d===exports.IColor.AdjustmentType.RedOff?i=He(ys,i,u,bs):d===exports.IColor.AdjustmentType.GreenOff?i=He(Cs,i,u,bs):d===exports.IColor.AdjustmentType.BlueOff?i=He(Es,i,u,bs):d===exports.IColor.AdjustmentType.RedMod?i=He(ys,i,u,vs):d===exports.IColor.AdjustmentType.GreenMod?i=He(Cs,i,u,vs):d===exports.IColor.AdjustmentType.BlueMod?i=He(Es,i,u,vs):d===exports.IColor.AdjustmentType.Shade?i=tf(i,u):d===exports.IColor.AdjustmentType.Tint?i=nf(i,u):d===exports.IColor.AdjustmentType.ETint?i=ef(i,u):d===exports.IColor.AdjustmentType.Gray?i=rf(i):d===exports.IColor.AdjustmentType.Comp?i=of(i):d===exports.IColor.AdjustmentType.Inv?i=uc(i,u):d===exports.IColor.AdjustmentType.Gamma?i=sf(i):d===exports.IColor.AdjustmentType.InvGamma?i=lf(i):console.warn("unknown adjustmentType: "+d)}return{srgb:i,alpha:a}})(t.srgbAlpha,this._private.adjs),n=((o,s=255)=>{const i=[...o];for(var a=0;a<o.length;a++)i[a]=o[a]*s;return i})(e.srgb);n=dc(n);let r=gr(e.alpha);this._private.adjusted=e,this._private.parsedVal=t,this._private.resolved=new Ye.RGBA(n[0],n[1],n[2],r)}static parse(t,e,n,r=null){if(t instanceof kt)return t;const o=t;let s=null,i=o?.trim(),a=null;try{if(!s){const d=i?.split(Jc);d&&(s=d[0],i=i.substring(s.length,i.length).trim())}if(!s)throw new Error("no color found");const c=[],h=i.split(qc);for(let d=0;d<h.length;d++){const u=h[d];if(!u)continue;const g=Kl.get(u.toLowerCase());if(!g)throw new Error("Invalid adjustment type:"+u);let m=null;if(!(g===exports.IColor.AdjustmentType.Gray||g===exports.IColor.AdjustmentType.Comp||g===exports.IColor.AdjustmentType.Inv||g===exports.IColor.AdjustmentType.Gamma||g===exports.IColor.AdjustmentType.InvGamma)){d++;const f=h[d];if(m=parseFloat(f),m==null)throw new Error(`Invalid adjustment value: missing value for'${u}'`);if(isNaN(m))throw new Error("Invalid adjustment value:"+f)}c.push({[g]:m})}a=new kt({val:s,adjs:c},e,n,r)}catch(c){throw c}return a}static getDefaultSchemeLookup(){if(!Xi){const t=new Map,e=Object.keys(Kc);for(let n=0;n<e.length;n++){const r=e[n];t.set(r.toLowerCase(),kt.parse(Kc[r],null))}Xi=n=>t.get(n.toLowerCase())?.toRGBA()}return Xi}isEqual(t){return t instanceof kt&&this.toString().toLowerCase()===t.toString().toLowerCase()}getVal(){return this._private.val}getAdjustments(){return this._private.adjs}adjust(t){return new kt({val:this._private.val,adjs:this._private.adjs?this._private.adjs.concat(t):t},this._private.schemeLookup,this._private.indexedLookup,this._private.last)}getType(){return this._resolve(),this._private.parsedVal.type??null}toCSS(t=!1,e=!0){const n=t?this._forceDark():this.toRGBA();return n.alpha===0?"none":n.toString(e)}toRGBA(t=!1){return this._resolve(),t?this._forceDark():this._private.resolved}toHSLA(t=!1){if(this._resolve(),t)return this._forceDark(!1);let e=vn(this._private.adjusted.srgb);return new Ye.HSLA(e[0],e[1],e[2],gr(this._private.adjusted.alpha??1))}toHex(t=!1){this._resolve();const e=t?this._forceDark():this._private.resolved;return new Ye.HEX(e.red,e.green,e.blue,e.alpha??1)}toBlackOrWhite(t=!1,e=157){const n=this.toRGBA(t),r=.299*n.red+.587*n.green+.114*n.blue>e;return new kt(r?"#000000":"#FFFFFF",this._private.schemeLookup,this._private.indexedLookup,this._private.last)}get[Symbol.toStringTag](){return this.toString()}toString(){let t=this._private.val;const e=this._private.adjs;for(let n=0;e&&n<e.length;n++){const r=e[n];if(!r)continue;const o=Object.keys(r)[0];t+=" "+o;const s=r[o];typeof s=="number"&&(t+=" "+s),n<e.length-1&&(t+=",")}return t}get isIColor(){return!0}}var Xc;exports.IBorder=void 0,(Xc=exports.IBorder||(exports.IBorder={})).StrokeStyle={None:"none",DashDot:"dashDot",MediumDashDot:"mediumDashDot",Dotted:"dotted",Hair:"hair",Thin:"thin",Medium:"medium",Thick:"thick",MediumDashDotDot:"mediumDashDotDot",DashDotDot:"dashDotDot",Dashed:"dashed",MediumDashed:"mediumDashed",SlantDashDot:"slantDashDot",Double:"double"},Xc.Edge={Left:"left",Top:"top",Right:"right",Bottom:"bottom",Horizontal:"horizontal",Vertical:"vertical",DiagonalUp:"diagonalUp",DiagonalDown:"diagonalDown"};const Pu=[],Hu=new Map,Yc=Object.freeze([[exports.IBorder.StrokeStyle.Thin,"Thin",1,null],[exports.IBorder.StrokeStyle.Hair,"Hair",1,[1,1]],[exports.IBorder.StrokeStyle.Dotted,"Dotted",1,[2,2]],[exports.IBorder.StrokeStyle.Dashed,"Dashed",1,[3,1]],[exports.IBorder.StrokeStyle.DashDot,"Dash Dot",1,[3,3,9,3]],[exports.IBorder.StrokeStyle.DashDotDot,"Dash Dot Dot",1,[3,3,3,3,9,3]],[exports.IBorder.StrokeStyle.Double,"Double",3,null],[exports.IBorder.StrokeStyle.Medium,"Medium",2,null],[exports.IBorder.StrokeStyle.MediumDashed,"Medium Dashed",2,[9,3]],[exports.IBorder.StrokeStyle.MediumDashDot,"Medium Dash Dot",2,[3,3,9,3]],[exports.IBorder.StrokeStyle.MediumDashDotDot,"Medium Dash Dot Dot",2,[3,3,3,3,9,3]],[exports.IBorder.StrokeStyle.SlantDashDot,"Slant Dash Dot",2,[5,1,11,1]],[exports.IBorder.StrokeStyle.Thick,"Thick",3,null],[exports.IBorder.StrokeStyle.None,"None",0,null]]);for(let l=0;l<Yc.length;l++){const t=Yc[l],e=t[0],n=Object.freeze({style:e,description:t[1],width:t[2],pattern:t[3]});Pu.push(n),Hu.set(e,n)}(l=>{l.isEqualStrokes=(t,e)=>!(t&&!e||e&&!t)&&(t===e||t.getStyle()===e.getStyle()&&t.getColor().isEqual(e.getColor())),l.oppositeEdge=t=>t===l.Edge.Left?l.Edge.Right:t===l.Edge.Right?l.Edge.Left:t===l.Edge.Top?l.Edge.Bottom:t===l.Edge.Bottom?l.Edge.Top:t,l.BuiltInDefinitionsArray=Pu,l.BuiltInDefinitions=Hu})(exports.IBorder||(exports.IBorder={}));const Yf={Text:"text",Repeat:"repeat",Spacing:"spacing"},Qc=l=>!(!l.match(/^([#0?]+)( ?)\/( ?)([#0?]+)/)&&!l.match(/^# ([#0?]+)( ?)\/( ?)([#0?]+)/)),Qf=Object.freeze({formatValue:Sa,isFractionFormat:Qc,adjustDecimalPlaces:(l,t)=>{if(!l)return"";const e=(s,i)=>{let a=s||"";const c=a.length===0||a.endsWith(".")?"0":a.charAt(a.length-1);return i<0?(a=a.substring(0,Math.max(0,a.length+i)),a==="."&&(a="")):(a.startsWith(".")||(a+="."),a+=c.repeat(i)),a},n=(s,i)=>{if(s==="General")return i>0?"0"+e("",i):s;if(Qc(s))return s;let a=s,c=-1,h=-1,d=a.indexOf("E");if(d>=0&&(a=a.substring(0,d)),c=a.indexOf("."),c>=0){a=a.substring(c,a.length);let u=a&&a.match(/([.]{1}[0,#]+)/);if(!u)return s;a=u[1],h=c+a.length}else{if(i<=0)return s;c=a.lastIndexOf("0"),c<0&&(c=a.lastIndexOf("#")),c>=0&&(c+=1),h=c,a=""}return c===-1?s:(a=e(a,i),s.substring(0,c)+a+s.substring(h,s.length))},r=[];let o=uf(l);for(let s=0;s<o.length;s++)r.push(n(o[s].trim(),t));return r.join(";")}}),Zf=Ot._table,ba=l=>l===14?"Short Date":Zf[l]??null,zr=[{numberFormat:"General",formatType:ht.General,primary:1},{numberFormat:"0",formatType:ht.Number,regMatch:/^0[.]{0,1}[0]*$/,args:{decimalPlaces:0,separator:!1}},{numberFormat:"#,##0.00",formatType:ht.Number,regMatch:/^#,##0[.]{0,1}[0]*$/,primary:2,args:{decimalPlaces:2,separator:!0}},{numberFormat:"#,##0_);(#,##0)",formatType:ht.Number,args:{decimalPlaces:0,separator:!0}},{numberFormat:"#,##0_);[Red](#,##0)",formatType:ht.Number,args:{decimalPlaces:0,separator:!0}},{numberFormat:"#,##0.00_);(#,##0.00)",formatType:ht.Number,args:{decimalPlaces:2,separator:!0}},{numberFormat:"#,##0.00_);[Red](#,##0.00)",formatType:ht.Number,args:{decimalPlaces:2,separator:!0}},{numberFormat:"$#,##0.00",formatType:ht.Currency,primary:3,args:{decimalPlaces:2,currencySymbol:"$"}},{numberFormat:"$#,##0_);($#,##0)",formatType:ht.Currency,args:{decimalPlaces:0,currencySymbol:"$"}},{numberFormat:"$#,##0_);[Red]($#,##0)",formatType:ht.Currency,args:{decimalPlaces:0,currencySymbol:"$"}},{numberFormat:"$#,##0.00_);($#,##0.00)",formatType:ht.Currency,args:{decimalPlaces:2,currencySymbol:"$"}},{numberFormat:"$#,##0.00_);[Red]($#,##0.00)",formatType:ht.Currency,args:{decimalPlaces:2,currencySymbol:"$"}},{numberFormat:'_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)',primary:4,formatType:ht.Accounting},{numberFormat:'_($* #,##0_);_($* (#,##0);_($* "-"_);_(@_)',formatType:ht.Accounting},{numberFormat:'_(* #,##0_);_(* (#,##0);_(* "-"_);_(@_)',formatType:ht.Accounting},{numberFormat:'_(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_)',formatType:ht.Accounting},{numberFormat:"Short Date",formatType:ht.ShortDate,primary:5},{numberFormat:"d-mmm-yy",formatType:ht.MediumDate,primary:5.5},{numberFormat:"Long Date",formatType:ht.LongDate,primary:6},{numberFormat:"h:mm",formatType:ht.ShortTime,primary:7},{numberFormat:"h:mm AM/PM",formatType:ht.MediumTime,primary:7.5},{numberFormat:"Long Time",formatType:ht.LongTime,primary:8},{numberFormat:'_(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_)',formatType:ht.Comma,primary:9},{numberFormat:"0.00%",formatType:ht.Percentage,primary:10,args:{decimalPlaces:2},regMatch:/^^[0#?]*[.]{0,1}[0#?]*%*$/},{numberFormat:"0%",formatType:ht.Percentage,args:{decimalPlaces:0}},{numberFormat:"# ?/?",formatType:ht.Fraction,primary:11},{numberFormat:"# ??/??",formatType:ht.Fraction},{numberFormat:"0.00E+00",formatType:ht.Scientific,primary:12,args:{decimalPlaces:2},regMatch:/^[0#?]*[.]{0,1}[0#?]*E\+[0#?]*$/},{numberFormat:"##0.0E+0",formatType:ht.Custom,args:{decimalPlaces:0}},{numberFormat:"@",formatType:ht.Text,primary:13},{numberFormat:"d-mmm",formatType:ht.Custom},{numberFormat:"mmm-yy",formatType:ht.Custom},{numberFormat:"h:mm:ss",formatType:ht.Custom},{numberFormat:"m/d/yyyy h:mm",formatType:ht.Custom},{numberFormat:"mm:ss",formatType:ht.Custom},{numberFormat:"mm:ss.0",formatType:ht.Custom},{numberFormat:"[h]:mm:ss",formatType:ht.Custom}],Yi=[{numberFormat:"00000",formatType:ht.Special,primary:11},{numberFormat:"00000-0000",formatType:ht.Special},{numberFormat:"[<=9999999]###-####;(###) ###-####",formatType:ht.Special},{numberFormat:"000-00-0000",formatType:ht.Special}],Mo=new Map,oo=[];for(let l=0;l<zr.length;l++){let t=zr[l].numberFormat.toLowerCase();Mo.set(t,zr[l]),zr[l].regMatch&&oo.unshift(zr[l])}for(let l=0;l<Yi.length;l++){let t=Yi[l].numberFormat.toLowerCase();Mo.set(t,Yi[l])}const Xl=[],Wu=new Map;Mo.forEach(function(l,t,e){l.primary&&(Xl.push(l),Wu.set(E.CommonUtils.textToKey(l.formatType),l.numberFormat))}),Xl.sort(function(l,t){return l.primary-t.primary});const Zc=Mo.get(ht.General.toLowerCase());class tp{lookupStyle(t){if(!t)return Zc;if(typeof t=="number"&&(t=ba(t)),!t.toLowerCase)return console.warn("Invalid numberFormat",t),Zc;t=t.toLowerCase();let e=Mo.get(t);if(e)return e;for(let n=0;!e&&n<oo.length;n++)oo[n].regMatch&&t.match(oo[n].regMatch)&&(e=oo[n]);return e||{numberFormat:t,formatType:ht.Custom}}lookupPrimary(){return Xl}lookupDefault(t){return Wu.get(E.CommonUtils.textToKey(t))}}var qo,th;exports.NumberFormat=void 0,(qo=exports.NumberFormat||(exports.NumberFormat={})).Type=ht,qo.Parser=Qf,qo.Styles=new tp,qo.ParseRunType=Yf,exports.IStyle=void 0,(th=exports.IStyle||(exports.IStyle={})).BuiltInName={Normal:"Normal",RowLevel:"RowLevel_#",ColLevel:"ColLevel_#",Comma:"Comma",Currency:"Currency",Percent:"Percent",Comma0:"Comma [0]",Currency0:"Currency [0]",Hyperlink:"Hyperlink",FollowedHyperlink:"Followed Hyperlink",Note:"Note",WarningText:"Warning Text",Unknown12:"??-12",Unknown13:"??-13",Unknown14:"??-14",Title:"Title",Heading1:"Heading 1",Heading2:"Heading 2",Heading3:"Heading 3",Heading4:"Heading 4",Input:"Input",Output:"Output",Calculation:"Calculation",CheckCell:"Check Cell",LinkedCell:"Linked Cell",Total:"Total",Good:"Good",Bad:"Bad",Neutral:"Neutral",Accent1:"Accent1",Accent1_20:"20% - Accent1",Accent1_40:"40% - Accent1",Accent1_60:"60% - Accent1",Accent2:"Accent2",Accent2_20:"20% - Accent2",Accent2_40:"40% - Accent2",Accent2_60:"60% - Accent2",Accent3:"Accent3",Accent3_20:"20% - Accent3",Accent3_40:"40% - Accent3",Accent3_60:"60% - Accent3",Accent4:"Accent4",Accent4_20:"20% - Accent4",Accent4_40:"40% - Accent4",Accent4_60:"60% - Accent4",Accent5:"Accent5",Accent5_20:"20% - Accent5",Accent5_40:"40% - Accent5",Accent5_60:"60% - Accent5",Accent6:"Accent6",Accent6_20:"20% - Accent6",Accent6_40:"40% - Accent6",Accent6_60:"60% - Accent6",ExplanatoryText:"Explanatory Text"},th.IconSet={Arrows3:"3Arrows",ArrowsGray3:"3ArrowsGray",Flags3:"3Flags",Signs3:"3Signs",Symbols3:"3Symbols",Symbols3_2:"3Symbols2",TrafficLights3:"3TrafficLights1",TrafficLights3_2:"3TrafficLights2",Arrows4:"4Arrows",ArrowsGray4:"4ArrowsGray",Rating4:"4Rating",RedToBlack4:"4RedToBlack",TrafficLights4:"4TrafficLights",Arrows5:"5Arrows",ArrowsGray5:"5ArrowsGray",Quarters5:"5Quarters",Rating5:"5Rating"};const ep=(l,t,e,n,r)=>{const o=JSON.parse(JSON.stringify(l.definition));o.adjs||(o.adjs=[]);let s="",i=0,a=0;t>0?(a=t,i=100-t,s=`Lighter ${t}%`):t<0&&(i=100+t,s=`Darker ${-t}%`),i&&o.adjs.push({[exports.IColor.AdjustmentType.LumMod]:i}),a&&o.adjs.push({[exports.IColor.AdjustmentType.LumOff]:a});const c=new kt({val:o.val,adjs:o.adjs},e),h=c.toString();n?.set(h,c);const d=c.toRGBA().toString();return r?.set(d,c),{description:l.description+", "+s,definition:o}},np=(l,t,e,n)=>{let r=[];for(let o=0;o<l.length;o++){let s=[];r.push(s);const i=c=>{for(let h=0;h<c.length;h++)s.push(ep(l[o],c[h],t,e,n))};let a=new kt({val:l[o].definition.val,adjs:l[o].definition.adjs},t).toHSLA().lum;i(a===0?[50,35,25,15,5]:a===100?[-5,-15,-25,-35,-50]:a<=20?[90,75,50,25,10]:a>=80?[-10,-25,-50,-75,-90]:[80,60,40,-25,-50])}return r};exports.ITheme=void 0,(exports.ITheme||(exports.ITheme={})).buildPalette=np,exports.IThemeCollection=void 0,(exports.IThemeCollection||(exports.IThemeCollection={})).BuiltInFilterType={BuiltIn:"builtIn",All:"all",Custom:"custom"};const rp=[["Office","windowText","window","0E2841","E8E8E8","156082","E97132","196B24","0F9ED5","A02B93","4EA72E","467886","96607D"],["Office 2013-2022","windowText","window","44546A","E7E6E6","4472C4","ED7D31","A5A5A5","FFC000","5B9BD5","70AD47","0563C1","954F72"],["Office 2007-2010","windowText","window","1F497D","EEECE1","4F81BD","C0504D","9BBB59","8064A2","4BACC6","F79646","0000FF","800080"],["Grayscale","windowText","window","000000","F8F8F8","DDDDDD","B2B2B2","969696","808080","5F5F5F","4D4D4D","5F5F5F","919191"],["Atlas","windowText","window","454545","E0E0E0","F81B02","FC7715","AFBF41","50C49F","3B95C4","B560D4","FC5A1A","B49E74"],["Banded","2C2C2C","FFFFFF","099BDD","F2F2F2","FFC000","A5D028","08CC78","F24099","828288","F56617","005DBA","6C606A"],["Basis","000000","FFFFFF","565349","DDDDDD","A6B727","DF5327","FE9E00","418AB3","D7D447","818183","F59E00","B2B2B2"],["Berlin","windowText","window","9D360E","E7E6E6","F09415","C1B56B","4BAF73","5AA6C0","D17DF9","FA7E5C","FFAE3E","FCC77E"],["Celestial","windowText","window","18276C","EBEBEB","AC3EC1","477BD1","46B298","90BA4C","DD9D31","E25247","C573D2","CCAEE8"],["Circuit","windowText","window","134770","82FFFF","9ACD4C","FAA93A","D35940","B258D3","63A0CC","8AC4A7","B8FA56","7AF8CC"],["Damask","windowText","window","2A5B7F","ABDAFC","9EC544","50BEA3","4A9CCC","9A66CA","C54F71","DE9C3C","6BA9DA","A0BCD3"],["Depth","windowText","window","455F51","94D7E4","41AEBD","97E9D5","A2CF49","608F3D","F4DE3A","FCB11C","FBCA98","D3B86D"],["Dividend","windowText","window","3D3D3D","EBEBEB","4D1434","903163","B2324B","969FA7","66B1CE","40619D","828282","A5A5A5"],["Droplet","windowText","window","355071","AABED7","2FA3EE","4BCAAD","86C157","D99C3F","CE6633","A35DD1","56BCFE","97C5E3"],["Facet","windowText","window","2C3C43","EBEBEB","90C226","54A021","E6B91E","E76618","C42F1A","918655","99CA3C","B9D181"],["Frame","000000","FFFFFF","545454","BFBFBF","40BAD2","FAB900","90BB23","EE7008","1AB39F","D5393D","90BB23","EE7008"],["Gallery","windowText","window","454545","DFDBD5","B71E42","DE478E","BC72F0","795FAF","586EA6","6892A0","FA2B5C","BC658E"],["Integral","windowText","window","335B74","DFE3E5","1CADE4","2683C6","27CED7","42BA97","3E8853","62A39F","6B9F25","B26B02"],["Ion Boardroom","windowText","window","3B3059","EBEBEB","B31166","E33D6F","E45F3C","E9943A","9B6BF2","D53DD0","8F8F8F","A5A5A5"],["Ion","windowText","window","1E5155","EBEBEB","B01513","EA6312","E6B729","6AAC90","54849A","9E5E9B","58C1BA","9DFFCB"],["Madison","windowText","window","1F2D29","C5FAEB","A1D68B","5EC795","4DADCF","CDB756","E29C36","8EC0C1","6D9D9B","6D8583"],["Main Event","windowText","window","424242","C8C8C8","B80E0F","A6987D","7F9A71","64969F","9B75B2","80737A","F21213","B6A394"],["Mesh","windowText","window","363D46","EBEBEB","6F6F6F","BFBFA5","DCD084","E7BF5F","E9A039","CF7133","F28943","F1B76C"],["Metropolitan","windowText","window","162F33","EAF0E0","50B4C8","A8B97F","9B9256","657689","7A855D","84AC9D","2370CD","877589"],["Organic","windowText","window","212121","DADADA","83992A","3C9770","44709D","A23C33","D97828","DEB340","A8BF4D","B4CA80"],["Parallax","windowText","window","212121","CDD0D1","30ACEC","80C34F","E29D3E","D64A3B","D64787","A666E1","3085ED","82B6F4"],["Parcel","000000","FFFFFF","4A5356","E8E3CE","F6A21D","9BAFB5","C96731","9CA383","87795D","A0988C","00B0F0","738F97"],["Quotable","windowText","window","212121","636363","00C6BB","6FEBA0","B6DF5E","EFB251","EF755F","ED515C","8F8F8F","A5A5A5"],["Retrospect","000000","window","637052","CCDDEA","E48312","BD582C","865640","9B8357","C2BC80","94A088","2998E3","8C8C8C"],["Savon","windowText","window","1485A4","E3DED1","1CADE4","2683C6","27CED7","42BA97","3E8853","62A39F","F49100","739D9B"],["Slate","windowText","window","212123","DADADA","BC451B","D3BA68","BB8640","AD9277","A55A43","AD9D7B","E98052","F4B69B"],["Slice","windowText","window","146194","76DBF4","052F61","A50E82","14967C","6A9E1F","E87D37","C62324","0D2E46","356A95"],["Vapor Trail","windowText","window","454545","DADADA","DF2E28","FE801A","E9BF35","81BB42","32C7A9","4A9BDC","F0532B","F38B53"],["View","000000","FFFFFF","46464A","D6D3CC","6F6F74","92A9B9","A7B789","B9A489","8D6374","9B7362","67AABF","ABAFA5"],["Wisp","windowText","window","766F54","E3EACF","A53010","DE7E18","9F8351","728653","92AA4C","6AAC91","FB4A18","FB9318"],["Wood Type","windowText","window","696464","E9E5DC","D34817","9B2D1F","A28E6A","956251","918485","855D5D","CC9900","96A9A9"]],op=[["Office","Calibri Light","Calibri"],["Office 2013-2022","Calibri Light","Calibri"],["Office 2007-2010","Calibri Light","Calibri"],["Grayscale","Calibri Light","Calibri"],["Atlas","Calibri Light","Rockwell"],["Banded","Corbel","Corbel"],["Basis","Corbel","Corbel"],["Berlin","Trebuchet MS","Trebuchet MS"],["Celestial","Calibri Light","Calibri"],["Circuit","Tw Cen MT","Tw Cen MT"],["Damask","Bookman Old Style","Rockwell"],["Depth","Corbel","Corbel"],["Madison","Arial","Arial"],["Main Event","Impact","Impact"],["Mesh","Century Gothic","Century Gothic"],["Metropolitan","Calibri Light","Calibri Light"],["Organic","Garamond","Garamond"],["Parallax","Corbel","Corbel"],["Parcel","Gill Sans MT","Gill Sans MT"],["Quotable","Century Gothic","Century Gothic"],["Retrospect","Calibri Light","Calibri"],["Savon","Century Gothic","Century Gothic"],["Slate","Calisto MT","Calisto MT"],["Slice","Century Gothic","Century Gothic"],["Vapor Trail","Century Gothic","Century Gothic"],["View","Century Schoolbook","Century Schoolbook"],["Wisp","Century Gothic","Century Gothic"],["Wood Type","Rockwell Condensed","Rockwell"]],sp=[["Office","Office","Office"],["2013-2022","Office 2013-2022","Office 2013-2022"],["Atlas","Atlas","Atlas"],["Banded","Banded","Banded"],["Basis","Basis","Basis"],["Berlin","Berlin","Berlin"],["Celestial","Celestial","Celestial"],["Circuit","Circuit","Circuit"],["Damask","Damask","Damask"],["Depth","Depth","Depth"],["Dividend","Dividend","Dividend"],["Droplet","Droplet","Droplet"],["Facet","Facet","Facet"],["Frame","Frame","Frame"],["Gallery","Gallery","Gallery"],["Grayscale","Grayscale","Grayscale"],["Integral","Integral","Integral"],["Ion Boardroom","Ion Boardroom","Ion Boardroom"],["Ion","Ion","Ion"],["Madison","Madison","Madison"],["Main Event","Main Event","Main Event"],["Mesh","Mesh","Mesh"],["Metropolitan","Metropolitan","Metropolitan"],["Organic","Organic","Organic"],["Parallax","Parallax","Parallax"],["Parcel","Parcel","Parcel"],["Quotable","Quotable","Quotable"],["Retrospect","Retrospect","Retrospect"],["Savon","Savon","Savon"],["Slate","Slate","Slate"],["Slice","Slice","Slice"],["Vapor Trail","Vapor Trail","Vapor Trail"],["View","View","View"],["Wisp","Wisp","Wisp"],["Wood Type","Wood Type","Wood Type"],["Office 2007-2010","Office 2007-2010","Office 2007-2010"]],Qi="Themes is readonly. To make modifications create a new DocsThemes instance.",eh={[exports.IColor.Scheme.Bg1]:"lt1",[exports.IColor.Scheme.Bg2]:"lt2",[exports.IColor.Scheme.Tx1]:"dk1",[exports.IColor.Scheme.Tx2]:"dk2",[exports.IColor.Scheme.Accent1]:"accent1",[exports.IColor.Scheme.Accent2]:"accent2",[exports.IColor.Scheme.Accent3]:"accent3",[exports.IColor.Scheme.Accent4]:"accent4",[exports.IColor.Scheme.Accent5]:"accent5",[exports.IColor.Scheme.Accent6]:"accent6",[exports.IColor.Scheme.Hlink]:"hlink",[exports.IColor.Scheme.FolHlink]:"folHlink"},br="Office",Yl=[br,"Calibri Light","Calibri"],vr=["dk1","lt1","dk2","lt2","accent1","accent2","accent3","accent4","accent5","accent6","hlink","folHlink"],ju=l=>{const t={};for(let e=0;e<l.length;e++){const n=l[e],r=n[0],o={name:r};t[r]=o;for(let s=0;s<vr.length;s++){const i=vr[s],a=n[s+1];if(!a)continue;const c=kt.parse(a);a&&(o[i]=c.toString())}}return t},Vu=l=>{const t={};for(let e=0;e<l.length;e++){const n=l[e],r=n[0],o={name:r};t[r]=o,o.majorFont=n[1]??Yl[1],o.minorFont=n[2]??Yl[2]}return t},ip=ju([[br,"windowText","window","44546A","E7E6E6","4472C4","ED7D31","A5A5A5","FFC000","5B9BD5","70AD47","0563C1","954F72"]]),lp=Vu([Yl]),yo=ip[br],hr=lp[br];let Le=null;const ap=new class{constructor(){this._colors={};for(let l=0;l<vr.length;l++){const t=vr[l],e=kt.parse(yo[t]);this._colors[t]=e}}getName(){return yo.name}getDk1(){return this._colors.dk1}getLt1(){return this._colors.lt1}getDk2(){return this._colors.dk2}getLt2(){return this._colors.lt2}getAccent1(){return this._colors.accent1}getAccent2(){return this._colors.accent2}getAccent3(){return this._colors.accent3}getAccent4(){return this._colors.accent4}getAccent5(){return this._colors.accent5}getAccent6(){return this._colors.accent6}getHlink(){return this._colors.hlink}getFolHlink(){return this._colors.folHlink}toJSON(){return null}};class cp{constructor(t,e=ap){this._delegate=e,this._fromJSON(t)}_fromJSON(t){if(this._overrides={},!t)return;const e=Object.keys(t);if(e.length!==0)for(let n=0;n<e.length;n++){const r=e[n];this._overrides[r]=r==="name"?t[r]:kt.parse(t[r])}}_value(t,e){return this._overrides&&this._overrides[t]!==null&&this._overrides[t]!==void 0?this._overrides[t]:this._delegate?.[e]?.()}getName(){return this._value("name","getName")}getDk1(){return this._value("dk1","getDk1")}getLt1(){return this._value("lt1","getLt1")}getDk2(){return this._value("dk2","getDk2")}getLt2(){return this._value("lt2","getLt2")}getAccent1(){return this._value("accent1","getAccent1")}getAccent2(){return this._value("accent2","getAccent2")}getAccent3(){return this._value("accent3","getAccent3")}getAccent4(){return this._value("accent4","getAccent4")}getAccent5(){return this._value("accent5","getAccent5")}getAccent6(){return this._value("accent6","getAccent6")}getHlink(){return this._value("hlink","getHlink")}getFolHlink(){return this._value("folHlink","getFolHlink")}toJSON(){const t=E.CommonUtils.toSafeJSON(this._overrides),e=this.getName();return e&&(t.name=e),t}}const hp=new class{constructor(){this._colors={};for(let l=0;l<vr.length;l++){const t=vr[l],e=kt.parse(yo[t]);this._colors[t]=e}}getName(){return hr.name}getMajorFont(){return hr.majorFont}getMinorFont(){return hr.minorFont}getMajorFallbacks(){return hr.majorFallbacks}getMinorFallbacks(){return hr.minorFallbacks}};class dp{constructor(t,e=hp){this._delegate=e,this._fromJSON(t)}_fromJSON(t){if(this._overrides={},!t)return;const e=Object.keys(t);if(e.length!==0)for(let n=0;n<e.length;n++){const r=e[n];this._overrides[r]=t[r]}}_value(t,e){return this._overrides&&this._overrides[t]!==null&&this._overrides[t]!==void 0?this._overrides[t]:this._delegate?.[e]?.()}getName(){return this._value("name","getName")}getMajorFont(){return this._value("majorFont","getMajorFont")}getMinorFont(){return this._value("minorFont","getMinorFont")}getMajorFallbacks(){return this._value("majorFallbacks","getMajorFallbacks")}getMinorFallbacks(){return this._value("minorFallbacks","getMinorFallbacks")}toJSON(){const t=E.CommonUtils.toSafeJSON(this._overrides),e=this.getName();return e&&(t.name=e),t}}class Ys{constructor(t,e=null,n=null){if(this._cacheColors=new Map,!e&&t?.name){const a=Le?Le.get(t.name.toLowerCase()):null;a&&(e=a)}if(!e&&Le&&(e=Le.get(br.toLowerCase())),this._name=t?.name??e?.getName(),!this._name)throw new Error("Theme must have a name.");this._builtInID=n,this._delegate=e,this._colors=new cp(t?.colors,this._delegate?.getColorScheme()),this._fonts=new dp(t?.fonts,this._delegate?.getFontScheme());const r=eh,o={},s=Object.keys(r);for(let a=0;a<s.length;a++){const c=s[a];o[c]=`get${Ir(r[c])}`}o.dk1="getDk1",o.dk2="getDk2",o.lt1="getLt1",o.lt2="getLt2",o.folhlink="getFolHlink",this._colorMap=o;const i=this;this._schemeLookup=a=>{let c=i._cacheColors[a];if(c)return c;const h=i._colorMap[a];if(!h)throw new Error(`Invalid color scheme key: ${a}`);const d=i.getColorScheme();let u=d[h].bind(d)();return u||(u=yo[eh[a]??a]),c=new kt(u).toRGBA(),i._cacheColors[a]=c,c}}get builtInID(){return this._builtInID??null}getName(){return this._name??this._delegate?.getName()??null}isCustom(){return this._builtInID!==null&&this._builtInID!==void 0}getColorScheme(){return this._colors}getFontScheme(){return this._fonts}schemeLookup(){return this._schemeLookup}parseColor(t){return kt.parse(t,this._schemeLookup)}toJSON(){const t={name:this.getName()},e=this._colors.toJSON();e&&(Object.keys(e).length>1||e.name&&e.name!==t.name)&&(t.colors=e);const n=this._fonts.toJSON();return n&&(Object.keys(n).length>1||n.name&&n.name!==t.name)&&(t.fonts=n),Object.keys(t).length===1&&t.name===br?null:t}}const up=()=>{if(Le)return Le;const l=((e,n,r)=>{const o=[];for(let s=0;s<e.length;s++){const i=e[s],a=i[0],c=n[i[1]]??yo,h=r[i[2]]??hr;o.push({name:a,colors:c,fonts:h})}return o})(sp,ju(rp),Vu(op)),t=new Map;for(let e=0;e<l.length;e++){const n=new Ys(l[e]),r=new Ys(null,n,e+1);t.set(r.getName().toLowerCase(),r)}return Le=t,t};class va{constructor(t=null,e=!1){up(),this._isReadOnly=e,this._customMap=new Map,this._defaultTheme=this.getByName("Office")}getDefaultTheme(){return this._defaultTheme}setDefaultTheme(t){if(this._isReadOnly)throw new Error(Qi);if(!t)throw new Error("Theme cannot be null.");const e=this.getDefaultTheme();return this.getByName(t.getName())||this.setCustomTheme(t),this._defaultTheme=t,e}getByName(t){return t=t.toLowerCase(),this._customMap.get(t)||(Le.get(t)??null)}getItems(t){const e=t?.type??exports.IThemeCollection.BuiltInFilterType.All,n=new Map;return e!==exports.IThemeCollection.BuiltInFilterType.BuiltIn&&e!==exports.IThemeCollection.BuiltInFilterType.All||Le.forEach((r,o)=>n.set(o,r)),e!==exports.IThemeCollection.BuiltInFilterType.Custom&&e!==exports.IThemeCollection.BuiltInFilterType.All||this._customMap.forEach((r,o)=>n.set(o,r)),t?.selected&&n.set(t.selected.getName().toLowerCase(),t.selected),(r=>{const o=[...r];return o.sort((s,i)=>E.CommonUtils.isDefined(s.builtInID)&&!E.CommonUtils.isDefined(i.builtInID)?1:!E.CommonUtils.isDefined(s.builtInID)&&E.CommonUtils.isDefined(i.builtInID)?-1:E.CommonUtils.isDefined(s.builtInID)&&E.CommonUtils.isDefined(i.builtInID)?s.builtInID-i.builtInID:s.getName().localeCompare(i.getName())),o})(Array.from(n.values()))}getCount(){return this._customMap.size+Le.size}setCustomTheme(t){if(this._isReadOnly)throw new Error(Qi);const e=t.getName().toLowerCase(),n=this._customMap.get(e);return this._customMap.set(e,t),n??null}deleteCustomTheme(t){if(this._isReadOnly)throw new Error(Qi);let e=null;e=typeof t=="string"?t.toLowerCase():t.getName().toLowerCase();const n=this._customMap.get(e);return this._customMap.delete(e),n??null}}exports.ITableStyle=void 0,(exports.ITableStyle||(exports.ITableStyle={})).ElementType={WholeTable:"wholeTable",FirstColumnStripe:"firstColumnStripe",SecondColumnStripe:"secondColumnStripe",FirstRowStripe:"firstRowStripe",SecondRowStripe:"secondRowStripe",LastColumn:"lastColumn",FirstColumn:"firstColumn",HeaderRow:"headerRow",TotalRow:"totalRow",FirstHeaderCell:"firstHeaderCell",LastHeaderCell:"lastHeaderCell",FirstTotalCell:"firstTotalCell",LastTotalCell:"lastTotalCell"},(exports.ITableStyle||(exports.ITableStyle={})).Empty=class{constructor(l){this._normalStyle=l}getName(){return"None"}isShownInTableStyles(){return!1}isShownInPivotStyles(){return!1}getRanged(l){return null}getProperties(){return E.CommonUtils.EmptyObject}isBuiltIn(){return!0}delete(){}toJSON(){return null}get isITableStyle(){return!0}},exports.IAnchored=void 0,(exports.IAnchored||(exports.IAnchored={})).Type={Absolute:"absolute",OneCell:"oneCell",TwoCell:"twoCell"};const Ce="Model has been closed. No further operations are allowed.",nh="Name is required";class Yt{constructor(t,e){this._listeners=new Set,this._pending=null,this._listeners=new Set,this._transactions=e??new ve({transient:!0}),this._src=t;const n=this;this._transactionsRemoveListener=this._transactions?.addListener({onCommitEnd(r){const o=n._pending;if(!o)return;n._pending=null;const s=r.getId(),i=new Set;for(let a=0;a<o.length;a++){const c=o[a];c.commitId===s&&n._doNotify(c.listeners,c.removes,c.options,i)}}})}addListeners(t,e){const n=e?.transactional??this._transactions.isOpenTransaction(),r={listeners:t},o=this,s=()=>{if(!n)return void o._listeners.delete(r);const i=o._transactions.getState(o)?.listeners,a=new Set(i);a.delete(r);const c=o._transactions.beginCommit();try{c.updateState(o,{listeners:a}),c.commit({forceAmend:!0})}catch(h){throw c.rollback(),h}};if(r.remove=e?.once?s:null,n){const i=o._transactions.getState(o)?.listeners,a=new Set(i);a.add(r);const c=this._transactions.beginCommit();try{c.updateState(o,{listeners:a}),c.commit({forceAmend:!0})}catch(h){throw c.rollback(),h}}else o._listeners.add(r);return s}async _doNotify(t,e=null,n,r){const o=n?.source??this._src,s=[],i=n?.params;for(let c=0;c<t.length;c++){const h=t[c];r&&r.has(h)||(r?.add(h),s.push(h(o,i)))}let a=null;if(e&&(a=()=>{for(let c=0;c<e.length;c++)e[c]()}),n?.async)return new Promise(async(c,h)=>{try{const d=await Promise.all(s);a?.(),c(d)}catch(d){a?.(),h(d)}});a?.()}notify(t,e){let n=null,r=null;const o=d=>{d.forEach(u=>{const g=u.listeners[t];g&&(n||(n=[]),n.push(g),u.remove&&(r||(r=[]),r.push(u.remove)))})},s=e?.transactional??this._transactions.isOpenTransaction();if(s){const d=this._transactions.getState(this)?.listeners;d&&o(d)}const i=n,a=r;n=null,r=null,o(this._listeners);const c=n,h=r;if(n=null,r=null,s){if(i&&this._doNotify(i,a,e),c){let d=this._pending;return d||(this._pending=d=[]),d.push({commitId:this._transactions.getCurrentCommit().getId(),listeners:c,removes:h,options:e}),this._doNotify(c,a,e)}}else if(c)return this._doNotify(c,h,e)}close(){this._transactions.remove(this),this._transactionsRemoveListener()}}class Vn{constructor(t){this._emitter=null,this._closed=!1,this._options={...t};const e=this;this._transactions=this._options?.transactions??new ve({transient:!0}),this._emitter=new Yt(this,this._transactions),this._updateState({isDeleted:!1}),t?.json&&this._fromJSON(t.json),this._options?.setContainerReadOnlyCallback?.(()=>{e._processOnContainerReadOnly()}),this._transactionsRemoveListener=this._transactions.addStateListener(this,{onAfterStateChange(n,r,o){e._processStateChange(n,r,o)},onRestoreOrRevert(n,r,o){e._processRestoreOrRevert(n,r,o)}}),this._processInit()}_fromJSON(t){}isReadOnly(){return this._options.isReadOnly?.()??!1}isDeleted(){return this._getState().isDeleted??!1}getType(){return this._options.type}get isIModel(){return!0}_processTransactionDone(t){}_getDescription(){return null}_getState(){if(this._closed)throw new Error(Ce);return this._transactions.getState(this)}_beginCommit(t){return this._transactions.beginCommit(typeof t=="string"?{description:t}:t)}_getTransactions(){return this._transactions}_updateState(t,e,n){if(this._closed)throw new Error(Ce);if(!t)return;const r=this._beginCommit(e?.description);try{r.updateState(this,t);let o=!1;if(n)for(let s=0;s<n.length;s++){const i=n[s];o=o||i==="onAnyChange",this._emitter.notify(i)}!o&&n&&n.length>0&&this._emitter.notify("onAnyChange"),r.commit()}catch(o){throw r.rollback(),o}return this}_getEmitter(){return this._emitter}_processInit(){}_processStateChange(t,e,n){}_processRestoreOrRevert(t,e,n){this._emitter.notify("onInvalidated")}delete(t){if(this._getState().isDeleted)throw new Error("Model has been deleted.");this._options.deleteFromContainer&&this._options.deleteFromContainer?.(t),this._delete()}_delete(){const t=this._getDescription(),e="Delete",n=t?`${e} ${t}`:e,r=this._beginCommit(n);try{this._processDelete(),r.commit()}catch(o){throw r.rollback(),o}}_processOnContainerDeleted(){this._processDelete()}_processDelete(){this._updateState({isDeleted:!0},null,["onDelete"])}_processOnContainerReadOnly(){this._emitter.notify("onReadOnlyChange")}addListeners(t,e){return this._emitter.addListeners(t,e)}beginCommit(t){return this._beginCommit(t)}doBatch(t,e){const n=this;return this._transactions.doBatch(t,typeof e=="string"?{description:e}:e,r=>{n._processTransactionDone(r)})}isClosed(){return this._closed}close(){this._closed||(this._emitter.notify("onClose"),this._closed=!0,this._transactionsRemoveListener?.())}}class $u extends Vn{_fromJSON(t){const e={};if(e.name=t?.name??null,!e.name)throw new Error(nh);e.comment=t?.comment??null,e.hidden=t?.hidden??!1,e.scope=t?.scope??null,this._updateState(e,{description:this._options.createDescription??"Create Item"+(e.name?` '${e.name}'`:"")})}_toJSON(){const t=this._getState(),e={name:t.name};return t.comment&&(e.comment=t.comment),t.hidden&&(e.hidden=t.hidden),t.hidden&&(e.hidden=t.hidden),e}getName(){return this._getState().name}setName(t,e){if(!t)throw new Error(nh);return this._updateState({name:t},{description:`Update Named '${t}'`,...e})}getComment(){return this._getState().comment}setComment(t,e){return this._updateState({comment:t},{description:"Set Comment",...e})}isHidden(){return this._getState().hidden}getScope(){return this._getState().scope}get isINamed(){return!0}}var re;exports.ISort=void 0,(exports.ISort||(exports.ISort={})).SortOn={Value:"value",FillColor:"fillColor",FontColor:"fontColor",Icon:"icon"},exports.Sort=void 0,(re=exports.Sort||(exports.Sort={})).CaseInsensitiveOptions={sensitivity:"base",numeric:!1},re.CaseSensitiveOptions={sensitivity:"case",numeric:!1},re.BooleanCollator=Object.freeze({type:A.ScalarType.Boolean,compare:(l,t,e)=>l===!0?1:-1}),re.StringCollator=Object.freeze({type:A.ScalarType.String,compare:(l,t,e)=>l.localeCompare(t,"en",e),defaultOptions:re.CaseInsensitiveOptions}),re.NumberCollator=Object.freeze({type:A.ScalarType.Number,compare:(l,t,e)=>l<t?-1:1}),re.RichDataCollator=Object.freeze({type:A.ScalarType.RichData,compare:(l,t,e)=>l.type.localeCompare(t.type,"en")}),re.DefaultRangeOptions=Object.freeze({hasHeader:!1,reverse:!1,includeHidden:!1,collatorOptions:re.CaseInsensitiveOptions,orientation:A.IRange.Orientation.Row,offset:0}),re.DefaultCollators=Object.freeze([re.BooleanCollator,re.StringCollator,re.NumberCollator,re.RichDataCollator]);const gp=(l,t,e,n)=>{let r;for(;!(r=l.next()).done;)try{t(r.value[1],r.value[0],e)}catch(o){if(typeof l.throw!="function")throw o;l.throw(o)}typeof l.return=="function"&&l.return()},Gu=l=>{const t=l.next.bind(l),e={next:n=>{const r=t(n);return r.done?Ct:{done:r.done,value:r.value[1]}},[Symbol.iterator]:()=>e,...l.return&&{return:l.return.bind(l)},...l.throw&&{throw:l.throw.bind(l)}};return e},Pr=l=>{if(!l||l.length===0)return null;let t=Number.MAX_SAFE_INTEGER,e=-1,n=null;return(r,o=!1)=>{if(r===t)return r;o!==!1&&(t=Number.MAX_SAFE_INTEGER),r!==t+(o?-1:1)&&(e=((i,a,c=!0)=>{if(!i||i.length===0)return null;let h,d=-1;return c?(d=E.CommonUtils.findEqualOrGreater(i,a,u=>u.max),h=i[d]):(d=E.CommonUtils.findEqualOrLesser(i,a,u=>u.min),h=i[d]),h?(c?a>h.max&&(d+=1,h=i[d]):a<h.min&&(d-=1,h=i[d]),h?d:-1):-1})(l,r,!o),n=l[e]);let s=r;if(o)for(;n&&s<=n.max;)s=n.min-1,n=l[--e];else for(;n&&s>=n.min;)s=n.max+1,n=l[++e];return t=s,s}},Ct=Object.freeze({done:!0,value:void 0}),Dt=Object.freeze({next:()=>Ct,[Symbol.iterator]:()=>Dt});var Sr;Object.seal({done:!1,value:void 0}),(l=>{l.isList=e=>!!e&&!!e.isIList,l.isListLike=e=>!!e&&typeof e.length=="number"&&typeof e.at=="function",l.fromArray=(e,n,r,o)=>new t(e,n,r,o);class t{constructor(n,r,o,s){this.g=r,this.s=o;let i=n??s;if(o&&n&&!s){s=new Array(n.length);for(let a=0;a<n.length;a++){let c=n[a];s[a]=o(c,a)}i=s}this.a=i??E.CommonUtils.EmptyArray,r&&(this.at=a=>{a<0&&(a=i.length+a);const c=i[a];if(c!==void 0)return r(c,a)})}at(n){const r=this.a;return n<0&&(n=r.length+n),r[n]}fromArray(n){return new t(n,this.g,this.s)}get length(){return this.a.length}get isIList(){return!0}}l.ArrayList=t})(Sr||(Sr={}));class be{constructor(t){if(this._s=null,this._r=null,this._l=0,t&&t.length>0){const e=Sr.isList(t)&&!Array.isArray(t)?t:new Sr.ArrayList(t);this._s=e,this._l=t.length}}at(t){const e=this._s;if(e)return e.at(t);const n=this._c;if(n&&n.min<=t&&n.max>=t){const i=n.value;return i.v.at(t-n.min+i.s)}const r=this._r,o=r[E.CommonUtils.findEqualOrGreater(r,t,i=>i.max)];if(!o)return;const s=o.value;return this._c=o,s.v.at(t-o.min+s.s)}toArray(t=Number.MAX_SAFE_INTEGER){const e=[],n=this.entries(mp);let r=n.next();for(;!r.done&&e.length<t;)e.push(r.value[1]),r=n.next();return e}entries(t){const e=this.length;if(e===0)return Dt;let n,r,o,s=!0,i=0,a=e-1;if(t){s=!t.reverse;const g=t.bounds;g&&(i=Math.max(g.min??i,i),a=Math.min(g.max??a,a)),n=t.reuseResult??null,r=t.processSkip}const c=s?1:-1;let h=(s?i:a)-c;const d=this._s;if(d)o=g=>{if(!(g<i||g>a))return d.at(g)};else{const g=this._r;let m=s?0:g.length-1,f=g[m];const _=(p,S)=>{const C=p===m?f:g[p];if(C&&S>=C.min&&S<=C.max)return m=p,f=C,C};o=p=>{if(p<i||p>a)return;let S=_(m,p);if(S||(S=_(m+c,p)),!S){const y=E.CommonUtils.findEqualOrGreater(g,p,I=>I.max);S=_(y,p)}if(!S)return;const C=S.value;return C.v.at(p-S.min+C.s)}}const u={next:g=>{let m,f=h+c;return g!==void 0&&(g<0&&(g=e+g),f=g),f<i||f>a||r&&(f=r(f,!s),f<i||f>a)?Ct:(m=o(f),h=f,n?(so.done=!1,so.value[0]=f,so.value[1]=m,so):{done:!1,value:[h,m]})},[Symbol.iterator]:()=>u};return u}slice(t,e=void 0){const n=this._r??rh(this._s);if(!n)return Zi;const r=this.length;if(t=Math.min(Math.max(0,t),r),(e=Math.min(Math.max(0,e??r),r))-t<=0)return Zi;if(t<=0&&e>=r)return this;const o=t,s=e-1;let i=[],a=0;for(let h=0;h<n.length;h++){let d=n[h];const u=d.max;if(o===0&&u<=s){i.push(d);continue}const g=d.min;if(g>s){h=n.length;continue}if(u<o){a=u+1;continue}const m=Math.max(0,o-g),f=Math.max(0,u-s),_=f+m,p=d.value;i.push({min:g-a,max:u-_-a,value:{s:p.s+m,e:p.e-f,v:p.v}}),a+=_}const c=new be;return c._r=i,c._l=s-o+1,c}concat(t){if(!t)return this;if(!Sr.isListLike(t))throw new Error("Value must be IListLike");const e=this._l;if(e===0)return t.isIReadableList?t:t.length===0?Zi:new be(t);const n=t,r=t.length;if(r===0)return this;const o=this._r??rh(this._s),s=o.slice(0,o.length-1);let i=o[o.length-1],a=i?i.min:0,c=i?i.max:0,h=i?i.value:null,d=h?h.v:null,u=h?h.e-h.s:0;const g=_=>{const p=_.s,S=_.e,C=S-p;if(C+u<fp&&d&&d.fromArray){let w=_.v;const b=[],x=h.s,R=h.e;for(let T=x;T<=R;T++)b.push(d.at(T));for(let T=p;T<=S;T++)b.push(w.at(T));const v=d.fromArray(b);if(v)return w=v,u=w.length-1,h={s:0,e:u,v:w},i={min:a,max:a+u,value:h},c=a+u,void(d=w)}s.push(i);const y=c+1,I=y+C;i={min:y,max:I,value:_},a=y,c=I,h=i?i.value:null,d=h?h.v:null,u=h?h.e-h.s:0};if(t instanceof be){const _=t._s;if(_)g({s:0,e:_.length-1,v:_});else{const p=t._r;for(let S=0;S<p.length;S++)g(p[S].value)}}else g({s:0,e:r-1,v:n});s.push(i);const m=new be,f=e+r;return s.length===1&&s[0].min===0&&s[0].max===f-1?m._s=s[0].value.v:m._r=s,m._l=f,m}get length(){return this._l}[Symbol.iterator](){return Gu(this.entries())}get isIReadableList(){return!0}get isIList(){return!0}get[Symbol.toStringTag](){return"[ImmutableList]"}toString(){const t=this.length;if(t===0)return"";let e="";for(let n=0;n<t;n++){n>0&&(e+=",");const r=this.at(n);e+=r==null?"":String(r)}return e}}const rh=l=>[{min:0,max:l.length-1,value:{s:0,e:l.length-1,v:l}}],Zi=new be,so=Object.seal({done:!1,value:[-1,null]}),mp=Object.freeze({reverse:!1,bounds:{min:0,max:Number.MAX_SAFE_INTEGER},skipRuns:null,reuseResult:so}),fp=4;var Qs;(l=>{const t=(n,r)=>{const o=n!==E.RangeOrientation.Row;return r?(s,i)=>{if(s===i)return 0;const a=s[0],c=s[1],h=i[1];if(c===h)return a?-1:1;const d=i[0];let u=0,g=0;if(o?(u=a?c.colEnd:c.colStart,g=d?h.colEnd:h.colStart):(u=a?c.rowEnd:c.rowStart,g=d?h.rowEnd:h.rowStart),u===g&&a!==d)return a?-1:1;if(u!==g)return g-u;let m=0,f=0;if(o?(m=a?c.colStart:c.colEnd,f=d?h.colStart:h.colEnd):(m=a?c.rowStart:c.rowEnd,f=d?h.rowStart:h.rowEnd),m===f&&a!==d)return a?-1:1;if(m!==f)return f-m;const _=s[2]??0;return(i[2]??0)-_}:(s,i)=>{if(s===i)return 0;const a=s[0],c=s[1],h=i[1];if(c===h)return a?-1:1;const d=i[0];let u=0,g=0;if(o?(u=a?c.colStart:c.colEnd,g=d?h.colStart:h.colEnd):(u=a?c.rowStart:c.rowEnd,g=d?h.rowStart:h.rowEnd),u===g&&a!==d)return a?-1:1;if(u!==g)return u-g;let m=0,f=0;return o?(m=a?c.colEnd:c.colStart,f=d?h.colEnd:h.colStart):(m=a?c.rowEnd:c.rowStart,f=d?h.rowEnd:h.rowStart),m===f&&a!==d?a?-1:1:m!==f?m-f:(s[2]??0)-(i[2]??0)}};class e{constructor(r,o){if(this._isColumn=!0,this._isByCell=!1,this._isReverse=!1,this._cursor=null,this._reuse=null,this._localReuse={done:!1,value:[null,null]},this._eventsMajor=null,this._eventMajorIndex=0,this._majorStart=0,this._majorEnd=0,this._eventMinorPeek=null,this._minorStart=0,this._minorEnd=0,!r||r.length===0)return;let s=E.RangeOrientation.Column,i=!1,a=!0,c=!1;o&&(s=o.orientation??E.RangeOrientation.Column,this._isColumn=a=s!==E.RangeOrientation.Row,this._isReverse=i=o.reverse??!1,this._isByCell=c=o.byCell??!1);const h=r.length,d=new Array(2*h);for(let f=0;f<h;f++){const _=r[f],p=[null,null];d[2*f]=[!0,_,f,p],d[2*f+1]=[!1,_,f,p]}d.sort(t(s,i)),this._eventsMajor=d;const u=d[0][1];this._majorStart=i?Number.MAX_SAFE_INTEGER:Number.MIN_SAFE_INTEGER,this._majorEnd=a?i?u.colEnd+1:u.colStart-1:i?u.rowEnd+1:u.rowStart-1,this._eventsMinor=new _t(null,t(a?E.RangeOrientation.Row:E.RangeOrientation.Column,i));const g=new Array(16);g.length=0,this._cursor={cell:null,range:{colStart:u.colStart,rowStart:u.rowStart,colEnd:u.colEnd,rowEnd:u.rowEnd},overlaps:g},c&&(this._cursor.cell={colIndex:i?Number.MIN_SAFE_INTEGER:Number.MAX_SAFE_INTEGER,rowIndex:i?Number.MIN_SAFE_INTEGER:Number.MAX_SAFE_INTEGER});const m=o?.reuseIterator;m&&(this._reuse=m,m.value=this._cursor)}next(r){const o=this._isColumn,s=this._isReverse;if(r){if(!this._isByCell)throw new Error("nextCell is only supported when byCell is true");const R=E.CoordUtils.createCellComparator(o?E.RangeOrientation.Column:E.RangeOrientation.Row,s);let v;do{const T=this._cursor,M=T.cell;if(M.colIndex!==Number.MAX_SAFE_INTEGER&&R(M,r)>=0)throw new Error("nextCell must be after the current iteration cell");if(v=this.next(),v.done)return v;const F=v.value.cell;if(R(F,r)>=0)return v;const N=T.range;if(o){const O=r.colIndex===M.colIndex;M.rowIndex=s?O?Math.max(r.rowIndex,N.rowStart):N.rowStart:O?Math.min(r.rowIndex,N.rowEnd):N.rowEnd}else{const O=r.rowIndex===M.rowIndex;M.colIndex=s?O?Math.max(r.colIndex,N.colStart):N.colStart:O?Math.min(r.colIndex,N.colEnd):N.colEnd}if(R(M,r)>=0)return F.rowIndex=M.rowIndex,F.colIndex=M.colIndex,v}while(!v.done);return v}let i=this._cursor;if(!i)return Ct;let a=this._reuse;if(!a){const R=i.cell,v=i.range,T={cell:null,range:{colStart:v.colStart,rowStart:v.rowStart,colEnd:v.colEnd,rowEnd:v.rowEnd},overlaps:[...i.overlaps]};R&&(T.cell={colIndex:R.colIndex,rowIndex:R.rowIndex}),this._cursor=T,a={done:!1,value:T}}const c=a.value,h=c.range,d=c.cell,u=this._isByCell,g=s?-1:1;let m=!1;if(u){const R=d.rowIndex,v=d.colIndex,T=o?R:v,M=o?s?h.rowStart:h.rowEnd:s?h.colStart:h.colEnd;if((s?T>=M:T<=M)&&(o?d.rowIndex=R+g:d.colIndex=v+g,s?T>M:T<M))return a;const F=o?d.colIndex:d.rowIndex,N=o?s?h.colStart:h.colEnd:s?h.rowStart:h.rowEnd;(s?F>N:F<N)&&(m=!0)}const f=c.overlaps;let _=this._majorStart,p=this._majorEnd,S=this._eventsMinor,C=this._minorStart,y=this._minorEnd,I=this._eventsMinorIterator,w=this._eventMinorPeek,b=w;for(;b&&!b.done;){const R=b.value[0];if(R[0])b=null;else{if(w=I.next(),w.done)f.length=0;else{const v=R[1];let T=f.length;if(T>1){const M=f.indexOf(v);M!==-1&&(f[M]=f[T-1])}if(f.length=T-1,T=f.length,T>0){const M=w.value[0],F=M[1],N=o?s?F.colStart:F.colEnd:s?F.rowStart:F.rowEnd;if(s?_>=N:_<=N){let O=!1;if(M[0]){const L=o?s?F.rowEnd:F.rowStart:s?F.colEnd:F.colStart;(s?L<y+g:L>y+g)&&(C=y+g,y=L-g,O=!0)}else{const L=o?s?F.rowStart:F.rowEnd:s?F.colStart:F.colEnd;(s?L<y:L>y)&&(C=y+g,y=L,O=!0)}if(O)return o?(h.rowStart=s?y:C,h.rowEnd=s?C:y):(h.colStart=s?y:C,h.colEnd=s?C:y),this._minorStart=C,this._minorEnd=y,this._eventMinorPeek=w,a}}}w.done&&(w=null),b=w}}if(!w)if(m){I=S.entries(void 0,this._localReuse),w=I.next(),this._eventsMinorIterator=I;const R=w.value[0][1],v=o?s?R.rowEnd:R.rowStart:s?R.colEnd:R.colStart;o?(d.colIndex=d.colIndex+g,d.rowIndex=v):(d.colIndex=v,d.rowIndex=d.rowIndex+g)}else{let R=this._eventMajorIndex;const v=this._eventsMajor,T=v.length;if(R>=T)return this._cursor=null,Ct;let M=v[R],F=M[0],N=!1;for(;!F&&!N&&M;){const L=M[1],B=o?s?L.colStart:L.colEnd:s?L.rowStart:L.rowEnd;if(s?B<p:B>p){N=!0;continue}const U=M[3];S.delete(U[0]),S.delete(U[1]),R++,M=v[R],M&&(F=M[0])}let O=S.size>0?p+g:-1;for(N=!1;F&&!N&&M;){const L=M[1];if(O!==-1&&(o?s?L.colEnd:L.colStart:s?L.rowEnd:L.rowStart)!==O){N=!0;continue}const B=M[2],U=[!0,L,B],D=[!1,L,B],z=M[3];if(z[0]=U,z[1]=D,S.set(U,0),S.set(D,0),O===-1&&(O=o?s?L.colEnd:L.colStart:s?L.rowEnd:L.rowStart),R++,M=v[R],!M||(F=M[0],!F))continue;const k=M[1];(o?s?k.colEnd:k.colStart:s?k.rowEnd:k.rowStart)!==O&&(N=!0)}if(O!==-1&&(_=O),u&&(o?d.colIndex=_:d.rowIndex=_),this._eventMajorIndex=R,R>=T)return this._eventsMinorIterator=I,this._cursor=null,Ct;if(M){const L=M[0],B=M[1],U=o?s?B.colEnd:B.colStart:s?B.rowEnd:B.rowStart,D=o?s?B.colStart:B.colEnd:s?B.rowStart:B.rowEnd;p=L?U-g:D}f.length=0,I=S.entries(void 0,this._localReuse),w=I.next(),this._eventsMinorIterator=I}let x=w;do{const R=x.value;x=null;const v=R[0],T=v[1];if(!v[0])continue;const M=o?s?T.rowEnd:T.rowStart:s?T.colEnd:T.colStart;C!==M&&(C=M),w=I.next();const F=w.value[0],N=F[0],O=F[1],L=o?s?O.rowEnd:O.rowStart:s?O.colEnd:O.colStart;if(N&&L===C)x=w;else{const B=o?s?T.rowStart:T.rowEnd:s?T.colStart:T.colEnd,U=o?s?O.rowStart:O.rowEnd:s?O.colStart:O.colEnd;y=(s?Math.max:Math.min)(B,N?L-g:U),u&&(o?d.rowIndex=C:d.colIndex=C)}f[f.length]=Object.freeze(T)}while(x);return o?(h.colStart=s?p:_,h.colEnd=s?_:p,h.rowStart=s?y:C,h.rowEnd=s?C:y):(h.rowStart=s?p:_,h.rowEnd=s?_:p,h.colStart=s?y:C,h.colEnd=s?C:y),this._eventMinorPeek=w,this._minorStart=C,this._minorEnd=y,this._majorStart=_,this._majorEnd=p,a}return(r){return null}throw(r){return null}[Symbol.iterator](){return this}}l.IteratorInstance=e})(Qs||(Qs={}));const pn=(l,t=E.Direction.Right,e=null)=>{if(!l)return l;if(l.length===0)return[];const n=t===E.Direction.Right,r=t===E.Direction.Left,o=t===E.Direction.Up,s=t===E.Direction.Down;return l.sort((i,a)=>{if(!i&&!a)return 0;if(i&&!a)return-1;if(a&&!i)return 1;const c=e?.(i,a)??0;return c!==0?c:n?i.rowStart===a.rowStart?i.colStart-a.colStart:i.rowStart-a.rowStart:s?i.colStart===a.colStart?i.rowStart-a.rowStart:i.colStart-a.colStart:r?i.rowStart===a.rowStart?a.colStart-i.colStart:a.rowStart-i.rowStart:o?i.colStart===a.colStart?a.rowStart-i.rowStart:a.colStart-i.colStart:0})},pp=(l,t)=>{const e=t.min,n=l.min;if(t.max===Number.MAX_SAFE_INTEGER){const r=e,o=l.max;return n<=r&&r<=o?0:o<r?-1:n>r?1:(console.warn("coords are not inserted correctly",l,t),0)}return n-e};class xn{constructor(t){this._runs=null,this._dataCoords=null,this._count=0,this._length=0,this._maxCoords=null,this._options=t,t?.maxCoords&&(this._maxCoords=Object.freeze({...t.maxCoords})),this._runs=new _t(void 0,pp,t?.nodeSize),this._reuseRunsIterator={done:!1,value:[null,null]},this._reuseRunsEntry=[null,null]}_validateBounds(t=Number.MIN_SAFE_INTEGER,e=Number.MAX_SAFE_INTEGER){const n=this._maxCoords,r=n?.min??Number.MIN_SAFE_INTEGER,o=n?.max??Number.MAX_SAFE_INTEGER;if(t<r||e>o)throw new E.OutOfBoundsError}entries(t){let e,n,r=Number.MIN_SAFE_INTEGER,o=Number.MAX_SAFE_INTEGER,s=!0;t&&(t?.bounds&&(r=t.bounds?.min??Number.MIN_SAFE_INTEGER,o=t.bounds?.max??Number.MAX_SAFE_INTEGER,this._validateBounds(r,o)),s=!t.reverse,e=_p(t.reuseResult),n=t.processSkip);const i=this._dataCoords;if(!i)return Dt;r=Math.max(i.min,r),o=Math.min(i.max,o);let a=null,c=null,h=Number.MAX_SAFE_INTEGER,d=Number.MIN_SAFE_INTEGER;if(n){const _=n;n=(p,S)=>_(p+h,S)-h}const u=_=>{let p;_!==Number.MIN_SAFE_INTEGER&&_!==Number.MAX_SAFE_INTEGER&&(fe.min=_,p=fe),a=s?this._runs.entries(p,this._reuseRunsIterator):this._runs.entriesReversed(p,this._reuseRunsIterator),h=Number.MAX_SAFE_INTEGER,d=Number.MIN_SAFE_INTEGER,c=null},g=_=>{if(_!==void 0){if(_<h||_>d)return void(c=void 0);_-=h}if(!c)return;let p=c.next(_);if(!c)return;let S=p.value,C=S?.[1];return p.done?void(c=void 0):Sp(S[0]+h,C,e)},m=_=>{let p;return p=g(_),p||(p=(S=>{let C;do{if(S!==void 0&&u(S),!a)return;if(C=a.next(),C.done)return void(a=void 0);const y=C.value,I=y[0],w=y[1],b=I.min,x=I.max,R=Math.max(b,r)-b,v=Math.max(R,Math.min(x,o))-b;rr.bounds.min=R,rr.bounds.max=v,rr.reverse=!s,rr.processSkip=n,rr.reuseResult=e,h=b,d=x,c=w.entries(rr);const T=g(S);if(T)return T;S=void 0}while(!C.done);a=void 0})(_),p||Ct)},f={next(_){if(_!==void 0&&(_<0||_>o))throw new E.OutOfBoundsError;return m(_)},return:_=>null,throw:_=>null};return u(s?r:o),f}runs(t){let e,n=Number.MIN_SAFE_INTEGER,r=Number.MAX_SAFE_INTEGER,o=!0,s=!1;t&&(t.bounds&&(n=t.bounds?.min??Number.MIN_SAFE_INTEGER,r=t.bounds?.max??Number.MAX_SAFE_INTEGER,this._validateBounds(n,r),t.overflowRun&&(s=!0)),o=!t.reverse,e=wp(t.reuseResult));const i=this._dataCoords;if(!i)return Dt;n=Math.max(i.min,n),r=Math.min(i.max,r);let a=null;const c=d=>{let u;d!==Number.MIN_SAFE_INTEGER&&d!==Number.MAX_SAFE_INTEGER&&(fe.min=d,u=fe),a=o?this._runs.entries(u,this._reuseRunsIterator):this._runs.entriesReversed(u,this._reuseRunsIterator)},h={next(d){if(d!==void 0){if(d<n||d>r)throw new E.OutOfBoundsError;c(d)}if(!a)return Ct;const u=a.next();if(u.done)return a=void 0,Ct;const g=u.value,m=g[0];let f=m;const _=f.min,p=f.max;if(o&&_>r||!o&&p<n)return Ct;let S=g[1];return s||(p>r&&(S=S.slice(0,S.length-(p-r)),f={...f},f.max=r),_<n&&(S=S.slice(n-_),f===m&&(f={...f}),f.min=n)),yp(f,S,e)},return:d=>null,throw:d=>null};return c(o?n:r),h}slice(t,e){const n=this._runs,r=n.minKey().min,o=n.maxKey().max;if(e===void 0&&(e=o+1),this._count===0||t<=r&&e-1>=o)return this.clone();const s=Math.max(r,t),i=Math.min(o,e-1),a=i-s,c=[];let h=0;el.bounds.min=s,el.bounds.max=i;const d=this.runs(el);let u=d.next();for(;!u.done;){const m=u.value;let f=m[0],_=m[1];f={min:f.min-s,max:f.max-s},f.min<0&&(_=_.slice(-f.min),f.min=0),f.max>=a&&(_=_.slice(0,_.length-(f.max-a)),f.max=a),h+=_.length,c.push([f,_]),u=d.next()}const g=new xn(this._options);return g._runs.setPairs(c),g._updateCount(h),g}concat(t){const e=this.clone();if(!t||t.length===0)return e;const n=this._runs.nextLowerPair(void 0,this._reuseRunsEntry),r=n[0],o=n[1],s=r.max+1;let i=!1,a=0;const c=[];if(t.isISparseList){const h=t.runs();let d=h.next();for(;!d.done;){const u=d.value;let g=u[0];const m={min:g.min+s,max:g.max+s};let f=u[1];if(g.min===0){i=!0,a-=o.length,f=o.concat(f);const _=r.min;m.min=_,m.max=f.length-1+_}a+=f.length,c.push([m,f]),d=h.next()}}else{const h=t.length,d={min:r.min,max:h-1+s};t=o.concat(t),i=!0,a+=h,c.push([d,t])}return i&&e._runs.delete(r),e._runs.setPairs(c),e._updateCount(a),e}toArray(t=Number.MAX_SAFE_INTEGER,e=!0){if(this.length===0)return E.CommonUtils.EmptyArray;const n=e?0:Number.MIN_SAFE_INTEGER,r=Math.min(this._runs.maxKey().max,t);return tl.bounds.min=Number.MIN_SAFE_INTEGER,tl.bounds.max=r,Cp(this.entries(tl),e,r,n)}get isIReadableList(){return!0}get length(){return this._length}getCoords(){return this._dataCoords}clear(){this._runs.clear(),this._dataCoords=null,this._count=0,this._length=0}get isISparseList(){return!0}get isIList(){return!0}_updateCount(t){if(this._count+=t,this._lastRunsRead=void 0,this._lastListRead=void 0,this._count>0){const e=this._runs,n=Object.freeze({min:e.minKey().min,max:e.maxKey().max});this._dataCoords=n,this._length=n.max+1}else this._dataCoords=null,this._length=0}_update(t,e,n=null,r=void 0){const o=t,s=o+e-1;let i=0,a=s,c=s,h=null,d=null;fe.min=o,or.min=s,(n||r)&&(fe.min-=1,or.min+=1);const u=this._runs;let g=!1;if(u.editRange(fe,or,!0,(m,f,_)=>{const p=m.min,S=m.max;return p<o&&S+1>=o&&(a=p,h=f),p-1<=s&&S>s&&(c=p,d=f),i-=S-p+1,g=!0,_t.DeleteValue}),n||r===void 0||(n=new be([r])),n){let m=n;g=!0;let f=o;h&&(h=h.slice(0,o-a),m=h.concat(m),f=a),d&&(d=d.slice(s+1-c),m=m.concat(d)),i+=m.length,u.set({min:f,max:f+m.length-1},m)}else h&&(h=h.slice(0,o-a),i+=h.length,u.set({min:a,max:a+h.length-1},h)),d&&(d=d.slice(s+1-c),i+=d.length,u.set({min:s+1,max:s+d.length},d));return this._updateCount(i),g}setAt(t,e){if(t===void 0)throw new E.NullNotAllowedError;return this._validateBounds(t,t),this._update(t,1,null,e)}setRunAt(t,e){if(!e||e.length===0)return!1;if(t===void 0||!e.length)throw new E.NullNotAllowedError;const n=e.length;return this._validateBounds(t,t+n-1),this._update(t,n,e)}delete(t,e){return e===void 0&&(e=Math.max(this.getCoords().max-t+1,0)),!(e<=0)&&(this._validateBounds(t,t),this._update(t,e,null))}shift(t,e){if(e===0)return!1;let n=t,r=t;e<0&&(r=t-e-1),this._validateBounds(n,r);const o=this._runs,s=o.maxKey();if(e<0&&r>=s.max&&n<=o.minKey().min)return this._runs.clear(),this._dataCoords=null,this._count=0,this._length=0,!0;let i=0,a=n,c=r,h=null,d=null;fe.min=a,or.min=s.min,e<0&&(fe.min-=1,or.min+=1);let u=!1;const g=[];if(o.editRange(fe,or,!0,(m,f,_)=>{const p=m.min,S=m.max;return p<n&&S+1>=n&&(a=p,h=f),(p<n||e<0)&&p-1<=r&&m.max>r&&(c=p,d=f),e>0&&p>=n||e<0&&p-1>r?g.push([{min:p+e,max:S+e},f]):i-=S-p+1,u=!0,_t.DeleteValue}),e>0){const m=h||d;m&&(h=m.slice(0,n-a),c=t+e,d=m.slice(n-a))}else h&&(h=h.slice(0,n-a)),d&&(d=d.slice(r+1-c),c=t),h&&d&&a+h.length===c&&(h=h.concat(d),d=null);return h&&h.length>0&&(i+=h.length,o.set({min:a,max:a+h.length-1},h)),d&&(i+=d.length,o.set({min:c,max:c+d.length-1},d)),g.length>0&&o.setPairs(g),this._updateCount(i),u}at(t){fe.min=t;const e=this._lastRunsRead;if(e){const s=e.min;if(s<=t&&e.max>=t)return this._lastListRead.at(t-s)}let n,r;const o=this._runs.getPairOrNextHigher(fe,Ip);if(o&&(n=o[0],r=o[1]),this._lastRunsRead=n,this._lastListRead=r,!(!n||t<n.min||t>n.max))return r.at(t-n.min)}[Symbol.iterator](){return Gu(this.entries())}clone(){const t=new xn(this._options);return t._runs=this._runs.clone(),t._count=this._count,t._dataCoords=this._dataCoords,t._length=this._length,t}getMaxCoords(){return this._maxCoords||null}getCount(){return this._count}getRunsCount(){return this._runs.size}get[Symbol.toStringTag](){return"[SparseList]"}}xn||(xn={});const _p=l=>typeof l!="boolean"?(l&&!l.value&&(l.value=[-1,null]),l):l===!0?xa:void 0,Sp=(l,t,e)=>{const n=e??{done:!1,value:[-1,null]},r=n.value;return r[0]=l,r[1]=t,n},wp=l=>typeof l!="boolean"?(l&&!l.value&&(l.value=[null,null]),l):l===!0?Ep:void 0,yp=(l,t,e)=>{const n=e??{done:!1,value:[null,null]},r=n.value;return r[0]=l,r[1]=t,n},Cp=(l,t=!1,e=Number.MIN_SAFE_INTEGER,n=Number.MAX_SAFE_INTEGER)=>{const r=[];let o=l.next(),s=Math.max(n,0)-1;for(;!o.done;){if(t){const i=o.value[0];for(let a=s;a<i-1;a++)r.push(void 0);s=i}r.push(o.value[1]),o=l.next()}if(t)for(let i=s;i<e;i++)r.push(void 0);return r},Ep=Object.seal({done:!1,value:[{min:Number.MIN_SAFE_INTEGER,max:Number.MAX_SAFE_INTEGER},null]}),xa=Object.seal({done:!1,value:[-1,null]}),rr={reverse:!1,bounds:{min:Number.MIN_SAFE_INTEGER,max:Number.MAX_SAFE_INTEGER},processSkip:null,reuseResult:xa},tl=Object.freeze({reverse:!1,bounds:{min:Number.MIN_SAFE_INTEGER,max:Number.MAX_SAFE_INTEGER},processSkip:null,reuseResult:xa}),fe={min:0,max:Number.MAX_SAFE_INTEGER},or={min:0,max:Number.MAX_SAFE_INTEGER},Ip=[null,null],el={bounds:{min:0,max:0},overflowRun:!0};class bp{constructor(t=9){this._maxEntries=Math.max(4,t),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()}all(t){return this.data.children.length===0?[]:this._all(this.data,t??[])}isEmpty(){return this.data.children.length===0}search(t,e){let n=this.data;if(n.children.length===0||!Xo(t,n))return E.CommonUtils.EmptyArray;const r=e??[],o=this.toBBox,s=[];for(;n;){const i=n.children,a=i.length,c=n.leaf;for(let h=0;h<a;h++){const d=i[h],u=c?o(d):d;Xo(t,u)&&(c?r.push(d):rl(t,u)?this._all(d,r):s.push(d))}n=s.pop()}return r}collides(t){let e=this.data;if(!Xo(t,e))return!1;const n=[];for(;e;){for(let r=0;r<e.children.length;r++){const o=e.children[r],s=e.leaf?this.toBBox(o):o;if(Xo(t,s)){if(e.leaf||rl(t,s))return!0;n.push(o)}}e=n.pop()}return!1}load(t){if(!t||!t.length)return this;const e=this._minEntries;if(t.length<e){for(let r=0;r<t.length;r++)this.insert(t[r]);return this}let n=this._build(t.slice(),0,t.length-1,0);if(this.data.children.length)if(this.data.height===n.height)this._splitRoot(this.data,n);else{if(this.data.height<n.height){const r=this.data;this.data=n,n=r}this._insert(n,this.data.height-n.height-1,!0)}else this.data=n;return this}insert(t){return t&&this._insert(t,this.data.height-1),this}clear(){return this.data=dr([]),this}remove(t,e){if(!t)return this;let n=this.data;const r=this.toBBox(t),o=[],s=[];let i,a,c;for(;n||o.length;){if(n||(n=o.pop(),a=o[o.length-1],i=s.pop(),c=!0),n.leaf){const h=vp(t,n.children,e);if(h!==-1)return n.children.splice(h,1),o.push(n),this._condense(o),this}c||n.leaf||!rl(n,r)?a?(i++,n=a.children[i],c=!1):n=null:(o.push(n),s.push(i),i=0,a=n,n=n.children[0])}return this}toBBox(t){return t}compareMinX(t,e){return t.minX-e.minX}compareMinY(t,e){return t.minY-e.minY}toJSON(){return this.data}fromJSON(t){return this.data=t,this}_all(t,e){const n=[];for(;t;)t.leaf?e.push(...t.children):n.push(...t.children),t=n.pop();return e}_build(t,e,n,r){const o=n-e+1;let s,i=this._maxEntries;if(o<=i)return s=dr(t.slice(e,n+1)),sr(s,this.toBBox),s;r||(r=Math.ceil(Math.log(o)/Math.log(i)),i=Math.ceil(o/Math.pow(i,r-1))),s=dr([]),s.leaf=!1,s.height=r;const a=Math.ceil(o/i),c=a*Math.ceil(Math.sqrt(i));oh(t,e,n,c,this.compareMinX);for(let h=e;h<=n;h+=c){const d=Math.min(h+c-1,n);oh(t,h,d,a,this.compareMinY);for(let u=h;u<=d;u+=a){const g=Math.min(u+a-1,d);s.children.push(this._build(t,u,g,r-1))}}return sr(s,this.toBBox),s}_chooseSubtree(t,e,n,r){for(;r.push(e),!e.leaf&&r.length-1!==n;){let o,s=1/0,i=1/0;for(let a=0;a<e.children.length;a++){const c=e.children[a],h=nl(c),d=Ap(t,c)-h;d<i?(i=d,s=h<s?h:s,o=c):d===i&&h<s&&(s=h,o=c)}e=o||e.children[0]}return e}_insert(t,e,n=!1){const r=n?t:this.toBBox(t),o=[],s=this._chooseSubtree(r,this.data,e,o);for(s.children.push(t),lo(s,r);e>=0&&o[e].children.length>this._maxEntries;)this._split(o,e),e--;this._adjustParentBBoxes(r,o,e)}_split(t,e){const n=t[e],r=n.children.length,o=this._minEntries;this._chooseSplitAxis(n,o,r);const s=this._chooseSplitIndex(n,o,r),i=dr(n.children.splice(s,n.children.length-s));i.height=n.height,i.leaf=n.leaf,sr(n,this.toBBox),sr(i,this.toBBox),e?t[e-1].children.push(i):this._splitRoot(n,i)}_splitRoot(t,e){this.data=dr([t,e]),this.data.height=t.height+1,this.data.leaf=!1,sr(this.data,this.toBBox)}_chooseSplitIndex(t,e,n){let r=-1,o=1/0,s=1/0;for(let i=e;i<=n-e;i++){const a=io(t,0,i,this.toBBox),c=io(t,i,n,this.toBBox),h=Tp(a,c),d=nl(a)+nl(c);h<o?(o=h,r=i,s=d<s?d:s):h===o&&d<s&&(s=d,r=i)}return r||n-e}_chooseSplitAxis(t,e,n){const r=t.leaf?this.compareMinX:xp,o=t.leaf?this.compareMinY:Rp;this._allDistMargin(t,e,n,r)<this._allDistMargin(t,e,n,o)&&t.children.sort(r)}_allDistMargin(t,e,n,r){t.children.sort(r);const o=this.toBBox,s=io(t,0,e,o),i=io(t,n-e,n,o);let a=Ko(s)+Ko(i);for(let c=e;c<n-e;c++){const h=t.children[c];lo(s,t.leaf?o(h):h),a+=Ko(s)}for(let c=n-e-1;c>=e;c--){const h=t.children[c];lo(i,t.leaf?o(h):h),a+=Ko(i)}return a}_adjustParentBBoxes(t,e,n){for(let r=n;r>=0;r--)lo(e[r],t)}_condense(t){for(let e,n=t.length-1;n>=0;n--)t[n].children.length===0?n>0?(e=t[n-1].children,e.splice(e.indexOf(t[n]),1)):this.clear():sr(t[n],this.toBBox)}}function vp(l,t,e){if(!e)return t.indexOf(l);for(let n=0;n<t.length;n++)if(e(l,t[n]))return n;return-1}function sr(l,t){io(l,0,l.children.length,t,l)}function io(l,t,e,n,r=null){r||(r=dr(null)),r.minX=1/0,r.minY=1/0,r.maxX=-1/0,r.maxY=-1/0;for(let o=t;o<e;o++){const s=l.children[o];lo(r,l.leaf?n(s):s)}return r}function lo(l,t){return l.minX=Math.min(l.minX,t.minX),l.minY=Math.min(l.minY,t.minY),l.maxX=Math.max(l.maxX,t.maxX),l.maxY=Math.max(l.maxY,t.maxY),l}function xp(l,t){return l.minX-t.minX}function Rp(l,t){return l.minY-t.minY}function nl(l){return(l.maxX-l.minX)*(l.maxY-l.minY)}function Ko(l){return l.maxX-l.minX+(l.maxY-l.minY)}function Ap(l,t){return(Math.max(t.maxX,l.maxX)-Math.min(t.minX,l.minX))*(Math.max(t.maxY,l.maxY)-Math.min(t.minY,l.minY))}function Tp(l,t){const e=Math.max(l.minX,t.minX),n=Math.max(l.minY,t.minY),r=Math.min(l.maxX,t.maxX),o=Math.min(l.maxY,t.maxY);return Math.max(0,r-e)*Math.max(0,o-n)}function rl(l,t){return l.minX<=t.minX&&l.minY<=t.minY&&t.maxX<=l.maxX&&t.maxY<=l.maxY}function Xo(l,t){return t.minX<=l.maxX&&t.minY<=l.maxY&&t.maxX>=l.minX&&t.maxY>=l.minY}function dr(l){return{children:l,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function oh(l,t,e,n,r){const o=[t,e];for(;o.length;){if((e=o.pop())-(t=o.pop())<=n)continue;const s=t+Math.ceil((e-t)/n/2)*n;Ju(l,s,t,e,r),o.push(t,s,s,e)}}function Ju(l,t,e,n,r){for(;n>e;){if(n-e>600){const a=n-e+1,c=t-e+1,h=Math.log(a),d=.5*Math.exp(2*h/3),u=.5*Math.sqrt(h*d*(a-d)/a)*(c-a/2<0?-1:1);Ju(l,t,Math.max(e,Math.floor(t-c*d/a+u)),Math.min(n,Math.floor(t+(a-c)*d/a+u)),r)}const o=l[t];let s=e,i=n;for(Hr(l,e,t),r(l[n],o)>0&&Hr(l,e,n);s<i;){for(Hr(l,s,i),s++,i--;r(l[s],o)<0;)s++;for(;r(l[i],o)>0;)i--}r(l[e],o)===0?Hr(l,e,i):(i++,Hr(l,i,n)),i<=t&&(e=i+1),t<=i&&(n=i-1)}}function Hr(l,t,e){const n=l[t];l[t]=l[e],l[e]=n}class sh extends bp{toBBox(t){return{minX:10*t.colStart,minY:10*t.rowStart,maxX:10*t.colEnd+5,maxY:10*t.rowEnd+5}}compareMinX(t,e){return t.colStart-e.colStart}compareMinY(t,e){return t.rowStart-e.rowStart}isEmpty(){return this.data.children.length===0}searchRange(t,e=!1,n){if(this.isEmpty())return E.CommonUtils.EmptyArray;const r=this.search(this.toBBox(t),n);return e?r.filter(o=>o.colStart>=t.colStart&&o.rowStart>=t.rowStart&&o.colEnd<=t.colEnd&&o.rowEnd<=t.rowEnd):r}}class wt{constructor(t){this._shared=null,this._rTree=null,this._cloneKey=null,this._lastMiss={colStart:Number.MAX_SAFE_INTEGER,rowStart:0,colEnd:0,rowEnd:0},this._lastSingle=null,this._lastSingleResult=null,this._options=t,this._rTree=new sh(t?.maxNodeEntries??16)}visitRanges(t,e,n=null){let r=this.search(t);n&&(r=pn(r,n));const o=[],s=[];let i=null;const a=r.length;for(let c=0;!i&&c<a;c++){const h=r[c],d=e?.(h);d&&(d.delete===!0?s.push(h):d.update!==void 0&&(s.push(h),o.push(d.update)),d&&d.break===!0&&(i=d))}for(let c=0;c<s.length;c++)this.remove(s[c]);return this.load(o),i}getBoundingCoords(){const t=this._getReadTree().toJSON();return t&&t.children&&t.children.length!==0?{colStart:t.minX/10,rowStart:t.minY/10,colEnd:(t.maxX-5)/10,rowEnd:(t.maxY-5)/10}:null}size(){return this._getReadTree().all().length}isEmpty(){return this._getReadTree().isEmpty()}search(t,e=!1,n){const r=this._getReadTree();if(r.isEmpty())return E.CommonUtils.EmptyArray;let o;if(!e){if(o=this._lastMiss,o.colStart!==Number.MAX_SAFE_INTEGER&&E.CoordUtils.isRangeWithinRange(t,o))return E.CommonUtils.EmptyArray;if(this._lastSingle&&E.CoordUtils.isRangeWithinRange(t,o))return this._lastSingleResult}const s=r.searchRange(t,e,n);return e||(s.length===0?(o.colStart=t.colStart,o.rowStart=t.rowStart,o.colEnd=t.colEnd,o.rowEnd=t.rowEnd):s.length===1?(this._lastSingle=s[0],this._lastSingleResult=s):(this._lastMiss.colStart=Number.MAX_SAFE_INTEGER,this._lastSingle=null,this._lastSingleResult=null)),s}has(t){const e=this._getReadTree();return e.collides(e.toBBox(t))}all(t){return this._getReadTree().all(t)}shift(t){const e=t.range,n=t.direction,r=t.cloneIfUpdate??!1,o=t.coordValidator??null,s=t.onShift??null,i=n===E.Direction.Left||n===E.Direction.Right,a=i?E.RangeOrientation.Column:E.RangeOrientation.Row,c=n===E.Direction.Up||n===E.Direction.Left?-1:1,h=(i?e.colEnd-e.colStart+1:e.rowEnd-e.rowStart+1)*c,d=[],u=[];let g=null;const m=this.getBoundingCoords();if(!m)return this;const f=n===E.Direction.Up||n===E.Direction.Left?E.Direction.Right:E.Direction.Left,_=new Map,p=new Map,S=this._options?.updateEntryOptions,C=S?.isMergeOnShift??!1,y=S?.isSplitOnExpand??!1,I=S?.isTrailingEdge??!1,w=n===E.Direction.Left||n===E.Direction.Up,b=S?.getSplit??As,x=S?.getShifted,R=S?.onShifted,v=S?.onRemoved,T=S?.onMerged,M=S?.onUpdated,F=R?[]:null,N=v?[]:null,O=M?[]:null;this.visitRanges({colStart:e.colStart-(i?1:0),rowStart:e.rowStart-(i?0:1),colEnd:i?m.colEnd:e.colEnd,rowEnd:i?e.rowEnd:m.rowEnd},U=>{if((i?U.colEnd<e.colStart:U.rowEnd<e.rowStart)&&!I)return;const D=Op(e,U,i?E.RangeOrientations.Column:E.RangeOrientations.Row),z=U.group;if(w&&!z&&e.colStart<=U.colStart&&e.rowStart<=U.rowStart&&e.colEnd>=U.colEnd&&e.rowEnd>=U.rowEnd){const W=ah(U,null,{after:null,before:U,intersect:e,isSplit:D,orientation:a,amount:h},x,b,s,!1);if(W===void 0)return;if(W===null)return g=E.CoordUtils.unionRanges(g,U),N&&N.push(U),void d.push(U)}let k={...U};n===E.Direction.Right?(e.colStart<=k.colStart&&(k.colStart+=h),k.colEnd+=h):n===E.Direction.Left?e.colStart<k.colStart?(k.colStart=Math.max(k.colStart+h,e.colStart),k.colEnd=Math.max(k.colEnd+h,k.colStart-1)):k.colEnd+=Math.max(h,e.colStart-k.colEnd-1):n===E.Direction.Down?(e.rowStart<=k.rowStart&&(k.rowStart+=h),k.rowEnd+=h):n===E.Direction.Up&&(e.rowStart<k.rowStart?(k.rowStart=Math.max(k.rowStart+h,e.rowStart),k.rowEnd=Math.max(k.rowEnd+h,e.rowStart-1)):k.rowEnd+=Math.max(h,e.rowStart-k.rowEnd-1)),(k.colEnd<k.colStart||k.rowEnd<k.rowStart)&&(k=null);const P=ah(U,k,{after:k,before:U,intersect:e,isSplit:D,orientation:a,amount:h},x,b,s,y&&h>0);if(P===void 0)return;const j=P===null?[k]:P,H=j.length;if(j[0]!==U||H!==1){if(o)for(let V=0;V<H;V++){const $=j[V];$&&o($)}let W;z?(_.set(z.uuid,z),W=[],p.set(U.uuid,W)):d.push(U);for(let V=0;V<H;V++){const $=j[V];g=E.CoordUtils.unionRanges(g,$),z?W.push($):(u.push($),F&&F.push($),O&&O.push(U))}}},f);let L=null;L=r&&(d.length>0||u.length>0||p.size>0)?this.clone():this,L._updateNodes(u,d),p.size>0&&L._updateGroupedEntries(_,p);let B=E.CommonUtils.EmptyArray;if(C&&m&&g){let U=!0;if(h>0&&(U=i?e.rowStart>m.rowStart||e.rowEnd<m.rowEnd:e.colStart>m.colStart||e.colEnd<m.colEnd),U){const D=ih(g,E.CoordUtils.unionRanges(m,g),i?0:1,i?1:0);T&&(B=L._mergeNodes(D,!1))}}return M&&O.length>0&&M(O),R&&F.length>0&&R(F),T&&B.length>0&&T(B),v&&N.length>0&&v(N),L}insertNonOverlapping(t,e){const n=e?.onIntersect??((C,y)=>({...C,value:y.value})),r=this.search(t),o=new Map,s=new Map,i=this._options?.updateEntryOptions,a=i?.onUpdated,c=i?.onRemoved,h=i?.onMerged,d=i?.getSplit,u=i?.getIntersect,g=i?.getUpdate;let m=null,f=null,_=null,p=function(C,y,I){const w=I?.getIntersect??Fp,b=I?.getUpdate??Np;if(C.length===0){if(w){const D=w({...y,value:null},y);y=D&&D.value!==null?{...D}:null}if(b){const D=b(y);D!==void 0&&(y=D)}return y?[y]:E.CommonUtils.EmptyArray}const x=I?.getSplit??Mp,R=(D,z,k=!0)=>{const P=z.search(D),j=P.length;for(let H=0;H<j;H++){const W=P[H];if(E.CoordUtils.isEqualRanges(W,D))continue;z?.remove(W);const V=xr(W,D,x,k);for(let $=0;$<V.length;$++){const nt=V[$];z.insert(nt),R(nt,z,!1)}}},v=new wt;v.load(C),R(y,v);const T=new wt;T.load([y]);const M=v.search(y);for(let D=0;D<M.length;D++)R(M[D],T);const F=(D,z,k)=>{let P=z.search(D);console.assert(P.length<=1,"intersecting incorrect ranges");const j=P[0]??{...D,value:null};if(E.CoordUtils.isEqualRanges(j,D)){let H=w(j,D);z.remove(j),k.insert(H)}else{z.remove(j);const H=xr(j,D,x),W=H.length;for(let V=0;V<W;V++){const $=H[V];if(E.CoordUtils.isEqualRanges($,D)){const nt=w($,D);k.insert(nt)}else z.insert($)}}},N=new wt,O=T.all(),L=O.length;for(let D=0;D<L;D++)F(O[D],v,N);const B=(D,z)=>{const k=D.all(),P=k.length;for(let j=0;j<P;j++){let H=k[j];if(b){const W=b(H);W!==void 0&&(H=W)}H!==null&&H.value!==null&&z.push(H)}},U=v.all();return B(N,U),U}(r,t,{getSplit:(C,y,I,w)=>{let b;return d?(b=d(C,y,I,w),b):(b=As(C,y,I,w),b)},getIntersect:(C,y)=>{u&&(y=u(C,y));const I=n(C,y);return I===void 0||(I===null||I.value===null)&&C.value?.onRemove?.(C),I},getUpdate:C=>{const y=C?.group;if(y){o.set(y.uuid,y);let w=s.get(C.lastId??C.uuid);w||(w=[],s.set(C.lastId??C.uuid,w)),w.push(C.value===null?null:C)}let I=C;if(g&&(I=g(C)),I&&I.value!==null)a&&(m||(m=[]),m.push(I));else if(c&&!_){_=[];let w=I&&I.value===null?I:{...C,value:null};_.push(w)}return I}});const S=this.getBoundingCoords();if(o.size>0){const C=[],y=p.length;for(let I=0;I<y;I++){let w=p[I];w.group||C.push(w)}p=C}if(this._updateNodes(p,r,e?.onUpdates),o.size>0&&this._updateGroupedEntries(o,s),S&&!e?.noMerge){const C=ih(t,E.CoordUtils.unionRanges(S,t)),y=this.search(C);if(y.length>1){const I=i?.getMerged??lh;let w=y;w=Qe(w,E.RangeOrientation.Column,1,I),w=Qe(w,E.RangeOrientation.Row,1,I),y.length!==w.length&&(h&&w.length>0&&(f=w),this._updateNodes(w,y,e?.onUpdates))}}return m&&a(m),f&&h(f),_&&c(_),this}insertGroup(t,e){e=e??E.CommonUtils.uuidV4();const n=[],r=t.length;for(let o=0;o<r;o++){const s={...t[o],group:{entries:n,uuid:e,offset:o},uuid:E.CommonUtils.uuidV4()};n.push(s),t[o]=s}return this.load(t),this._options?.updateEntryOptions?.onGroupUpdate?.(t,e),this}createCopiedEntries(t,e,n,r,o){return kp(this,t,e,n,r,o,this._options?.updateEntryOptions?.getSplit??As)}_updateGroupedEntries(t,e){const n=[],r=[],o=new Map,s=t.values();let i=s.next();for(;!i.done;){const a=i.value,c=a.entries,h=a.uuid,d=[];for(let u=0;u<c.length;u++){let g=c[u];n.push(g);let m=e.get(g.uuid);m===void 0&&(m=[{...g}]);for(let f=0;f<m.length;f++){let _=m[f];_!==null&&(_={..._,group:{offset:d.length,entries:d,uuid:h}},d.push(_),r.push(_))}}d.sort((u,g)=>u.group.offset-g.group.offset),o.set(h,d),i=s.next()}if(this._updateNodes(r,n),o){const a=this._options?.updateEntryOptions?.onGroupUpdate;if(a){const c=o.entries();let h=c.next();for(;!h.done;){const d=h.value[0];a(h.value[1],d),h=c.next()}}}}_copy(t,e){let n=t.rTree.all();const r=new sh(this._options?.maxNodeEntries);return e&&(n=n.concat(e)),n.length>0&&r.load(n),{refCount:1,rTree:r}}_updateNodes(t,e,n){if(!(t&&t.length!==0||e&&e.length!==0))return;const r=this._getWritableTree();if(e){const o=e.length;for(let s=0;s<o;s++)r.remove(e[s])}t.length>0&&r.load(t),n?.(t,e,this),this._options?.updateEntryOptions?.onUpdates?.(t,e,this)}_mergeNodes(t,e){const n=this.search(t,e);let r=E.CommonUtils.EmptyArray;if(n.length>1){const o=this._options?.updateEntryOptions.getMerged??lh;let s=n;s.length>1&&(s=Qe(s,E.RangeOrientation.Column,1,o)),s.length>1&&(s=Qe(s,E.RangeOrientation.Row,1,o)),n.length!==s.length&&(r=s,this._updateNodes(s,n))}return r}_getReadTree(){return this._shared?.rTree??this._rTree}_ensureWritable(t){const e=this._shared;if(!e)return;if(e.refCount--,e.refCount===0)return this._shared=null,void(t&&this._rTree.load(t));const n=this._copy(e,t);this._shared=null,this._rTree=n.rTree}_getWritableTree(t){return this._lastMiss.colStart=Number.MAX_SAFE_INTEGER,this._lastSingle=null,this._lastSingleResult=null,this._shared?(this._ensureWritable(t),this._rTree):(t&&this._rTree.load(t),this._rTree)}remove(t,e){return t&&this._getWritableTree().remove(t,e??E.CoordUtils.isEqualRanges),this}insert(t){return t&&this._getWritableTree().insert(t),this}load(t){return t&&t.length>0&&this._getWritableTree(t),this}clear(){return this.isEmpty()||this._getWritableTree().clear(),this}clone(t=null){if(t!==null&&this._cloneKey===t)return this;let e=this._shared;e||(e={rTree:this._rTree,refCount:1},this._shared=e),e.refCount++;const n=new wt(this._options);return n._shared=e,n._cloneKey=t,n}fromJSON(t){return this._getWritableTree().fromJSON(t),this}}const ih=(l,t=l,e=1,n=1)=>({...l,colStart:Math.max(l.colStart-e,t.colStart),rowStart:Math.max(l.rowStart-n,t.rowStart),colEnd:Math.min(l.colEnd+e,t.colEnd),rowEnd:Math.min(l.rowEnd+n,t.rowEnd)});function Mp(l,t,e,n){return[{...t[0],value:l.value},{...t[0],value:l.value}]}function Fp(l,t){return{...l}}function xr(l,t,e=null,n=!0){if(E.CoordUtils.isEqualRanges(l,t))return[{...l}];const r=E.CoordUtils.intersectRanges(l,t,Bp);if(!r)return null;const o=[],s=l.uuid;let i=l;if(i.rowStart<r.rowStart){const a={...i,colStart:i.colStart,rowStart:i.rowStart,colEnd:i.colEnd,rowEnd:r.rowStart-1};s&&(n&&(a.lastId=s),a.uuid=E.CommonUtils.uuidV4());const c={...i,colStart:i.colStart,rowStart:r.rowStart,colEnd:i.colEnd,rowEnd:i.rowEnd};s&&(n&&(c.lastId=s),c.uuid=E.CommonUtils.uuidV4());const h=c.rowStart-a.rowStart;pe[0]=a,pe[1]=c;const d=e(i,pe,E.RangeOrientation.Row,h);d!==void 0&&(o.push(d[0]),i=d[1])}if(i.rowEnd>r.rowEnd){const a={...i,colStart:i.colStart,rowStart:i.rowStart,colEnd:i.colEnd,rowEnd:r.rowEnd};s&&(n&&(a.lastId=s),a.uuid=E.CommonUtils.uuidV4());const c={...i,colStart:i.colStart,rowStart:r.rowEnd+1,colEnd:i.colEnd,rowEnd:i.rowEnd};s&&(n&&(c.lastId=s),c.uuid=E.CommonUtils.uuidV4());const h=c.rowStart-a.rowStart;pe[0]=a,pe[1]=c;const d=e(i,pe,E.RangeOrientation.Row,h);d!==void 0&&(o.push(d[1]),i=d[0])}if(i.colStart<r.colStart){const a={...i,colStart:i.colStart,rowStart:i.rowStart,colEnd:r.colStart-1,rowEnd:i.rowEnd};s&&(n&&(a.lastId=s),a.uuid=E.CommonUtils.uuidV4());const c={...i,colStart:r.colStart,rowStart:i.rowStart,colEnd:i.colEnd,rowEnd:i.rowEnd};s&&(n&&(c.lastId=s),c.uuid=E.CommonUtils.uuidV4());const h=c.colStart-a.colStart;pe[0]=a,pe[1]=c;const d=e(i,pe,E.RangeOrientation.Column,h);d!==void 0&&(o.push(d[0]),i=d[1])}if(i.colEnd>r.colEnd){const a={...i,colStart:i.colStart,rowStart:i.rowStart,colEnd:r.colEnd,rowEnd:i.rowEnd};s&&(n&&(a.lastId=s),a.uuid=E.CommonUtils.uuidV4());const c={...i,colStart:r.colEnd+1,rowStart:i.rowStart,colEnd:i.colEnd,rowEnd:i.rowEnd};s&&(n&&(c.lastId=s),c.uuid=E.CommonUtils.uuidV4());const h=c.colStart-a.colStart;pe[0]=a,pe[1]=c;const d=e(i,pe,E.RangeOrientation.Column,h);d!==void 0&&(o.push(d[1]),i=d[0])}return i===l&&(i={...l}),o.push(i),o}function Np(l){return l.value===null?null:l}function Qe(l,t=E.RangeOrientation.Column,e=2,n,r){let o=[...l];if(e<=0||l.length<=1)return o;let s=t===E.RangeOrientation.Column,i=0,a=!1;do{const c=o.sort(E.CoordUtils.createRangeComparator(s?E.RangeOrientation.Row:E.RangeOrientation.Column));o=[],a=!1,o.push(c[0]);for(let h=1;h<c.length;h++){const d=c[h],u=o[o.length-1];let g=!1;if(g=s?u&&u.rowStart===d.rowStart&&u.rowEnd===d.rowEnd&&u.colEnd+1===d.colStart:u&&u.colStart===d.colStart&&u.colEnd===d.colEnd&&u.rowEnd+1===d.rowStart,g){let m={...u,colEnd:s?d.colEnd:u.colEnd,rowEnd:s?u.rowEnd:d.rowEnd};if(n){const f=r??[null,null];f[0]=u,f[1]=d,m=n(f,m,t)}if(m){o[o.length-1]=m,a=!0;continue}}o.push(d)}i++,s=!s}while(i<e&&a&&o.length>1);return o}const Ql=(l,t=2,e=E.RangeOrientation.Row,n,r,o)=>{if(l.length<=1)return[...l];let s=[];const i=e===E.RangeOrientation.Column,a=new Qs.IteratorInstance(l,{orientation:i?E.RangeOrientation.Row:E.RangeOrientation.Column});let c=a.next();for(;!c.done;){const h=c.value;c=a.next();const d=h.range;if(t>0){const u=s[s.length-1];let g=!1;if(g=i?u&&u.rowStart===d.rowStart&&u.rowEnd===d.rowEnd&&u.colEnd+1===d.colStart:u&&u.colStart===d.colStart&&u.colEnd===d.colEnd&&u.rowEnd+1===d.rowStart,g){let m={...u,colEnd:i?d.colEnd:u.colEnd,rowEnd:i?u.rowEnd:d.rowEnd};if(m){s[s.length-1]=m;continue}}}s.push(d)}return t>1&&(s=Qe(s,i?E.RangeOrientation.Row:E.RangeOrientation.Column,t,n,o)),s};function As(l,t,e,n){const r=l.value;if(r?.getSplit){const o=r.getSplit(t,e,n);if(o===void 0)return;t[0].value=o[0],t[1].value=o[1]}return t}function lh(l,t,e){const n=l[0].value,r=l[1].value;if(n?.getMerged&&r){const o=n.getMerged(l[1].value,E.CoordUtils.sanitizeRange(t),e);if(o===void 0)return;t.value=o}return t}const Op=(l,t,e=E.RangeOrientations.Both)=>{const n=s=>s?l.rowStart>t.rowStart&&l.rowStart<=t.rowEnd||l.rowEnd<t.rowEnd&&l.rowEnd>=t.rowStart:l.colStart>t.colStart&&l.colStart<=t.colEnd||l.colEnd<t.colEnd&&l.colEnd>=t.colStart;let r=e===E.RangeOrientations.Column,o=e===E.RangeOrientations.Row;return e===E.RangeOrientations.Both&&(r=o=!0),!(!r||!n(!0))||!(!o||!n(!1))};function ah(l,t,e,n,r,o,s){const i=e.orientation===E.RangeOrientation.Column,a=e.intersect,c=(h,d)=>{let u=h.value,g=null,m=d.after;if(s){let f=null,_=0,p=0;if(i&&a.colStart>h.colStart?(f={...h,colEnd:a.colStart-1},p=d.amount):!i&&a.rowStart>h.rowStart&&(f={...h,rowEnd:a.rowStart-1},_=d.amount),f){const S=xr(l,f,r);if(S.length>1)for(let C=0;C<S.length;C++){let y=S[C];E.CoordUtils.isEqualRanges(y,f)?(g=g??[],g.push(y)):(m=y,u=y.value,d={...d,after:{...y,colStart:y.colStart+p,rowStart:y.rowStart+_,colEnd:y.colEnd+p,rowEnd:y.rowEnd+_,uuid:E.CommonUtils.uuidV4()},before:y,intersect:f,isSplit:!0})}}}if(n?m=n(d.before,d.after,d):u&&u.getShifted?m=u.getShifted(d):d.after&&(m={...d.after,value:h.value}),m!==void 0)return o&&(m!==d.after&&(d={...d,after:m}),o(d)),m=(f=>{if(!f){const _=l.value;return _.onRemove&&_.onRemove(E.CoordUtils.sanitizeRange(e.before)),null}return f})(m),m&&(g=g??[],g.push(m)),g};if(e.isSplit){let h;h=i?{...l,rowStart:Math.max(a.rowStart,e.before.rowStart),rowEnd:Math.min(a.rowEnd,e.before.rowEnd)}:{...l,colStart:Math.max(a.colStart,e.before.colStart),colEnd:Math.min(a.colEnd,e.before.colEnd)};const d=xr(l,h,r),u=[];for(let g=0;g<d.length;g++){const m=d[g];if(E.CoordUtils.isEqualRanges(m,h)){let f=null;t&&(f=i?{colStart:t.colStart,rowStart:h.rowStart,colEnd:t.colEnd,rowEnd:h.rowEnd,value:m.value}:{colStart:h.colStart,rowStart:t.rowStart,colEnd:h.colEnd,rowEnd:t.rowEnd,value:m.value});const _=c(m,{...e,before:m,after:f});if(_)for(let p=0;p<_.length;p++)u.push(_[p])}else u.push(m)}return u}return c(l,e)}const kp=(l,t,e,n,r,o,s)=>{const i=e.colEnd-e.colStart+1,a=e.rowEnd-e.rowStart+1,c=e.colStart-t.colStart,h=e.rowStart-t.rowStart,d=n?.transpose??!1;let u=1,g=1;d?(u=t.rowEnd-t.rowStart+1,g=t.colEnd-t.colStart+1):(u=t.colEnd-t.colStart+1,g=t.rowEnd-t.rowStart+1);const m=Math.ceil(i/u),f=Math.ceil(a/g),_=r??[],p=o??E.CommonUtils.EmptyArray,S=e.colEnd,C=e.rowEnd;return l.visitRanges(t,y=>{let I=y.value;if(!I.copyTo)return;let w=y;if(!E.CoordUtils.isRangeWithinRange(w,t)){const O=xr(w,t,s);w=O[O.length-1]}I=w.value;let b=w.colEnd-w.colStart+1,x=w.rowEnd-w.rowStart+1,R=c+w.colStart,v=h+w.rowStart;if(d){R=w.rowStart-t.rowStart+e.colStart,v=w.colStart-t.colStart+e.rowStart;const O=b;b=x,x=O}let T=m,M=f;const F=i<=T*b,N=a<=M*x;if(F||N){const O=I?.canTile?.({colStart:R,rowStart:v,colEnd:Math.min(R+(F?i:b)-1,S),rowEnd:Math.min(v+(N?a:x)-1,C)},n);!F||O!==!0&&O!==E.RangeOrientation.Column||(b=i,T=1),!N||O!==!0&&O!==E.RangeOrientation.Row||(x=a,M=1)}for(let O=0;O<T;O++){const L=R+O*u;for(let B=0;B<M;B++){const U=v+B*g,D=Math.min(L+b-1,S),z=Math.min(U+x-1,C),k={colStart:L,rowStart:U,colEnd:D,rowEnd:z};if(L>D||U>z)continue;const P=I.copyTo(k,n);P&&_.push({...k,value:P})}}},E.Direction.Right),{inserts:_,removes:p}},pe=[null,null],Bp={colStart:0,rowStart:0,colEnd:0,rowEnd:0},ue=(l=Number.MIN_SAFE_INTEGER,t=Number.MIN_SAFE_INTEGER,e=Number.MAX_SAFE_INTEGER,n=Number.MAX_SAFE_INTEGER,r,o,s)=>{if(o&&(l!==Number.MIN_SAFE_INTEGER&&l<o.colStart||t!==Number.MIN_SAFE_INTEGER&&t<o.rowStart||e!==Number.MAX_SAFE_INTEGER&&e>o.colEnd||n!==Number.MAX_SAFE_INTEGER&&n>o.rowEnd))throw new E.OutOfBoundsError;return s&&(l=Math.max(s.colStart,l),t=Math.max(s.rowStart,t),e=Math.min(s.colEnd,e),n=Math.min(s.rowEnd,n),e<l||n<t)?null:(Wr.majorStart=r?l:t,Wr.majorEnd=r?e:n,Wr.minorStart=r?t:l,Wr.minorEnd=r?n:e,Wr)},Co=(l,t,e)=>{const n={colStart:0,rowStart:0,colEnd:0,rowEnd:0};return n.colStart=t?l.majorStart:l.minorStart,n.rowStart=t?l.minorStart:l.majorStart,n.colEnd=t?l.majorEnd:l.minorEnd,n.rowEnd=t?l.minorEnd:l.majorEnd,n},Wr={majorStart:0,majorEnd:0,minorStart:0,minorEnd:0},ch=(l,t)=>l[0]-t[0];class qu{constructor(t,e){this._isColumn=!0,this._isReverse=!1,this._skipMajors=!1,this._majorMin=Number.MAX_SAFE_INTEGER,this._majorMax=Number.MIN_SAFE_INTEGER,this._minorMin=Number.MAX_SAFE_INTEGER,this._minorMax=Number.MIN_SAFE_INTEGER,this._majorIndex=Number.MIN_SAFE_INTEGER,this._minorIndex=Number.MIN_SAFE_INTEGER,this._delegateMajorIndex=Number.MIN_SAFE_INTEGER,this._delegateMinorIndex=Number.MIN_SAFE_INTEGER,this._delegate=t;const n=(e.orientation??E.RangeOrientation.Column)===E.RangeOrientation.Column;this._isColumn=n,this._isReverse=e.reverse??!1,this._skipMajors=e.skipMajors??!1;const r=e.bounds,o=r.colStart,s=r.rowStart,i=r.colEnd,a=r.rowEnd;this._majorMin=n?o:s,this._majorMax=n?i:a,this._minorMin=n?s:o,this._minorMax=n?a:i,this._processMajorSkip=n?e.processColumnSkip:e.processRowSkip,this._processMinorSkip=n?e.processRowSkip:e.processColumnSkip;const c=t.next();this._delegateResult=c,this._initialize()}_initialize(){const t=this._isColumn,e=this._isReverse,n=e?-1:1;let r=e?this._majorMax:this._majorMin,o=(e?this._minorMax:this._minorMin)-n;const s=this._processMinorSkip;s&&(o=s(o,e));const i=this._processMajorSkip;i&&(r=i(r,e)),this._majorIndex=r,this._minorIndex=o;const a=this._delegateResult;if(a.done)this._delegateMajorIndex=this._majorMax,this._delegateMinorIndex=this._minorMax+n;else{const c=a.value[0];this._delegateMajorIndex=t?c.colIndex:c.rowIndex,this._delegateMinorIndex=t?c.rowIndex:c.colIndex}}next(t){t!==void 0&&(this._delegateResult=this._delegate.next(t),this._initialize());const e=this._isReverse,n=this._isColumn,r=this._majorMin,o=this._majorMax;let s=this._majorIndex,i=this._minorIndex;if(s>o||s<r)return Ct;let a=this._delegateMajorIndex,c=this._delegateMinorIndex,h=this._delegateResult.done;if(s===a&&i===c){const g=this._delegate.next();if(this._delegateResult=g,h=g.done,h)a=e?r:o,a=e?this._minorMin:this._minorMax;else{const m=g.value[0];a=n?m.colIndex:m.rowIndex,c=n?m.rowIndex:m.colIndex}this._delegateMajorIndex=a,this._delegateMinorIndex=c}const d=e?-1:1;if(this._minorIndex=i+=d,s===a&&i===c&&!h)return this._delegateResult;const u=this._processMinorSkip;if(u&&(i=u(i,e)),i>this._minorMax||i<this._minorMin){s+=d;const g=this._processMajorSkip;g&&(s=g(s,e)),this._skipMajors&&(!e&&s<a||e&&s>a)&&(s=a),this._majorIndex=s,i=e?this._minorMax:this._minorMin}return this._minorIndex=i,s===a&&i===c&&!h?this._delegateResult:s>o||s<r?Ct:{done:!1,value:[{colIndex:n?s:i,rowIndex:n?i:s}]}}return(t){return null}throw(t){return null}[Symbol.iterator](){return this}}class Zl{constructor(t){this._isColumn=!0,this._majorSize=Number.MAX_SAFE_INTEGER,this._minorSize=Number.MAX_SAFE_INTEGER,this._majorMin=Number.MAX_SAFE_INTEGER,this._majorMax=Number.MIN_SAFE_INTEGER,this._minorMin=Number.MAX_SAFE_INTEGER,this._minorMax=Number.MIN_SAFE_INTEGER,this._majorIndex=Number.MAX_SAFE_INTEGER,this._minorIndex=Number.MAX_SAFE_INTEGER,this._minorOffset=0,this._minorRepeat=0,this._majorOffset=-1,this._majorRepeat=1,this._pattern=[];const e=t.delegate;this._delegate=e;const n=(t.orientation??E.RangeOrientation.Column)===E.RangeOrientation.Column;this._isColumn=n;const r=t.dims,o=t.bounds,s=o.colStart,i=o.rowStart,a=o.colEnd,c=o.rowEnd;if(this._majorSize=1+(n?a-s:c-i),this._minorSize=1+(n?c-i:a-s),this._majorMin=n?s:i,this._minorMin=n?i:s,this._majorMax=(n?s+r.major:i+r.major)-1,this._minorMax=(n?i+r.minor:s+r.minor)-1,this._majorSize>this._majorMax+1||this._minorSize>this._minorMax+1)throw new Error("The dimensions must be larger than the bounds.");const h=e.next();this._nextDelegateResult=h,this._initialize()}_initialize(){const t=this._isColumn,e=this._nextDelegateResult;if(e.done)this._nextResult=Ct;else{const n=e.value[0],r=t?n.colIndex:n.rowIndex,o=t?n.rowIndex:n.colIndex,s=[[o,e.value[1]]];this._minorSpan=s,this._majorIndex=r,this._minorIndex=o,this._pattern.push([r,s]),this._nextResult=e}}next(t){if(t!==void 0)throw new E.NotImplementedError;const e=this._nextResult,n=this._isColumn;let r=this._majorIndex,o=this._nextDelegateResult;if(!o.done){const c=o.value[0];if((n?c.colIndex:c.rowIndex)===r&&(o=this._delegate.next(),this._nextDelegateResult=o,!o.done)){const h=o.value,d=h[0],u=n?d.colIndex:d.rowIndex,g=n?d.rowIndex:d.colIndex;if(u===r)return this._minorSpan.push([g,h[1]]),this._minorOffset=this._minorSpan.length-1,this._minorIndex=g,this._nextResult=o,e}}const s=this._minorMax;let i=this._minorIndex;if(i<s){let c=this._minorOffset;c++;const h=this._minorSpan;c>=h.length&&(c=0,this._minorRepeat++);const d=h[c],u=this._minorMin;if(i=u+(d[0]-u+this._minorSize*this._minorRepeat),this._minorIndex=i,this._minorOffset=c,i<=s){const g=[{colIndex:n?r:i,rowIndex:n?i:r},d[1]];return this._nextResult={done:!1,value:g},e}}if(!o.done){const c=o.value,h=c[0],d=n?h.colIndex:h.rowIndex,u=n?h.rowIndex:h.colIndex,g=[[u,c[1]]];return this._pattern.push([d,g]),this._majorIndex=d,this._minorSpan=g,this._minorOffset=0,this._minorIndex=u,this._minorRepeat=0,this._nextResult=o,e}const a=this._majorMax;if(r<a){let c=this._majorOffset;c++;const h=this._pattern;c>=h.length&&(c=0,this._majorRepeat++);const d=h[c],u=d[1],g=u[0],m=this._majorMin;if(r=m+(d[0]-m+this._majorSize*this._majorRepeat),this._majorIndex=r,this._majorOffset=c,r<=a){this._minorSpan=u,this._minorOffset=0,i=g[0],this._minorIndex=i,this._minorRepeat=0;const f=[{colIndex:n?r:i,rowIndex:n?i:r},g[1]];return this._nextResult={done:!1,value:f},e}}return e.done||(this._nextResult=Ct),e}return(t){return null}throw(t){return null}[Symbol.iterator](){return this}}class hh{constructor(t,e,n){this._comparator=t?.comparator??E.CoordUtils.createCellComparator(t.orientation??E.RangeOrientation.Column,t.reverse??!1),this._iterator1=e,this._iterator2=n;const r=e.next();this._nextResult1=r;const o=n.next();this._nextResult2=o,t?.reuseResult&&(t.reuseResult===!0?this._reuseResult={done:!1,value:[void 0,void 0,void 0,void 0]}:this._reuseResult=t.reuseResult)}next(t){let e=this._nextResult1,n=this._nextResult2;if(e.done&&n.done)return e;if(e.done){const i=n;this._nextResult2=this._iterator2.next();const a=this._reuseResult??{done:!1,value:[void 0,void 0,void 0,void 0]};a.done=!1;const c=a.value,h=i.value;return c[2]=h[0],c[3]=h[1],c[0]=void 0,c[1]=void 0,a}if(n.done){const i=e;this._nextResult1=this._iterator1.next();const a=this._reuseResult??{done:!1,value:[void 0,void 0,void 0,void 0]};a.done=!1;const c=a.value,h=i.value;return c[0]=h[0],c[1]=h[1],c[2]=void 0,c[3]=void 0,a}let r=(0,this._comparator)(e.value[0],n.value[0]);if(r<0){const i=e;this._nextResult1=this._iterator1.next();const a=this._reuseResult??{done:!1,value:[void 0,void 0,void 0,void 0]};a.done=!1;const c=a.value,h=i.value;return c[0]=h[0],c[1]=h[1],c[2]=void 0,c[3]=void 0,a}if(r>0){const i=n;this._nextResult2=this._iterator2.next();const a=this._reuseResult??{done:!1,value:[void 0,void 0,void 0,void 0]};a.done=!1;const c=a.value,h=i.value;return c[2]=h[0],c[3]=h[1],c[0]=void 0,c[1]=void 0,a}this._nextResult1=this._iterator1.next(),this._nextResult2=this._iterator2.next();const o=this._reuseResult??{done:!1,value:[void 0,void 0,void 0,void 0]};o.done=!1;const s=o.value;return s[0]=e.value[0],s[1]=e.value[1],s[2]=n.value[0],s[3]=n.value[1],o}return(t){return null}throw(t){return null}[Symbol.iterator](){return this}}const dh="Must be an array of arrays.",Ts=(l,t,e)=>{const n=t.majorStart,r=t.minorStart,o=t.majorEnd,s=[],i=t.minorEnd-r+1,a=typeof l=="function";for(let c=n;c<=o;c++){const h=new Array(i);if(a)if(e){let u=r;for(let g=0;g<i;g++)h[g]=l(u++,c)}else{let u=r;for(let g=0;g<i;g++)h[g]=l(c,u++)}else h.fill(l,0,i);const d=[[r,h]];s.push([c,d])}return{tuples:s,bounds:t}},Zs=(l,t=!1,e=null,n=!1)=>{let r=0,o=0,s=Number.MAX_SAFE_INTEGER,i=Number.MAX_SAFE_INTEGER;if(e&&(r=e.majorStart??0,o=e.minorStart??0,s=(e.majorEnd??Number.MAX_SAFE_INTEGER)-r+1,i=(e.minorEnd??Number.MAX_SAFE_INTEGER)-o+1),t){const c=r;r=o,o=c;const h=s;s=i,i=h}if(!Array.isArray(l))throw new Error(dh);if(l.length>s)throw new E.OutOfBoundsError;const a=t?new exports.Tuple.TransposedBuilder:new exports.Tuple.Builder;for(let c=0;c<l.length;c++){let h=l[c];if(h!=null&&h.length!==0){if(!Array.isArray(h))throw new Error(dh);if(h.length>i)throw new E.OutOfBoundsError;if(n){let d=-1;for(let u=0;u<h.length;u++)h[u]==null?d!==-1&&(a.addValues(c+r,o+d,h.slice(d,u)),d=-1):d===-1&&(d=u);d!==-1&&a.addValues(c+r,o+d,h.slice(d))}else a.addValues(c+r,o,h)}}return a.build()},Dp=(l,t,e)=>{if(l===t)return t},Lp=(l,t,e)=>{if(l[0].value===l[1].value)return t},Up=[null,null],In=(l=!0,t=Dp)=>{const e=[];let n,r,o=Number.MIN_SAFE_INTEGER,s=Number.MIN_SAFE_INTEGER;return{append:(i,a,c)=>{let h=!0;if(c!==void 0){const g=r===void 0?c:t(r,c,l);g===void 0?h=!1:c=g}if(h&&a===s+1&&i===o)return l?n.rowEnd=a:n.colEnd=a,s=a,void(r=c);n&&e.push(n);const d=l?i:a,u=l?a:i;n={colStart:d,rowStart:u,colEnd:d,rowEnd:u,value:c},o=i,s=a,r=c},done:(i=!1)=>(n&&(e.push(n),n=null),i?Qe(e,l?E.RangeOrientation.Column:E.RangeOrientation.Row,2,Lp,Up):e)}};class ze{constructor(t){this._major=null,this._dataCoords=null,this._count=0,this._isColumn=!0,this._lastMajor=Number.MIN_SAFE_INTEGER,this._lastMinorSpan=null,this._maxCoords=null,this._isShared=!1,this._options={orientation:E.RangeOrientation.Row,...t},this._isColumn=(t?.orientation??E.RangeOrientation.Column)===E.RangeOrientation.Column,t?.maxCoords&&(this._maxCoords=Object.freeze({colStart:Math.max(0,t.maxCoords.colStart??0),rowStart:Math.max(0,t.maxCoords.rowStart??0),colEnd:Math.min(Number.MAX_SAFE_INTEGER,t.maxCoords.colEnd??Number.MAX_SAFE_INTEGER),rowEnd:Math.min(Number.MAX_SAFE_INTEGER,t.maxCoords.rowEnd??Number.MAX_SAFE_INTEGER)})),this._createRun=t?.createRun??(e=>new be(e)),this._optionsMinor={},this._major=new xn({nodeSize:zp})}getRuns(t){const e=this._isColumn,n=this._maxCoords,r=this.getCoords();if(!r)return Dt;const o=t?.bounds;let s,i;if(o){const _=ue(o?.colStart??Number.MIN_SAFE_INTEGER,o?.rowStart??Number.MIN_SAFE_INTEGER,o?.colEnd??Number.MAX_SAFE_INTEGER,o?.rowEnd??Number.MAX_SAFE_INTEGER,e,n,r);if(!_)return Dt;s={bounds:{min:_.majorStart,max:_.majorEnd}},i={bounds:{min:_.minorStart,max:_.minorEnd}}}const a=this._major.entries(s);let c=a.next();if(c.done)return Dt;let h=c.value[0],d=c.value[1],u=d.runs(i),g=u.next();if(g.done)return Dt;let m=g.value[0].min,f=g.value[1];return{[Symbol.iterator](){return this},next(){if(c.done)return Ct;const _={done:!1,value:[h,m,f]};for(g=u.next();g.done&&!c.done;)c=a.next(),c.done||(h=c.value[0],d=c.value[1],u=d.runs(i),g=u.next());return g.done||(m=g.value[0].min,f=g.value[1]),_}}}getOrientation(){return this._isColumn?E.RangeOrientation.Column:E.RangeOrientation.Row}entries(t){const e=this._isColumn;let n=e,r=!0;const o=this._maxCoords,s=this.getCoords(),i=ue(Number.MIN_SAFE_INTEGER,Number.MIN_SAFE_INTEGER,Number.MAX_SAFE_INTEGER,Number.MAX_SAFE_INTEGER,e,o,s);if(!i)return Dt;let a,c,h,d=i.majorStart,u=i.majorEnd,g=i.minorStart,m=i.minorEnd,f=!1;if(t){t?.orientation&&(n=t?.orientation===E.RangeOrientation.Column,r=e===n);const w=t?.bounds;if(w){const b=ue(w.colStart,w.rowStart,w.colEnd,w.rowEnd,e,o,s);if(!b)return Dt;d=b.majorStart,u=b.majorEnd,g=b.minorStart,m=b.minorEnd}f=t.reverse??!1,h=(b=>typeof b!="boolean"?b:b===!0?{done:!1,value:[{colIndex:-1,rowIndex:-1},null]}:void 0)(t.reuseResult),a=e?t.processColumnSkip:t.processRowSkip,a&&(f?u=a(u,f):d=a(d,f)),c=e?t.processRowSkip:t.processColumnSkip,c&&(f?m=c(u,f):g=c(g,f))}if(!s)return Dt;r||d!==u||(r=!0),Rt.bounds.min=d,Rt.bounds.max=u,Rt.reverse=f,Rt.processSkip=a,Rt.reuseResult=ao;let _=this._major.entries(Rt),p=uh();const S=w=>{if(!w.nextActive)return;const b=v=>{const T=w.nextMinorIndex,M=w.nextMinorValue,F=w.nextActive;return v?(w.nextMinorIndex=v[0],w.nextMinorValue=v[1],w.nextActive=!0):(w.nextActive=!1,w.nextMinorIndex=f?Number.MIN_SAFE_INTEGER:Number.MAX_SAFE_INTEGER,w.nextMinorValue=null),w.value=M,w.minorIndex=T,w.active=F,gn[0]=w.majorIndex,gn[1]=T,gn[2]=M,gn},x=w.minorIterator;if(!x)return b();const R=x.next();return R.done&&(w.minorIterator=null),b(R.value)},C=w=>{if(_)for(;;){const b=_.next();if(b.done)return void(_=void 0);const x=b.value,R=x[1];R||console.warn("issue",R),w.majorIndex=x[0],w.active=!0,w.nextActive=!1,_e.bounds.min=g,_e.bounds.max=m,_e.reverse=f,_e.processSkip=c,_e.reuseResult=Ku;const v=R.entries(_e),T=v.next();if(!T.done){const M=T.value;return w.nextMinorIndex=M[0],w.nextMinorValue=M[1],w.minorIterator=v,w.nextActive=!0,S(w)}}};let y=null;if(r)y=()=>{let w;return w=S(p),w||(w=C(p),w||void 0)};else{const w=f?m:g,b=f?g:m;let x,R=w,v=b,T=!0;const M=()=>{if(p.nextMajorCursor)return p=p.nextMajorCursor,p;p=x,(R<g||R>m||R===v)&&(p=null),R=v,v=b};y=()=>{for(;p;){let F=null;if(T){let N=x?uh():p;if(F=C(N),F){x?(N.prevMajorCursor=p,p.nextMajorCursor=N,p=N):x=p,v=f?Math.max(v,p.nextMinorIndex):Math.min(v,p.nextMinorIndex);const O=p.minorIndex;O!==w&&(v=f?Math.max(v,O):Math.min(v,O),F=null)}else T=!1,M()}else{const N=p.minorIndex,O=p.nextMinorIndex;N===R?(gn[0]=p.majorIndex,gn[1]=N,gn[2]=p.value,F=gn):!f&&N>R||f&&N<R?v=f?Math.max(v,N):Math.min(v,N):!f&&O>R||f&&O<R?v=f?Math.max(v,O):Math.min(v,O):F=S(p),p.active&&(v=f?Math.max(v,p.nextMinorIndex):Math.min(v,p.nextMinorIndex)),b===R||p.active||(p.prevMajorCursor?p.prevMajorCursor.nextMajorCursor=p.nextMajorCursor:x=p.nextMajorCursor,p.nextMajorCursor&&(p.nextMajorCursor.prevMajorCursor=p.prevMajorCursor)),M()}if(F)return F}}}return{next(w){if(w)throw new E.NotImplementedError("Iterator with next argument is not supported.");const b=y();return b?((R,v,T,M,F)=>{const N=F??{done:!1,value:[{colIndex:-1,rowIndex:-1},null]},O=N.value,L=O[0];return L.colIndex=M?R:v,L.rowIndex=M?v:R,O[1]=T,N})(b[0],b[1],b[2],e,h):Ct},[Symbol.iterator](){return this},return:w=>null,throw:w=>null}}values(t){const e=this.entries(t);let n;return t?.reuseResult&&(n=t.reuseResult===!0?{done:!1,value:null}:t.reuseResult),{next(r){const o=e.next(r);return o.done?Ct:n?(n.value=o.value[1],n):{done:!1,value:o.value[1]}},[Symbol.iterator](){return this},return:r=>null,throw:r=>null}}keys(t){const e=this.entries(t);let n;return t?.reuseResult&&(n=t.reuseResult===!0?{done:!1,value:null}:t.reuseResult),{next(r){const o=e.next(r);return o.done?Ct:n?(n.value=o.value[0],n):{done:!1,value:o.value[0]}},[Symbol.iterator](){return this},return:r=>null,throw:r=>null}}_updateMajorSpan(t,e=!1){if(!t||t.length===0)return;e&&t.sort((a,c)=>a[0]-c[0]);const n=this._major,r=t[0];let o=r[0],s=o,i=[r[1]];for(let a=1;a<t.length;a++){const c=t[a],h=c[0],d=c[1];h===s+1?i.push(d):(n.setRunAt(o,new be(i)),o=h,i=[d]),s=h}i.length>0&&n.setRunAt(o,new be(i))}setValues(t){if(!t)throw new E.NullNotAllowedError;if(t.length===0)return this;const e=(t=t.sort(ch))[0][0],n=t[t.length-1][0];let r=Number.MIN_SAFE_INTEGER,o=Number.MAX_SAFE_INTEGER;const s=this._isColumn,i=this._maxCoords;if(i){const I=s?i.colStart:i.rowStart,w=s?i.colEnd:i.rowEnd;if(e<I||n>w)throw new E.OutOfBoundsError;r=s?i.rowStart:i.colStart,o=s?i.rowEnd:i.colEnd}if(!t||t.length===0)return this;let a=Number.MAX_SAFE_INTEGER,c=Number.MIN_SAFE_INTEGER,h=0,d=e-1;const u=[],g=(I,w,b)=>{if(d===b)throw new exports.Tuple.OutOfOrderError(`Duplicate major Indices: {${b}}.`);d=b,w=w.sort(ch),I=I.clone();let x=Number.MIN_SAFE_INTEGER;const R=w.length;for(let v=0;v<R;v++){const T=w[v],M=T[0],F=T[1],N=M+F.length-1;if(x>=M)throw new exports.Tuple.OutOfOrderError(`Overlapping minor Indices: {${b}, ${M}}.`);if(M<r||N>o)throw new E.OutOfBoundsError;if(F&&F.length>0){const O=I.getCount();I.setRunAt(M,m(F));const L=I.getCount();h+=L-O,a=Math.min(a,I.getCoords().min),c=Math.max(c,I.getCoords().max)}x=N}_++,u.push([b,I])},m=this._createRun,f=this._optionsMinor;let _=0;const p=()=>{const I=t[_],w=I[0],b=I[1],x=new xn(f);g(x,b,w)},S=this._major;Rt.bounds.min=e,Rt.bounds.max=n,Rt.reverse=!1,Rt.processSkip=null,Rt.reuseResult=ao;const C=S.entries(Rt);let y=C.next();for(;!y.done;){const I=y.value,w=I[0];let b=t[_],x=b[0];if(x>w)y=C.next();else{for(;x<w;)p(),b=t[_],x=b[0];if(x===w){const R=b[1],v=I[1];g(v,R,w)}y=C.next()}}for(;t[_];)p();return this._updateMajorSpan(u),this._updateCountAndCoords(h,e,a,n,c),this}_updateCountAndCoords(t,e,n,r,o,s=!1){const i=this._count+t;if(this._count=i,this._lastMajor=Number.MIN_SAFE_INTEGER,!this._dataCoords)return;const a=this._isColumn;let c=a?e:n,h=a?n:e,d=a?r:o,u=a?o:r;if(i===0)this._dataCoords=null;else{const g=this._dataCoords;g&&(c=(s?Math.max:Math.min)(c,g.colStart),h=(s?Math.max:Math.min)(h,g.rowStart),d=(s?Math.min:Math.max)(d,g.colEnd),u=(s?Math.min:Math.max)(u,g.rowEnd));const m={colStart:c,rowStart:h,colEnd:d,rowEnd:u};this._dataCoords=m}}clear(){this._major.clear(),this._dataCoords=null,this._count=0}delete(t){const e=this._count;if(!t)return this.clear(),e>0;const n=this._isColumn,r=this._maxCoords,o=this.getCoords(),s=ue(t.colStart,t.rowStart,t.colEnd,t.rowEnd,n,r,o);if(!s||e===0)return!1;if(E.CoordUtils.isRangeWithinRange(o,t))return this.clear(),e>0;const i=s.majorStart,a=s.majorEnd,c=s.minorStart,h=s.minorEnd;let d=n?o.colStart:o.rowStart,u=n?o.colEnd:o.rowEnd;const g=n?o.rowStart:o.colStart,m=n?o.rowEnd:o.colEnd;let f=!1,_=0;const p=this._major;if(c<=g&&h>=m){Rt.bounds.min=i,Rt.bounds.max=a;const x=p.entries(Rt);let R=x.next();for(;!R.done;)_-=R.value[1].getCount(),R=x.next();return p.delete(i,a-i+1),this._count+=_,this._dataCoords=null,_!==0}const S=[],C=this._isShared,y=[];Rt.bounds.min=i,Rt.bounds.max=a,_e.reverse=!1,_e.processSkip=null,_e.reuseResult=ao;const I=p.entries(Rt);let w=I.next();for(;!w.done;){const x=w.value,R=x[0];let v=x[1];const T=v.getCoords(),M=T.min,F=T.max;if(c<=M&&h>=M||c<=F&&c<=F)if((M===g&&c<=g||F===m&&h>=m)&&(f=!0),M>=c&&F<=h)S.push(R),_-=v.getCount();else{const N=v.getCount();C&&(v=v.clone(),y.push([R,v])),v.delete(c,h-c+1),_+=v.getCount()-N}w=I.next()}this._updateMajorSpan(y);const b=S.length;if(b>0){const x=Pc(S,!0);for(let v=0;v<x.length;v++){const T=x[v];p.delete(T.min,T.max-T.min+1)}const R=p.getCoords();if(!R)return this.clear(),!0;d=R.min,u=R.max}return f?(this._count+=_,this._dataCoords=null,!0):b===0?(this._count+=_,_!==0):(this._updateCountAndCoords(_,d,g,u,m,!0),_!==0)}shift(t,e){if(!t||!e)throw new E.NullNotAllowedError;const n=this._isColumn,r=this._maxCoords,o=e===E.Direction.Right||e===E.Direction.Down,s=e===E.Direction.Left||e===E.Direction.Right,i=ue(t.colStart,t.rowStart,t.colEnd,t.rowEnd,n,r,t);if(!i)return!1;const a=i.majorStart,c=i.majorEnd,h=i.minorStart,d=i.minorEnd,u=this.getCoords();if(!u)return!1;const g=n?u.colStart:u.rowStart,m=n?u.colEnd:u.rowEnd,f=n?u.rowStart:u.colStart,_=n?u.rowEnd:u.colEnd,p=h<=f&&d>=_,S=n===s;if((S&&p||!S&&a<=g&&c>=m)&&!ue(u.colStart,u.rowStart,u.colEnd+(o&&s?t.colEnd-t.colStart+1:0),u.rowEnd+(o&&!s?t.rowEnd-t.rowStart+1:0),n,r)||S&&a>m||!S&&h>_)return!1;let C=S?c-a+1:d-h+1;if(!o&&(C*=-1,E.CoordUtils.isRangeWithinRange(u,t)))return this.clear(),!0;let y=0;const I=this._major,w=[];if(Rt.bounds.min=a,Rt.bounds.max=S?Number.MAX_SAFE_INTEGER:c,_e.reverse=!o,_e.processSkip=null,_e.reuseResult=ao,S&&p){if(!o){Rt.bounds.max=c;const k=I.entries(Rt);let P=k.next();for(;!P.done;)y-=P.value[1].getCount(),P=k.next()}I.shift(a,C);const z=I.getCoords();return this._dataCoords=null,this._updateCountAndCoords(y,z.min,f,z.max,_),!0}let b=n?u.colStart:u.rowStart,x=n?u.colEnd:u.rowEnd,R=n?u.rowStart:u.colStart,v=n?u.rowEnd:u.colEnd;o||(R=Number.MAX_SAFE_INTEGER,v=Number.MIN_SAFE_INTEGER);let T=Number.MAX_SAFE_INTEGER;r&&(T=s?r.colEnd:r.rowEnd);const M=new Set,F=S?new Map:null,N=[],O=I.entries(Rt),L={bounds:{min:h,max:d}};let B=O.next();for(;!B.done;){const z=B.value,k=z[0],P=z[1].clone(),j=P.getCoords(),H=j.min,W=j.max;if(S&&F.set(k,P),h<=W){const V=P.getCount();S?(k>=a-C&&gp(P.runs(L),(nt,et)=>{const at=et.min,q=et.max;let K=nt;at-1<=d&&q>d&&(K=K.slice(0,d+1-at)),at<h&&q+1>=h&&(K=K.slice(h-at)),N.push({majorIndex:k+C,minorIndex:Math.max(at,h),run:K})}),P.delete(h,d-h+1)):P.shift(h,C);const $=P.getCount();if($===0)M.add(k),R=Math.min(R,W),v=Math.max(v,H);else{const nt=P.getCoords();if(R=Math.min(R,nt.min),v=Math.max(v,nt.max),v>T)throw new E.OutOfBoundsError}y+=$-V,w.push([k,P])}B=O.next()}const U=this._optionsMinor;let D=!1;for(let z=0;z<N.length;z++){const k=N[z],P=k.majorIndex,j=k.run;let H=F.get(P);H||(H=new xn(U),F.set(P,H),w.push([P,H]),D=!0),H.setRunAt(k.minorIndex,j),y+=j.length,b=Math.min(b,P),x=Math.max(x,P),M&&M.delete(P)}if(this._updateMajorSpan(w,D),M&&M.size>0){const z=Array.from(M.values()),k=Pc(z);for(let j=0;j<k.length;j++){const H=k[j];I.delete(H.min,H.max-H.min+1)}const P=I.getCoords();if(!P)return this.clear(),!0;b=P.min,x=P.max}if(v!==_||R!==f)return this._count+=y,this._dataCoords=null,!0;{const z=this._count+y;this._count=z,this._dataCoords=z===0?null:Object.freeze({colStart:n?b:R,rowStart:n?R:b,colEnd:n?x:v,rowEnd:n?v:x})}return y!==0||!E.CoordUtils.isEqualRanges(u,this.getCoords())}getCount(){return this._count}getValueAt(t,e){const n=this._isColumn,r=n?e:t,o=n?t:e,s=this._lastMajor;let i;if(s===r&&s!==Number.MIN_SAFE_INTEGER?i=this._lastMinorSpan:(i=this._major.at(r),this._lastMajor=r,this._lastMinorSpan=i),!!i)return i.at(o)}setValueAt(t,e,n){const r=this._isColumn,o=[r?e:t,[[r?t:e,[n]]]];this.setValues([o])}copyTo(t,e,n){if(this.getCount()===0)return;const r=this.getOrientation(),o=t.getOrientation(),s=this.getRuns({bounds:n});let i=s.next();const a=E.CoordUtils.cellToRange(e);a.colEnd=n.colEnd-n.colStart+e.colIndex,a.rowEnd=n.rowEnd-n.rowStart+e.rowIndex;const c=this._isColumn,h=this._maxCoords,d=this.getCoords();let u,g=ue(n.colStart??Number.MIN_SAFE_INTEGER,n.rowStart??Number.MIN_SAFE_INTEGER,n.colEnd??Number.MAX_SAFE_INTEGER,n.rowEnd??Number.MAX_SAFE_INTEGER,c,h,d);g={...g};const m=o!==E.RangeOrientation.Row,f=t.getMaxCoords();u=ue(a?.colStart??Number.MIN_SAFE_INTEGER,a?.rowStart??Number.MIN_SAFE_INTEGER,a?.colEnd??Number.MAX_SAFE_INTEGER,a?.rowEnd??Number.MAX_SAFE_INTEGER,m,f),u={...u};const _=u.majorStart-g.majorStart,p=u.minorStart-g.minorStart,S=r===o?new exports.Tuple.Builder:new exports.Tuple.TransposedBuilder;for(;!i.done;){const y=i.value[0];let I=i.value[1],w=i.value[2];I+w.length>g.minorEnd&&(w=w.slice(0,g.minorEnd-I+1)),I<g.minorStart&&(w=w.slice(g.minorStart-I),I=g.minorStart),S.addValues(y+_,I+p,w),i=s.next()}const C=S.build();t.delete(a),C&&t.setValues(C.tuples)}getCoords(){if(this._dataCoords)return this._dataCoords;if(this._major.getCount()===0)return null;let t=Number.MAX_SAFE_INTEGER,e=Number.MIN_SAFE_INTEGER,n=Number.MAX_SAFE_INTEGER,r=Number.MIN_SAFE_INTEGER;const o=this._major.entries();let s=o.next();for(;!s.done;){const c=s.value,h=c[0];t=Math.min(h,t),e=Math.max(h,e);const d=c[1].getCoords();n=Math.min(d.min,n),r=Math.max(d.max,r),s=o.next()}const i=this._isColumn,a=Object.freeze({colStart:i?t:n,rowStart:i?n:t,colEnd:i?e:r,rowEnd:i?r:e});return this._dataCoords=a,a}clone(t){this._isShared=!0;const e=new ze(this._options);return e._isShared=!0,e._major=this._major.clone(),e._dataCoords=this._dataCoords,e._count=this._count,e}cloneEmpty(t){return new ze(this._options)}getMaxCoords(){return this._maxCoords||null}get[Symbol.toStringTag](){let t="";const e=this.getCoords();if(e){const n=e.colEnd-e.colStart+1,r=e.rowEnd-e.rowStart+1;t=`${this.getCount()}-${this._isColumn?n:r}x${this._isColumn?r:n}`}return`[SparseGrid:${t}]`}}ze||(ze={});const zp=12;Object.seal({done:!1,value:null});const gn=[-1,-1,null],Ku=Object.seal({done:!1,value:[-1,null]}),ao=Object.seal({done:!1,value:[-1,null]}),_e={bounds:{min:-1,max:-1},reverse:!1,processSkip:null,reuseResult:Ku},Rt={bounds:{min:-1,max:-1},reverse:!1,processSkip:null,reuseResult:ao},uh=()=>({majorIndex:-1,minorIndex:-1,value:null,active:!1,nextMinorIndex:-1,nextActive:!1,nextMinorValue:null,minorIterator:null,nextMajorCursor:null,prevMajorCursor:null});class ti{constructor(t){if(this._l=0,this._at=null,this._dt=gh.Undefined,this._a32=null,this._a64=null,this._cv=null,this._vt=null,this._vi32=null,this._vi64=null,this._vf32=null,this._vf64=null,!t)throw new Error("options is required");const e=t.length;if(this._l=e,this._dt=t.type,this._cv=t.getCoercedValue??null,e>0){t.types&&(this._at=t.types,this._vt=new Uint8Array(this._at));const n=t.values32??null;n&&(this._a32=n,this._vi32=new Int32Array(n),this._vf32=new Float32Array(n));const r=t.values64??null;if(r&&(this._a64=r,this._vf64=new Float64Array(r),this._vi64=new BigInt64Array(r)),!n&&!r)throw new Error("values32 or values64 is required")}}getConstructorOptions(){return{length:this._l,type:this._dt,types:this._at,values32:this._a32,values64:this._a64,getCoercedValue:this._cv}}at(t){if(t>>>0>=this._l)return;const e=this._vt,n=e&&e[t]||this._dt;let r,o=!1;switch(this._vi32?r=this._vi32[t]:(o=!0,r=Number(this._vi64[t])),n){case Ms:return o?Number(r):r;case po:return o?this._vf64[t]:this._vf32[t];case Fs:return!!r;case Ns:case Os:return this._cv(n,o?Number(r):r);case co:return this._vi64[o?t:r];case ho:return this._vf64[o?t:r];case Qu:return Number.NaN;case Zu:return Number.MAX_SAFE_INTEGER;case tg:return Number.MIN_SAFE_INTEGER;case Xu:return 1/0;case Yu:return-1/0;case eg:return null;case Ra:case ks:return}return this._cv(n,o?Number(r):r)}toArray(t){const e=[],n=Math.max(t,this._l);for(let r=0;r<n;r++)e.push(this.at(r));return e}get length(){return this._l}get[Symbol.toStringTag](){return"[MixTypedArrayList]"}toString(){const t=this._a32,e=this._a64;let n="";return t&&!e?n="32":e&&!t&&(n="64"),`{${n}${this._at?"":":SINGLE_TYPE"}}:${this._l}}`}static _createArrayBuffer(t){try{return new SharedArrayBuffer(t)}catch{}return new ArrayBuffer(t)}static fromArray(t,e,n,r,o=Pp){const s=t.length;if(s===0)return new ti({type:gh.Undefined,length:s,getCoercedValue:n});let i=this._createArrayBuffer(s*Int8Array.BYTES_PER_ELEMENT),a=new Uint8Array(i),c=0,h=!1,d=mh(t[0],r);for(let w=0;w<s;w++){const b=t[w],x=mh(b,r);x!==ho&&x!==co||c++,d!==x&&(a[w]=x,h=!0)}h||(a=null,i=null);let u,g,m,f,_,p,S,C,y=!1;c/s>o&&(y=!0,c=s),c!==0&&(m=this._createArrayBuffer(c*BigInt64Array.BYTES_PER_ELEMENT),f=new BigInt64Array(m),_=new Float64Array(m)),y?(u=f,g=_):(p=this._createArrayBuffer(s*Int32Array.BYTES_PER_ELEMENT),S=new Int32Array(p),C=new Float32Array(p),u=S,g=C);let I=d;if(y)for(let w=0;w<s;w++){const b=t[w];switch(a&&(I=a[w]||d),I){case Ms:u[w]=BigInt(b);break;case Fs:u[w]=BigInt(b?1:0);break;case po:g[w]=b;break;case co:u[w]=b;break;case ho:g[w]=b;break;case Ns:case Os:u[w]=BigInt(e?.(I,b)??0);break;default:I>127&&I<255&&(u[w]=BigInt(e?.(I,b)??0))}}else{let w=0;for(let b=0;b<s;b++){const x=t[b];switch(a&&(I=a[b]||d),I){case Ms:u[b]=x;break;case Fs:u[b]=x?1:0;break;case po:g[b]=x;break;case co:S[b]=w,f[w]=x,w++;break;case ho:S[b]=w,_[w]=x,w++;break;case Ns:case Os:u[b]=e?.(I,x)??0;break;default:I>127&&I<255&&(u[b]=e?.(I,x)??0)}}}return new ti({length:s,types:h?i:null,type:d,values32:p,values64:m,getCoercedValue:n})}}const Pp=.1,Ms=1,po=2,Fs=3,co=4,ho=5,Ns=6,Os=7,Xu=8,Yu=9,Qu=10,Zu=11,tg=12,eg=13,Ra=14,ks=127,gh={Undefined:Ra},mh=(l,t)=>{switch(typeof l){case"number":const e=l;return Number.isNaN(e)?Qu:e===1/0?Xu:e===-1/0?Yu:Object.is(e,-0)?po:e===Number.MAX_SAFE_INTEGER?Zu:e===Number.MIN_SAFE_INTEGER?tg:Number.isInteger(e)&&e<=2147483647&&e>=-2147483648?Ms:Math.fround(e)===e?po:ho;case"string":return Ns;case"boolean":return Fs;case"object":if(l===null)return eg;if(l instanceof Error)return Os;if(!t)return ks;const n=t(l);if(n<128||n>255)throw new Error("Custom type must be between 128 and 255");return n;case"bigint":return co;case"undefined":return Ra;case"symbol":case"function":return ks}return ks},uo=l=>{if(!l||l.length<=1)return!1;if(l.length===2)return E.CoordUtils.isRangesIntersect(l[0],l[1]);const t=new wt;t.load(l);const e=l.length;for(let n=0;n<e;n++)if(t.search(l[n]).length>1)return!0;return!1},ta=(l,t,e)=>{const n=[];if(E.CoordUtils.isRangesIntersect(l,t)){const r=E.CommonUtils.subtractRect({top:l.rowStart,left:l.colStart,bottom:l.rowEnd+1,right:l.colEnd+1},{top:t.rowStart,left:t.colStart,bottom:t.rowEnd+1,right:t.colEnd+1},e===E.RangeOrientation.Column),o=r.length;for(let s=0;s<o;s++){const i={colStart:r[s].left,rowStart:r[s].top,colEnd:r[s].right-1,rowEnd:r[s].bottom-1};n.push(i)}}else n.push(l);return n},fh=(l,t,e)=>{if(!t||!l?.[0])return;const n=l.length;for(let r=0;r<n;r++){const o=l[r];E.CoordUtils.intersectRanges(o,t)&&e(o,!E.CoordUtils.isRangeWithinRange(o,t),r)}},ph=(l,t)=>{const e=l.colStart,n=l.rowStart,r=t.colStart,o=t.rowStart;return(s,i)=>{const a=s.colIndex-e,c=i.colIndex-r;return a===c?s.rowIndex-n-(i.rowIndex-o):a-c}},_h=(l,t)=>{const e=l.colStart,n=l.rowStart,r=t.colStart,o=t.rowStart;return(s,i)=>{const a=s.rowIndex-n,c=i.rowIndex-o;return a===c?s.colIndex-e-(i.colIndex-r):a-c}},Bs=(l,t,e=!1,n=!1)=>{let r=t.colEnd-t.colStart+1,o=t.rowEnd-t.rowStart+1;if(n){const c=r;r=o,o=c}const s={colStart:l.colStart,rowStart:l.rowStart,colEnd:l.colStart+r-1,rowEnd:l.rowStart+o-1};if(e){let c=l.colStart,h=l.rowStart;return E.CoordUtils.isSingleCell(l)?(c+=r-1,h+=o-1):(c+=l.colEnd-l.colStart,h+=l.rowEnd-l.rowStart),s.colEnd=n?h:c,s.rowEnd=n?c:h,s}const i=l.colEnd-l.colStart+1;if(i%r!==0)return s;const a=l.rowEnd-l.rowStart+1;return a%o!==0||(s.colEnd=l.colStart+i-1,s.rowEnd=l.rowStart+a-1),s};class ol{constructor(t,e){this._l=0,t&&e>0&&(this._u=t,this._l=e)}at(t){if(t>this._l||t<0||!this._u)return;const e=Math.floor(t%this._u.length);return this._u.at(e)}toArray(t){const e=[],n=this._u,r=n.length;for(let o=0;o<t;o++){const s=Math.floor(o%r);e.push(n.at(s))}return e}get length(){return this._l}get[Symbol.toStringTag](){return"[RepeatingList]"}get isIList(){return!0}}class qt{constructor(t,e,n=null,r=!1){this._isLiteral=!1,this._values=t,this._coords=e,this._type=n,this._isLiteral=r}getValueAt(t,e,n){const r=this._coords;if(!r)return;let o=this._values.getValueAt(t+r.rowStart,e+r.colStart)??null;o===void 0&&(o=null);const s=n?.type,i=s!==void 0?s:this._type;return i&&(o=Ie(o,$t(o,!0),i)),o}_applyBuilder(t,e,n=!1){if(!e)return t;const r=e.build();return r&&(n&&(t=t.clone()),t.setValues(r.tuples)),t}_cloneFromBuilder(t,e,n,r){if(!t)return this;const o=t.build();if(!o)return this;let s=this._values;const i=s.getOrientation(),a=(e?.orientation??i)===A.IRange.Orientation.Column,c=Co(o.bounds,a),h=this._coords??E.CoordUtils.EmptyRange,d=Math.max(c.colEnd-c.colStart+1,n??h.colEnd-h.colStart+1),u=Math.max(c.rowEnd-c.rowStart+1,r??h.rowEnd-h.rowStart+1),g=h.colStart,m=h.rowStart,f=g+d-1,_=m+u-1;return s=s.clone(),s.setValues(o.tuples),new qt(s,{colStart:g,rowStart:m,colEnd:f,rowEnd:_},this._type,this._isLiteral)}forEach(t,e){if(!t)return;const n=this.entries(e);let r=n.next();for(;!r.done;){const o=r.value,s=t(o.value,o.coords,this);if(s)return s.break;r=n.next()}}reduce(t,e,n){if(!t)return e;const r=this.entries(n);let o=r.next(),s=e;for(;!o.done;){const i=o.value;s=t(s,i.value,i.coords,this),o=r.next()}return s}some(t,e){if(!t)return!1;const n=this.entries(e);let r=n.next();for(;!r.done;){const o=r.value;if(t(o.value,o.coords,this))return!0;r=n.next()}return!1}every(t,e){if(!t)return!0;const n=this.entries(e);let r=n.next();for(;!r.done;){const o=r.value;if(!t(o.value,o.coords,this))return!1;r=n.next()}return!0}replace(t,e){let n;if(n=t?.isIRange?t:rg(t,this._values,this._coords,this._type),this.size===0)return n;if(n.size===0)return this;const r=this._values.clone(),o=n._values,s=n._coords??E.CoordUtils.EmptyRange,i=this._coords??E.CoordUtils.EmptyRange,a=i.colStart,c=i.rowStart,h=a+(e.colIndex??0),d=c+(e.rowIndex??0);o.copyTo(r,{colIndex:h,rowIndex:d},s);const u=Math.max(this.getWidth(),n.getWidth()+(e?.colIndex??0)),g=Math.max(this.getHeight(),n.getHeight()+(e?.rowIndex??0));return new qt(r,{colStart:a,rowStart:c,colEnd:a+u-1,rowEnd:c+ +g-1},this._type)}slice(t){if(!t)return this;const e=this._coords??E.CoordUtils.EmptyRange,n=(t.colStart??0)+e.colStart,r=(t.rowStart??0)+e.rowStart,o={colStart:n,rowStart:r,colEnd:(t.colEnd??e.colEnd-n)+e.colStart,rowEnd:(t.rowEnd??e.rowEnd-r)+e.rowStart},s=E.CoordUtils.intersectRanges(e,o);return new qt(this._values,s,this._type)}resize(t,e,n=null){if(t<0||e<0)throw new Error(`Invalid resize dimensions: ${t} x ${e}`);const r=this._coords??E.CoordUtils.EmptyRange,o=r.colEnd-r.colStart+1,s=r.rowEnd-r.rowStart+1;if(t===o&&e===s)return this;const i={colStart:r.colStart,rowStart:r.rowStart,colEnd:r.colStart+t-1,rowEnd:r.rowStart+e-1};let a=this._values;return(t>o||e>s)&&(a=a.clone(),t>o&&(Vt.colStart=r.colEnd+1,Vt.rowStart=r.rowStart,Vt.colEnd=r.colEnd,Vt.rowEnd=r.rowEnd,this._fill(a,r,n)),e>s&&(Vt.colStart=r.colStart,Vt.rowStart=r.rowEnd+1,Vt.colEnd=r.colEnd,Vt.rowEnd=r.rowEnd,this._fill(a,r,n))),new qt(a,i,this._type)}_mergeIterators(t,e,n){const r=this._coords??E.CoordUtils.EmptyRange,o=t._coords??E.CoordUtils.EmptyRange,s=this._values.getOrientation(),i=n?.orientation??s,a=i!==A.IRange.Orientation.Row,c=this._entries(n),h=this._entries(n),d=r.colStart,u=r.rowStart,g=d-o.colStart,m=u-o.rowStart,f=i===s?new exports.Tuple.Builder:new exports.Tuple.TransposedBuilder,_=new hh({...n,bounds:r,comparator:(a?ph:_h)(r,o)},c,h);let p=_.next();for(;!p.done;){const S=p.value;let C=S[1],y=S[3];const I=S[0],w=S[2],b=I?I.colIndex:w.colIndex+g,x=I?I.rowIndex:w.rowIndex+m,R=e(C,y,{colIndex:b-d,rowIndex:x-u},this),v=a?b:x,T=a?x:b;f.addValue(v,T,R),p=_.next()}return f}intersect(t,e,n){if(!t)throw new Error("Invalid range to intersect");const r=t,o=this._coords??null,s=r._coords??null;if(!E.CoordUtils.intersectRanges(o,s))return new qt(this._values,null,this._type);const i=this._mergeIterators(r,e,n);return this._cloneFromBuilder(i,n)}startIncrementalUpdates(t){const e=t?.orientation??A.IRange.Orientation.Column,n=this._values.getOrientation(),r=(t?.orientation??n)!==A.IRange.Orientation.Row,o=e===n?new exports.Tuple.Builder:new exports.Tuple.TransposedBuilder,s=this,i=this._coords??E.CoordUtils.EmptyRange,a=i.colStart,c=i.rowStart,h=r?a:c,d=r?c:a,u={pushAt(g,m,f){const _=r?m:g,p=r?g:m;return o.addValue(_+h,p+d,f),u},pushMultipleAt(g,m,f){const _=r?m:g,p=r?g:m;return o.addValues(_+h,p+d,f),u},apply(){const g=o.build();return g?(g.bounds.majorStart=h,g.bounds.minorStart=d,s._cloneFromBuilder(o,t)):null}};return u}map(t,e){const n=this._values;if(!this._coords||n.getCount()===0)return this;const r=n.getOrientation(),o=e?.orientation??r;let s;const i=this.entries(e);let a=i.next();a.done||(s=this._createTupleBuilder(o));const c=o===A.IRange.Orientation.Column;for(;!a.done;){const h=a.value,d=h.coords,u=t(h.value,d,this),g=c?d.colIndex:d.rowIndex,m=c?d.rowIndex:d.colIndex;s.addValue(g,m,u),a=i.next()}return this._cloneFromBuilder(s,e)}filter(t,e){const n=this._values;if(!this._coords||n.getCount()===0)return this;const r=n.getOrientation(),o=e?.orientation??r,s=this._createTupleBuilder(o),i=this.entries(e);let a=i.next();const c=o===A.IRange.Orientation.Column;for(;!a.done;){const h=a.value,d=h.coords,u=h.value;if(t(u,d,this)){const g=c?d.colIndex:d.rowIndex,m=c?d.rowIndex:d.colIndex;s.addValue(g,m,u)}a=i.next()}return this._cloneFromBuilder(s,e)}broadcast(t,e,n){let r=this._coords;if(t==null)return this;let o=n?.type,s=n?.otherType??o;const i=o?Ie(null,A.ScalarType.Null,o):null,a=s?Ie(null,A.ScalarType.Null,s):null;let c;if(t.isIRange)c=t;else{const D=this._values.clone();D.setValueAt(0,0,t),c=new qt(D,E.CoordUtils.EmptyRange,$t(t,!0))}const h=c,d=this.getWidth(),u=this.getHeight(),g=h.getWidth(),m=h.getHeight();let f=Math.min(d,g),_=Math.min(u,m),p=Math.max(d,g),S=Math.max(u,m);const C=n?.mismatchFill;let y=!1;if(d!==g)if(d===1)f=g;else if(g===1)f=d;else{if(!C)throw new Error(`Incompatible shapes for broadcast: width dimensions ${d} and ${g} must be equal or one must be 1`);y=!0}if(u!==m)if(u===1)_=m;else if(m===1)_=u;else{if(!C)throw new Error(`Incompatible shapes for broadcast: height dimensions ${u} and ${m} must be equal or one must be 1`);y=!0}const I=this._values.getOrientation(),w=I,b=w===A.IRange.Orientation.Column;r=r??E.CoordUtils.EmptyRange;let x,R,v=h._coords??E.CoordUtils.EmptyRange;if(y&&(r={colStart:r.colStart,rowStart:r.rowStart,colEnd:r.colStart+f-1,rowEnd:r.rowStart+f-1},v={colStart:v.colStart,rowStart:v.rowStart,colEnd:v.colStart+f-1,rowEnd:v.rowStart+f-1}),d===1&&d<g||u===1&&u<m){const D={...r};d===1&&(D.colEnd=D.colStart),u===1&&(D.rowEnd=D.rowStart),x=new Zl({delegate:this._entries({...n,orientation:w,bounds:D,reuseResult:!1}),bounds:D,orientation:w,dims:{major:b?f:_,minor:b?_:f}})}else x=this._entries({...n,orientation:w,bounds:r,reuseResult:!1});if(g===1&&g<d||m===1&&m<u){const D={...v};g===1&&(D.colEnd=D.colStart),m===1&&(D.rowEnd=D.rowStart),R=new Zl({delegate:h._entries({...n,type:s??null,orientation:w,bounds:D,reuseResult:!1}),bounds:D,orientation:w,dims:{major:b?f:_,minor:b?_:f}})}else R=h._entries({...n,type:s??null,orientation:w,bounds:v,reuseResult:!1});const T=r.colStart,M=r.rowStart,F=T-v.colStart,N=M-v.rowStart,O=w===I?new exports.Tuple.Builder:new exports.Tuple.TransposedBuilder,L=new hh({...n,bounds:r,comparator:(b?ph:_h)(r,v)},x,R);let B,U=L.next();for(;!U.done;){const D=U.value;let z=D[1],k=D[3];const P=D[0],j=D[2],H=P?P.colIndex:j.colIndex+F,W=P?P.rowIndex:j.rowIndex+N;let V,$;z instanceof A.FormulaError.Value?V=z:k instanceof A.FormulaError.Value&&(V=k),$=V||e(z??i,k??a,{colIndex:H-T,rowIndex:W-M},this);const nt=b?H:W,et=b?W:H;O.addValue(nt,et,$),U=L.next()}if(C&&p>f||S>_){const D=this._values.clone();if(this._applyBuilder(D,O),p>f){const z=ue(T+f,M,T+p-1,M+S-1,b),k=Ts(C,z,b);D.setValues(k.tuples)}if(S>_){const z=ue(T,M+_,T+p-1,M+S-1,b),k=Ts(C,z,b);D.setValues(k.tuples)}B=new qt(D,{colStart:T,rowStart:M,colEnd:T+p-1,rowEnd:M+S-1},this._type)}else B=this._cloneFromBuilder(O,n,p,S);return B}_fill(t,e,n){if(n===null)return void t.delete(e);const r=t.getOrientation()===A.IRange.Orientation.Column,o=ue(e.colStart,e.rowStart,e.colEnd,e.rowEnd,r),s=Ts(n,o,r);t.setValues(s.tuples)}_validateCoords(t){}fill(t,e){let n=this._coords;if(!n&&!e)return this;n=n??E.CoordUtils.EmptyRange,e&&(Vt.colStart=(e.colStart??0)+n.colStart,Vt.rowStart=(e.rowStart??0)+n.rowStart,Vt.colEnd=(e.colEnd??n.colEnd-n.colStart)+n.colStart,Vt.rowEnd=(e.rowEnd??n.rowEnd-n.rowStart)+n.rowStart),this._validateCoords(Vt);const r=this._values.clone();return this._fill(r,Vt,t),(Vt.rowEnd>n.rowEnd||Vt.colEnd>n.colEnd)&&(n={colStart:n.colStart,rowStart:n.rowStart,colEnd:Math.max(n.colEnd,Vt.colEnd),rowEnd:Math.max(n.rowEnd,Vt.rowEnd)}),new qt(r,n,this._type)}empty(){const t=this._values.cloneEmpty();return new qt(t,null,this._type)}flatten(t){const e=[],n=this.values(t);let r=n.next();for(;!r.done;)e.push(r.value),r=n.next();return e}fillEmpty(t,e=1,n=1){const r=this._coords;if(!r)return this;const o=this._values;if(e<1&&n<1)throw new Error("Must be at least size of 1");const s=o.getOrientation(),i=s,a=i===A.IRange.Orientation.Column,c=Math.max(this.getWidth(),e),h=Math.max(this.getHeight(),n),d=a?r.colStart:r.rowStart,u=a?r.rowStart:r.colStart,g=a?r.colStart+c-1:r.rowStart+h-1,m=a?r.rowStart+h-1:r.colStart+c-1,f=o.getRuns({bounds:{colStart:r.colStart,rowStart:r.rowStart,colEnd:a?g:m,rowEnd:a?m:g},overflowRun:!0});let _=f.next(),p=d,S=u;const C=i===s?new exports.Tuple.Builder:new exports.Tuple.TransposedBuilder;for(;!_.done;){const y=_.value,I=y[0];for(;p<I;){const v=new ol([t],m+1-S);C.addValues(p,S,v),p++,S=u}const w=y[1],b=Math.max(w,u),x=y[2],R=Math.min(w+x.length-1,m);if(S<b){const v=new ol([t],w-S);C.addValues(p,S,v)}S=R+1,R>=m?(p=I+1,S=u):p=I,_=f.next()}for(;p<=g;){const y=new ol([t],m+1-S);C.addValues(p,S,y),p++,S=u}return this._cloneFromBuilder(C,void 0,c,h)}transpose(){if(this.size<=1)return this;const t=this._values.getOrientation(),e=this._coords,n=this.getWidth(),r=this.getHeight(),o=this._entries({orientation:t===A.IRange.Orientation.Column?A.IRange.Orientation.Row:A.IRange.Orientation.Column,bounds:e,reuseResult:!0}),s=t===A.IRange.Orientation.Column,i=new exports.Tuple.Builder,a=s?e.colStart:e.rowStart,c=s?e.rowStart:e.colStart;let h=o.next();for(;!h.done;){const d=h.value,u=d[0],g=s?u.colIndex:u.rowIndex-a,m=(s?u.rowIndex:u.colIndex-c)+a,f=g+c,_=d[1];i.addValue(m,f,_),h=o.next()}return this._cloneFromBuilder(i,void 0,r,n)}values(t){const e=this.entries(t);return{[Symbol.iterator](){return this},next(){const n=e.next();return n.done?Ct:{done:!1,value:n.value.value}}}}_createTupleBuilder(t){const e=this._coords,n=this._values.getOrientation(),r=t??n,o=r!==A.IRange.Orientation.Row,s=o?e.colStart:e.rowStart,i=o?e.rowStart:e.colStart;return r===n?new exports.Tuple.Builder(null,s,i):new exports.Tuple.TransposedBuilder(null,s,i)}entries(t){const e=this._coords;if(!e)return Dt;const n=t?.bounds;if(t={...t,bounds:e},n){const s=(n.colStart??0)-e.colStart,i=(n.rowStart??0)-e.rowStart,a=Math.max(s+e.colStart,e.colStart),c=Math.max(i+e.rowStart,e.rowStart),h=Math.min((n.colEnd??Number.MAX_SAFE_INTEGER)-s,e.colEnd-e.colStart)+1,d=Math.min((n.rowEnd??Number.MAX_SAFE_INTEGER)-i,e.rowEnd-e.rowStart)+1;t.bounds={colStart:a,rowStart:c,colEnd:a+h-1,rowEnd:c+d-1}}const r=this._entries(t),o={[Symbol.iterator]:()=>o,next(){for(;;){let s=r.next();if(s.done)return Ct;const i=s.value,a=i[0];return{done:!1,value:{coords:{colIndex:a.colIndex-e.colStart,rowIndex:a.rowIndex-e.rowStart},value:i[1]}}}}};return o}_entries(t){if(!this._coords)return Dt;let e=this._values.entries(t);const n=t?.type??this._type;let r=null;if(t?.includeEmpty&&(e=new qu(e,t),n&&(r=Ie(null,A.ScalarType.Null,n))),n){const o=e,s=t.coerce??!1,i=t.includeBoolean??!1,a=t.includeMistyped??!1;e={[Symbol.iterator]:()=>e,next(){for(;;){let c=o.next();if(c.done)return Ct;const h=c.value,d=h[1];let u=d;if(u==null)u=r;else if(n&&(s||!a)){let g=$t(u,!0),m=g!==n;if(m&&(s&&(u=Ie(u,g,n,i),m=u?.isFormulaError),m&&!a))continue}return u===d?c:{done:!1,value:[h[0],u]}}}}}return e}getValues(t){if(!this._coords)return[[]];const e={...t,includeEmpty:!0,reverse:!1,bounds:{colStart:0,rowStart:0,colEnd:this.getWidth()-1,rowEnd:this.getHeight()-1}};let n=!1;e.orientation=t?.orientation??A.IRange.Orientation.Row,t&&(t.maxHeight&&(e.bounds.rowEnd=0+t.maxHeight-1),t.maxWidth&&(e.bounds.colEnd=0+t.maxWidth-1),t.trailingEmpties&&(n=t.trailingEmpties),e.orientation=t?.orientation??A.IRange.Orientation.Row);const r=[];if(!n){e.includeEmpty=!1,e.reverse=!0;const d=this.entries(e).next();if(d.done)return Hp;const u=d.value.coords;e.bounds.colEnd=u.colIndex,e.bounds.rowEnd=u.rowIndex,e.includeEmpty=!0,e.reverse=!1}const o=this.entries(e),s=e.orientation!==A.IRange.Orientation.Row,i=t?.onValue;let a,c=-1,h=[];for(a=o.next();!a.done;){const d=a.value,u=d.coords,g=s?u.colIndex:u.rowIndex;g!==c&&(h=[],r.push(h),c=g);let m=d.value;if(i){const f=i(m,u.rowIndex,u.colIndex,this);f!==void 0&&(m=f)}h.push(m),a=o.next()}return r}toType(t){return new qt(this._values,this._coords,t,this._isLiteral)}getWidth(){const t=this._coords;return t?t.colEnd-t.colStart+1:0}getHeight(){const t=this._coords;return t?t.rowEnd-t.rowStart+1:0}get size(){const t=this._coords;return t?(t.colEnd-t.colStart+1)*(t.rowEnd-t.rowStart+1):0}isLiteral(){return this._isLiteral}getScalarType(){return this._type}[Symbol.iterator](){const t=this.entries();return{next(){const e=t.next();return e.done?Ct:{done:!1,value:e.value.value}},[Symbol.iterator](){return this}}}get[Symbol.toStringTag](){return"[Range]"}toString(){const t=this._coords,e=t?`${t.colEnd-t.colStart+1}x${t.rowEnd-t.rowStart+1}`:A.FormulaError.Ref.toString();let n="{";const r=this.entries({includeEmpty:!0,orientation:A.IRange.Orientation.Row});let o=r.next(),s=0,i=o.value?.coords.rowIndex??0;for(;!o.done&&s<10;){const a=o.value;a.coords.rowIndex>i?(n+=";",i=a.coords.rowIndex):s>0&&(n+=","),s++;let c=a.value;typeof c=="string"?c=`"${c}"`:typeof c=="boolean"&&(c=c?"TRUE":"FALSE"),n+=c,o=r.next()}return o.done?n+="}":n+="...",`[${e}:${n}]`}get isIRange(){return!0}}const Vt={colStart:Number.MIN_SAFE_INTEGER,rowStart:Number.MIN_SAFE_INTEGER,colEnd:Number.MAX_SAFE_INTEGER,rowEnd:Number.MAX_SAFE_INTEGER},Hp=Object.freeze([Object.freeze([null])]),Fo=Object.freeze({colStart:0,rowStart:0,colEnd:Math.pow(2,14)-1,rowEnd:Math.pow(2,20)-1}),Wp=Object.freeze({colIndex:0,rowIndex:0}),ei=()=>Fo,$t=(l,t=!1)=>typeof l=="number"?isNaN(l)||l===1/0||l===-1/0?A.ScalarType.Error:A.ScalarType.Number:typeof l=="string"?A.ScalarType.String:typeof l=="boolean"?A.ScalarType.Boolean:l?.isFormulaError?A.ScalarType.Error:l===null?A.ScalarType.Null:E.CommonUtils.isObject(l)&&l.hasOwnProperty("type")&&typeof l.type=="string"?A.ScalarType.RichData:t&&Tr(l)?"Date":l===void 0?(console.warn("undefined"),A.ScalarType.Null):null,Sh=new Map([[A.ScalarType.Null,"any"],[A.ScalarType.Number,"number"],[A.ScalarType.String,"string"],[A.ScalarType.Boolean,"boolean"],[A.ScalarType.Error,"FormulaError"],[A.ScalarType.RichData,"richData"],["*","Scalar"]]),jp=new Map([["p","IReferenceRange"],["r","IRange"]]),Vp={orientation:A.IRange.Orientation.Row},Ie=(l,t,e=A.ScalarType.Number,n=!1,r=!1)=>{if(t===e||!e)return t===A.ScalarType.Number&&(l=No(l,null,"number")),l;if(e===A.ScalarType.Number){switch(t){case A.ScalarType.Null:return 0;case A.ScalarType.String:let o=0;try{const s=Ag(l);o=s&&typeof s.value=="number"?s.value:Number.NaN}catch{}return!Number.isFinite(o)||Math.abs(o)>999e305?A.FormulaError.BuiltIn.Value:o;case A.ScalarType.Boolean:return n?l?1:0:A.FormulaError.BuiltIn.Value;case"Date":return Ao(l,r)??A.FormulaError.BuiltIn.Value;case A.ScalarType.Error:return l}return l.toString()}if(e===A.ScalarType.String){switch(t){case A.ScalarType.Null:return"";case A.ScalarType.Number:return l.toString();case A.ScalarType.Boolean:return l?"TRUE":"FALSE";case A.ScalarType.Error:return l}return l}if(e===A.ScalarType.Boolean){switch(t){case A.ScalarType.Null:return 0;case A.ScalarType.Number:return!!l;case A.ScalarType.String:let o=l.trim().toUpperCase();return o==="TRUE"||o!=="FALSE"&&A.FormulaError.BuiltIn.Value;case A.ScalarType.Error:return l}return A.FormulaError.BuiltIn.Value}if(e==="Date"){switch(t){case A.ScalarType.Number:return Mr(l,r)??A.FormulaError.BuiltIn.Value;case A.ScalarType.String:try{const o=wa(l,r);if(o)return o.asJSDate??A.FormulaError.BuiltIn.Value}catch{}return l;case A.ScalarType.Error:return l}return A.FormulaError.BuiltIn.Value}return A.FormulaError.BuiltIn.Value},wh=l=>{let t=l;for(;Array.isArray(t);){if(t.length>1)return!1;t=t[0]}return!t||!t.isIRange||t.size===1},ng=(l,t,e,n,r,o=!1)=>{if(Array.isArray(e)){const s=e.length;for(let i=0;i<s;i++){let a=e[i];if(Array.isArray(a)){const c=ng(l,t,a,n,r,o);if(o)continue;if(c instanceof A.FormulaError.Value)return c}else{if(n){if(a=Ie(a,$t(a,!0),n,o),o)continue;if(a instanceof A.FormulaError.Value)return a}t.push(a)}}return}if(e&&e.colStart!==void 0){let s=l.getReference?.(e);n&&(s=s.toType(n)),e=s}if(e?.isIRange)return((s,i)=>{let a=s.next();for(;!a.done;){let c=a.value;if(c instanceof A.FormulaError.Value)return c;i.push(c),a=s.next()}})(e.values({type:n,coerce:!0,includeMistyped:!o,...Vp}),t);if(n){if(e=Ie(e,$t(e,!0),n,r!==null),o)return;if(e instanceof A.FormulaError.Value)return e}t.push(e)},jr=(l,t,e,n,r,o)=>{if(r==="r"){let i=e;return i&&i.isIReferenceRange?(n&&(i=i.toType(n)),void t.push(e)):new A.FormulaError.Value("Cannot convert a literal to a reference.")}let s=e?.isIRange?e:null;if(r!=="l"){if(s){const i=s.getValues({type:n});return void t.push(i)}{Array.isArray(e)||(e=[e]);const i=e.length,a=new Array(i);for(let c=0;c<i;c++){let h=e[c];Array.isArray(h)||(h=[h]);const d=h.length,u=new Array(d);for(let g=0;g<d;g++){let m=h[g];if(n&&(m=Ie(m,$t(m,!0),n)),m instanceof A.FormulaError.Value)return m;u[g]=m}a[c]=u}t.push(a)}}else{if(s)n&&s.getScalarType()!==n&&(s=s.toType(n));else try{if(!o&&(e=No(e),n&&(e=Ie(e,$t(e,!0),n,!0),e?.isFormulaError&&n!==A.ScalarType.Error)))return t.push(e),e;s=l.getRange(e),n&&(s=s.toType(n))}catch(i){return i}t.push(s)}},No=(l,t,e=typeof l)=>{if(e==="number")return isNaN(l)?A.FormulaError.BuiltIn.Num:isFinite(l)?l+=0:A.FormulaError.BuiltIn.Div0;if(l==null)return null;if(!t)return l;if(Array.isArray(l))try{l=t.getRange(l)}catch{return A.FormulaError.BuiltIn.Value}return t.isValidDate(l)?(t.formatResults("Short Date"),t.toOADate(l)):l},rg=(l,t,e,n)=>{let r;r=Array.isArray(l)?Array.isArray(l[0])?l:[l]:[[l]],t||(t=new ze({orientation:A.IRange.Orientation.Column}));const o=t.getOrientation()===A.IRange.Orientation.Column,s=Zs(r,o,ue(e?.colStart??0,e?.rowStart??0,void 0,void 0,o),!0),i=Co(s.bounds,o);return t.setValues(s.tuples),new qt(t,i,n,!e)},$p=new RegExp(/^([$]?[a-zA-Z]*[$]?[0-9]*)[:]?([$]?[a-zA-Z]*[$]?[0-9]*)?$/),Gp=new RegExp(/^(R(?:\[?[-+]?\d+\]?|\d+)?C(?:\[?[-+]?\d+\]?|\d+)?)(:(R(?:\[?[-+]?\d+\]?|\d+)?C(?:\[?[-+]?\d+\]?|\d+)?))?$/,"i"),Jp=new RegExp(/^(R?)(\[?[-+]?\d+\]?|\d+)?(C?)(\[?[-+]?\d+\]?|\d+)?$/,"i"),qp=new RegExp("(?:'[^']+'|[A-Za-z0-9_\\-.]+?!)?(\\$?[A-Za-z]+\\$?\\d+(?::\\$?[A-Za-z]+\\$?\\d+)?|\\$?[A-Za-z]+:\\$?[A-Za-z]+|\\$?\\d+:\\$?\\d+)","g"),Kp=/\s+/g,Xp=/"(?:[^"]|"")*"|\[[^[\]]+\]/g,sl=/[\uE000-\uF8FF]/g,Pt="#REF!",og=Math.pow(2,14),Yp=Math.pow(2,20);let yh,Ch;const Ne=l=>(yh===l||(Ch=""+(l+1),yh=l),Ch);let Eh,il;const xe=l=>{if(Eh===l)return il;if(Eh=l,l<0)throw new Error("invalid column "+l);let t="";for(++l;l;l=Math.floor((l-1)/26))t=String.fromCharCode((l-1)%26+65)+t;return il=t,il},Qp=/[^a-zA-Z0-9]/,Oo=l=>l?xe(l.colIndex)+Ne(l.rowIndex):null,An=l=>{if(!l)return Pt;const t=xe(l.colIndex),e=Ne(l.rowIndex);return(l.$colIndex?"$"+t:t)+(l.$rowIndex?"$"+e:e)},Aa=(l,t)=>{let e=l??t;var n;return e&&(e=ya(e),e=e.replace(/'/g,"''"),n=e,Qp.test(n)&&(e=Au(e))),e},sg=(l,t)=>l?l+(l.endsWith("!")?"":"!")+t:Pt,sn=(l,t,e=Oo)=>{if(!l)return null;const n=l.colStart,r=l.rowStart,o=l.colEnd,s=l.rowEnd;if(n===o&&r===s)return e({colIndex:n,rowIndex:r});l={...t,...l};const i=n===Number.MIN_SAFE_INTEGER||t&&n<=t.colStart&&o>=t.colEnd,a=r===Number.MIN_SAFE_INTEGER||t&&r<=t.rowStart&&s>=t.rowEnd;let c=null;c=a?xe(n):i?Ne(r):e({colIndex:n,rowIndex:r});let h=null;return h=a?xe(o):i?Ne(s):e({colIndex:o,rowIndex:s}),c+":"+h},ll=(l,t,e=An)=>{if(!l)return Pt;const n=l.colIndex,r=l.rowIndex,o=n===Number.MIN_SAFE_INTEGER;let s=null;if(r===Number.MIN_SAFE_INTEGER?(s=xe(n),l.$colIndex&&(s="$"+s)):o?(s=Ne(r),l.$rowIndex&&(s="$"+s)):s=e(l),l.sheetName||t){const i=Aa(l.sheetName,t);s=sg(i,s)}return s},Ze=(l,t,e=An)=>{if(!l)return Pt;const n=l.rowStart!==void 0&&l.rowStart===l.rowEnd;if(l.colStart!==void 0&&l.colStart===l.colEnd&&n)return e({colIndex:l.colStart,rowIndex:l.rowStart,$colIndex:l.$colStart,$rowIndex:l.$rowStart});l={...t,...l};const r=t&&l.rowStart<=t.rowStart&&l.rowEnd>=t.rowEnd,o=t&&l.colStart<=t.colStart&&l.colEnd>=t.colEnd;let s=null;r?(s=xe(l.colStart),s=l.$colStart?"$"+s:s):o?(s=Ne(l.rowStart),s=l.$rowStart?"$"+s:s):s=e({colIndex:l.colStart,rowIndex:l.rowStart,$colIndex:l.$colStart,$rowIndex:l.$rowStart});let i=null;return r?(i=xe(l.colEnd),i=l.$colEnd?"$"+i:i):o?(i=Ne(l.rowEnd),i=l.$rowEnd?"$"+i:i):i=e({colIndex:l.colEnd,rowIndex:l.rowEnd,$colIndex:l.$colEnd,$rowIndex:l.$rowEnd}),s+":"+i},Si=(l,t,e=An)=>{const n=Ze(l,t,e),r=Aa(l?.sheetName,t?.sheetName);return sg(r,n)},ig=(l,t=!1)=>{if(!l)return null;let e=0,n=0,r=!1,o=!1;const s=l.length;for(let a=0;a<s;++a){const c=l.charCodeAt(a);if(c>=48&&c<=57){if(n=10*n+(c-48),e===0&&!t)return}else if(c>=65&&c<=90){if(e=26*e+(c-64),n!==0)return}else if(c>=97&&c<=122){if(e=26*e+(c-96),n!==0)return}else{if(c!==36)return;if(e!==0||r){if(n!==0||o)return;o=!0}else r=!0}}const i={};return t||n!==0&&e!==0?(e>0&&(i.colIndex=e-1,r&&(i.$colIndex=r)),n>0&&(i.rowIndex=n-1,(o||t&&r)&&(i.$rowIndex=o||t&&r)),i):null},ye=(l,t=Fo,e=!1)=>{if(!l)return null;let n=l.toUpperCase();const r=cg(n,e);let o=null,s=null;if(r?.[1]){const a=!!r[2],c=e?Ds:ig;o=c(r[1],a),s=c(r[2]??r[1],a)}if(!o&&!s||o&&s&&(o.rowIndex===void 0&&s.rowIndex!==void 0||o.rowIndex!==void 0&&s.rowIndex===void 0||o.colIndex===void 0&&s.colIndex!==void 0||o.colIndex!==void 0&&s.colIndex===void 0))return null;const i={};return o&&(o.colIndex!==void 0&&(i.colStart=o.colIndex),o.rowIndex!==void 0&&(i.rowStart=o.rowIndex),o.$colIndex!==void 0&&(i.$colStart=o.$colIndex),o.$rowIndex!==void 0&&(i.$rowStart=o.$rowIndex),i?.colStart!==void 0&&i?.colStart>t?.colEnd)?null:(s&&(s.colIndex!==void 0&&(i.colEnd=s.colIndex),s.rowIndex!==void 0&&(i.rowEnd=s.rowIndex),s.$colIndex!==void 0&&(i.$colEnd=s.$colIndex),s.$rowIndex!==void 0&&(i.$rowEnd=s.$rowIndex)),{...t,...i})},ko=(l,t,e=!1)=>{const n=(o=>{const s=o.lastIndexOf("!");if(s===-1)return null;let i=o.slice(0,s);return i=ya(i),i=i.replace(/''/g,"'"),[i,o.slice(s+1)]})(l);let r;if(n){if(r=ye(n[1],t,e),!r)return null;r.sheetName=n[0]}else r=ye(l,t,e);return r||null},Ta=(l,t,e=Ze,n=An)=>{if(!l||l.length===0)return null;const r=[],o=l.length;for(let s=0;s<o;s++){const i=l[s];let a=null;i?i.rowIndex!==void 0||i.colIndex!==void 0?a=n(i):i.rowStart!==void 0||i.colStart!==void 0?a=e(i,t,n):typeof i=="string"&&(a=i):a=Pt,a&&r.push(a)}return r},lg=(l,t,e=Si,n=An)=>{const r=Ta(l,t,e,n);return r?r.join(","):Pt},ag=(l,t,e,n=ko,r,o=!1)=>{if(t!==null){if(typeof t=="string"){const s=n(t,e,o);if(!s){const i=r?.(t);if(i){const a=i.length;for(let c=0;c<a;c++){const h=i[c];ag(l,h,e,n,r,o)}}return}t=s}else t.isICellRange?t=t.getCoords():t.isICell&&(t=E.CoordUtils.cellToRange(t.getCoords()));if(t!==null){if(t.rowStart!==void 0||t.colStart!==void 0||t.colEnd!==void 0||t.rowEnd!==void 0){const s=t;l.push({...e,...s})}else if(t.rowIndex!==void 0||t.colIndex!==void 0){const s=t,i={...e,...s,colStart:s.colIndex,rowStart:s.rowIndex,colEnd:s.colIndex,rowEnd:s.rowIndex};i.sheetName===null&&e.sheetName&&(i.sheetName=e.sheetName),delete i.colIndex,delete i.rowIndex,l.push(i)}}else l.push(null)}else l.push(null)},Ma=(l,t,e=ko,n,r=!1)=>{if(!l)return[t];let o;o=typeof l=="string"?Tu(l):l.isICellRanges?l.getCoords():Array.isArray(l)?l:[l];const s=[],i=o.length;for(let a=0;a<i;a++){const c=o[a];ag(s,c,t,e,n,r)}return s},mr=(l,t)=>{let e=0,n=0;const r=l.length;for(let o=0;o<r;++o){const s=l.charCodeAt(o);if(s>=48&&s<=57){if(e=10*e+(s-48),n===0)return}else if(s>=65&&s<=90){if(n=26*n+(s-64),e!==0)return}else if(!(s>=97&&s<=122)||(n=26*n+(s-96),e!==0))return}return t?(t.colIndex=n-1,t.rowIndex=e-1,t):{colIndex:n-1,rowIndex:e-1}},Ds=(l,t=!1,e)=>{e?(e.colIndex=Number.MIN_SAFE_INTEGER,e.rowIndex=Number.MIN_SAFE_INTEGER,e.$colIndex=!1,e.$rowIndex=!1):e={colIndex:Number.MIN_SAFE_INTEGER,rowIndex:Number.MIN_SAFE_INTEGER,$colIndex:!1,$rowIndex:!1};const n=Jp.exec(l);if(!n)return null;const r=n[1],o=n[3];if(!(t||r&&o))return null;if(r){const s=n[2];s?s&&(s.startsWith("[")?(e.rowIndex=parseInt(s.slice(1,-1)),e.$rowIndex=!1):(e.rowIndex=parseInt(s)-1,e.$rowIndex=!0)):(e.rowIndex=0,e.$rowIndex=!1)}if(o){const s=n[4];s?s.startsWith("[")?(e.colIndex=parseInt(s.slice(1,-1)),e.$colIndex=!1):(e.colIndex=parseInt(s)-1,e.$colIndex=!0):(e.colIndex=0,e.$colIndex=!1)}return e},ea=(l,t)=>{let e=0,n=0,r=!1,o=!1;const s=l.length;for(let i=0;i<s;++i){const a=l.charCodeAt(i);a>=48&&a<=57?e=10*e+(a-48):a>=65&&a<=90?n=26*n+(a-64):a>=97&&a<=122?n=26*n+(a-96):a===36&&(i===0?r=!0:o=!0)}return n--,e--,t.colIndex=n,t.rowIndex=e,e===-1?(t.$colIndex=r,t.$rowIndex=!1,t):n===-1?(t.$colIndex=!1,t.$rowIndex=r,t):(t.$colIndex=r,t.$rowIndex=o,t)},Zp=l=>{let t=0;const e=l.length;for(let n=0;n<e;++n){const r=l.charCodeAt(n);if(r>=65&&r<=90)t=26*t+(r-64);else{if(!(r>=97&&r<=122))return t-1;t=26*t+(r-96)}}return t-1},he=(l,t)=>{let e=t;e?(e.rowStart=0,e.colStart=0,e.rowEnd=0,e.colEnd=0):e={rowStart:0,colStart:0,rowEnd:0,colEnd:0};let n=0,r=0,o=0,s=l.length;for(n=0;r<s&&(o=l.charCodeAt(r),o>96&&o<123&&(o-=32),!(o<65||o>91));++r)n=26*n+(o-64);for(e.colStart=--n,n=0;r<s;++r){let i=l.charCodeAt(r)-48;if(i<0||i>9)break;n=10*n+i}if(e.rowStart=--n,r===s||l.charCodeAt(++r)===58)return e.colEnd=e.colStart,e.rowEnd=e.rowStart,e;for(n=0;r!==s&&(o=l.charCodeAt(r),o>96&&o<123&&(o-=32),!(o<65||o>91));++r)n=26*n+(o-64);for(e.colEnd=--n,n=0;r!==s;++r){let i=l.charCodeAt(r)-48;if(i<0||i>9)break;n=10*n+i}return e.rowEnd=--n,e},cg=(l,t=!1)=>{const e=l.match(t?Gp:$p);return l.endsWith(":")?null:e},na={rowIndex:-1,colIndex:-1,$colIndex:!1,$rowIndex:!1},al=(l,t,e,n=og)=>{let r=l.lastIndexOf("!"),o="";r!==-1&&(o=l.slice(0,r)+"!",l=l.slice(r+1));let s=null;const i=()=>{let c="";const h=s.rowIndex;if(h!==-1)if(s.$rowIndex)c+=`R${h+1}`;else{const g=h-t;c+=g===0?"R":`R[${g}]`}let d="";const u=s.colIndex;if(u!==-1)if(s.$colIndex)d+=`C${u+1}`;else{const g=u-e;d+=g===0?"C":`C[${g}]`}o+=c+d};r=l.lastIndexOf(":");const a=r!==-1;if(a){const c=l.slice(0,r);l=l.slice(r+1),s=ea(c,na),s.colIndex!==-1&&s.rowIndex!==-1&&(i(),o+=":")}return s=ea(l,na),!a&&s.colIndex>n?l:(i(),o)},wr=[],t0=l=>(wr.push(l),String.fromCharCode(57344+wr.length-1)),e0=l=>{const t=l.charCodeAt(0)-57344;return wr[t]},n0=(l,t,e)=>{let n="";const r=l.length;for(let o=0;o<r;o++){const s=l[o];n+=typeof s=="string"?s:hg(s,t,e)}return n},Ls=(l,t)=>{let e="";const n=l.rowIndex;n!==Number.MIN_SAFE_INTEGER&&(l.$rowIndex?e+=`R${n+1}`:e+=n===0?"R":`R[${n+1}]`);let r="";const o=l.colIndex;return o!==Number.MIN_SAFE_INTEGER&&(l.$colIndex?r+=`C${o+1}`:r+=o===0?"C":`C[${o+1}]`),l.sheetName&&(e=Aa(l.sheetName,t)+"!"+e),e+r},hg=(l,t,e)=>{let n="";const r=l.colIndex;r!==Number.MIN_SAFE_INTEGER&&(l.$colIndex?n+="$"+xe(r):n+=xe(r+e));const o=l.rowIndex;return o!==Number.MIN_SAFE_INTEGER&&(l.$rowIndex?n+="$"+Ne(o):n+=Ne(o+t)),n},r0=(l,t,e,n)=>{wr.length=0;let r=0,o=l.replace(Xp,t0),s=0,i=o.replace(qp,(a,c,h)=>{const d=al(a,t,e);if(n){if(h>s){const g=o.slice(s,h).replace(sl,(m,f)=>wr[r++]);n.push(g)}const u=a.lastIndexOf(":");if(u!==-1){const g=a.slice(0,u),m=a.slice(u+1),f=al(g,t,e),_=al(m,t,e);n.push(Ds(f,!0)??f),n.push(":"),n.push(Ds(_,!0)??_)}else n.push(Ds(d,!0)??d)}return s=h+a.length,d});if(n&&s<o.length){const a=o.slice(s);n.push(a.replace(sl,(c,h)=>wr[r++]))}return i=i.toUpperCase().replace(Kp,""),i.replace(sl,e0)},yr="Must specify an address.",dg="Only a single range is allowed for this operation. Use 'getRanges' instead.",Ih="Only a single cell is allowed.",ug="Invalid range. The Range must be specified as '{ TOP_LEFT:BOTTOM_RIGHT }'.",Eo=l=>`Invalid address. Can not parse ${typeof l=="string"?`'${l}' `:""}as an address or named item.`,pt=()=>{throw new Error("Invalid range.")};class Pn{constructor(t,e,n=!1){this._c=t,this._cycleId=e,this._e=n}getCycleId(){return this._cycleId}getError(){return this._e}getCoords(){return this._c}setError(t,e){const n=this._c;return{...n,value:new Pn(n,e,t)}}getShifted(t){const e=t.after;if(!e)return null;const n=E.CoordUtils.sanitizeRange(e);return{...n,value:new Pn(n,this._cycleId,this._e)}}getMerged(t,e,n){}getSplit(t,e){}}class Fe{constructor(t,e){this._c=t,this._o=e}getCoords(){return this._c}getOrientation(){return this._o}getShifted(t){return t.after?{...t.after,value:new Fe(t.after,this._o)}:null}getMerged(t,e,n){const r=this._o;return new Fe(e,r)}getSplit(t,e){const n=this._o;return[new Fe(t[0],n),new Fe(t[1],n)]}getState(){return this._c}}const bh=(l,t)=>{if(!l||l.length===0)return E.CommonUtils.EmptyArray;const e=[],n=t?A.IRange.Orientation.Column:A.IRange.Orientation.Row;for(let r=0;r<l.length;r++){const o=l[r],s=o[0],i=o[1];for(let a=0;a<i.length;a++){const c=i[a],h=c[0],d=c[1].length-1,u={colStart:t?s:h,rowStart:t?h:s,colEnd:t?s:h+d,rowEnd:t?h+d:s,value:new Fe({colStart:t?s:h,rowStart:t?h:s,colEnd:t?s:h+d,rowEnd:t?h+d:s},n)};e.push(u)}}return e},ra=0,vh=1;class Ke{constructor(t,e,n){this.ref=t,this.formula=e;const r=t.colStart,o=t.rowStart;if(n){const s=n,i=s.length;for(let a=0;a<i;a++){const c=[...s[a]];s[a]=c;const h=c.length;for(let d=0;d<h;d++){const u={...c[d]};c[d]=u,u.colIndex=d+r,u.rowIndex=a+o,u.block=this}}this.calcs=s}else{const s=e.getDirectPrecedentsAt(o,r),i=s?.length??0,a=new Array(t.rowEnd-o+1),c=t.colEnd-r+1,h=a.length;for(let d=0;d<h;d++){const u=new Array(c),g=u.length;for(let m=0;m<g;m++)u[m]={block:this,colIndex:m+r,rowIndex:d+o,cycleId:0,markId:0,inDegree:0,dependents:E.CommonUtils.EmptyArray,inputs:i===0?E.CommonUtils.EmptyArray:new Array(i),precedents:i===0?E.CommonUtils.EmptyArray:new Array(i),dynamic:null,cachedValue:void 0,removed:!1,pending:!1,pendingPrecedents:!1,pendingPromise:null,pendingResolved:!1,state:ra,error:void 0};a[d]=u}this.calcs=a}}toJSON(){const t=this.ref;return[sn(t),this.formula.getTextAt(t.rowStart,t.colStart)]}getCoords(){return this.ref}getShifted(t){if(!t.after)return null;const e=E.CoordUtils.sanitizeRange(t.after),n=[...this.calcs],r=new Ke(e,this.formula,n);return{...t.after,value:r}}setReferenceAt(t,e){const n=this.formula.setReferenceAt(t,e),r=[...this.calcs];return new Ke(this.ref,n,r)}getMerged(t,e,n){const r=this.formula,o=t.formula;if(!r.isEquals(o))return;const s=this.calcs,i=t.calcs;let a;if(n===A.IRange.Orientation.Row)a=[...s,...i];else{const c=s.length;a=new Array(c);for(let h=0;h<c;h++)a[h]=[...s[h],...i[h]]}return new Ke(e,r,a)}getSplit(t,e,n){const r=this.formula,o=e===A.IRange.Orientation.Column;let s,i;const a=this.calcs;if(o){const c=a.length;s=new Array(c),i=new Array(c);for(let h=0;h<c;h++){const d=a[h];s[h]=d.slice(0,n),i[h]=d.slice(n)}}else s=a.slice(0,n),i=a.slice(n);return[new Ke(t[0],r,s),new Ke(t[1],r,i)]}copyTo(t,e){const n=this.formula;return new Ke(t,n)}canTile(t,e){return!0}onRemove(t){const e=t.value.calcs,n=e.length;for(let r=0;r<n;r++){const o=e[r],s=o.length;for(let i=0;i<s;i++){const a=o[i];a.pendingPromise&&(a.pendingPromise.cancelled=!0),a.removed=!0}}}}const xh=Object.freeze({break:!0});var Y;(Y||(Y={})).Type={Style:"style",Table:"table",Merge:"merge",Hyperlink:"hyperlink",Comments:"comments",Unlock:"unlock",Contentful:"contentful",Conditional:"conditional",Formula:"formula",Spill:"spill",Continuous:"continuous",Pending:"pending",CalcError:"calcError"};const o0=Object.freeze({[Y.Type.Style]:!1,[Y.Type.Table]:!1,[Y.Type.Merge]:!1,[Y.Type.Hyperlink]:!1,[Y.Type.Comments]:!1,[Y.Type.Unlock]:!1,[Y.Type.Formula]:!1,[Y.Type.Spill]:!1,[Y.Type.Pending]:!1,[Y.Type.CalcError]:!1,[Y.Type.Contentful]:!1,[Y.Type.Conditional]:!1,[Y.Type.Continuous]:!1}),gg=Object.freeze({[Y.Type.Style]:!1,[Y.Type.Table]:!1,[Y.Type.Merge]:!1,[Y.Type.Hyperlink]:!1,[Y.Type.Comments]:!1,[Y.Type.Unlock]:!1,[Y.Type.Formula]:!1,[Y.Type.Spill]:!1,[Y.Type.Pending]:!1,[Y.Type.CalcError]:!1,[Y.Type.Conditional]:!1,[Y.Type.Continuous]:!1}),s0=Object.freeze({[Y.Type.Style]:!1,[Y.Type.Table]:!0,[Y.Type.Merge]:!1,[Y.Type.Hyperlink]:!1,[Y.Type.Comments]:!1,[Y.Type.Unlock]:!1,[Y.Type.Formula]:!1});Object.freeze({[Y.Type.Style]:!1,[Y.Type.Table]:!1,[Y.Type.Hyperlink]:!1,[Y.Type.Comments]:!1,[Y.Type.Unlock]:!1,[Y.Type.Contentful]:!1,[Y.Type.Formula]:!1});const Yo="This sheet is protected. To make a change, unprotect the sheet. You might be requested to enter a password.",i0=(l="update")=>`Unable to ${l}, this sheet is protected. To make a change, unprotect the sheet. You might be requested to enter a password.`,ni="The range is outside of the bounds of the sheet.",Rh="Listener can not be null",Ah="We can't insert items. The sheet is protected.",Th=l=>`We can't create a ${l} that overlaps with another table or merge.`,Mh="Overlapping ranges can not be merged.",cl="We can't insert cells because this would push values off the end of the worksheet. These cells may appear empty but they have some formatting or formulas. Delete enough rows or columns and try again.",Fh="Unable to partially fill over merged cells.",Nh="Unable to sort merged cells unless they are all the same size.",le="Sheet has been closed. No further operations are allowed.",Cr="IteratorContext can only be used during visit.",Oh="When using addresses directly from the sheet do not include the sheet name.",mg=l=>`Unable to return more than ${l} values. To access values in a more scalable solution use 'ICellRange.forEach' or an iterator.`,kh="'setValue' expects a single value; when working with an array use 'setValue'.",Bh="Multiple selection ranges can not be copied.",Dh="Unable to determine source.",Lh="When pasting before or after the cut area both areas must align.",ir=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,Uh=new Set,oa=typeof process=="object"&&process?process:{},fg=(l,t,e,n)=>{typeof oa.emitWarning=="function"?oa.emitWarning(l,t,e,n):console.error(`[${e}] ${t}: ${l}`)};let ri=globalThis.AbortController,zh=globalThis.AbortSignal;if(ri===void 0){zh=class{onabort;_onabort=[];reason;aborted=!1;addEventListener(e,n){this._onabort.push(n)}},ri=class{constructor(){t()}signal=new zh;abort(e){if(!this.signal.aborted){this.signal.reason=e,this.signal.aborted=!0;for(const n of this.signal._onabort)n(e);this.signal.onabort?.(e)}}};let l=oa.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1";const t=()=>{l&&(l=!1,fg("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",t))}}const _n=l=>l&&l===Math.floor(l)&&l>0&&isFinite(l),pg=l=>_n(l)?l<=Math.pow(2,8)?Uint8Array:l<=Math.pow(2,16)?Uint16Array:l<=Math.pow(2,32)?Uint32Array:l<=Number.MAX_SAFE_INTEGER?Us:null:null;class Us extends Array{constructor(t){super(t),this.fill(0)}}class fr{heap;length;static#a=!1;static create(t){const e=pg(t);if(!e)return[];fr.#a=!0;const n=new fr(t,e);return fr.#a=!1,n}constructor(t,e){if(!fr.#a)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new e(t),this.length=0}push(t){this.heap[this.length++]=t}pop(){return this.heap[--this.length]}}class Fa{#a;#d;#f;#R;#p;#F;#N;ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#o;#_;#r;#n;#t;#c;#u;#l;#s;#S;#i;#w;#y;#g;#C;#x;#h;#O;static unsafeExposeInternals(t){return{starts:t.#y,ttls:t.#g,sizes:t.#w,keyMap:t.#r,keyList:t.#n,valList:t.#t,next:t.#c,prev:t.#u,get head(){return t.#l},get tail(){return t.#s},free:t.#S,isBackgroundFetch:e=>t.#e(e),backgroundFetch:(e,n,r,o)=>t.#D(e,n,r,o),moveToTail:e=>t.#M(e),indexes:e=>t.#E(e),rindexes:e=>t.#I(e),isStale:e=>t.#m(e)}}get max(){return this.#a}get maxSize(){return this.#d}get calculatedSize(){return this.#_}get size(){return this.#o}get fetchMethod(){return this.#F}get memoMethod(){return this.#N}get dispose(){return this.#f}get onInsert(){return this.#R}get disposeAfter(){return this.#p}constructor(t){const{max:e=0,ttl:n,ttlResolution:r=1,ttlAutopurge:o,updateAgeOnGet:s,updateAgeOnHas:i,allowStale:a,dispose:c,onInsert:h,disposeAfter:d,noDisposeOnSet:u,noUpdateTTL:g,maxSize:m=0,maxEntrySize:f=0,sizeCalculation:_,fetchMethod:p,memoMethod:S,noDeleteOnFetchRejection:C,noDeleteOnStaleGet:y,allowStaleOnFetchRejection:I,allowStaleOnFetchAbort:w,ignoreFetchAbort:b}=t;if(e!==0&&!_n(e))throw new TypeError("max option must be a nonnegative integer");const x=e?pg(e):Array;if(!x)throw new Error("invalid max value: "+e);if(this.#a=e,this.#d=m,this.maxEntrySize=f||this.#d,this.sizeCalculation=_,this.sizeCalculation){if(!this.#d&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if(typeof this.sizeCalculation!="function")throw new TypeError("sizeCalculation set to non-function")}if(S!==void 0&&typeof S!="function")throw new TypeError("memoMethod must be a function if defined");if(this.#N=S,p!==void 0&&typeof p!="function")throw new TypeError("fetchMethod must be a function if specified");if(this.#F=p,this.#x=!!p,this.#r=new Map,this.#n=new Array(e).fill(void 0),this.#t=new Array(e).fill(void 0),this.#c=new x(e),this.#u=new x(e),this.#l=0,this.#s=0,this.#S=fr.create(e),this.#o=0,this.#_=0,typeof c=="function"&&(this.#f=c),typeof h=="function"&&(this.#R=h),typeof d=="function"?(this.#p=d,this.#i=[]):(this.#p=void 0,this.#i=void 0),this.#C=!!this.#f,this.#O=!!this.#R,this.#h=!!this.#p,this.noDisposeOnSet=!!u,this.noUpdateTTL=!!g,this.noDeleteOnFetchRejection=!!C,this.allowStaleOnFetchRejection=!!I,this.allowStaleOnFetchAbort=!!w,this.ignoreFetchAbort=!!b,this.maxEntrySize!==0){if(this.#d!==0&&!_n(this.#d))throw new TypeError("maxSize must be a positive integer if specified");if(!_n(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.#j()}if(this.allowStale=!!a,this.noDeleteOnStaleGet=!!y,this.updateAgeOnGet=!!s,this.updateAgeOnHas=!!i,this.ttlResolution=_n(r)||r===0?r:1,this.ttlAutopurge=!!o,this.ttl=n||0,this.ttl){if(!_n(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.#L()}if(this.#a===0&&this.ttl===0&&this.#d===0)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#a&&!this.#d){const R="LRU_CACHE_UNBOUNDED";(v=>!Uh.has(v))(R)&&(Uh.add(R),fg("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",R,Fa))}}getRemainingTTL(t){return this.#r.has(t)?1/0:0}#L(){const t=new Us(this.#a),e=new Us(this.#a);this.#g=t,this.#y=e,this.#U=(o,s,i=ir.now())=>{if(e[o]=s!==0?i:0,t[o]=s,s!==0&&this.ttlAutopurge){const a=setTimeout(()=>{this.#m(o)&&this.#b(this.#n[o],"expire")},s+1);a.unref&&a.unref()}},this.#A=o=>{e[o]=t[o]!==0?ir.now():0},this.#v=(o,s)=>{if(t[s]){const i=t[s],a=e[s];if(!i||!a)return;o.ttl=i,o.start=a,o.now=n||r();const c=o.now-a;o.remainingTTL=i-c}};let n=0;const r=()=>{const o=ir.now();if(this.ttlResolution>0){n=o;const s=setTimeout(()=>n=0,this.ttlResolution);s.unref&&s.unref()}return o};this.getRemainingTTL=o=>{const s=this.#r.get(o);if(s===void 0)return 0;const i=t[s],a=e[s];return!i||!a?1/0:i-((n||r())-a)},this.#m=o=>{const s=e[o],i=t[o];return!!i&&!!s&&(n||r())-s>i}}#A=()=>{};#v=()=>{};#U=()=>{};#m=()=>!1;#j(){const t=new Us(this.#a);this.#_=0,this.#w=t,this.#T=e=>{this.#_-=t[e],t[e]=0},this.#z=(e,n,r,o)=>{if(this.#e(n))return 0;if(!_n(r)){if(!o)throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");if(typeof o!="function")throw new TypeError("sizeCalculation must be a function");if(r=o(n,e),!_n(r))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}return r},this.#k=(e,n,r)=>{if(t[e]=n,this.#d){const o=this.#d-t[e];for(;this.#_>o;)this.#B(!0)}this.#_+=t[e],r&&(r.entrySize=n,r.totalCalculatedSize=this.#_)}}#T=t=>{};#k=(t,e,n)=>{};#z=(t,e,n,r)=>{if(n||r)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0};*#E({allowStale:t=this.allowStale}={}){if(this.#o)for(let e=this.#s;this.#P(e)&&(!t&&this.#m(e)||(yield e),e!==this.#l);)e=this.#u[e]}*#I({allowStale:t=this.allowStale}={}){if(this.#o)for(let e=this.#l;this.#P(e)&&(!t&&this.#m(e)||(yield e),e!==this.#s);)e=this.#c[e]}#P(t){return t!==void 0&&this.#r.get(this.#n[t])===t}*entries(){for(const t of this.#E())this.#t[t]===void 0||this.#n[t]===void 0||this.#e(this.#t[t])||(yield[this.#n[t],this.#t[t]])}*rentries(){for(const t of this.#I())this.#t[t]===void 0||this.#n[t]===void 0||this.#e(this.#t[t])||(yield[this.#n[t],this.#t[t]])}*keys(){for(const t of this.#E()){const e=this.#n[t];e===void 0||this.#e(this.#t[t])||(yield e)}}*rkeys(){for(const t of this.#I()){const e=this.#n[t];e===void 0||this.#e(this.#t[t])||(yield e)}}*values(){for(const t of this.#E())this.#t[t]===void 0||this.#e(this.#t[t])||(yield this.#t[t])}*rvalues(){for(const t of this.#I())this.#t[t]===void 0||this.#e(this.#t[t])||(yield this.#t[t])}[Symbol.iterator](){return this.entries()}[Symbol.toStringTag]="LRUCache";find(t,e={}){for(const n of this.#E()){const r=this.#t[n],o=this.#e(r)?r.__staleWhileFetching:r;if(o!==void 0&&t(o,this.#n[n],this))return this.get(this.#n[n],e)}}forEach(t,e=this){for(const n of this.#E()){const r=this.#t[n],o=this.#e(r)?r.__staleWhileFetching:r;o!==void 0&&t.call(e,o,this.#n[n],this)}}rforEach(t,e=this){for(const n of this.#I()){const r=this.#t[n],o=this.#e(r)?r.__staleWhileFetching:r;o!==void 0&&t.call(e,o,this.#n[n],this)}}purgeStale(){let t=!1;for(const e of this.#I({allowStale:!0}))this.#m(e)&&(this.#b(this.#n[e],"expire"),t=!0);return t}info(t){const e=this.#r.get(t);if(e===void 0)return;const n=this.#t[e],r=this.#e(n)?n.__staleWhileFetching:n;if(r===void 0)return;const o={value:r};if(this.#g&&this.#y){const s=this.#g[e],i=this.#y[e];if(s&&i){const a=s-(ir.now()-i);o.ttl=a,o.start=Date.now()}}return this.#w&&(o.size=this.#w[e]),o}dump(){const t=[];for(const e of this.#E({allowStale:!0})){const n=this.#n[e],r=this.#t[e],o=this.#e(r)?r.__staleWhileFetching:r;if(o===void 0||n===void 0)continue;const s={value:o};if(this.#g&&this.#y){s.ttl=this.#g[e];const i=ir.now()-this.#y[e];s.start=Math.floor(Date.now()-i)}this.#w&&(s.size=this.#w[e]),t.unshift([n,s])}return t}load(t){this.clear();for(const[e,n]of t){if(n.start){const r=Date.now()-n.start;n.start=ir.now()-r}this.set(e,n.value,n)}}set(t,e,n={}){if(e===void 0)return this.delete(t),this;const{ttl:r=this.ttl,start:o,noDisposeOnSet:s=this.noDisposeOnSet,sizeCalculation:i=this.sizeCalculation,status:a}=n;let{noUpdateTTL:c=this.noUpdateTTL}=n;const h=this.#z(t,e,n.size||0,i);if(this.maxEntrySize&&h>this.maxEntrySize)return a&&(a.set="miss",a.maxEntrySizeExceeded=!0),this.#b(t,"set"),this;let d=this.#o===0?void 0:this.#r.get(t);if(d===void 0)d=this.#o===0?this.#s:this.#S.length!==0?this.#S.pop():this.#o===this.#a?this.#B(!1):this.#o,this.#n[d]=t,this.#t[d]=e,this.#r.set(t,d),this.#c[this.#s]=d,this.#u[d]=this.#s,this.#s=d,this.#o++,this.#k(d,h,a),a&&(a.set="add"),c=!1,this.#O&&this.#R?.(e,t,"add");else{this.#M(d);const u=this.#t[d];if(e!==u){if(this.#x&&this.#e(u)){u.__abortController.abort(new Error("replaced"));const{__staleWhileFetching:g}=u;g===void 0||s||(this.#C&&this.#f?.(g,t,"set"),this.#h&&this.#i?.push([g,t,"set"]))}else s||(this.#C&&this.#f?.(u,t,"set"),this.#h&&this.#i?.push([u,t,"set"]));if(this.#T(d),this.#k(d,h,a),this.#t[d]=e,a){a.set="replace";const g=u&&this.#e(u)?u.__staleWhileFetching:u;g!==void 0&&(a.oldValue=g)}}else a&&(a.set="update");this.#O&&this.onInsert?.(e,t,e===u?"update":"replace")}if(r===0||this.#g||this.#L(),this.#g&&(c||this.#U(d,r,o),a&&this.#v(a,d)),!s&&this.#h&&this.#i){const u=this.#i;let g;for(;g=u?.shift();)this.#p?.(...g)}return this}pop(){try{for(;this.#o;){const t=this.#t[this.#l];if(this.#B(!0),this.#e(t)){if(t.__staleWhileFetching)return t.__staleWhileFetching}else if(t!==void 0)return t}}finally{if(this.#h&&this.#i){const t=this.#i;let e;for(;e=t?.shift();)this.#p?.(...e)}}}#B(t){const e=this.#l,n=this.#n[e],r=this.#t[e];return this.#x&&this.#e(r)?r.__abortController.abort(new Error("evicted")):(this.#C||this.#h)&&(this.#C&&this.#f?.(r,n,"evict"),this.#h&&this.#i?.push([r,n,"evict"])),this.#T(e),t&&(this.#n[e]=void 0,this.#t[e]=void 0,this.#S.push(e)),this.#o===1?(this.#l=this.#s=0,this.#S.length=0):this.#l=this.#c[e],this.#r.delete(n),this.#o--,e}has(t,e={}){const{updateAgeOnHas:n=this.updateAgeOnHas,status:r}=e,o=this.#r.get(t);if(o!==void 0){const s=this.#t[o];if(this.#e(s)&&s.__staleWhileFetching===void 0)return!1;if(!this.#m(o))return n&&this.#A(o),r&&(r.has="hit",this.#v(r,o)),!0;r&&(r.has="stale",this.#v(r,o))}else r&&(r.has="miss");return!1}peek(t,e={}){const{allowStale:n=this.allowStale}=e,r=this.#r.get(t);if(r===void 0||!n&&this.#m(r))return;const o=this.#t[r];return this.#e(o)?o.__staleWhileFetching:o}#D(t,e,n,r){const o=e===void 0?void 0:this.#t[e];if(this.#e(o))return o;const s=new ri,{signal:i}=n;i?.addEventListener("abort",()=>s.abort(i.reason),{signal:s.signal});const a={signal:s.signal,options:n,context:r},c=(g,m=!1)=>{const{aborted:f}=s.signal,_=n.ignoreFetchAbort&&g!==void 0;if(n.status&&(f&&!m?(n.status.fetchAborted=!0,n.status.fetchError=s.signal.reason,_&&(n.status.fetchAbortIgnored=!0)):n.status.fetchResolved=!0),f&&!_&&!m)return h(s.signal.reason);const p=d;return this.#t[e]===d&&(g===void 0?p.__staleWhileFetching?this.#t[e]=p.__staleWhileFetching:this.#b(t,"fetch"):(n.status&&(n.status.fetchUpdated=!0),this.set(t,g,a.options))),g},h=g=>{const{aborted:m}=s.signal,f=m&&n.allowStaleOnFetchAbort,_=f||n.allowStaleOnFetchRejection,p=_||n.noDeleteOnFetchRejection,S=d;if(this.#t[e]===d&&(!p||S.__staleWhileFetching===void 0?this.#b(t,"fetch"):f||(this.#t[e]=S.__staleWhileFetching)),_)return n.status&&S.__staleWhileFetching!==void 0&&(n.status.returnedStale=!0),S.__staleWhileFetching;if(S.__returned===S)throw g};n.status&&(n.status.fetchDispatched=!0);const d=new Promise((g,m)=>{const f=this.#F?.(t,o,a);f&&f instanceof Promise&&f.then(_=>g(_===void 0?void 0:_),m),s.signal.addEventListener("abort",()=>{n.ignoreFetchAbort&&!n.allowStaleOnFetchAbort||(g(void 0),n.allowStaleOnFetchAbort&&(g=_=>c(_,!0)))})}).then(c,g=>(n.status&&(n.status.fetchRejected=!0,n.status.fetchError=g),h(g))),u=Object.assign(d,{__abortController:s,__staleWhileFetching:o,__returned:void 0});return e===void 0?(this.set(t,u,{...a.options,status:void 0}),e=this.#r.get(t)):this.#t[e]=u,u}#e(t){if(!this.#x)return!1;const e=t;return!!e&&e instanceof Promise&&e.hasOwnProperty("__staleWhileFetching")&&e.__abortController instanceof ri}async fetch(t,e={}){const{allowStale:n=this.allowStale,updateAgeOnGet:r=this.updateAgeOnGet,noDeleteOnStaleGet:o=this.noDeleteOnStaleGet,ttl:s=this.ttl,noDisposeOnSet:i=this.noDisposeOnSet,size:a=0,sizeCalculation:c=this.sizeCalculation,noUpdateTTL:h=this.noUpdateTTL,noDeleteOnFetchRejection:d=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:u=this.allowStaleOnFetchRejection,ignoreFetchAbort:g=this.ignoreFetchAbort,allowStaleOnFetchAbort:m=this.allowStaleOnFetchAbort,context:f,forceRefresh:_=!1,status:p,signal:S}=e;if(!this.#x)return p&&(p.fetch="get"),this.get(t,{allowStale:n,updateAgeOnGet:r,noDeleteOnStaleGet:o,status:p});const C={allowStale:n,updateAgeOnGet:r,noDeleteOnStaleGet:o,ttl:s,noDisposeOnSet:i,size:a,sizeCalculation:c,noUpdateTTL:h,noDeleteOnFetchRejection:d,allowStaleOnFetchRejection:u,allowStaleOnFetchAbort:m,ignoreFetchAbort:g,status:p,signal:S};let y=this.#r.get(t);if(y===void 0){p&&(p.fetch="miss");const I=this.#D(t,y,C,f);return I.__returned=I}{const I=this.#t[y];if(this.#e(I)){const R=n&&I.__staleWhileFetching!==void 0;return p&&(p.fetch="inflight",R&&(p.returnedStale=!0)),R?I.__staleWhileFetching:I.__returned=I}const w=this.#m(y);if(!_&&!w)return p&&(p.fetch="hit"),this.#M(y),r&&this.#A(y),p&&this.#v(p,y),I;const b=this.#D(t,y,C,f),x=b.__staleWhileFetching!==void 0&&n;return p&&(p.fetch=w?"stale":"refresh",x&&w&&(p.returnedStale=!0)),x?b.__staleWhileFetching:b.__returned=b}}async forceFetch(t,e={}){const n=await this.fetch(t,e);if(n===void 0)throw new Error("fetch() returned undefined");return n}memo(t,e={}){const n=this.#N;if(!n)throw new Error("no memoMethod provided to constructor");const{context:r,forceRefresh:o,...s}=e,i=this.get(t,s);if(!o&&i!==void 0)return i;const a=n(t,i,{options:s,context:r});return this.set(t,a,s),a}get(t,e={}){const{allowStale:n=this.allowStale,updateAgeOnGet:r=this.updateAgeOnGet,noDeleteOnStaleGet:o=this.noDeleteOnStaleGet,status:s}=e,i=this.#r.get(t);if(i!==void 0){const a=this.#t[i],c=this.#e(a);return s&&this.#v(s,i),this.#m(i)?(s&&(s.get="stale"),c?(s&&n&&a.__staleWhileFetching!==void 0&&(s.returnedStale=!0),n?a.__staleWhileFetching:void 0):(o||this.#b(t,"expire"),s&&n&&(s.returnedStale=!0),n?a:void 0)):(s&&(s.get="hit"),c?a.__staleWhileFetching:(this.#M(i),r&&this.#A(i),a))}s&&(s.get="miss")}#H(t,e){this.#u[e]=t,this.#c[t]=e}#M(t){t!==this.#s&&(t===this.#l?this.#l=this.#c[t]:this.#H(this.#u[t],this.#c[t]),this.#H(this.#s,t),this.#s=t)}delete(t){return this.#b(t,"delete")}#b(t,e){let n=!1;if(this.#o!==0){const r=this.#r.get(t);if(r!==void 0)if(n=!0,this.#o===1)this.#W(e);else{this.#T(r);const o=this.#t[r];if(this.#e(o)?o.__abortController.abort(new Error("deleted")):(this.#C||this.#h)&&(this.#C&&this.#f?.(o,t,e),this.#h&&this.#i?.push([o,t,e])),this.#r.delete(t),this.#n[r]=void 0,this.#t[r]=void 0,r===this.#s)this.#s=this.#u[r];else if(r===this.#l)this.#l=this.#c[r];else{const s=this.#u[r];this.#c[s]=this.#c[r];const i=this.#c[r];this.#u[i]=this.#u[r]}this.#o--,this.#S.push(r)}}if(this.#h&&this.#i?.length){const r=this.#i;let o;for(;o=r?.shift();)this.#p?.(...o)}return n}clear(){return this.#W("delete")}#W(t){for(const e of this.#I({allowStale:!0})){const n=this.#t[e];if(this.#e(n))n.__abortController.abort(new Error("deleted"));else{const r=this.#n[e];this.#C&&this.#f?.(n,r,t),this.#h&&this.#i?.push([n,r,t])}}if(this.#r.clear(),this.#t.fill(void 0),this.#n.fill(void 0),this.#g&&this.#y&&(this.#g.fill(0),this.#y.fill(0)),this.#w&&this.#w.fill(0),this.#l=0,this.#s=0,this.#S.length=0,this.#_=0,this.#o=0,this.#h&&this.#i){const e=this.#i;let n;for(;n=e?.shift();)this.#p?.(...n)}}}var Ph;exports.ICell=void 0,(Ph=exports.ICell||(exports.ICell={})).CalcStatus={Ready:"ready",Stale:"stale",Pending:"pending",Streaming:"streaming"},Ph.Content={Values:"values",Formats:"formats",Formulas:"formula",Hyperlinks:"hyperlinks",Tables:"tables",Notes:"notes",Comments:"comments",Warnings:"warnings",Errors:"errors",Merges:"merges"};class l0{constructor(t,e,n){if(!n)throw new E.NullNotAllowedError;if(typeof n=="string"&&(n={address:n}),typeof n.address!="string")throw new Error("Invalid hyperlink");this._t=t,this._r=e,this._p=n}open(t,e){return this._r(this.getAddress(),null,t??this.getTarget(),e)}getTarget(){let t=this._p.target;return t||(this._p.address.startsWith("#")?"_self":"_blank")}getDisplayText(){return this._t()??this.getAddress()}getAddress(){return this._p.address??""}getTooltip(){return this._p.tooltip??null}get isIHyperlink(){return!0}}function Hh(l){return!/^(-?\d|--)/.test(l)}function Wh(l){const t=[];let e="",n="",r=7;for(let o,s=0;o=l.charAt(s);s++)if(/[a-zA-Z\d\xa0-\uffff_-]/.test(o)&&r===7)e+=o;else if(o==="\\"&&r===7)r=6;else if(o===" "&&r===7){if(e!==""){if(!Hh(e))return null;t.push(e),e=""}}else if(r===6)/[0-9a-f]/i.test(o)?(n+=o,r=8):(e+=o,r=7);else{if(r!==8)return null;/[0-9a-f]/i.test(o)&&n.length<6?n+=o:(e+=String.fromCodePoint(parseInt(n,16)),e+=o,n="",r=7)}if(e!==""){if(!Hh(e))return null;t.push(e)}return t.join(" ")}function jh(l,t){let e=t,n="";const r={"font-family":[]};for(let o,s=0;o=l.charAt(s);s+=1)if(e!==4||o!=='"'&&o!=="'")if(e===3&&o===",")e=4,n="";else if(e===4&&o===","){const i=Wh(n);i&&r["font-family"].push(i),n=""}else if(e===5&&o===" ")/^(?:\+|-)?(?:[0-9]*\.)?[0-9]+(?:deg|grad|rad|turn)$/.test(n)?(r["font-style"]+=" "+n,n=""):s-=1,e=1;else if(e!==1||o!==" "&&o!=="/")e===2&&o===" "?(/^(?:\+|-)?([0-9]*\.)?[0-9]+(?:em|ex|ch|rem|vh|vw|vmin|vmax|px|mm|cm|in|pt|pc|%)?$/.test(n)&&(r["line-height"]=n),e=4,n=""):n+=o;else{if(/^(?:(?:xx|x)-large|(?:xx|s)-small|small|large|medium)$/.test(n)||/^(?:larg|small)er$/.test(n)||/^(?:\+|-)?(?:[0-9]*\.)?[0-9]+(?:em|ex|ch|rem|vh|vw|vmin|vmax|px|mm|cm|in|pt|pc|%)$/.test(n))e=o==="/"?2:4,r["font-size"]=n;else if(/^italic$/.test(n))r["font-style"]=n;else if(/^oblique$/.test(n))r["font-style"]=n,e=5;else if(/^small-caps$/.test(n))r["font-variant"]=n;else if(/^(?:bold(?:er)?|lighter|normal)$/.test(n))r["font-weight"]=n;else if(/^[+-]?(?:[0-9]*\.)?[0-9]+(?:e[+-]?(?:0|[1-9][0-9]*))?$/.test(n)){const i=parseFloat(n);i>=1&&i<=1e3&&(r["font-weight"]=n)}else/^(?:(?:ultra|extra|semi)-)?(?:condensed|expanded)$/.test(n)&&(r["font-stretch"]=n);n=""}else{let i=s+1;do if(i=l.indexOf(o,i)+1,!i)return null;while(l.charAt(i-2)==="\\");r["font-family"].push(l.slice(s+1,i-1).replace(/\\('|")/g,"$1")),s=i-1,e=3,n=""}if(e===3&&!/^\s*$/.test(n))return null;if(e===4){const o=Wh(n);o&&r["font-family"].push(o)}return r}const zs=l=>{if(typeof l!="string")return null;let t=function(o){const s=jh(o,4);return s!==null?s["font-family"]:null}(l);Array.isArray(t)&&t.length===0&&(t=null),t=t?{"font-family":t}:function(o){const s=jh(o,1);return s!==null&&s["font-size"]&&s["font-family"].length?s:null}(l);let e=null,n=null,r=null;if(t){let o=t["font-family"];const s=o.shift();s&&(e=s),o.length>0&&(n=o),t["font-size"]!==void 0&&(r=t["font-size"])}return{family:e,fallbacks:n,size:r}},Ue=(l,t=!1)=>l?.toHex(t)?.toString(!1).toLowerCase()??null,Vh=l=>l==null?null:E.CommonUtils.roundAccurately(l,2)+"pt",_g=(l,t)=>{let e="";const n=l&&l!==exports.IFont.UnderlineStyle.None;return t&&(e+="line-through"),n&&t&&(e+=" "),n&&(e+="underline",l!==!0&&l!==exports.IFont.UnderlineStyle.Single&&l!==exports.IFont.UnderlineStyle.SingleAccounting||(e+=" solid"),l!==exports.IFont.UnderlineStyle.Double&&l!==exports.IFont.UnderlineStyle.DoubleAccounting||(e+=" double")),e},a0=Object.freeze({underline:exports.IFont.UnderlineStyle.None,strike:!1}),Sg=l=>l?(l=l.toLowerCase())==="single"?exports.IFont.UnderlineStyle.Single:l==="double"?exports.IFont.UnderlineStyle.Double:l==="single-accounting"||l==="singleaccounting"?exports.IFont.UnderlineStyle.SingleAccounting:l==="double-accounting"||l==="doubleaccounting"?exports.IFont.UnderlineStyle.DoubleAccounting:exports.IFont.UnderlineStyle.None:exports.IFont.UnderlineStyle.None,$h=l=>l?l.toLowerCase():null,Gh=l=>l?l===exports.ITextFrame.Overflow.Visible||l===exports.ITextFrame.Overflow.Clip||l===exports.ITextFrame.Overflow.Shrink?"nowrap":l===exports.ITextFrame.Overflow.Wrap?"normal":void 0:null,oi=(l,t)=>{let e="";if(l&&(l.includes(" ")&&(l='"'+l+'"'),e=l),t)for(let n=0;n<t.length;n++)e.length>0&&(e+=", "),e+=t[n];return e},Jh=l=>{let t="",e=!1,n="";for(let r=0;r<l.length;r++){const o=l.charAt(r);e&&o!=="]"&&o!=='"'?t+=o:o==='"'?(t+="\\0022",e=!e):["[","]",",","#",".","@","/",":",";","-"," "].includes(o)?(t+="\\"+o,o==="["?e=!0:o==="]"&&(e=!1)):["(",")"].includes(o)?t+=n==="_"?"\\"+o:"\\\\\\"+o:["$"].includes(o)?t+="\\0022"+o+"\\0022":t+=o,n=o}return'"'+t+'"'},c0="Thin",h0="Hairline",d0="Extra Light",u0="Ultra Light",g0="Light",qh="Normal",m0="Regular",f0="Medium",p0="Semi Bold",_0="Demi Bold",S0="Bold",w0="Extra Bold",y0="Ultra Bold",C0="Black",E0="Heavy",I0="Extra Black",b0="Ultra Black",v0="lighter",x0="normal",R0="bold",A0="bolder",At=new Map;At.set(E.CommonUtils.textToKey(c0),100),At.set(E.CommonUtils.textToKey(h0),100),At.set(E.CommonUtils.textToKey(d0),200),At.set(E.CommonUtils.textToKey(u0),200),At.set(E.CommonUtils.textToKey(g0),300),At.set(E.CommonUtils.textToKey(qh),400),At.set(E.CommonUtils.textToKey(m0),400),At.set(E.CommonUtils.textToKey(f0),500),At.set(E.CommonUtils.textToKey(p0),600),At.set(E.CommonUtils.textToKey(_0),600),At.set(E.CommonUtils.textToKey(qh),400),At.set(E.CommonUtils.textToKey(S0),700),At.set(E.CommonUtils.textToKey(w0),800),At.set(E.CommonUtils.textToKey(y0),800),At.set(E.CommonUtils.textToKey(C0),900),At.set(E.CommonUtils.textToKey(E0),900),At.set(E.CommonUtils.textToKey(I0),950),At.set(E.CommonUtils.textToKey(b0),950),At.set(E.CommonUtils.textToKey(v0),100),At.set(E.CommonUtils.textToKey(x0),400),At.set(E.CommonUtils.textToKey(R0),700),At.set(E.CommonUtils.textToKey(A0),700);const T0="xx-small",M0="x-small",F0="small",N0="medium",O0="large",k0="x-large",B0="xx-large",D0="xxx-large",L0="smaller",U0="larger",z0="math",P0=new RegExp("^[0-9]*[.]?[0-9]+$","g"),Se=new Map;Se.set(E.CommonUtils.textToKey(T0),l=>.4*l),Se.set(E.CommonUtils.textToKey(M0),l=>.5*l),Se.set(E.CommonUtils.textToKey(F0),l=>.6*l),Se.set(E.CommonUtils.textToKey(N0),l=>l),Se.set(E.CommonUtils.textToKey(O0),l=>1.1*l),Se.set(E.CommonUtils.textToKey(k0),l=>1.25*l),Se.set(E.CommonUtils.textToKey(B0),l=>1.5*l),Se.set(E.CommonUtils.textToKey(D0),l=>2*l),Se.set(E.CommonUtils.textToKey(L0),l=>.9*l),Se.set(E.CommonUtils.textToKey(U0),l=>1.1*l),Se.set(E.CommonUtils.textToKey(z0),l=>l);const Er=(l,t=11,e="pt")=>{if(!l)return null;let n=t;l=l.trim().toLowerCase();const r=e==="pt"?exports.IFont.getDeviceScale():1,o=e==="pt"?1:exports.IFont.getDeviceScale();if(P0.test(l)){const s=parseFloat(l);isNaN(s)||(l=s+e)}if(l.endsWith("pt"))n=parseFloat(l.substring(0,l.length-2).trim())*o;else if(l.endsWith("px"))n=parseFloat(l.substring(0,l.length-2).trim())/r;else if(l.endsWith("em"))n=parseFloat(l.substring(0,l.length-2).trim())*t;else if(l.endsWith("rem"))n=parseFloat(l.substring(0,l.length-3).trim())*t;else if(l.endsWith("%"))n=parseFloat(l.substring(0,l.length-1).trim())/100*t;else if(typeof l=="string"){const s=E.CommonUtils.textToKey(l),i=Se.get(s);if(i)return i(t)}return isNaN(n)?null:n},Nt=new Map;Nt.set(exports.IFill.BuiltInSheetPattern.None,{description:"None",cssKey:"none"}),Nt.set(exports.IFill.BuiltInSheetPattern.Solid,{description:"Solid",cssKey:"solid"}),Nt.set(exports.IFill.BuiltInSheetPattern.DarkGray,{description:"75% gray",cssKey:"gray-75"}),Nt.set(exports.IFill.BuiltInSheetPattern.MediumGray,{description:"50% gray",cssKey:"gray-50"}),Nt.set(exports.IFill.BuiltInSheetPattern.LightGray,{description:"25% gray",cssKey:"gray-25"}),Nt.set(exports.IFill.BuiltInSheetPattern.Gray125,{description:"12.5% Gray",cssKey:"gray-125"}),Nt.set(exports.IFill.BuiltInSheetPattern.Gray0625,{description:"6.25% Gray",cssKey:"gray-0625"}),Nt.set(exports.IFill.BuiltInSheetPattern.DarkHorizontal,{description:"Horizontal Strip",cssKey:"horz-stripe"}),Nt.set(exports.IFill.BuiltInSheetPattern.DarkVertical,{description:"Vertical Strip",cssKey:"vert-stripe"}),Nt.set(exports.IFill.BuiltInSheetPattern.DarkDown,{description:"Reverse Diagonal Stripe",cssKey:"reverse-diag-stripe"}),Nt.set(exports.IFill.BuiltInSheetPattern.DarkUp,{description:"Diagonal Strip",cssKey:"diag-stripe"}),Nt.set(exports.IFill.BuiltInSheetPattern.DarkGrid,{description:"Diagonal Crosshatch",cssKey:"diag-cross"}),Nt.set(exports.IFill.BuiltInSheetPattern.DarkTrellis,{description:"Thick Diagonal Crosshatch",cssKey:"thick-diag-cross"}),Nt.set(exports.IFill.BuiltInSheetPattern.LightHorizontal,{description:"Thin Horizontal Stripe",cssKey:"thin-horz-stripe"}),Nt.set(exports.IFill.BuiltInSheetPattern.LightVertical,{description:"Thin Vertical Stripe",cssKey:"thin-vert-stripe"}),Nt.set(exports.IFill.BuiltInSheetPattern.LightDown,{description:"Thin Reverse Diagonal Stripe",cssKey:"thin-reverse-diag-stripe"}),Nt.set(exports.IFill.BuiltInSheetPattern.LightUp,{description:"Thin Diagonal Stripe",cssKey:"thin-diag-stripe"}),Nt.set(exports.IFill.BuiltInSheetPattern.LightGrid,{description:"Thin Horizontal Cross",cssKey:"thin-horz-cross"}),Nt.set(exports.IFill.BuiltInSheetPattern.LightTrellis,{description:"Thin Diagonal Cross",cssKey:"thin-diag-cross"});let Ps="";const wg=new Map;Nt.forEach((l,t)=>{Ps.length>0&&(Ps+="|"),Ps+="\\b"+l.cssKey+"\\b",wg.set(l.cssKey,t)});const H0=new RegExp(`(\\s*(?:${Ps}))`,"g"),W0=l=>{if(!l)return null;let t=l.toLowerCase();t=t.replace(/;/,"");let e=t.match(H0);if(!e)return null;let n=null;e&&e.length>0&&(n=(o=>{if(!o)return null;let s=t.indexOf(o);return t=t.substring(0,s)+t.substring(s+o.length,t.length),o.trim()})(e[0])),t=t.trim();const r=t?t.trim():null;return!n&&!r?null:{patternType:wg.get(n??"solid"),foreground:r??null}},yg=(l,t=!1,e=null)=>{if(!l||!l.getStops()||l.getStops().length<1)return null;if(l.getStops().length===1)return Ue(l.getStops()[0].getColor(),t);let n="";for(let o=0;o<l.getStops().length;o++){const s=l.getStops()[o];n+=Ue(s.getColor(),t)+" "+100*(s.getOffset()??o*(l.getStops().length-1))+"%",o<l.getStops().length-1&&(n+=", ")}let r=l.getAngle()??0;if(l.getGradientType()===exports.IFill.GradientType.Path){const o=Ue(l.getStops()[0]?.getColor(),t),s=Ue((l.getStops()[1]??l.getStops()[0])?.getColor(),t),i=l.getFillTo()??{left:0,top:0,right:0,bottom:0},a=-1;let c=`${100-a}% ${100-a}%`;if(r=315,i.left===1&&i.right===1&&i.right===1&&i.bottom===1)r=135,c=`${a}% ${a}%`;else if(i.top!==0&&i.bottom!==0&&i.left===0&&i.right===0)r=225,c=`${100-a}% ${a}%`;else if(i.left===1&&i.right!==0&&i.top===0&&i.bottom===0)r=45,c=`${a}% ${100-a}%`;else if(i.left!==0&&i.right!==0&&i.top!==0&&i.bottom!==0)return`radial-gradient(${n})`;const h=70;return`conic-gradient(from ${r}deg at ${c}, ${o} 0deg, ${s} ${h/2}deg,${s} ${360-h/2}deg, ${o} 360deg)`}return`linear-gradient(${r}deg, ${n})`},te=new Map;te.set(exports.IBorder.StrokeStyle.None,{size:null,cssKey:"none"}),te.set(exports.IBorder.StrokeStyle.DashDot,{size:.5,cssKey:"dot-dash"}),te.set(exports.IBorder.StrokeStyle.DashDotDot,{size:.5,cssKey:"dot-dot-dash"}),te.set(exports.IBorder.StrokeStyle.Dashed,{size:.5,cssKey:"dashed"}),te.set(exports.IBorder.StrokeStyle.MediumDashed,{size:1,cssKey:"dashed"}),te.set(exports.IBorder.StrokeStyle.Dotted,{size:.5,cssKey:"dotted"}),te.set(exports.IBorder.StrokeStyle.MediumDashDot,{size:1,cssKey:"dot-dash"}),te.set(exports.IBorder.StrokeStyle.MediumDashDotDot,{size:1,cssKey:"dot-dot-dash"}),te.set(exports.IBorder.StrokeStyle.Hair,{size:.5,cssKey:"hairline"}),te.set(exports.IBorder.StrokeStyle.Thin,{size:.5,cssKey:"solid"}),te.set(exports.IBorder.StrokeStyle.Thick,{size:1.5,cssKey:"solid"}),te.set(exports.IBorder.StrokeStyle.Medium,{size:1,cssKey:"solid"}),te.set(exports.IBorder.StrokeStyle.Double,{size:2,cssKey:"double"}),te.set(exports.IBorder.StrokeStyle.SlantDashDot,{size:1,cssKey:"dot-dash-slanted"});const kn=l=>{if(!l)return"none";const t=te.get(l.getStyle());if(!t)return null;if(t.cssKey==="none")return t.cssKey;let e=((n,r=!1)=>n?.toRGBA(r).toString(!1)??null)(l?.getColor());return e=e?" "+e:"",`${t.size!==null?`${t.size}pt `:""}${t.cssKey}${e}`};let si=[];const Kh=new Set,sa=new Map,_o=(l,t)=>{let e=l.size!==null?`${l.size.toString()} ${l.cssKey}`:l.cssKey;sa.set(e,t),Kh.has(l.cssKey)||(si.push(l.cssKey),Kh.add(l.cssKey))};te.forEach(_o);const hl=Object.keys(exports.IBorder.StrokeStyle);for(let l=0;l<hl.length;l++)_o({size:null,cssKey:hl[l].toLowerCase()},exports.IBorder.StrokeStyle[hl[l]]);_o({size:null,cssKey:"double"},exports.IBorder.StrokeStyle.Double),_o({size:null,cssKey:"solid"},exports.IBorder.StrokeStyle.Medium),_o({size:null,cssKey:"hidden"},exports.IBorder.StrokeStyle.None),si.sort((l,t)=>t.length-l.length);let Hs="";for(let l=0;l<si.length;l++)Hs.length>0&&(Hs+="|"),Hs+="\\b"+si[l]+"\\b";const j0=new RegExp(`(\\s*(?:${Hs}))`,"g"),V0=new RegExp("(\\s*[0-9]*[.]?[0-9]+(?:pt|px){0,1})","g"),Cg=l=>{if(!l)return null;let t=l.toLowerCase(),e=t.match(j0);if(!e)return null;const n=c=>{if(!c)return null;let h=t.indexOf(c);return t=t.substring(0,h)+t.substring(h+c.length,t.length).trim(),c.trim()};let r=null;if(e&&e.length>0&&(r=n(e[0])),!r)return null;let o=null;if(e=t.match(V0),e&&e.length>0){let c=n(e[0]);o=parseFloat(c.substring(0,c.length-2))}t=t.trim();const s=t?t.trim():null;let i=o===null?r:`${o.toString()} ${r}`,a=sa.get(i);return a||(a=sa.get(r)),a?{color:s,style:a}:null},$0="start",G0="end",J0="left",q0="right",K0="center",X0="justify",Y0="justify-all",Q0="baseline",Z0="top",t_="middle",e_="bottom",n_="sub",r_="text-top",o_="justify",s_="distributed",Sn=new Map;Sn.set(E.CommonUtils.textToKey($0),exports.ITextFrame.HorizontalAlignment.Left),Sn.set(E.CommonUtils.textToKey(J0),exports.ITextFrame.HorizontalAlignment.Left),Sn.set(E.CommonUtils.textToKey(G0),exports.ITextFrame.HorizontalAlignment.Right),Sn.set(E.CommonUtils.textToKey(q0),exports.ITextFrame.HorizontalAlignment.Right),Sn.set(E.CommonUtils.textToKey(K0),exports.ITextFrame.HorizontalAlignment.Center),Sn.set(E.CommonUtils.textToKey(X0),exports.ITextFrame.HorizontalAlignment.Justify),Sn.set(E.CommonUtils.textToKey(Y0),exports.ITextFrame.HorizontalAlignment.Justify);const Je=new Map;Je.set(E.CommonUtils.textToKey(Q0),exports.ITextFrame.VerticalAlignment.Bottom),Je.set(E.CommonUtils.textToKey(Z0),exports.ITextFrame.VerticalAlignment.Top),Je.set(E.CommonUtils.textToKey(t_),exports.ITextFrame.VerticalAlignment.Center),Je.set(E.CommonUtils.textToKey(e_),exports.ITextFrame.VerticalAlignment.Bottom),Je.set(E.CommonUtils.textToKey(n_),exports.ITextFrame.VerticalAlignment.Bottom),Je.set(E.CommonUtils.textToKey(r_),exports.ITextFrame.VerticalAlignment.Top),Je.set(E.CommonUtils.textToKey(o_),exports.ITextFrame.VerticalAlignment.Justify),Je.set(E.CommonUtils.textToKey(s_),exports.ITextFrame.VerticalAlignment.Distributed);const Eg=(l,t)=>{if(l instanceof kt)return{color:l};if(typeof l=="string")try{return{color:l==="none"||l==="transparent"?null:t(l)}}catch(e){throw e}return l},Io={shorthand:(l,t)=>{if(!l||l==="none"||l==="transparent")return null;try{return t.parseColor(l).toString()}catch(e){console.warn("error",e)}return l},merge:(l,t,e)=>l},mn={shorthand:(l,t)=>{if(typeof l=="string"&&(l=Cg(l)),!l)return null;const e={};return l.style&&(e.style=l.style),l.color&&(e.color=l.color),l.isIStroke?l.getProperties():e},properties:{color:Io}},Xh={shorthand:(l,t)=>l==="none"||l==="transparent"||typeof l=="object"&&Object.keys(l).length===0?{type:exports.IFill.Type.None}:(l.getType?.(),exports.IFill.Type.None,l)},Yh={shorthand:(l,t)=>(typeof(l=Eg(l,t.parseColor.bind(t)))=="object"&&l.color&&(l.type=exports.IFill.Type.Solid),l),merge:(l,t,e)=>l.color?l:(t?.toJSON&&(t=t.toJSON()),t?.type===exports.IFill.Type.Solid?{...t}:t?.type===exports.IFill.Type.Gradient?{type:exports.IFill.Type.Solid,color:t?.stops?.[0]?.color??e.parseColor(exports.IColor.Scheme.Bg1)}:t?.type===exports.IFill.Type.Pattern?{type:exports.IFill.Type.Solid,color:t?.foreground??e.parseColor(exports.IColor.Scheme.Bg1)}:l?{...l}:null),properties:{color:Io}},Qh={shorthand:(l,t)=>(typeof l=="object"&&l.stops&&(l.type=exports.IFill.Type.Gradient),l),merge:(l,t,e)=>l.stops?l:(t?.toJSON&&(t=t.toJSON()),t?.type===exports.IFill.Type.Gradient?{...t}:t?.type===exports.IFill.Type.Solid?{type:exports.IFill.Type.Gradient,stops:[{offset:0,color:t?.color??exports.IColor.Scheme.Accent1},{offset:1,color:exports.IColor.Scheme.Bg1}]}:t?.type===exports.IFill.Type.Pattern?{type:exports.IFill.Type.Gradient,stops:[{offset:0,color:t?.foreground??exports.IColor.Scheme.Bg1},{offset:1,color:t?.background??exports.IColor.Scheme.Accent1}]}:l?{...l}:null),properties:{stops:{shorthand:(l,t)=>l,arrayType:{shorthand:(l,t)=>l=Eg(l,t.parseColor.bind(t)),properties:{color:Io}}}}},Zh={shorthand:(l,t)=>{if(typeof l=="object"){const e=l;(e.foreground||e.background||e.patternType)&&(e.type=exports.IFill.Type.Pattern,e.patternType=e.patternType??exports.IFill.BuiltInSheetPattern.Solid)}return l},merge:(l,t,e)=>{if(l.background&&l.foreground)return l;t?.toJSON&&(t=t.toJSON());const n=exports.IFill.BuiltInSheetPattern.MediumGray;return t?.type===exports.IFill.Type.Pattern?{...t,...l}:t?.type===exports.IFill.Type.Solid?{patternType:n,...l,foreground:t?.color??exports.IColor.Named.WindowText,background:exports.IColor.Scheme.Bg1}:t?.type===exports.IFill.Type.Gradient?{patternType:n,...l,foreground:t?.stops?.[0]?.color??exports.IColor.Named.WindowText,background:t?.stops?.[1]?.color??exports.IColor.Scheme.Bg1}:l?{type:exports.IFill.Type.Pattern,patternType:exports.IFill.BuiltInSheetPattern.Solid,foreground:exports.IColor.Named.WindowText,background:exports.IColor.Scheme.Bg1,...l}:null},properties:{foreground:Io,background:Io}},Tt={properties:{font:{shorthand:(l,t)=>{if(typeof l=="string"){const e=zs(l);if(e){const n={};if(e.family&&(n.family=e.family),e.fallbacks&&(n.fallbacks=e.fallbacks),e.size&&(n.size=Er(e.size)),Object.keys(e).length>0)return n}}return l},properties:{family:{shorthand:(l,t)=>zs(l)?.family??null},fallbacks:{shorthand:(l,t)=>{if(typeof l!="string")return l;let e=zs(l);if(!e)return null;let n=[e.family];return e.fallbacks&&(n=n.concat(e.fallbacks)),n}},size:{shorthand:(l,t)=>{let e=l;return typeof l=="string"&&(e=Er(l,t.getNormal().getFont().getSize())),isNaN(e)||typeof e!="number"?null:(e=Math.max(1,Math.min(E.CommonUtils.roundAccurately(e,1),409)),e)}},weight:{shorthand:(l,t)=>{if(typeof l!="string")return l;const e=(n=>{let r=400;if(r=typeof n=="number"?n:parseFloat(n),!isNaN(r))return r;if(typeof n=="string"){const o=E.CommonUtils.textToKey(n),s=At.get(o);if(s)return s}return r})(l);return isNaN(e)||typeof e!="number"?null:e}},underline:{shorthand:(l,t)=>l?l===!0?exports.IFont.UnderlineStyle.Single:Sg(l):exports.IFont.UnderlineStyle.None}}},fill:{shorthand:(l,t)=>{const e=[Xh,Yh,Qh,Zh];for(let n=0;n<e.length;n++){let r=e[n]?.shorthand?.(l,t);if(r?.type)return r}return l},getSubType:l=>l.type===exports.IFill.Type.None?Xh:l.type===exports.IFill.Type.Solid?Yh:l.type===exports.IFill.Type.Gradient?Qh:l.type===exports.IFill.Type.Pattern?Zh:null},alignment:{properties:{indent:{shorthand:(l,t)=>{let e=l;return typeof l=="string"&&(e=parseFloat(l)),isNaN(e)||typeof e!="number"?null:e}},rotation:{shorthand:(l,t)=>{let e=l;return typeof l=="string"&&(e=parseFloat(l)),isNaN(e)||typeof e!="number"?null:(e%=360,e<0&&(e+=360),e)}}}},border:{shorthand:(l,t)=>{if(typeof l=="string"){const e=Cg(l);return{left:e,right:e,top:e,bottom:e,horizontal:null,vertical:null,diagonalUp:null,diagonalDown:null}}return l.isIBorder?l.getProperties():l},properties:{top:mn,left:mn,right:mn,bottom:mn,horizontal:mn,vertical:mn,diagonalUp:mn,diagonalDown:mn}},numberFormat:{shorthand:(l,t)=>{if(typeof l=="string"){let e=exports.NumberFormat.Styles.lookupDefault(l);return e!==void 0?e:l}return typeof l=="number"?ba(l):null}}}},i_={properties:{style:Tt}},l_=Object.freeze({displayText:"",conditionalColor:null,repeatChars:E.CommonUtils.EmptyArray,spacingChars:E.CommonUtils.EmptyArray,repeatPlaceholder:null,formattedRuns:Object.freeze({runs:E.CommonUtils.EmptyArray,length:0,width:0,lastRepeatIndex:-1}),canWrap:!1,asDate:null,isDateFormat:!1,isTimeFormat:!1,isDate1904:!1}),Ig=(l,t,e,n,r,o=!1)=>{if(l==null)return l_;let s="",i=null,a=null,c=null;if(e===A.ScalarType.Error)s=l.getLabel();else if(e===A.ScalarType.RichData)s="(Rich Object)";else if(e===A.ScalarType.Boolean)s=l?"TRUE":"FALSE";else if(n)try{s=Sa(n,l,{date1904:o,spacingCharacter:"",digitCharacter:"",onRepeatChar:(b,x)=>{a||(a=[]),a.push({offset:b,char:x})},onSpacingChar:(b,x)=>{c||(c=[]),c.push({offset:b,char:x})},onDigitChar:b=>{c||(c=[]),c.push({offset:b,char:"0"})}})}catch{}const h=To(n),d=gi(n),u=h||d?Mr(l,o):null;(h||d)&&parseFloat(l)<0&&(i="#",s=i.repeat(5));let g=null;const m=t.getAlignment(),f=m.getHorizontal(),_=m.getVertical(),p=m.getOverflow(),S=!(e!==A.ScalarType.String||f===exports.ITextFrame.HorizontalAlignment.Fill||a!==null&&a.length!==0||p!==exports.ITextFrame.Overflow.Wrap&&f!==exports.ITextFrame.HorizontalAlignment.Justify&&f!==exports.ITextFrame.HorizontalAlignment.Distributed&&_!==exports.ITextFrame.VerticalAlignment.Justify&&_!==exports.ITextFrame.VerticalAlignment.Distributed);let C=s;S||e!==A.ScalarType.String||(C=C.replaceAll(/\n/g,""));const y=c?.length>0||a?.length>0;if(p!==exports.ITextFrame.Overflow.Wrap||y){const b=t.getFont();let x=b.getSize();b.isSuperSub()&&(x*=b.getSuperSubScale());let R=[];for(let L=0;L<c?.length;L++){const B=c[L],U=t.measureText(B.char,x).width;R.push({...B,type:"spacing",width:U})}if(a?.length>0){const L=a[a.length-1],B=t.measureText(L.char,x).width;R.push({...L,type:"repeat",width:B})}R=R.sort((L,B)=>L.offset-B.offset);let v=[],T=0,M=0,F=-1,N=-1;const O=L=>{const B={type:"text",width:t.measureText(L,x).width,text:L};v.push(B),M+=B.width,T+=L.length};for(let L=0;L<R.length;L++){const B=R[L];if(N!==B.offset){const D=C.substring(T,B.offset);D&&O(D)}const U={type:B.type,width:B.width,text:B.char};B.type!=="repeat"?M+=U.width:F=v.length,v.push(U),N=B.offset}if(T<C.length){let L=C.substring(T,C.length);L&&O(L)}g={runs:Object.freeze(v),length:T,width:M,lastRepeatIndex:F}}const I=Cf(n,l),w={displayText:s??"",conditionalColor:I?r(I):null,repeatChars:a??E.CommonUtils.EmptyArray,spacingChars:c??E.CommonUtils.EmptyArray,repeatPlaceholder:i,formattedRuns:g,canWrap:S,asDate:u,isDateFormat:h,isTimeFormat:d,isDate1904:o};return Object.freeze(w)},Ft=Object.freeze({fallbacks:E.CommonUtils.EmptyArray,weight:400,style:exports.IFont.Style.Normal,fill:exports.IColor.Scheme.Tx1,letterSpacing:null,underline:exports.IFont.UnderlineStyle.None,strike:!1,scheme:exports.IFont.Scheme.Minor,verticalAlign:exports.IFont.VerticalAlignment.Baseline,shadow:!1,outline:!1,extend:!1}),fn=Object.freeze({style:exports.IBorder.StrokeStyle.None,color:exports.IColor.Scheme.Tx1}),a_=Object.freeze({[exports.IBorder.Edge.Top]:fn,[exports.IBorder.Edge.Left]:fn,[exports.IBorder.Edge.Bottom]:fn,[exports.IBorder.Edge.Right]:fn,[exports.IBorder.Edge.Horizontal]:fn,[exports.IBorder.Edge.Vertical]:fn,[exports.IBorder.Edge.DiagonalUp]:fn,[exports.IBorder.Edge.DiagonalDown]:fn}),c_=Object.freeze({horizontal:exports.ITextFrame.HorizontalAlignment.General,vertical:exports.ITextFrame.VerticalAlignment.Bottom,indent:0,relativeIndent:0,overflow:exports.ITextFrame.Overflow.Visible,rotation:0,stacked:!1,quotePrefix:!1,justifyLastLine:!1,readingOrder:exports.ITextFrame.ReadingDirection.Auto,readingDirection:exports.ITextFrame.ReadingDirection.Auto}),h_=Object.freeze({locked:!1,formulaHidden:!1}),bg=Object.freeze({fill:{type:exports.IFill.Type.None},numberFormat:"General",alignment:c_,font:Ft,border:a_,protection:h_,quotePrefix:!1,namedStyle:null}),d_=(()=>{const l=[{named:exports.IStyle.BuiltInName.Normal},{named:exports.IStyle.BuiltInName.RowLevel},{named:exports.IStyle.BuiltInName.ColLevel},{named:exports.IStyle.BuiltInName.Comma,numberFormat:'_(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_)'},{named:exports.IStyle.BuiltInName.Currency,numberFormat:'_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)'},{named:exports.IStyle.BuiltInName.Percent,numberFormat:"0%"},{named:exports.IStyle.BuiltInName.Comma0,numberFormat:'_(* #,##0_);_(* (#,##0);_(* "-"_);_(@_)'},{named:exports.IStyle.BuiltInName.Currency0,numberFormat:'_($* #,##0_);_($* (#,##0);_($* "-"_);_(@_)'},{named:exports.IStyle.BuiltInName.Hyperlink,font:{...Ft,fill:exports.IColor.Scheme.Hlink,underline:exports.IFont.UnderlineStyle.Single}},{named:exports.IStyle.BuiltInName.FollowedHyperlink,font:{...Ft,fill:exports.IColor.Scheme.FolHlink,underline:exports.IFont.UnderlineStyle.Single}},{named:exports.IStyle.BuiltInName.Note,fill:"FFFFFFCC",font:{...Ft,style:exports.IFont.Style.Normal,fill:exports.IColor.Scheme.Tx1},border:{left:{style:exports.IBorder.StrokeStyle.Thin,color:"FFB2B2B2"},top:{style:exports.IBorder.StrokeStyle.Thin,color:"FFB2B2B2"},right:{style:exports.IBorder.StrokeStyle.Thin,color:"FFB2B2B2"},bottom:{style:exports.IBorder.StrokeStyle.Thin,color:"FFB2B2B2"}}},{named:exports.IStyle.BuiltInName.WarningText,font:{...Ft,fill:"FFFF0000"}},{named:exports.IStyle.BuiltInName.Unknown12},{named:exports.IStyle.BuiltInName.Unknown13},{named:exports.IStyle.BuiltInName.Unknown14},{named:exports.IStyle.BuiltInName.Title,font:{...Ft,size:18,fill:exports.IColor.Scheme.Tx2}},{named:exports.IStyle.BuiltInName.Heading1,font:{...Ft,size:15,weight:"bold",fill:exports.IColor.Scheme.Tx2},border:{bottom:{style:exports.IBorder.StrokeStyle.Thick,color:exports.IColor.Scheme.Accent1}}},{named:exports.IStyle.BuiltInName.Heading2,font:{...Ft,size:13,weight:"bold",fill:exports.IColor.Scheme.Tx2},border:{bottom:{style:exports.IBorder.StrokeStyle.Thick,color:"accent1 lumMod 40, lumOff 60"}}},{named:exports.IStyle.BuiltInName.Heading3,font:{...Ft,weight:"bold",fill:exports.IColor.Scheme.Tx2},border:{bottom:{style:exports.IBorder.StrokeStyle.Medium,color:"accent1 lumMod 40, lumOff 60"}}},{named:exports.IStyle.BuiltInName.Heading4,font:{weight:"bold",fill:exports.IColor.Scheme.Tx2,...Ft}},{named:exports.IStyle.BuiltInName.Input,fill:"FFFFCC99",font:{...Ft,fill:"FF3F3F76"},border:{left:{style:exports.IBorder.StrokeStyle.Thin,color:"FF7F7F7F"},top:{style:exports.IBorder.StrokeStyle.Thin,color:"FF7F7F7F"},right:{style:exports.IBorder.StrokeStyle.Thin,color:"FF7F7F7F"},bottom:{style:exports.IBorder.StrokeStyle.Thin,color:"FF7F7F7F"}}},{named:exports.IStyle.BuiltInName.Output,fill:"FFF2F2F2",font:{...Ft,fill:"FF3F3F3F"},border:{left:{style:exports.IBorder.StrokeStyle.Thin,color:"FF3F3F3F"},top:{style:exports.IBorder.StrokeStyle.Thin,color:"FF3F3F3F"},right:{style:exports.IBorder.StrokeStyle.Thin,color:"FF3F3F3F"},bottom:{style:exports.IBorder.StrokeStyle.Thin,color:"FF3F3F3F"}}},{named:exports.IStyle.BuiltInName.Calculation,fill:"FFF2F2F2",font:{...Ft,fill:"FFFA7D00"},border:{left:{style:exports.IBorder.StrokeStyle.Thin,color:"FF7F7F7F"},top:{style:exports.IBorder.StrokeStyle.Thin,color:"FF7F7F7F"},right:{style:exports.IBorder.StrokeStyle.Thin,color:"FF7F7F7F"},bottom:{style:exports.IBorder.StrokeStyle.Thin,color:"FF7F7F7F"}}},{named:exports.IStyle.BuiltInName.CheckCell,fill:"FFA5A5A5",font:{...Ft,fill:exports.IColor.Scheme.Bg1},border:{left:{style:exports.IBorder.StrokeStyle.Double,color:"FF3F3F3F"},top:{style:exports.IBorder.StrokeStyle.Double,color:"FF3F3F3F"},right:{style:exports.IBorder.StrokeStyle.Double,color:"FF3F3F3F"},bottom:{style:exports.IBorder.StrokeStyle.Double,color:"FF3F3F3F"}}},{named:exports.IStyle.BuiltInName.LinkedCell,font:{...Ft,fill:"FFFA7D00"},border:{bottom:{style:exports.IBorder.StrokeStyle.Double,color:"FFFF8001"}}},{named:exports.IStyle.BuiltInName.Total,font:{...Ft,weight:"bold",fill:exports.IColor.Scheme.Tx1},border:{top:{style:exports.IBorder.StrokeStyle.Thin,color:exports.IColor.Scheme.Accent1},bottom:{style:exports.IBorder.StrokeStyle.Double,color:exports.IColor.Scheme.Accent1}}},{named:exports.IStyle.BuiltInName.Good,fill:"FFC6EFCE",font:{...Ft,fill:"FF006100"}},{named:exports.IStyle.BuiltInName.Bad,fill:"FFFFC7CE",font:{...Ft,fill:"FF9C0006"}},{named:exports.IStyle.BuiltInName.Neutral,fill:"FFFFEB9C",font:{...Ft,fill:"FF9C5700"}},{named:exports.IStyle.BuiltInName.Accent1},{named:exports.IStyle.BuiltInName.Accent1_20},{named:exports.IStyle.BuiltInName.Accent1_40},{named:exports.IStyle.BuiltInName.Accent1_60},{named:exports.IStyle.BuiltInName.Accent2},{named:exports.IStyle.BuiltInName.Accent2_20},{named:exports.IStyle.BuiltInName.Accent2_40},{named:exports.IStyle.BuiltInName.Accent2_60},{named:exports.IStyle.BuiltInName.Accent3},{named:exports.IStyle.BuiltInName.Accent3_20},{named:exports.IStyle.BuiltInName.Accent3_40},{named:exports.IStyle.BuiltInName.Accent3_60},{named:exports.IStyle.BuiltInName.Accent4},{named:exports.IStyle.BuiltInName.Accent4_20},{named:exports.IStyle.BuiltInName.Accent4_40},{named:exports.IStyle.BuiltInName.Accent4_60},{named:exports.IStyle.BuiltInName.Accent5},{named:exports.IStyle.BuiltInName.Accent5_20},{named:exports.IStyle.BuiltInName.Accent5_40},{named:exports.IStyle.BuiltInName.Accent5_60},{named:exports.IStyle.BuiltInName.Accent6},{named:exports.IStyle.BuiltInName.Accent6_20},{named:exports.IStyle.BuiltInName.Accent6_40},{named:exports.IStyle.BuiltInName.Accent6_60},{named:exports.IStyle.BuiltInName.ExplanatoryText,font:{...Ft,style:exports.IFont.Style.Italic,fill:"FF7F7F7F"}}];for(let t=29;t<=52;t++){const e=(t-29)%4,n=Math.floor((t-29)/4);let r="";e===1?r=" lumMod 20, lumOff 80":e===2?r=" lumMod 40, lumOff 60":e===3&&(r=" lumMod 60, lumOff 40"),l[t].fill=`accent${n+1}${r}`,l[t].font={fill:e===0?exports.IColor.Scheme.Bg1:exports.IColor.Scheme.Tx1,...Ft}}return E.CommonUtils.deepFreeze(l)})(),u_=new class{_svgImage(l,t,e,n=8){return{backgroundImage:`url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='${n}' height='${n}' viewBox='0 0 ${n} ${n}' shape-rendering='crispEdges' %3E%3Cpath d='${e}' stroke='${l}' %3E%3C/path%3E%3C/svg%3E")`,backgroundRepeat:"repeat",backgroundSize:`${n}px ${n}px`,backgroundPositionX:"0px",backgroundPositionY:"0px",backgroundPosition:""+-n,backgroundColor:t}}toCSS(l,t,e){return l&&l!==exports.IFill.BuiltInSheetPattern.None?l===exports.IFill.BuiltInSheetPattern.Solid?{background:e}:l===exports.IFill.BuiltInSheetPattern.Gray0625?this._svgImage(t,e,"M 0.5 0.5 L 0.5 1.5 M 0.5 4.5 L 0.5 5.5 M 4.5 2.5 L 4.5 3.5 M 4.5 6.5 L 4.5 7.5",8):l===exports.IFill.BuiltInSheetPattern.LightGray?this._svgImage(t,e,"M 0.5 0.5 L 0.5 1.5 M 0.5 2.5 L 0.5 3.5 M 2.5 -0.5 L 2.5 0.5 M 2.5 1.5 L 2.5 2.5 M 2.5 3.5 L 2.5 4.5",4):l===exports.IFill.BuiltInSheetPattern.MediumGray?this._svgImage(t,e,"M 0.5 0.5 L 0.5 1.5 M 1.5 1.5 L 1.5 2.5 M 1.5 -0.5 L 1.5 0.5 M -0.5 -0.5 L -0.5 0.5",2):l===exports.IFill.BuiltInSheetPattern.DarkGray?this._svgImage(t,e,"M 0 0 L 0 4 M 1 1 L 1 2 M 1 3 L 1 4 M 2 0 L 2 4 M 3 0.5 L 3 1.5 M 3 2.5 L 3 3.5 M 4 0 L 4 4",4):l===exports.IFill.BuiltInSheetPattern.LightHorizontal?this._svgImage(t,e,"M 0 2 L 4 2",4):l===exports.IFill.BuiltInSheetPattern.DarkHorizontal?this._svgImage(t,e,"M 0 2 L 4 2 M 0 3 L 4 3",4):l===exports.IFill.BuiltInSheetPattern.LightVertical?this._svgImage(t,e,"M 2 0 L 2 4",4):l===exports.IFill.BuiltInSheetPattern.DarkVertical?this._svgImage(t,e,"M 2 0 L 2 4 M 3 0 L 3 4",4):l===exports.IFill.BuiltInSheetPattern.LightUp?this._svgImage(t,e,"M 0.5 0.5 L 0.5 1.5 M 1.5 3.5 L 1.5 4.5 M 1.5 -0.5 L 1.5 0.5 M 2.5 2.5 L 2.5 3.5 M 3.5 1.5 L 3.5 2.5",4):l===exports.IFill.BuiltInSheetPattern.DarkUp?this._svgImage(t,e,"M 0.5 -0.5 L 0.5 1.5 M 0.5 3.5 L 0.5 4.5 M 1.5 2.5 L 1.5 4.5 M 2.5 1.5 L 2.5 3.5 M 3.5 0.5 L 3.5 2.5 M 1.5 -0.5 L 1.5 0.5",4):l===exports.IFill.BuiltInSheetPattern.LightDown?this._svgImage(t,e,"M 0.5 0 L 0.5 1 M 1.5 1 L 1.5 2 M 2.5 2 L 2.5 3 M 3.5 3 L 3.5 4",4):l===exports.IFill.BuiltInSheetPattern.DarkDown?this._svgImage(t,e,"M 0.5 -0.5 L 0.5 2 M 1.5 1 L 1.5 3 M 2.5 2 L 2.5 4 M 3.5 3 L 3.5 5 M 3.5 -0.5 L 3.5 1.0",4):l===exports.IFill.BuiltInSheetPattern.LightGrid?this._svgImage(t,e,"M 1.5 -0.5 L 1.5 4.5 M -0.5 1.5 L 4.5 1.5",4):l===exports.IFill.BuiltInSheetPattern.DarkGrid?this._svgImage(t,e,"M 0.5 -0.5 L 0.5 1.5 M 1.5 -0.5 L 1.5 1.5 M 2.5 1.5 L 2.5 3.5 M 3.5 1.5 L 3.5 3.5 M 0.5 3.5 L 0.5 4.5 M 1.5 3.5 L 1.5 4.5",4):l===exports.IFill.BuiltInSheetPattern.LightTrellis?this._svgImage(t,e,"M 0.5 0.5 L 0.5 1.5 M 1.5 3.5 L 1.5 4.5 M 1.5 -0.5 L 1.5 0.5 M 2.5 2.5 L 2.5 3.5 M 3.5 1.5 L 3.5 2.5 M 1.5 1.5 L 1.5 2.5 M 3.5 3.5 L 3.5 4.5 M 3.5 -0.5 L 3.5 0.5",4):l===exports.IFill.BuiltInSheetPattern.DarkTrellis?this._svgImage(t,e,"M 0 0 L 4 0 M 0 1 L 2 1 M 0 2 L 4 2 M 2 3 L 4 3 M 0 4 L 4 4",4):(exports.IFill.BuiltInSheetPattern.Custom,this._svgImage(t,e,"M 0.5 0.5 L 0.5 1.5 M 0.5 4.5 L 0.5 5.5 M 2.5 2.5 L 2.5 3.5 M 2.5 6.5 L 2.5 7.5 M 4.5 0.5 L 4.5 1.5 M 4.5 4.5 L 4.5 5.5 M 6.5 2.5 L 6.5 3.5 M 6.5 6.5 L 6.5 7.5",8)):{background:"none"}}},wi=(l,t,e)=>{if(t===void 0)return;if(t===null)return null;if(t.isIStyle)return t._p.getProperties();let n=null;return typeof t=="function"?n=t(typeof e=="function"?e():e):n=t,n};class g_{constructor(t,e){this._c=t,this._p=Object.freeze(Array.isArray(e)?e:[e??null])}value(t){const e=this._p;for(let n=e.length-1;n>=0;n--){const r=e[n];if(!r)continue;const o=r[t];if(o!==void 0)return o}}values(t){const e=this._p,n=e.length;let r;for(let o=0;o<n;o++){const s=e[o];if(!s)continue;const i=s[t];i!==void 0&&(r===void 0&&(r=[]),r.push(i))}return r}getProperties(){const t=this._p;return t?t[t.length-1]:null}toJSON(){return null}}class ln{constructor(t,e){this._c=t,this._p=Object.freeze(e)}_value(t){const e=this._p;for(let n=e.length-1;n>=0;n--){const r=e[n];if(!r)continue;const o=r[t];if(o!==void 0)return o}}_values(t){const e=this._p,n=e.length;let r;for(let o=0;o<n;o++){const s=e[o];if(!s)continue;const i=s[t];i!==void 0&&(r===void 0&&(r=[]),r.push(i))}return r}getProperties(){const t=this._p;return t?t[t.length-1]:null}toJSON(){return null}}class lr extends ln{constructor(t,e,n){super(e,n),this._edge=t}getStyle(){return this._value("style")}getColor(){const t=this._value("color");return t?this._c.parseColor(t):null}isNone(){return this.getStyle()===exports.IBorder.StrokeStyle.None}toCSS(){const t=kn(this);switch(this._edge){case exports.IBorder.Edge.Left:return{borderLeft:t};case exports.IBorder.Edge.Right:return{borderRight:t};case exports.IBorder.Edge.Top:return{borderTop:t};case exports.IBorder.Edge.Bottom:return{borderBottom:t};case exports.IBorder.Edge.DiagonalUp:case exports.IBorder.Edge.DiagonalDown:return{borderDiagonalUp:t}}}get isIStroke(){return!0}}class m_ extends ln{getLeft(){return new lr(exports.IBorder.Edge.Left,this._c,this._values(exports.IBorder.Edge.Left))}getRight(){return new lr(exports.IBorder.Edge.Right,this._c,this._values(exports.IBorder.Edge.Right))}getTop(){return new lr(exports.IBorder.Edge.Top,this._c,this._values(exports.IBorder.Edge.Top))}getBottom(){return new lr(exports.IBorder.Edge.Bottom,this._c,this._values(exports.IBorder.Edge.Bottom))}getDiagonalUp(){return new lr(exports.IBorder.Edge.DiagonalUp,this._c,this._values(exports.IBorder.Edge.DiagonalUp))}getDiagonalDown(){return new lr(exports.IBorder.Edge.DiagonalDown,this._c,this._values(exports.IBorder.Edge.DiagonalDown))}isEmpty(){return!1}get isIBorder(){return!0}}class f_ extends ln{get isITextBoxAlignment(){return!0}getHorizontal(){return this._value("horizontal")}getVertical(){return this._value("vertical")}getIndent(){return this._value("indent")}getRelativeIndent(){return this._value("relativeIndent")}getOverflow(){return this._value("overflow")}getRotation(){return this._value("rotation")}getStacked(){return this._value("stacked")}getJustifyLastLine(){return this._value("justifyLastLine")}getReadingDirection(){return this._value("readingDirection")}}class p_ extends ln{isEqualMeasure(t){return!!t&&this.getFamily()===t.getFamily()&&!!E.CommonUtils.isEqualArrays(this.getFallbacks(),t.getFallbacks())&&this.getSize()===t.getSize()&&this.getWeight()===t.getWeight()&&this.getStyle()===t.getStyle()&&this.getStrike()===t.getStrike()&&this.getScheme()===t.getScheme()&&this.getShadow()===t.getShadow()&&this.getOutline()===t.getOutline()&&this.getLetterSpacing()===t.getLetterSpacing()&&this.getVerticalAlignment()===t.getVerticalAlignment()}isSuperSub(){const t=this.getVerticalAlignment();return t===exports.IFont.VerticalAlignment.Sub||t===exports.IFont.VerticalAlignment.Super}isSuperScript(){const t=this.getVerticalAlignment();return t===exports.IFont.VerticalAlignment.Sub||t===exports.IFont.VerticalAlignment.Super}getSuperSubScale(){return this.getFamily(),this.getSize(),this.getVerticalAlignment(),.6}getSuperSubShift(){return this.getFamily(),t=this.getSize(),(e=this.getVerticalAlignment())===exports.IFont.VerticalAlignment.Super?-t/3:e===exports.IFont.VerticalAlignment.Sub?t/5:0;var t,e}toCSS(t,e=1,n=!1){const r={fontFamily:oi(this.getFamily(),this.getFallbacks()),letterSpacing:`${this.getLetterSpacing()}px`,fontWeight:this.getWeight(),fontStyle:this.getStyle(),textDecoration:_g(this.getUnderline(),this.getStrike()),color:this.getFill().toCSS(t),fontSize:`${E.CommonUtils.roundAccurately(this.getSize()*exports.IFont.getDeviceScale()*e,2)}px`,textRendering:"geometricPrecision"};if(n){const o=this._c.getNormal().getFont().toCSS(t,e,!1),s=r.textDecoration,i=r.fontWeight;E.CommonUtils.removeEqualValues(r,o),s&&(r.textDecoration=s),i&&(r.fontWeight=i)}return r}getFamily(){return this._value("family")??this._c.getTheme().getFontScheme().getMinorFont()}getFallbacks(){let t=this._value("fallbacks")??this._c.getTheme().getFontScheme().getMinorFallbacks()??E.CommonUtils.EmptyArray;return this.getFamily()==="Aptos Narrow"&&(t=["Calibri",...t]),t}getSize(){return this._value("size")??this._c.getDefaultFontSize()??11}getWeight(){return this._value("weight")}getStyle(){return this._value("style")}getFill(){const t=this._value("fill");return this._c.parseColor(t??exports.IColor.Scheme.Bg1)}getLetterSpacing(){return this._value("letterSpacing")??this.getSize()/-25}getUnderline(){return this._value("underline")}getStrike(){return this._value("strike")}getScheme(){return this._value("scheme")}getVerticalAlignment(){return this._value("verticalAlign")}getShadow(){return this._value("shadow")}getOutline(){return this._value("outline")}getExtend(){return this._value("extend")}get isIStyledFont(){return!0}}const __=Object.freeze({background:"none"});class td extends ln{getType(){return exports.IFill.Type.None}toCSS(t){return __}toJSON(){return{type:exports.IFill.Type.None}}}class S_ extends ln{getType(){return exports.IFill.Type.Solid}getColor(){return this._c.parseColor(this._value("color")??exports.IColor.Scheme.Bg1)}toCSS(t){return{background:this.getColor().toCSS(t)}}toJSON(){return{type:exports.IFill.Type.Solid,color:this.getColor()?.toString()??null}}}class w_ extends ln{getOffset(){return this._value("offset")??0}getColor(){return this._c.parseColor(this._value("color")??exports.IColor.Scheme.Bg1)}}class y_ extends ln{getType(){return exports.IFill.Type.Gradient}getStops(){const t=this._value("stops")??[],e=[],n=this._c;for(let r=0;r<t.length;r++){const o=t[r];e.push(new w_(n,[o]))}return e}getGradientType(){return this._value("gradientType")??exports.IFill.GradientType.Linear}getAngle(){return this._value("angle")??0}getFillTo(){return this._value("fillTo")??null}toCSS(t,e){const n=yg(this,t,e);return n?{background:n}:null}toJSON(){const t={type:exports.IFill.Type.Gradient};if(this.getStops().length>0){let e=[];for(let n=0;n<e.length;n++)e.push({offset:e[n].offset,color:e[n].color.toString()});t.stops=e}return this.getAngle()!==0&&(t.angle=this.getAngle()),this.getGradientType()!==exports.IFill.GradientType.Linear&&(t.gradientType=this.getGradientType()),this.getFillTo()&&(t.fillTo=this.getFillTo()),t}}class C_ extends ln{getType(){return exports.IFill.Type.Pattern}getBackground(){const t=this._value("background")??exports.IColor.Named.Window;return this._c.parseColor(t)}getForeground(){return this._c.parseColor(this._value("foreground")??exports.IColor.Scheme.Tx1)}getPatternType(){return this._value("patternType")??exports.IFill.BuiltInSheetPattern.None}toCSS(t){const e=this.getBackground().toCSS(t),n=this.getForeground().toCSS(t);return this.getPatternType()===exports.IFill.BuiltInSheetPattern.None?{background:"none"}:this.getPatternType()===exports.IFill.BuiltInSheetPattern.Solid?{background:this.getForeground().toCSS(t)}:u_.toCSS(this.getPatternType(),n,e)}toJSON(){const t={type:exports.IFill.Type.Pattern};this.getPatternType()!==exports.IFill.BuiltInSheetPattern.None&&(t.patternType=this.getPatternType());const e=this.getForeground();e&&(t.foreground=e.toString());const n=this.getBackground();return n&&(t.background=n.toString()),t}}class vg{constructor(t){this._options=t,this._c=t.styles,this._p=new g_(t.styles,t.properties),this._hasVisibleStyling=!this.getFill()||this.getFill().getType()!==exports.IFill.Type.None||!this.getBorder().isEmpty()}hasVisibleStyling(){return this._hasVisibleStyling}isNormal(){return!1}getNamed(){const t=this._p.value("named")??exports.IStyle.BuiltInName.Normal;return this._c.getNamed(t)}createTemporaryStyle(t){const e=this._c,n=wi(0,t,this),r=this._options,o=r.range,s=r.direct.cloneWithUpdate(n);return Rr(e,s,o)}measureText(t,e=this.getFont().getSize(),n,r){const o=this.getFont();n||(n=o.getFamily());let s=o.getFallbacks();n==="Aptos Narrow"&&(s=["Calibri",...s]);const i=oi(n,s);return exports.IFont.getSharedMeasurer()(t,e*exports.IFont.getDeviceScale(),i,{isBold:o.getWeight()>400,isItalic:o.getStyle().includes("italic"),letterSpacing:o.getLetterSpacing(),...r})}createTemporaryTextFrame(t,e=!1){return _i(t,this.getFont(),this.getAlignment(),e)}getBestFit(){if(this._bestFit!==void 0)return this._bestFit;const t=this.getInsets(),e=this.measureText("My");return this._bestFit={width:null,height:e.lineHeight+t.top+t.bottom},this._bestFit}getInsets(){if(this._insets!==void 0)return this._insets;const t=(this.getFont().getSize(),1),e=(n=this.getFont().getSize(),Math.max(2,Math.round(n<225?n/5:n/3.5)));var n;const r={top:t,left:e,bottom:t,right:e},o=this._p,s=o?.value("insets");return s&&(s.top!==void 0&&(r.top+=s.top),s.left!==void 0&&(r.left+=s.left),s.bottom!==void 0&&(r.bottom+=s.bottom),s.right!==void 0&&(r.right+=s.right)),this._insets=Object.freeze(r),this._insets}getBorder(){return new m_(this._c,this._p.values("border"))}getFont(){return new p_(this._c,this._p.values("font"))}getFill(){const t=this._p;let e=t.values("fill"),n=t.value("fill");return n.type===exports.IFill.Type.None?new td(this._c,e):n.type===exports.IFill.Type.Solid||!n.type&&n.color?new S_(this._c,e):n.type===exports.IFill.Type.Gradient?new y_(this._c,e):n.type===exports.IFill.Type.Pattern?new C_(this._c,e):new td(this._c,e)}getAlignment(){return new f_(this._c,this._p.values("alignment"))}getNumberFormat(){const t=this._p.value("numberFormat");return typeof t=="number"?ba(t):t}getQuotePrefix(){return this._p.value("quotePrefix")}get isIStyle(){return!0}}const Rr=(l,t,e)=>{const n=e?.rowStart??E.CoordUtils.EmptyCell.rowIndex,r=e?.colStart??E.CoordUtils.EmptyCell.colIndex,o=[bg],s=l.getNormalRanged(),i=s.getPropertiesAt(n,r,null);if(i&&o.push(i),!t)return new E_({styles:l,range:e,properties:o,layerTypes:null,direct:s});const a=t.getPropertiesAt(n,r,null);return a&&o.push(a),new vg({styles:l,range:e,properties:o,direct:t})};class E_ extends vg{isNormal(){return!0}}const Mn=(l,t)=>{if(l&&!t||t&&!l)return!1;if(l===t)return!0;if(l.style!==t.style)return!1;if(l.color===t.color)return!0;let e=l.color;(l&&l.color).isIColor&&(e=l.color.toString());let n=t.color;return(t&&t.color).isIColor&&(n=t.color.toString()),e===n};class zt{constructor(t,e,n,r){this._c=t,this._r=e,this._p=n??null,this._t=r??null,this._e=this._p===null||Object.keys(this._p).length===1&&this._p.named===exports.IStyle.BuiltInName.Normal}isEmpty(){return this._e}getProperties(){return this._p}getCoords(){return this._r}cloneWithUpdate(t){if(t===void 0)return this;const e=this._c,n=this._r,r=this._p,o=E.TypedObject.resolveTypedUpdates(t,Tt,e,r);return new zt(e,n,o)}copyTo(t,e){const n=this._c,r=this._r,o=t.rowStart-r.rowStart,s=t.colStart-r.colStart;let i=null;return E.CoordUtils.isEqualRanges(r,this._t)||(i=E.CoordUtils.translateRange(r,o,s)),new zt(n,t,this._p,i)}canTile(t,e){return!this._p.border}_createShifted(t){return new zt(this._c,t,this._p)}getShifted(t){return t.after?{...t.after,value:this._createShifted(E.CoordUtils.sanitizeRange(t.after))}:null}getSplit(t,e){const n=this._c,r=this._p,o=this._r;let s=r;const i=t[0];let a=r;const c=t[1],h=r?r.border:null;if(h){const u=e===A.IRange.Orientation.Column;if(u?h.left!==void 0||h.right!==void 0||h.vertical!==void 0:h.top!==void 0||h.bottom!==void 0||h.horizontal!==void 0){s={...s};const g=this._splitBorderRange(h,o,i,u);g?s.border=g:g===null&&delete s.border,a={...a};const m=this._splitBorderRange(h,o,c,u);m?a.border=m:m===null&&delete a.border}}const d=this._t;return[new zt(n,t[0],s,d),new zt(n,t[1],a,d)]}getMerged(t,e,n){const r=n===A.IRange.Orientation.Column,o=this._p,s=t._p;if(o&&!s||s&&!o||!o&&!s)return;let i=Object.keys(o),a=Object.keys(s);if(i.length!==a.length)return;for(let u=0;u<i.length;u++){const g=i[u];if(g==="border")continue;const m=o[g],f=s[g];if(!E.CommonUtils.deepEqual(m,f))return}const c=o.border,h=s.border;if(c&&!h||h&&!c)return;const d=this._c;if(c||h){const u=r?exports.IBorder.Edge.Top:exports.IBorder.Edge.Left,g=r?exports.IBorder.Edge.Bottom:exports.IBorder.Edge.Right;if(!Mn(c[u],h[u])||!Mn(c[g],h[g]))return;const m=this._r,f=t._r,_=1+(r?m.rowEnd-m.rowStart:m.colEnd-m.colStart),p=1+(r?m.colEnd-m.colStart:m.rowEnd-m.rowStart),S=1+(r?f.colEnd-f.colStart:f.rowEnd-f.rowStart),C=r?exports.IBorder.Edge.Horizontal:exports.IBorder.Edge.Vertical;if(_>1&&!Mn(c[C],h[C]))return;const y=r?exports.IBorder.Edge.Right:exports.IBorder.Edge.Bottom,I=r?exports.IBorder.Edge.Left:exports.IBorder.Edge.Top;if(!Mn(c[y],h[I]))return;const w=r?exports.IBorder.Edge.Vertical:exports.IBorder.Edge.Horizontal,b=c[y];if(p>1&&!Mn(b,c[w]))return;const x=S===1?h[I]:h[w];if(S>1&&!Mn(x,h[w])||!Mn(b,x))return;const R={border:{[u]:c[u],[g]:c[g],[C]:c[C],[w]:b,[I]:c[I],[y]:h[y]}},v=E.TypedObject.resolveTypedUpdates(R,Tt,d,o);return new zt(d,e,v)}return new zt(d,e,this._p)}hasTrailingEdge(){return!0}isMergeOnShift(){return!0}_splitBorderRange(t,e,n,r){const o=r?exports.IBorder.Edge.Left:exports.IBorder.Edge.Top,s=r?exports.IBorder.Edge.Right:exports.IBorder.Edge.Bottom,i=r?exports.IBorder.Edge.Vertical:exports.IBorder.Edge.Horizontal,a=r?e.colStart:e.rowStart,c=r?e.colEnd:e.rowEnd,h=r?n.colStart:n.rowStart,d=r?n.colEnd:n.rowEnd;let u={...t};return delete u[o],delete u[s],delete u[i],a===h?t[o]&&(u[o]=t[o]):t[i]&&(u[o]=t[i]),c===d?t[s]&&(u[s]=t[s]):t[i]&&(u[s]=t[i]),d-h>0&&t[i]&&(u[i]=t[i]),Object.keys(u).length===0?null:u}_localizeBorderRange(t,e,n){if(!t)return;let r=null;const o=e.rowStart,s=e.rowEnd,i=n.rowStart,a=n.rowEnd;t.top&&i===o&&(r=r??{},r.top=t.top),t.bottom&&a===s&&(r=r??{},r.bottom=t.bottom),t.horizontal&&(a-i>0&&(r=r??{},r.horizontal=t.horizontal),i>o&&(r=r??{},r.top=t.horizontal),a<s&&(r=r??{},r.bottom=t.horizontal));const c=e.colStart,h=e.colEnd,d=n.colStart,u=n.colEnd;return t.left&&d===c&&(r=r??{},r.left=t.left),t.right&&u===h&&(r=r??{},r.right=t.right),t.vertical&&(u-d>0&&(r=r??{},r.vertical=t.vertical),d>c&&(r=r??{},r.left=t.vertical),u<h&&(r=r??{},r.right=t.vertical)),r}_localizeBorder(t,e,n,r){if(!t)return;let o=null;const s=e.rowStart,i=e.rowEnd;t.top&&n===s&&(o=o??{},o.top=t.top),t.bottom&&n===i&&(o=o??{},o.bottom=t.bottom),t.horizontal&&(n>s&&(o=o??{},o.top=t.horizontal),n<i&&(o=o??{},o.bottom=t.horizontal));const a=e.colStart,c=e.colEnd;return t.left&&r===a&&(o=o??{},o.left=t.left),t.right&&r===c&&(o=o??{},o.right=t.right),t.vertical&&(r>a&&(o=o??{},o.left=t.vertical),r<c&&(o=o??{},o.right=t.vertical)),o}getPropertiesAt(t,e,n){const r=this._p;let o=r,s=null;const i=this._t;if(i){const d=this._r,u=i.colEnd-i.colStart+1,g=i.rowEnd-i.rowStart+1;e=d.colStart+(e-d.colStart+(i.colStart-d.colStart))%u,t=d.rowStart+(t-d.rowStart+(i.rowStart-d.rowStart))%g}const a=r?.font;a&&a.fill&&(s=s??this._c.getNormalRanged().getPropertiesAt(t,e,n),s&&s.font&&a.fill===s.font.fill&&(o===r&&(o={...o}),o.font={...a},delete o.font.fill));const c=r?.fill;c&&(s=s??this._c.getNormalRanged().getPropertiesAt(t,e,n),s&&E.CommonUtils.deepEqual(c,s.fill)&&(o===r&&(o={...o}),delete o.fill));const h=o?.border;if(h){const d=i??this._r,u=this._localizeBorder(h,d,t,e);u!==void 0&&(o===r&&(o={...o}),u===null?delete o.border:o.border=u)}return o}toJSON(){return E.CommonUtils.toSafeJSON(this._p)}}const I_=Object.freeze({value:null,style:null,hyperlink:null,formula:null,type:A.ScalarType.Null,stringToParse:null}),ed=Object.seal({value:void 0,style:void 0,hyperlink:void 0,formula:void 0,type:void 0,stringToParse:void 0}),b_=Object.seal({value:void 0,style:void 0,hyperlink:void 0,formula:void 0}),v_=Object.freeze({width:1,height:1}),x_=new Fa({max:1e3}),R_=new class{isEditAllowed(){return!0}isFormulaHidden(){return!1}get isICellProtection(){return!0}},ia=(l,t,e=null,n=null,r=!1)=>{if(l===void 0)return;if(l===null)return I_;if(l&&l.isICell){const p=l,S=ed;return S.value=p.getValue(),p.getStyle().isNormal()||(S.style=p.getStyle()._p.getProperties()),S.formula=p.getFormulaText(),S.hyperlink=p.getHyperlink(),S.type=p.getType(),S}let o;l.value!==void 0||l.style!==void 0||l.hyperlink!==void 0?o=l:(o=b_,o.value=l,o.style=void 0,o.hyperlink=void 0);const s=ed;s.type=void 0,s.value=void 0,s.style=void 0,s.formula=void 0,s.hyperlink=void 0,s.stringToParse=void 0;let i,a=o.value,c=!1;if(o.value!==void 0&&(i=$t(a),i||(c=Tr(a),c&&(i=A.ScalarType.Number)),!i))throw new Error("Invalid cell type. See documentation for information on valid built in cell types and creating custom cell types.");let h,d,u=null,g=null,m;if(i===A.ScalarType.String){if(m=o.value,e){let p=n?.get(m);if(!p){const S=m.length,C=m.charAt(0);C==="="&&S>1?(d=m.substring(1),a=null):(p=Ag(m,e),!p||typeof p.value!="string"||C!=="+"&&C!=="-"||(d="="+m,a=null),p!==void 0&&n&&n.set(m,p))}p&&(p.value!==void 0&&(a=p.value,i=$t(a)),p.style!==void 0&&(u=p.style),p.hyperlink!==void 0&&(h=p.hyperlink)),!r&&e.parse&&(g=m)}}else if(c){const p=e?.date1904??t.date1904;a=Ao(o.value,p),u=S=>{if(!To(S.getNumberFormat()))return{numberFormat:"Short Date"}}}else a=o.value;let f=o.style;if(f&&f.isIStyle&&(f=f._p.getProperties()),h=o.hyperlink??h,u)if(f){const p=f;f=S=>{let C=S.createTemporaryStyle(u);return C=C.createTemporaryStyle(p),C=C._p.getProperties(),C}}else f=u;let _=!1;return a!==void 0&&(a===null?(s.value=null,s.type=A.ScalarType.Null):(s.value=a,s.type=i),_=!0),f!==void 0&&(s.style=f,_=!0),h!==void 0&&(s.hyperlink=h,_=!0),d!==void 0&&(s.formula=d,_=!0),r||(s.stringToParse=g,_=!0),_?(s.type=i,s):void 0},xg=(l,t,e,n)=>Ig(e,t,l,t.getNumberFormat(),r=>n.styles.parseColor(r),n.date1904),Rg=(l,t,e,n,r=!1)=>{if(l===A.ScalarType.Null)return null;let o="";if(r)o=""+e;else{const s=xg(l,t,e,n);if(s.formattedRuns){const i=s.formattedRuns.runs;for(let a=0;a<i.length;a++)o+=i[a].text}else o=s.displayText}return _i(o,t.getFont(),t.getAlignment(),l===A.ScalarType.String,r)},Na=(l,t)=>{const e=t.getInsets();if(l===A.ScalarType.Null)return e;let n=e;const r=yi(l,t),o=t.getAlignment().getIndent();if(o&&(r===exports.ITextFrame.HorizontalAlignment.Left||r===exports.ITextFrame.HorizontalAlignment.Right)){n={...e};const s=t.measureText(" ".repeat(1*o)),i=Math.min(3,Math.max(1,(26-t.getFont().getSize())/2));let a=s.width*i;r===exports.ITextFrame.HorizontalAlignment.Left?n.left+=a:r===exports.ITextFrame.HorizontalAlignment.Right&&(n.right+=a)}return Object.freeze(n)},yi=(l,t)=>{const e=t.getAlignment(),n=e.getRotation(),r=e.getHorizontal();return n!==0&&r===exports.ITextFrame.HorizontalAlignment.General?n>0&&n<90||n>180&&n<=270?exports.ITextFrame.HorizontalAlignment.Right:exports.ITextFrame.HorizontalAlignment.Left:r===exports.ITextFrame.HorizontalAlignment.General?l===A.ScalarType.Null?exports.ITextFrame.HorizontalAlignment.Left:l===A.ScalarType.Boolean||l===A.ScalarType.Error?exports.ITextFrame.HorizontalAlignment.Center:t.getNumberFormat()==="@"?exports.ITextFrame.HorizontalAlignment.Left:l===A.ScalarType.Number?exports.ITextFrame.HorizontalAlignment.Right:exports.ITextFrame.HorizontalAlignment.Left:r},A_=(l,t,e,n,r,o,s,i)=>{if(t===A.ScalarType.Null||n==="")return null;const a=l.colIndex;if(!((B,U,D=!1,z=!1)=>{if(B===A.ScalarType.Null)return!1;const k=U.getAlignment(),P=k.getHorizontal();if(P===exports.ITextFrame.HorizontalAlignment.CenterContinuous)return!0;if(P===exports.ITextFrame.HorizontalAlignment.Fill||P===exports.ITextFrame.HorizontalAlignment.Distributed||B!==A.ScalarType.String||k.getOverflow()!==exports.ITextFrame.Overflow.Visible||P===exports.ITextFrame.HorizontalAlignment.Right&&D||P===exports.ITextFrame.HorizontalAlignment.Center&&D&&z||z&&(P===exports.ITextFrame.HorizontalAlignment.General||P===exports.ITextFrame.HorizontalAlignment.Left))return!1;const j=k.getVertical();return j!==exports.ITextFrame.VerticalAlignment.Justify&&j!==exports.ITextFrame.VerticalAlignment.Distributed})(t,e,r!==null&&r.colIndex+1===a,o!==null&&o.colIndex-1===a))return null;const c=M_(t,e,n,i),h=e.getAlignment().getHorizontal(),d=h===exports.ITextFrame.HorizontalAlignment.Fill,u=h===exports.ITextFrame.HorizontalAlignment.CenterContinuous||d;if(!c&&!u)return null;const g=(m=yi(t,e))===exports.ITextFrame.HorizontalAlignment.Center||m===exports.ITextFrame.HorizontalAlignment.CenterContinuous?E.AnchorLocation.Center:m===exports.ITextFrame.HorizontalAlignment.Right?E.AnchorLocation.Right:E.AnchorLocation.Left;var m;let f=0,_=0,p=0,S=0,C=1;if(u&&n!==null&&s.directStyle){const B=s.directStyle.getCoords();C=Math.min(i.nextContentful(l,B.colEnd),B.colEnd)-l.colIndex+1}const y=i.colHeaders,I=y.findOffset.bind(y),w=y.findIndex.bind(y);let b=I(a);const x=b;let R=I(a+C),v=R-b,T=a,M=a;const F={x:0,y:0,width:v,height:c?.height??0},N=a-a+C;let O=c?c.width-v:0,L=F;return d&&(O=0),v>0&&O>0&&(g===E.AnchorLocation.Center&&(O/=2),g!==E.AnchorLocation.Left&&g!==E.AnchorLocation.Center||(M=w(R+O),o!==null&&(M=Math.min(M,o.colIndex-1)),R=I(M),S=O,_=M-a),g!==E.AnchorLocation.Right&&g!==E.AnchorLocation.Center||(T=w(b-O),r!==null&&(T=Math.max(T,r.colIndex+1)),b=I(T),p=O,f=a-T),F.x=x-b,L.x=F.x),{anchorBounds:F,leftIndex:f,rightIndex:_,leftOffset:p,rightOffset:S,colSpan:N,colBounds:L}};class T_{constructor(t,e){if(this._styles=t,this._rs=e,e?.table){const n=e?.table;this._table=n.getStyle().getRanged(n)}if(e?.conditionals){this._conditionals=[];for(let n=0;n<e.conditionals.length;n++){const r=e.conditionals[n];this._conditionals.push(r)}}}getCoords(){return E.CoordUtils.EmptyRange}getPropertiesAt(t,e,n){let r=null,o=this._rs.directStyle?.getPropertiesAt(t,e,n)??null;const s=this._styles;if(o&&o.named){const h=o.named;if(h!==exports.IStyle.BuiltInName.Normal){const d=this._styles.getNamed(h);d?r=d.getRanged().getPropertiesAt(t,e,n):console.warn(`A named styled was referenced but not found: '${h}'.`)}}let i=null;const a=this._table?.getPropertiesAt(t,e,n);a&&(i=i?E.TypedObject.resolveTypedUpdates(a,Tt,s,i):a),r&&(i=i?E.TypedObject.resolveTypedUpdates(r,Tt,s,i):r);const c=this._conditionals;if(c)for(let h=0;h<c.length;h++){const d=c[h].getPropertiesAt(t,e,n);d&&(i=i?E.TypedObject.resolveTypedUpdates(d,Tt,s,i):d)}return o&&(i=i?E.TypedObject.resolveTypedUpdates(o,Tt,s,i):o),i}cloneWithUpdate(t){return(this._rs.directStyle??this._styles.getNormalRanged()).cloneWithUpdate(t)}}const la=(l,t,e,n)=>{if(!e)return n.styles.getNormal();const r=n.styles;return Rr(r,e?new T_(r,e):null,t)},yn=(l,t,e,n,r,o,s,i=null,a=x_)=>{if(e===null)return t?t.getBestFit():null;const c=l===A.ScalarType.String,h=t.getFont(),d=h.getWeight(),u=h.getSize(),g=h.getFamily(),m=t.getAlignment(),f=m.getOverflow(),_=m.getRotation(),p=m.getVertical(),S=t.getNumberFormat(),C=c&&f===exports.ITextFrame.Overflow.Visible,y=c&&(f===exports.ITextFrame.Overflow.Wrap||p===exports.ITextFrame.VerticalAlignment.Justify||p===exports.ITextFrame.VerticalAlignment.Distributed),I=(i??"")+"\0"+u+g+d+S+_+C+y+o+s+(i?"":e),w=a.get(I);if(w)return w;let b=null,x=null;const R=Na(l,t),v=R.top+R.bottom+ +B_(t);let T=!1,M=!1;s&&(M=!0,(_!==0||y)&&(M=!1));const F=M?void 0:Rg(l,t,e,n),N=R.left+R.right+2;if(F){if(l===A.ScalarType.Number&&S==="General"&&o){let B=e,U=E.CommonUtils.splitNumber(B),D="";D=Math.abs(B)>=Math.pow(10,12)||Math.abs(B)<=Math.pow(10,-12)?`0.${"0".repeat(Math.max(2,Math.min(U.ipLength,5)))}E+00`:Math.abs(U.ipLength)===0?"0.0":Math.abs(U.fpLength)>0?"0".repeat(U.ipLength)+".0":"0".repeat(U.ipLength),B<0&&(D="-"+D),D="0".repeat(D.length);const z=t.measureText(D);b=z.width,x=z.lineHeight}else{let B=null;y&&(B={width:Math.max(1,r-N)});const U=F.layout(B);b=U.bounds.width,x=U.bounds.height}if(b!==null&&(b+=N),x!==null&&(x+=v),T=l===A.ScalarType.String,_){T&&f===exports.ITextFrame.Overflow.Wrap&&(T=!1);const B=((U,D)=>{const{x:z,y:k,width:P,height:j}=U,H=D*Math.PI/180,W=Math.sin(H),V=Math.cos(H),$=P/2,nt=j/2,et=$o(-$,-nt,W,V),at=$o($,-nt,W,V),q=$o(-$,nt,W,V),K=$o($,nt,W,V);let rt=Math.min(et.x,at.x,q.x,K.x)+$,mt=Math.max(et.x,at.x,q.x,K.x)+$,G=Math.min(et.y,at.y,q.y,K.y)+nt;return{x:z+rt,y:k+G,width:mt-rt,height:Math.max(et.y,at.y,q.y,K.y)+nt-G}})({x:0,y:0,width:b,height:x},_);b=B.width,x=B.height}}else x=t.getBestFit().height;o&&T&&(b=0);const O={width:b,height:x},L=Object.freeze(O);return a.set(I,L),L},M_=(l,t,e,n)=>{const r=Na(l,t),o=yi(l,t);let s=r.left+r.right;o===exports.ITextFrame.HorizontalAlignment.Left?s=r.right:o===exports.ITextFrame.HorizontalAlignment.Right?s=r.left:o===exports.ITextFrame.HorizontalAlignment.Center&&(s=r.left+r.right);const i=yn(l,t,e,n,Number.MAX_SAFE_INTEGER,!1,!1);return{width:Math.ceil(i.width-s),height:Math.ceil(i.height)}};class Rn{constructor(t,e,n=A.ScalarType.Null,r=null,o=null,s=null,i=null){this._options=t,this._coords=e??null,this._t=n,this._rs=o,this._v=r,this._p=s,this._n=i}getRange(){const t=this._coords;return this._options.getRange(t?E.CoordUtils.cellToRange(t):null)}isEqual(t){if(!t)return!1;if(this===t)return!0;const e=t;return!!e.isICell&&this._v===e._v&&!!E.CoordUtils.isEqualCells(this._coords,t.getCoords())&&this._options.sheet===e._options?.sheet}getCoords(){return this._coords}getA1(){const t=this._coords;return t?Ze(this._options.resolveRange(t).getCoords()):Pt}getSheet(){return this._options.sheet}select(t){return this._options.opener("#"+Oo(this._coords),t)}getColumnFilter(){if(!this._rs)return null;let t=null;if(this._rs.table){const e=this._rs.table.getHeaderRange().getCoords();if(e&&E.CoordUtils.isCellWithinRange(this._coords,e)){const n=this._coords.colIndex-e.colStart;t=this._rs.table.getColumnFilter(n)??null}}return t}getProtection(){return R_}getTextOverflow(){const t=this._to;if(t!==void 0)return t;if(this._rs&&this._rs.merge)return this._to=null,null;const e=this.getStyle(),n=A_(this._coords,this._t,e,this._v,this._p,this._n,this._rs,this._options);return n===null||n.leftIndex===0&&n.rightIndex===0&&n.colSpan<=1?(this._to=null,null):(this._to=n,this._to)}getRenderHorizontalAlignment(){return yi(this._t,this.getStyle())}isEmpty(){return this._v===null&&!this._rs}getExtrusions(){const t=this._rs;if(!t&&this._to===null)return null;if(t){const r=t.merge;if(r!==void 0)return r.getCoords()}const e=this.getTextOverflow();if(!e)return null;const n=this._coords;return{colStart:n.colIndex-e.leftIndex,rowStart:n.rowIndex,colEnd:n.colIndex+e.rightIndex+e.colSpan-1,rowEnd:n.rowIndex}}isEditAllowed(){const t=this._options;return t?!t.getProtection().isLocked()||!!this._rs&&this.getProtection().isEditAllowed():!0}isFormulaHidden(){return!!this._options.getProtection().isLocked()&&!!this._rs&&this.getProtection().isFormulaHidden()}isContentful(){return this._v!==null}getBestFit(t,e=!1){return t===void 0&&(t=this._options.sheet.getColumnHeaders().getSpanSize(this._coords.colIndex)??64),yn(this._t,this.getStyle(),this._v,this._options,t,e,!1)}getInsets(){return this._v===null?this.getStyle().getInsets():Na(this._t,this.getStyle())}getTextFrame(t){let e,n;if(t&&(n=this.getFormulaText()),e=n??this._v,e===null)return null;const r=this.getStyle();return n?((o,s)=>s===A.ScalarType.Null?null:_i(s,o.getFont(),o.getAlignment(),!1,!0))(r,e,this._options):Rg(this._t,r,e,this._options,t)}getValue(){return this._v}getFormula(){let t=this._rs?.formula;if(!t)return null;const e=this._coords;return e?(Array.isArray(t)&&(t=t[0]),new N_(this._options,t,e)):null}getFormulaText(){let t=this._rs?.formula;if(!t)return null;const e=this._coords;return e?(Array.isArray(t)&&(t=t[0]),"="+t.getFormulaTextAt(e.rowIndex,e.colIndex)):null}getCalcStatus(){const t=this._rs;return t&&t.pending?exports.ICell.CalcStatus.Pending:exports.ICell.CalcStatus.Ready}getType(){return this._t}getStyle(t=!1){if(!t&&this._styleConditional)return this._styleConditional;if(t&&this._styleSpecific)return this._styleSpecific;const e=la(0,E.CoordUtils.cellToRange(this._coords),this._rs,this._options);return t?this._styleSpecific=e:this._styleConditional=e,e}createTemporaryCell(t){const e=this._options;if(t===null)return new Rn(e,this._coords,null);const n=ia(t,this._options);let r=this._rs;if(n.style!==void 0){const i=this._coords??E.CoordUtils.EmptyCell,a=E.CoordUtils.cellToRange(i),c=()=>la(0,a,this._rs,this._options),h=wi(this._options.styles,n.style,c),d=(this._rs?.directStyle??new zt(e.styles,a)).cloneWithUpdate(h);r={...r,directStyle:d}}let o=this._t,s=this._v;return n&&n.value!==void 0&&(s=n.value,o=n.type),s===this._v&&o===this._t&&r===this._rs?this:s!==null||r?new Rn(this._options,this._coords,o,s,r):new Rn(this._options,this._coords)}_isDate1904(){return this._options.date1904}getNumberFormat(t){if(t!==void 0){const e=this._v;return Ig(e,this.getStyle(),this._t,t,n=>this._options.styles.parseColor(n),this._isDate1904())}return xg(this._t,this.getStyle(),this._v,this._options)}toDate(){return this._t!==A.ScalarType.Number?null:this._rs?this.getNumberFormat().asDate:null}toText(t){return this.getNumberFormat(t).displayText}toTextUnformatted(t){if(t){const n=this.getFormulaText();if(n)return n}let e=this._v;return this.isSpillOverflow()&&(e=null),((n,r,o,s)=>{if(r===A.ScalarType.Null||n==null)return"";if(r===A.ScalarType.Number){const i=n,a=To(o),c=gi(o);if(a||c){const h=parseFloat(n),d=h%1!=0,u=h>=1;if(h<0)return E.CommonUtils.castToString(n);if(!a||c||d)if(!c||a||u){const g=ro("Short Date",i,s),m=ro("Long Time",i,s);if(g&&m)return g.fmt+" "+m.fmt}else{const g=ro("Long Time",i,s);if(g)return g.fmt}else{const g=ro("Short Date",i,s);if(g)return g.fmt}}}if(r===A.ScalarType.Number&&o.endsWith("%")){let i=E.CommonUtils.roundAccurately(100*parseFloat(n));if(!isNaN(i))return i+"%"}return r===A.ScalarType.Boolean?n?"TRUE":"FALSE":r===A.ScalarType.Error?n?.getLabel?.()??A.FormulaError.Label.Unknown:r===A.ScalarType.RichData?"(Rich Object)":E.CommonUtils.castToString(n)})(e,this._t,this.getStyle().getNumberFormat(),{date1904:this._isDate1904()})}getComments(){const t=this._rs?.comments;return t?Object.freeze(t):null}getHyperlink(){const t=this._rs?.hyperlink;return t?new l0(this.toText.bind(this),this._options.opener,t):null}getErrors(){const t=this._rs;return t&&t.calcError?[t.calcError]:E.CommonUtils.EmptyArray}getWarnings(){return E.CommonUtils.EmptyArray}getSpans(){const t=this._rs?.merge;if(!t)return v_;const e=t.getCoords();return Object.freeze({width:e.colEnd-e.colStart+1,height:e.rowEnd-e.rowStart+1})}isTopLeft(){const t=this._rs?.merge;if(!t)return!0;const e=t.getCoords();return this._coords&&this._coords.colIndex===e.colStart&&this._coords.rowIndex===e.rowStart}getSpill(){let t=this._rs?.spills;if(!t||!this._coords)return null;Array.isArray(t)||(Qo[0]=t,t=Qo);let e=null;for(let n=0;!e&&n<t.length;n++){const r=t[n];r.getError()||(e=r)}return e||(e=t[0]),this._options.getRange(e.getCoords())}isSpillOverflow(){let t=this._rs?.spills;if(!t)return!1;if(!this._coords)return null;Array.isArray(t)||(Qo[0]=t,t=Qo);for(let e=0;e<t.length;e++){const n=t[e].getCoords();if(this._coords.colIndex===n.colStart&&this._coords.rowIndex===n.rowStart)return!1}return!0}get[Symbol.toStringTag](){return"[Cell]"}toString(){let t="{blank}";return this._v!==null&&(t=this.toTextUnformatted(),this.getType()===A.ScalarType.String&&(t=`'${t}'`)),`${this.getA1()} => ${t}`}get isICell(){return!0}}let F_=class extends Rn{constructor(l){super(l,null,null,null)}isEmpty(){return!0}isContentful(){return!1}toString(){return"{EMPTY CELL}"}};class N_{constructor(t,e,n){this._options=t,this._entry=e,this._coords=n}getTokens(t){const e=this._coords;return e?this._entry.getTokensAt(e.rowIndex,e.colIndex,t):E.CommonUtils.EmptyArray}evaluate(t){const e=this._coords;return e?this._options.calcGraph().evaluateAt(e.rowIndex,e.colIndex,t):E.CommonUtils.EmptyArray}toText(t){const e=this._coords;return e?"="+this._entry.getFormulaTextAt(e.rowIndex,e.colIndex,t):null}getDirectPrecedents(){const t=this._coords;return t?this._options.calcGraph().getDirectPrecedentsAt(t.rowIndex,t.colIndex):E.CommonUtils.EmptyArray}getReferences(){const t=this._coords;return t?this._entry.getReferencesAt(t.rowIndex,t.colIndex):E.CommonUtils.EmptyArray}setReferenceAt(t,e){const n=this._coords;return n?(this._options.calcGraph().setReferenceAt(n.rowIndex,n.colIndex,t,e),this):E.CommonUtils.EmptyArray}get[Symbol.toStringTag](){return"[Formula]"}toString(){return this.toText()}}const Qo=[null];let dl;const ii=(l,t,e,n=!1)=>{const r=e===A.IRange.Orientation.Row,o=l.length,s=new Array(o);for(let i=0;i<o;i++){const a=l[i];if(r){const c=a.colEnd-a.colStart+1;s[i]={...a,colStart:n?a.colEnd+1:a.colStart,rowStart:t.rowStart,colEnd:n?a.colEnd+c:a.colEnd,rowEnd:t.rowEnd}}else{const c=a.rowEnd-a.rowStart+1;s[i]={...a,colStart:t.colStart,rowStart:n?a.rowEnd+1:a.rowStart,colEnd:t.colEnd,rowEnd:n?a.rowEnd+c:a.rowEnd}}}return s},bo=(l,t,e)=>{const n=t,r=l.length;for(let o=0;o<r;o++){const s=l[o];if((s.rowStart<=n.rowStart&&s.rowEnd>=n.rowEnd)!==e)return!e}return e},vo=(l,t,e)=>{const n=t,r=l.length;for(let o=0;o<r;o++){const s=l[o];if((s.colStart<=n.colStart&&s.colEnd>=n.colEnd)!==e)return!e}return e},nd=(l,t)=>{let e=0;const n=l.length;for(let r=0;r<n;r++){const o=l[r];t===A.IRange.Orientation.Column?e+=o.colEnd-o.colStart+1:e+=o.rowEnd-o.rowStart+1}return e},O_=(l,t)=>{if(t){if(l.colStart<=t.colStart&&l.colEnd>=t.colEnd)return A.IRange.Orientation.Row;if(l.rowStart<=t.rowStart&&l.rowEnd>=t.rowEnd)return A.IRange.Orientation.Column}return l?(e=>e.rowEnd-e.rowStart>e.colEnd-e.colStart?A.IRange.Orientation.Column:A.IRange.Orientation.Row)(l):A.IRange.Orientation.Row},Zo=()=>!1,ul=()=>!0,ts=()=>null,rd=()=>Dt,Ge=()=>0,od=new class extends Rn{constructor(){super(null,null)}createTemporaryCell(){return this}getType(){return A.ScalarType.Error}getWarnings(){return[Pt]}getStyle(l=!1){return dl||(dl=new Fr().getNormal(),dl)}toString(){return`${this._coords?Oo(this._coords):Pt} => ${this._v??"{blank}"}`}},Be=()=>bn,bn={forEach:()=>{},[Symbol.iterator]:rd,entries:rd,select:pt,find:pt,calculate:pt,getCell:()=>od,getValue:ts,setValue:pt,setFormula:pt,setValues:pt,updateCells:pt,updateStyle:pt,getCells:()=>[[od]],getStyleUpdater:pt,getValues:()=>[[null]],getBounds:ts,getIntersect:Be,getUnion:Be,getDifferences:pt,getResizeBy:Be,getResizeTo:Be,getOffsetBy:Be,getOffsetTo:Be,getFixed:Be,getUsedRange:Be,getEntireRows:Be,getEntireColumns:Be,getSurrounding:pt,getExtended:pt,isEntireRows:Zo,isEntireColumns:Zo,isEntireRange:Zo,getWidth:Ge,getHeight:Ge,size:0,sort:pt,clear:pt,setHyperlink:pt,setComments:pt,merge:pt,unmerge:pt,getMerges:pt,insert:pt,insertFrom:pt,delete:pt,getDefaultShiftOrientation:pt,getDefaultSortCriteria:pt,autoFill:pt,autoFit:pt,getSnapshot:pt,copyFrom:pt,doBatch:pt,startIncrementalUpdates:pt,getRowHeaders:pt,getColumnHeaders:pt,getCounts:pt,getCount:Ge,isContentful:Zo,addListener:pt,getColumnStart:Ge,getRowStart:Ge,getColumnEnd:Ge,getRowEnd:Ge,getRowCount:Ge,getColumnCount:Ge,getVisible:pt,getCoords:ts,isEmpty:ul,toString:()=>Pt,getA1:()=>Pt,isInvalid:ul,getSheet:ts,isReadOnly:ul,isICellRange:!0};function tn(l,t=null,e=null,n=Pt){return l||e?Object.freeze({...bn,getSheet:()=>l,bounds:()=>e,getA1:()=>n,toString:()=>e?sn(e,t):n}):bn}const k_=/^[\\+-]?[0-9]*\.?[0-9]*$/,Ag=(l,t,e)=>{if(l===void 0)throw new Error("A value is required to create a cell from a text.");const n=e??{value:null};if((l=E.CommonUtils.castToString(l)).trim()==="")return n;if(l.toUpperCase()==="TRUE"||l.toUpperCase()==="FALSE")return n.value=l.toUpperCase()==="TRUE",n;if(l.startsWith("'")&&!t?.ignoreQuotePrefix)return n.style={quotePrefix:!0},n.value=l.substring(1,l.length),n;n.value=l;const r=",",o="$",s=".";let i=l.trim(),a=1,c=!1;i=(_=>{const p=new RegExp("([(]{1}([^(|^)]+)[)]{1})").exec(_);if(p?.[2]){const S=_.substring(0,p.index)+p[2].trim()+_.substring(p.index+("("+p[2]+")").length-1,_.length-1);return S.indexOf("(")>-1||S.indexOf(")")>-1?_:(c=!0,a=-1,S)}return _})(i);let h=0;i=(_=>{const p=new RegExp("[0-9]+([eE][-+]?[0-9]+)?$").exec(_);if(p?.[1]){const S=_.substring(0,_.length-p[1].length);let C=1,y=p[1].substring(1,p[1].length);if(y.startsWith("-")?(y=y.substring(1,y.length),C=-1):y.startsWith("+")&&(y=y.substring(1,y.length)),!isNaN(y))return h=y*C,S}return _})(i);let d=!1;if(i=(_=>{const p=new RegExp(`^(\\${o}[\\ ]*\\-|\\${o}[\\ ]*\\+|\\-[\\ ]*\\${o}|\\+[\\ ]*\\${o}|\\-|\\+)?`).exec(_);if(p?.[1]){const S=p?.[1].indexOf(o)>-1,C=p?.[1].indexOf("-")>-1,y=p?.[1].indexOf("+")>-1,I=(S?o:"")+_.substring(p.index+p[1].length,_.length).trim(),w=I.indexOf("-")>-1,b=I.indexOf("+")>-1;return w||b?_:(d=C||y,C&&(a=-1),I)}return _})(i),d&&(c||i.length===0))return n;let u=!1;if(i=(_=>{if(new RegExp(`^(?:\\${o}[\\ ]*)?((\\d{1,3}(${r}\\d{3})*)|(\\d*))(\\${s}|\\${s}\\d*)?(?:[\\ ]*\\%)?$`).test(i)){const p=_.replace(new RegExp(`${r}`,"g"),"");return u=p.length<_.length,p}return _})(i),i.match(k_)&&!isNaN(i)){if(n.value=i*a,h!==0)n.value=n.value*Math.pow(10,h),n.style={numberFormat:`0${s+"0".repeat(2)}E+00`};else if(u){let _=Rs(i);n.style=_>0?{numberFormat:`#${r}##0${s+"0".repeat(2)}`}:{numberFormat:`#${r}##0`}}return n}if(i.trimEnd().endsWith("%")&&i.trimEnd().length>1){let _=i.substring(0,i.length-1);if(!isNaN(_)){n.value=_*a/100;const p=Rs(_);n.style=S=>{if(!S.getNumberFormat().includes("%"))return{numberFormat:p>0?`0${s+"0".repeat(2)}%`:"0%"}}}return n}if(i.startsWith(o)&&l.trim().length>1){let _=i.replace(o,"");if(!isNaN(_)){let p=Rs(_);n.value=_*a,n.style=S=>{if(S.getNumberFormat().includes(o))return;let C;return C=p>0?`${o}#${r}##0${s+"0".repeat(2)}_);[Red](${o}#${r}##0${s+"0".repeat(2)})`:`${o}#${r}##0_);[Red](${o}#${r}##0)`,{numberFormat:C}}}return n}let g=null,m=null;try{m=Cu(l,t?.date1904,!0);let _=l;m&&(_=m.leadingText),_.trim().length>0&&(g=wa(_,t?.date1904)),!g&&m?.leadingText.trim().length>0&&(m=null)}catch{}if(g||m){n.style=p=>{let S=p.getNumberFormat();const C=To(S);if(g&&C)return;const y=gi(S);if(!m||!y){if(g&&m&&!C&&!y?S="m/d/yyyy h:mm":g&&!C?S=g.numberFormat:m&&!y&&(S=m.numberFormat),m&&m.parsed.oaDateTime>1&&(S="General"),g&&!C&&!m){const I=exports.NumberFormat.Parser.formatValue(g.numberFormat,g.asOADate,{date1904:t?.date1904}),w=Intl.DateTimeFormat().resolvedOptions().locale??"en-US";I===new Intl.DateTimeFormat(w).format(g.asJSDate)?S="Short Date":I===new Intl.DateTimeFormat(w,{dateStyle:"full"}).format(g.asJSDate)?S="Long Date":I===new Intl.DateTimeFormat(w,{timeStyle:"medium"}).format(g.asJSDate)&&(S="Long Time")}return{numberFormat:S}}};let _=0;return g&&(_+=g.asOADate),m&&(_+=m.parsed.oaDateTime),n.value=_,n}const f=A.FormulaError.getBuiltInByLabel(l);return f?(n.value=f,n):(n.value=l,Mu(l)?n.hyperlink=l:Fu(l)&&(n.hyperlink=l,n.hyperlink.toLowerCase().startsWith("mailto:")||(n.hyperlink=`mailto:${n.hyperlink}`)),l.includes(`
`)&&(n.style={...n?.style,alignment:{overflow:exports.ITextFrame.Overflow.Wrap}}),n)},B_=l=>{const t=l.getFont().getUnderline()===exports.IFont.UnderlineStyle.SingleAccounting,e=l.getFont().getUnderline()===exports.IFont.UnderlineStyle.DoubleAccounting;let n=0;return(t||e)&&(n=l.measureText("").underlineThickness+1,e?n*=2:n+=1),n},gl=l=>{const t=[];return l.getUsedRange().forEachSpan((e,n)=>{const r=n.getCoords();e===0&&t.push(r)},{includeStyles:!1}),wn(wo(t))},ml=(l,t,e,n)=>{const r=n?.asJSDate;let o;e?o=gg:(r||n?.includeMergeOverflow)&&(o={},r&&(o[Y.Type.Style]=!1,o[Y.Type.Table]=!1),n.includeMergeOverflow&&(o[Y.Type.Merge]=!1));const s=n?.orientation??A.IRange.Orientation.Row,i=n?.maxSize??1e4,a=l({includeEmpty:!0,orientation:s,reverse:n?.reverse,excludeHidden:n?.excludeHidden,includeMergeOverflow:n?.includeMergeOverflow,includeRangeTypes:o,bounds:t,excludeCellDetails:!r}),c=s!==A.IRange.Orientation.Row,h=[];let d,u=-1,g=null,m=0;for(d=a.next();!d.done;){if(m>i)throw new Error(mg(i));const f=d.value,_=f.context.getCoords(),p=c?_.colIndex:_.rowIndex;p!==u&&(g=[],h.push(g),u=p);let S=f.value;if(e)S=f.context.getCell();else if(r&&S!==null&&typeof S=="number"){const C=f.context.getCell().toDate();C&&(S=C)}g.push(S),d=a.next(),m++}return h},go=(l,t)=>l===t||!(!l||!t)&&l.rowStart===t.rowStart&&l.rowEnd===t.rowEnd&&l.colStart===t.colStart&&l.colEnd===t.colEnd&&l.$rowStart===t.$rowStart&&l.$rowEnd===t.$rowEnd&&l.$colStart===t.$colStart&&l.$colEnd===t.$colEnd,Tg=(l,t)=>{if(!l)return;const e={...l};return t?typeof t=="boolean"?(e.$colStart=t,e.$rowStart=t,e.$colEnd=t,e.$rowEnd=t,e):(typeof t.colStart=="boolean"&&(e.$colStart=t.colStart),typeof t.rowStart=="boolean"&&(e.$rowStart=t.rowStart),typeof t.colEnd=="boolean"&&(e.$colEnd=t.colEnd),typeof t.rowEnd=="boolean"&&(e.$rowEnd=t.rowEnd),e):e};class fl{constructor(t,e,n){const r=this;this.setState=o=>{const s=o[0];let i=o[1],a=o[2];if(e&&e.includeMergeOverflow&&a&&a.merge){const h=e.bounds,d=a.merge.getCoords();let u=!1;const g=d.colStart,m=d.rowStart,f=h.colStart,_=h.rowStart,p=s.colIndex,S=s.rowIndex;!u&&g<f&&m>=_&&p===f&&S===m&&(u=!0),!u&&m<_&&g>=f&&S===_&&p===g&&(u=!0),!u&&m<_&&g<f&&S===_&&p===f&&(u=!0),u&&(i=a.merge.tvTl())}a&&Object.keys(a).length===0&&(a=null);let c=i;return i===void 0?(this._t=null,this._v=null,c=null):(this._t=$t(c),this._v=c),this._r=a,this._p=o[3],this._n=o[4],this._c=s,c},this.clear=()=>{r._c=null},this.context={getCoords(){const o=r._c;if(!o)throw new Error(Cr);return o},getCell(){const o=r._c;if(!o)throw new Error(Cr);if(this.excludeCellDetails)throw new Error("IteratorContext can only return a cell if the forEach excludeCellDetails has not been set to false.");const s=r._r,i=r._t,a=r._v;return a!==null||s?new Rn(n,o,i,a,s,r._p,r._n):new Rn(n,o)},getType:()=>r._t,getA1(o){if(!r.context)throw new Error(Cr);let s=r._c;return o&&(s={...r._c,...o}),n.resolveRange(s).toString()},toJSDate(o){if(r._t!==A.ScalarType.Number)return null;let s=o;if(s===void 0)s=r._v;else if(typeof s!="number")throw new Error("The arguments are not valid.");return Mr(s,n.date1904)}}}}const on=(l,t)=>{if(l||t)return l&&t?{...l,...t}:l||t},sd=(l,t,e,n=A.IRange.Orientation.Row)=>{const r=l.getRange(t,{excludeHidden:n}),o=r.forEach((p,S)=>({break:S.getCoords()}),{excludeCellDetails:!0,orientation:n});if(!o)return;const s=n===A.IRange.Orientation.Row,i=new Map,a=new Map,c=new Map;let h=null;const d=l.getRange(o).getMerges();let u=d.length>0?1+(s?d[0].rowEnd-d[0].rowStart:d[0].colEnd-d[0].colStart):1;const g=s?o.rowIndex:o.colIndex;if(r.forEach((p,S)=>{const C=S.getCoords(),y=s?C.colIndex:C.rowIndex,I=s?C.rowIndex:C.colIndex;if(I===g)i.set(y,p);else{if(I!==g+u)return xh;typeof p=="string"?h=!1:p!==null&&a.set(y,p)}if(h!=null)return xh},{orientation:n,excludeCellDetails:!0,address:t}),h===null){const p=a.entries();let S=p.next();for(;h===null&&!S.done;){const[C,y]=S.value,I=i.get(C);I&&(typeof I=="string"?c.set(C,I):h=!1),S=p.next()}h=h??c.size>0}const m={colStart:o.colIndex,rowStart:o.rowIndex,colEnd:t.colEnd,rowEnd:t.rowEnd};if(m.colStart>m.colEnd||m.rowStart>m.rowEnd||E.CoordUtils.isSingleCell(m))return null;const f=Math.min(Math.max(e?.colIndex??0,m.colStart),m.colEnd),_=Math.min(Math.max(e?.rowIndex??0,m.rowStart),m.rowEnd);return{coords:m,options:{...exports.Sort.DefaultRangeOptions,hasHeader:h,orientation:n,offset:n===A.IRange.Orientation.Row?f-m.colStart:_-m.rowStart},headers:c}},id=(l,t,e=null)=>Sr.fromArray(l,(n,r)=>{const o=n?.[1];if(o==null)return null;let s=n[0]??null;switch(o){case A.ScalarType.String:s=t.getById(s);break;case A.ScalarType.Error:s=A.FormulaError.getBuiltInById(s);case A.ScalarType.RichData:}return s},(n,r)=>{const o=$t(n);let s=n;switch(o){case A.ScalarType.String:s=t.add(s);break;case A.ScalarType.Error:s=s.getCode();case A.ScalarType.RichData:}return[s,o]},e),ld=(l,t)=>{const e=[],n=t?A.IRange.Orientation.Column:A.IRange.Orientation.Row,r=l.length;for(let o=0;o<r;o++){const s=l[o],i=s[0],a=s[1],c=a.length;for(let h=0;h<c;h++){const d=a[h],u=d[0],g=d[1].length-1,m={colStart:t?i:u,rowStart:t?u:i,colEnd:t?i:u+g,rowEnd:t?u+g:i,value:new Fe({colStart:t?i:u,rowStart:t?u:i,colEnd:t?i:u+g,rowEnd:t?u+g:i},n)};e.push(m)}}return e},Vr=(l,t,e=-1)=>{if(!l||l.length===0)return null;const n=l.length===1&&l[0].rowStart===l[0].rowEnd&&l[0].colStart===l[0].colEnd,r=e===-1?l.length-1:Math.min(Math.max(0,e),l.length-1);return{cell:t??{rowIndex:l[r].rowStart,colIndex:l[r].colStart},ranges:n?[]:[...l],rangeIndex:n?-1:r}},ur=l=>{if(!l)return null;const t=[];if(l.ranges&&l.ranges.length>0){const e=Math.max(0,Math.min(l.rangeIndex??0,l.ranges.length));for(let n=e;n<l.ranges.length;n++)t.push(l.ranges[n]);for(let n=0;n<e;n++)t.push(l.ranges[n])}else l.cell&&t.push(E.CoordUtils.cellToRange(l.cell));return t},vt=(l,t)=>{if(!l||l.length===0)return null;let e=l.length-1;const n=l[e],r=l[0];if(!r||!r)return null;const o=l.length===1&&r.rowStart===r.rowEnd&&r.colStart===r.colEnd;return n?{cell:{rowIndex:n.rowStart,colIndex:n.colStart},ranges:o?[]:[...l],rangeIndex:o?-1:e}:null},ad="Item has been closed. No further operations are allowed.";class Ci{constructor(t){if(this._emitter=null,this._closed=!1,!t)throw new Error("Anchored.ConstructorOptions is required");if(this._options={...t},!this._options.initialAnchor)throw new Error("Initial anchor is required");const e=this;this._transactions=this._options.transactions??new ve({transient:!0}),this._emitter=new Yt(this,this._transactions),this._updateState({anchor:this._options.initialAnchor},{description:t?.createDescription??"Create Anchored Item"}),this._options.setContainerShiftCallback?.(n=>e._processContainerShift(n)),this._options.setContainerLayoutCallback?.(()=>{e._processContainerLayout()}),this._options.setContainerDeleteCallback?.(()=>{e._processContainerDelete()}),this._options.setContainerProtectionCallback?.(()=>{e._processContainerProtection()}),this._transactionsRemoveListener=this._transactions.addStateListener(this,{onBeforeCommitStart(n,r,o){e._processBeforeCommitStart(n,r,o)},onAfterStateChange(n,r,o){e._processStateChange(n,r,o),e._processAnchorCoords(),e._emitter.notify("onAnchorCoordsChange")},onRestoreOrRevert(n,r,o){e._processRestoreOrRevert(n,r,o)}})}_getEmitter(){return this._emitter}delete(t){this._options.deleteFromContainer?.(t)}getAnchorCoords(){return this._getState()?.anchor??null}getAnchorType(){return this._getState()?.anchorType??exports.IAnchored.Type.TwoCell}isProtected(){return this._options.isProtected?.()??!1}beginCommit(t){return this._beginCommit(t)}_getState(){if(this._closed)throw new Error(ad);return this._transactions.getState(this)}_beginCommit(t){return this._transactions.beginCommit(typeof t=="string"?{description:t}:t)}_getTransactions(){return this._transactions}_updateState(t,e,n){if(this._closed)throw new Error(ad);if(!t)return;const r=this._beginCommit(e?.description);try{r.updateState(this,t);let o=!1;if(n)for(let s=0;s<n.length;s++){const i=n[s];o=o||i==="onAnyChange",this._emitter.notify(i)}!o&&n&&n.length>0&&this._emitter.notify("onAnyChange"),r.commit()}catch(o){throw r.rollback(),o}return this}_processContainerShift(t){let e=null;const n={anchor:t.after};return t.after||(n.isDeleted=!0,e=["onDelete"]),this._updateState(n,{description:"Update Anchor"},e),t.after}_processBeforeCommitStart(t,e,n){}_processStateChange(t,e,n){}_processRestoreOrRevert(t,e,n){this._emitter.notify("onInvalidated")}_processAnchorCoords(){}_processContainerLayout(){}_getDescription(){return null}_delete(){const t=this._getDescription(),e="Delete",n=t?`${e} ${t}`:e,r=this._beginCommit(n);try{this._processDelete(),r.commit()}catch(o){throw r.rollback(),o}}_processContainerDelete(){this._processDelete()}_processDelete(){}_processContainerProtection(){this._emitter.notify("onProtectedChange")}addListeners(t,e){return this._emitter.addListeners(t,e)}isClosed(){return this._closed}_processClose(){this._closed=!0,this._emitter.notify("onClose"),this._transactionsRemoveListener?.()}close(){this._closed||this._processClose()}get isIAnchored(){return!0}}var Fn;exports.AddressUtils=void 0,(Fn=exports.AddressUtils||(exports.AddressUtils={})).fastStringToCol=Zp,Fn.fastStringToCell=mr,Fn.fastStringToRange=he,Fn.rangeToString=sn,Fn.cellToString=An,Fn.normalizeA1ToR1C1=r0,Fn.resolveRelativeToA1=n0;const D_=(l,t)=>l.offset-t.offset,cd=l=>{if(!l||l.size===0)return[];let t=[];return l.forEach((e,n)=>{e&&Object.keys(e).length!==0&&t.push({...e,offset:n})}),t.sort(D_)};class L_ extends Ci{constructor(t){super({...t,createDescription:"Insert AutoSort"}),this._apply=t.apply,this._processUpdate=t.processUpdate,this._fromJSON(t.json)}getRange(){return this._getState().anchor}getFieldAt(t){const e=this._getState().byOffset.get(t)??null;return e?Object.keys(e).length===0||Object.keys(e).length===1&&e.hasOwnProperty("offset")?null:{collatorOptions:null,...e}:null}insertSort(){return null}getSort(){return null}apply(t){const e=this._getState().byOffset,n=new Map(e);for(let r=0;r<t.length;r++){const o={...t[r]},s=o.offset;delete o.offset,n.set(s,o)}return this._updateState({byOffset:n},{description:"Set Sort Criteria"}),this.reapply()}setFieldAt(t,e){const n=this._getState().byOffset,r=new Map(n);return e&&Object.keys(e).length>0?r.set(t,e):r.delete(t),this._updateState({byOffset:r},{description:"Sort"}),this.reapply()}_processStateChange(t,e,n){super._processStateChange(t,e,n),this._processUpdate?.()}reapply(){const t=this._getState(),e=cd(t.byOffset);return this._apply?.(e),this}clear(){return this._updateState({byOffset:new Map},{description:"Clear Sort"}),this.reapply()}_fromJSON(t){const e=t??{},n={byOffset:new Map};if(e.fields)for(let r=0;r<e.fields.length;r++){let o=e.fields[r];const s=o.offset;o={...e.fields[r]},delete o.offset,n.byOffset.set(s,o)}this._updateState(n,{description:"Load"})}toJSON(){const t={},e=this._getState();e.anchor&&(t.ref=exports.AddressUtils.rangeToString(e.anchor,this._options.maxRangeCoords));const n=cd(e.byOffset);return n.length>0&&(t.fields=n),Object.keys(t).length===0?null:t}}const U_=(l,t)=>l.offset-t.offset,pl=l=>{if(!l||l.size===0)return[];let t=[];return l.forEach((e,n)=>{e&&Object.keys(e).length!==0&&t.push({...e,offset:n})}),t.sort(U_)},hd=(l,t=new Map)=>{if(!l||l.length===0)return t;for(let e=0;e<l.length;e++){const n={...l[e]},r=n.offset;delete n.offset,t.set(r,n)}return t},_l=l=>{let t=0;const e=l.entries();let n=null;do n=e.next(),n.value?.[1]&&n.value[1].hiddenButton&&t++;while(!n.done);return t};class Mg extends Ci{constructor(t){super({...t,createDescription:"Insert AutoFilter"}),this._apply=t.apply,this._processUpdate=t.processUpdate,t.setFilterCoordsCallback?.(e=>{this._getState().anchor}),this._fromJSON(t.json)}getCoords(){return this._getState().anchor}getFieldAt(t){const e=this._getState().byOffset.get(t)??null;return e?Object.keys(e).length===0||Object.keys(e).length===1&&e.hasOwnProperty("offset")?null:{hiddenButton:!1,criteria:E.CommonUtils.EmptyArray,...e}:null}insertSort(){return null}getSort(){return null}apply(t){const e=this._getState().byOffset,n=new Map(e);return hd(t,n),this._updateState({byOffset:n,hiddenCount:_l(n)},{description:"Set Filter Criteria"}),this.reapply()}setFieldAt(t,e){const n=this._getState(),r=n.anchor.colEnd-n.anchor.colStart+1;if(t<0||t>r-1)throw new Error(`Invalid range: '${t}'`);const o=n.byOffset,s=new Map(o);e&&Object.keys(e).length>0?s.set(t,e):s.delete(t);const i=o.get(t)?.hiddenButton===!0?1:0,a=e?.hiddenButton===!0?1:0;return this._updateState({byOffset:s,hiddenCount:Math.min(r,Math.max(0,n.hiddenCount+a-i))},{description:"Set Filter Criteria"}),this.reapply()}getShowFilterButton(){const t=this._getState(),e=t.anchor,n=e.colEnd-e.colStart+1;return t.hiddenCount<n}setShowFilterButton(t){const e=this.getAnchorCoords(),n=e.colEnd-e.colStart+1;let r=Array(n);const o=this._getState().byOffset,s=pl(o);for(let a=0;s&&a<s.length;a++){const c={...s[a]};r[c.offset]=c,t?delete c.hiddenButton:c.hiddenButton=!0}if(!t)for(let a=0;a<r.length;a++)r[a]||(r[a]={hiddenButton:!0});const i=new Map;for(let a=0;a<r.length;a++){const c=r[a];i.set(a,c)}return this._updateState({byOffset:i,hiddenCount:t?i.size:0},{description:(t?"Hide":"Show")+" Filter Buttons"}),this._processUpdate?.(),this}_processStateChange(t,e,n){super._processStateChange(t,e,n),this._processUpdate?.()}_processContainerShift(t){if(t.after&&t.orientation===A.IRange.Orientation.Column){let e=t.intersect.colStart-t.before.colStart,n=t.amount;e<=0&&(n-=e,e=0);const r=this._getState().byOffset,o=new Map(r);if(r.forEach((s,i)=>{s&&Object.keys(s).length!==0&&(i>=e&&o.delete(i),i>e&&o.set(i+n,s))}),n>0&&this._getState().hiddenCount>0)for(let s=e;s<e+n;s++)o.set(s,{hiddenButton:!0});this._updateState({byOffset:o,hiddenCount:_l(o),sort:null},{description:"Update Fields"})}return super._processContainerShift(t)}reapply(){const t=this._getState(),e=pl(t.byOffset);return this._apply?.(e),this}clear(){return this._updateState({byOffset:new Map,hiddenCount:0,sort:null},{description:"Set Filter Criteria"}),this.reapply()}_fromJSON(t){const e=t??{},n={byOffset:new Map,hiddenCount:0};e.fields&&(hd(e.fields,n.byOffset),n.hiddenCount=_l(n.byOffset)),e.sort,this._updateState(n,{description:"Load"})}toJSON(){const t={},e=this._getState();e.anchor&&(t.ref=sn(e.anchor,this._options.maxRangeCoords));const n=pl(e.byOffset);return n.length>0&&(t.fields=n),e.sort,Object.keys(t).length===0?null:t}}const aa="A table must have a least one row for the data.",dd="Table1",es=Object.freeze({showRowStripes:!0,showColumnStripes:!1,showFirstColumn:!1,showLastColumn:!1}),ud=(l,t,e)=>{if(l.length!==t.length)return console.warn("make columns the same length"),!1;const n=new Set;for(let a=0;a<t.length;a++){const c=t[a]?.name;c&&n.add(c.toLocaleLowerCase())}for(let a=0;e&&a<e.length;a++){const c=e[a]?.name;c&&n.add(c.toLocaleLowerCase())}const r=(a,c="")=>{if(!a)return!1;const h=a.toLocaleLowerCase();return h===c||!n.has(h)};let o=1;const s=(a,c,h,d,u=1e3)=>{if(d(a,h=(h??"").trim().toLocaleLowerCase()))return a;for(;o<u;)try{const g=c+ ++o;if(d(g,h))return g}catch{}throw new Error(`Unable to find valid name for '${c}'.`)};let i=0;for(let a=0;a<l.length;a++){const c=l[a]?.name;if(c&&c===t[a]?.name)continue;const h=s(c,l[a]?.name||"Column",t[a]?.name,r);n.add(h.toLocaleLowerCase()),t[a]?.name!==h&&(l[a].name=h,i++)}return i>0};class z_{constructor(t,e,n,r){this._name=t,this._filter=e,this._sort=n,this._offset=r}getName(){return this._name}getField(){return this._filter?this._filter.getFieldAt(this._offset)??null:null}setField(t){return this._filter?(this._filter.setFieldAt(this._offset,t),this):this}getSortField(){return this._sort?this._sort.getFieldAt(this._offset):null}setSortField(t){return this._sort?(this._sort.setFieldAt(this._offset,t),this):this}reapply(){return this._filter?.reapply(),this}clear(){return this._filter?.setFieldAt(this._offset,null),this._sort?.setFieldAt(this._offset,null),this}hasHiddenButton(){return this._filter?.getFieldAt(this._offset)?.hiddenButton??!1}}class P_ extends $u{constructor(t,e,n,r){super({...r,type:"namedTable"}),this._names=t,this._sheet=e,this._table=n;const o=this;this._table.addListeners({onDelete:()=>{o._options.deleteFromContainer?o._options.deleteFromContainer?.():o._delete()},onAnyChange:()=>{o._emitter.notify("onAnyChange")},onAnchorCoordsChange:()=>{o._emitter.notify("onAnyChange")}},{transactional:!0})}async select(t){return await this._table.select(t),this}getRanges(){return this._names.getRanges(this._table.getUsedRange())}getScope(){return null}getType(){return"table"}getName(){return this._table.getName()}getValue(){return this._table}}class Fg extends Ci{constructor(t){if(super({...t,createDescription:"Insert Table"}),this._isUpdatingHeader=!1,this._colHeadersSizeUnlistener=null,this._rowHeadersSizeUnlistener=null,this._visibleRange=null,this._isHeaderVisible=!0,this._isTotalVisible=!0,this._isFirstColumnVisible=!0,this._isLastColumnVisible=!0,this._range=null,!t.json)throw new Error("json is required");if(!t.json.ref)throw new Error("json.ref is required");const e=this;this._styles=t.styles??t.sheet?.getStyles()??new Fr,this._names=t.names,this._sheet=t.sheet,this._processTableUpdate=t.processTableUpdate,this._setNameOnContainer=t.setNameOnContainer,this._options={...t},this._styleCache=null,this._stylePropsCache=null,this._stylesRemoveListener=this._styles.addListeners({onTableStylesChange(){e._styleCache=null,e._stylePropsCache=null,e._getEmitter().notify("onStyleChange"),e._getEmitter().notify("onAnyChange")}});const n={...t?.json};if(t.sheet){const r=t.sheet;if(this._autoExpandRemoveListener=r.getEntireRange().addListener(i=>{if(i.trigger!=="setCells"||i.isUndo)return;const a=e.getAnchorCoords();if(!a)return;let c=i.getSource().getCoords();Array.isArray(c)&&(c=c[0]);let h=null;if(c.rowStart>=a.rowStart&&c.rowEnd<=a.rowEnd&&c.colStart>=a.colStart&&c.colStart<=a.colEnd+1&&c.colEnd>a.colEnd){const d={...c,colStart:a.colEnd+1};if(r.getRange(d).isContentful()){const u={...d,rowStart:a.rowStart,rowEnd:d.rowStart-1};if(u.rowEnd-u.rowStart<0||!r.getRange(u).isContentful()){const g={...d,rowStart:d.rowEnd+1,rowEnd:a.rowEnd};(g.rowEnd-g.rowStart<0||!r.getRange(g).isContentful())&&(h={...a,colEnd:c.colEnd})}}}else if(!e.getShowTotals()&&c.colStart>=a.colStart&&c.colEnd<=a.colEnd&&c.rowStart>=a.rowStart&&c.rowStart<=a.rowEnd+1&&c.rowEnd>a.rowEnd){const d={...c,rowStart:a.rowEnd+1};if(r.getRange(d).isContentful()){const u={...d,colStart:a.colStart,colEnd:d.colStart-1};if(u.colEnd-u.colStart<0||!r.getRange(u).isContentful()){const g={...d,colStart:d.colEnd+1,colEnd:a.colEnd};(g.colEnd-g.colStart<0||!r.getRange(g).isContentful())&&(h={...a,rowEnd:c.rowEnd})}}}if(h&&r.getRange(h).getMerges().length>0&&(h=null),h&&r.getTables().getItems({address:h}).length!==1&&(h=null),h){const d=e._beginCommit("Table Auto Expansion");try{e.resize(h),d.commit({viewAfter:null})}catch(u){d.rollback(),console.warn("Unable to AutoExpand"),console.warn(u)}}},{transactional:!1,ignoreShifts:!0}),this._headerValueListener=()=>{if(this._isUpdatingHeader)return;const i=this._columnsFromSheet();i&&this._updateColumns(i.columns,!1,i.forceUpdate,null)},t.readSheetHeader){const i=this._columnsFromSheet();n.columns=i.columns}const o=()=>{const i=this.getAnchorCoords();let a=0,c=0;if(i&&(a=r.getColumnHeaders().findVisibleIndex(i.colEnd).min,c=r.getRowHeaders().findVisibleIndex(i.rowEnd).min),i&&(a<i.colEnd||c<i.rowEnd)){const h=r.getColumnHeaders(),d=r.getRowHeaders(),u=h.findVisibleIndex(i.colStart).max,g=d.findVisibleIndex(i.rowStart).max;this._visibleRange={colStart:u,colEnd:a,rowStart:g,rowEnd:c},this._isHeaderVisible=!d.at(i.rowStart).isHidden(),this._isTotalVisible=!d.at(i.rowEnd).isHidden(),this._isFirstColumnVisible=!h.at(i.colStart).isHidden(),this._isLastColumnVisible=!h.at(i.colEnd).isHidden()}else this._visibleRange=null,this._isHeaderVisible=!0,this._isTotalVisible=!0,this._isFirstColumnVisible=!0,this._isLastColumnVisible=!0},s={onSizesChange:()=>{o()}};this._colHeadersSizeUnlistener=r.getColumnHeaders().addListeners(s),this._rowHeadersSizeUnlistener=r.getRowHeaders().addListeners(s),o()}this._fromJSON(n),this._names&&(this._namedItem=this._createNamed(),this._namedItem&&this._names.add(this._namedItem))}getSnapshot(t){const e=this.toJSON(),n=this.getAnchorCoords(),r=this.getName(),o={...e};delete o.ref;const s=this,i=Object.freeze({...t});let a=!1;return{async copyTo(c,h){const d=c.tables,u=c.range;({...i,...h}).isCut&&!a&&(s.delete(),a=!0);const g={colStart:u.colStart,rowStart:u.rowStart,colEnd:n.colEnd-n.colStart+u.colStart,rowEnd:n.rowEnd-n.rowStart+u.rowStart};return d.add(g,{json:o,isLoad:!0,hasHeader:!0,styleName:o.styleOptions?.name??null}),g},getCoords:()=>n,getSource:()=>s,getName:()=>r,getMarkOptions:()=>i,isISnapshot:!0}}getAnchorType(){return exports.IAnchored.Type.TwoCell}getStyle(){if(this._styleCache)return this._styleCache;const t=this._getState();return t?(this._styleCache=this._styles.getTableStyle(t.styleOptions.name)??this._styles.getDefaultTableStyle(),this._styleCache):this._styles.getTableStyle(null)}addRows(t,e=1){const n={...this._getState().anchor};return n.rowEnd+=e,this._modifyTable({anchor:n},"Add Table Row"+(e>1?"s":"")),this}deleteRowsAt(t,e=1){let n={...this._getState().anchor};return n.rowEnd-=e,n.rowEnd<n.rowStart&&(n=null),this._modifyTable({anchor:n},"Delete Table Row"+(e>1?"s":"")),this}addColumn(t,e){const n=this._getState(),r={...n.anchor};r.colEnd+=1;const o=[],s={name:`${e??n.columns[t-1]?.name??`Column${t+1}`}3`};o.push(s);const i=[...n.columns.slice(0,t),...o,...n.columns.slice(t)];return this._modifyTable({anchor:r,columns:i},"Add Table Column"),s}getColumns(){return this._getState()?.columns}convertToRange(t=Number.MAX_SAFE_INTEGER){let e=this._beginCommit("Convert to Range");try{if(this._sheet){const n=this.getAnchorCoords(),r=(n.colEnd-n.colStart+1)*(n.rowEnd-n.rowStart+1);if(r>t)throw new Error(`There are ${r} and there is a limit of ${t}.`);const o=this._sheet.getRange(n),s=o.startIncrementalUpdates({orientation:A.IRange.Orientation.Column});o.forEach((i,a)=>{const c=a.getCoords(),h=a.getCell();s.pushAt(c.rowIndex,c.colIndex,{style:h.getStyle(!1)})},{includeEmpty:!0,orientation:A.IRange.Orientation.Column}),s.apply()}this.delete()}catch{e.rollback(),e=null}return e&&e.commit(),this._sheet.getRange(this._getState()?.anchor)}resize(t,e="Resize Table"){let n=this._sheet.getRange(t).getCoords();const r=this._getState().anchor;if(r.rowStart!==n.rowStart||n.colEnd<r.colStart||n.colStart>r.colEnd)throw new Error("The top of the table must not change and the new table location must overlap with the original table.");const o=this._beginCommit(e);try{n=this._options.setContainerCoords(t),E.CoordUtils.isEqualRanges(n,r)||this._modifyTable({anchor:n}),o.commit()}catch(s){throw console.warn(s),o.rollback(),s}return this._sheet.getRange(n)}getName(){return this._getState()?.name}setName(t){const e=this._beginCommit(`Set Table Name '${t}'`);try{this._modifyTable({name:t}),e.commit()}catch(n){throw e.rollback(),n}return this}getDescription(){return this._getState()?.description}setDescription(t){return this._modifyTable({description:t})}select(t){return this.getUsedRange().select(t)}getRange(){return this._range?this._range:this._getState()?this._range=this._sheet.getRange(this._getState().anchor):bn}_processRestoreOrRevert(t,e,n){this._styleCache=null,super._processRestoreOrRevert(t,e,n)}_processAnchorCoords(){this._range=null,super._processAnchorCoords()}getUsedRange(){const t=this._getUsedCoords();return t?this._sheet.getRange(t):bn}_getUsedCoords(){const t=this._getState(),e=t.headerRowCount,n=t.totalsRowCount,r=t.anchor;if(!r)return null;const o={...r,rowStart:r.rowStart+e,rowEnd:r.rowEnd-n};return o.rowEnd<o.rowStart||o.colEnd<o.colStart?null:o}getHeaderRange(){const t=this._getHeaderCoords();return t?this._sheet.getRange(t):bn}_getHeaderCoords(){const t=this._getState(),e=t.headerRowCount;if(e<1)return null;const n=t.anchor;return n?{...n,rowEnd:n.rowStart+e-1}:null}getTotalRange(){const t=this._getTotalCoords();return t?this._sheet.getRange(t):bn}_getTotalCoords(){const t=this._getState(),e=t.totalsRowCount;if(e<1)return null;const n=t.anchor;return n?{...n,rowStart:n.rowEnd-e+1}:null}getStyleOptions(){return this.isClosed()?es:this._getState()?.styleOptions}updateStyleOptions(t,e="Update Style Info"){const n=this.getStyleOptions(),r=t?{...n,...t}:es;return this._modifyTable({styleOptions:r},e),this._styleCache=null,this._getEmitter().notify("onStyleChange"),this}getStyleAt(t){let e=this._stylePropsCache;return e||(e=this.getStyle().getRanged(this),this._stylePropsCache=e),Rr(this._styles,e,E.CoordUtils.cellToRange(t))}getShowTotals(){return this._getState()?.totalsRowCount>0}setShowTotals(t){return this._modifyTable({totalsRowCount:t?1:0},"Toggle Show Totals")}getShowHeaders(){return this._getState()?.headerRowCount>0}setShowHeaders(t){return this._modifyTable({headerRowCount:t?1:0},"Toggle Show Headers")}getShowFilterButton(){const t=this.getFilter();return!!t&&t.getShowFilterButton()}setShowFilterButton(t){const e=this.getFilter();return e?(e.setShowFilterButton(t),this):this}_applyFilterAndSort(){console.log("apply Filter",this.getFilter(),this.getSort()),this._processTableUpdate?.(),this._getEmitter().notify("onAnyChange")}_processUpdate(){this._processTableUpdate?.(),this._getEmitter().notify("onAnyChange")}_createFilter(t){const e=this;return new Mg({initialAnchor:this._getUsedCoords(),maxRangeCoords:this._options.maxRangeCoords,json:t,transactions:this._getTransactions(),setContainerShiftCallback(n){e._filterShiftCallback=n},setFilterCoordsCallback(n){e._filterCoordsCallback=n},deleteFromContainer:n=>{this._updateState({filter:null},{description:n?.description??"Delete Filter"}),e._processUpdate?.()},apply:n=>{e._applyFilterAndSort()},processUpdate:()=>{e._processUpdate?.()},isProtected:()=>e.isProtected()})}insertFilter(){let t=this.getFilter();return t||(t=this._createFilter(),this._updateState({filter:t},{description:"Insert Filter"}),t)}getFilter(){return this._getState()?.filter??null}_createSort(t){const e=this;return new L_({initialAnchor:this._getUsedCoords(),maxRangeCoords:this._options.maxRangeCoords,json:t,transactions:this._getTransactions(),deleteFromContainer:n=>{this._updateState({sort:null},{description:n?.description??"Delete Sort"}),e._processUpdate?.()},apply:n=>{e._applyFilterAndSort()},processUpdate:()=>{e._processUpdate?.()},isProtected:()=>e.isProtected()})}insertSort(){let t=this.getSort();return t||(t=this._createSort(),this._updateState({sort:t},{description:"Insert Sort"}),t)}getSort(){return this._getState()?.sort??null}getColumnFilter(t){const e=this.getFilter();if(!e)return null;const n=this.getSort();let r=null;return r=this._getState()?.columns[t],r===null?null:new z_(r.name,e,n,t)}getVisibleRefRangeCoords(){return this._visibleRange?this._visibleRange:this.getAnchorCoords()}getVisibleCellCoords(t){return t&&this._visibleRange?{colIndex:Math.min(this._visibleRange.colEnd,Math.max(this._visibleRange.colStart,this._sheet.getColumnHeaders().findVisibleIndex(t.colIndex).min)),rowIndex:Math.min(this._visibleRange.rowEnd,Math.max(this._visibleRange.rowStart,this._sheet.getRowHeaders().findVisibleIndex(t.rowIndex).min))}:t}isHeaderVisible(){return this._isHeaderVisible}isTotalVisible(){return this._isTotalVisible}isFirstColumnVisible(){return this._isFirstColumnVisible}isLastColumnVisible(){return this._isLastColumnVisible}_columnsFromSheet(){const t=this._getHeaderCoords();if(!t||!this._sheet){const n=this.getAnchorCoords();return{columns:n?Array(n.colEnd-n.colStart+1).fill(null):[],forceUpdate:!0}}const e={columns:[],forceUpdate:!1};return this._sheet.getRange({...t,rowEnd:t.rowStart}).forEach((n,r)=>{const o=r.getCell();e.columns.push({name:o.toText()}),e.forceUpdate=e.forceUpdate||o.getType()!==A.ScalarType.String},{includeEmpty:!0}),e}_updateColumns(t,e,n=!1,r){if(this._isUpdatingHeader)return;const o=this._getHeaderCoords(),s=this._getUsedCoords(),i=[];if(s){const u=s.colEnd-s.colStart+1;for(let g=0;g<u;g++){const m=t[g];i.push({...m})}}let a=!1;const c=this._getState().columns;if(a=e?((u,g)=>{const m=new Set,f=S=>!!S&&!m.has(S.toLocaleLowerCase()),_=(S,C,y,I)=>I(S)?S:C+(y+1);let p=0;for(let S=0;S<u.length;S++){const C=_(u[S]?.name||g[S]?.name,u[S]?.name||"Column",p,f);m.add(C.toLocaleLowerCase()),u[S]?.name!==C&&(u[S].name=C,p++)}return p>0})(i,c):ud(i,c,r),!(n||c.length!==i.length||a))return;const h="Update Columns";this._isUpdatingHeader=!0;let d=this._beginCommit(h);try{if(this._updateState({columns:i},{description:h}),this._sheet&&o){const u=this._sheet.getEntireRange().startIncrementalUpdates({orientation:A.IRange.Orientation.Row});for(let g=0;g<i.length;g++){const m=i[g].name;u.pushAt(o.rowStart,o.colStart+g,m)}u.apply({textParser:!1})}}catch{d.rollback()}return d&&d.commit(),this._isUpdatingHeader=!1,i}_processDelete(){this._getState().headerRemoveListener?.(),this._updateState({headerRemoveListener:null}),super._processDelete()}_processFilterUpdate(){const t=this._getUsedCoords();console.log("process on Filter and Sort dataRange",t)}_processContainerShift(t){if(t.isSplit)throw new Error("We can not partially insert or remove cells as this would split a table.");const e=this._getState();if(t.after&&t.after.rowStart+e.headerRowCount>=t.after.rowEnd+1)throw new Error(aa);const n=t.orientation===A.IRange.Orientation.Column;if(t.amount<0&&t.after&&!n){const o=this._getHeaderCoords();if(o&&t.intersect.rowStart<=o.rowEnd&&t.intersect.rowEnd>=o.rowStart)throw new Error("We can not remove rows that contain table headers. Remove the table header.")}const r=super._processContainerShift(t);if(n){let o=t.amount,s=t.intersect.colStart-t.before.colStart;if(s<=0&&o>0)return;s<0&&(o-=s,s=0);const i=this._getState()?.columns;let a=[...i],c=[],h=[];if(o>0){a.splice(s,0,...Array(o).fill(null)),c=[...a];const d=new Set;for(let _=0;_<i.length;_++)d.add(i[_]?.name?.toLowerCase().trim());const u=i[s-1],g=u?.name?.match(/\d+$/);let m=null,f=0;g&&(m=g.input.substring(0,g.index),f=parseInt(g[0]));for(let _=0;_<o;_++){let p={...u};c[s+_]=p;const S=m+(f+_+1);S&&!d.has(S.toLowerCase().trim())&&(p.name=S)}ud(c,a,null)}else c=a,h=c.splice(s,-o);this._updateState({columns:c},{description:"Process Columns"}),this._updateColumns(c,!1,!0,h)}else t.after||this._updateState({columns:[]},{description:"Process Columns"});return t.after||this._delete(),this._filterShiftCallback&&this._filterShiftCallback({...t,after:this._getUsedCoords()}),r}_modifyTable(t,e="Modify Table"){if(this.isClosed())throw new Error("Table has been closed. No further operations are allowed.");const n=this._getState(),r=n.anchor,o=n.headerRowCount,s=this._getHeaderCoords();let i=this._beginCommit(e);try{if(this._updateState(t),t.name!==void 0){if(!t.name)throw new Error("Table must have a name.");this._setNameOnContainer?.(t.name)}let a=t.anchor??null;if((t.anchor!==void 0||t.headerRowCount!==void 0||t.totalsRowCount!==void 0)&&t.headerRowCount!==void 0&&o!==t.headerRowCount)if(t.headerRowCount>o){const c=r.rowStart-(t.headerRowCount-o);this._sheet&&(c<this._options.maxRangeCoords.rowStart||this._sheet.getRange({...r,rowStart:c,rowEnd:r.rowStart-1}).isContentful())?(this._sheet.getRange({...r,rowStart:r.rowStart+t.headerRowCount,rowEnd:r.rowStart+t.headerRowCount}).insert(A.IRange.Orientation.Row),a={...r,rowEnd:r.rowEnd+(t.headerRowCount-o)}):a={...r,rowStart:r.rowStart+(o-t.headerRowCount)}}else s&&this._sheet&&this._sheet.doBatch(()=>{this._sheet.getRange(s).clear()},{}),a={...r,rowStart:r.rowStart+(o-(t.headerRowCount??o))};if(a){let c=n.columns;const h=t.headerRowCount!==void 0&&t.headerRowCount!==n.headerRowCount||t.totalsRowCount!==void 0&&t.totalsRowCount!==n.totalsRowCount,d=a.colStart!==r.colStart||a.colEnd!==r.colEnd;let u=[];if(d){const g=[...n.columns];a.colEnd>r.colEnd?g.splice(r.colEnd+1,0,...Array(a.colEnd-r.colEnd).fill(null)):a.colEnd<r.colEnd&&(u=g.splice(a.colEnd-1,r.colEnd-a.colEnd)),a.colStart<r.colStart?g.splice(0,0,...Array(r.colStart-a.colStart).fill(null)):a.colStart>r.colStart&&(u=u.concat(g.splice(0,a.colStart-r.colStart))),c=g}if(this._options.setContainerCoords?.(a),this._updateState({anchor:a,columns:c},{description:e}),!this._getUsedCoords())throw new Error(aa);if(d||h){const g=h?{columns:c,forceUpdate:!0}:this._columnsFromSheet();g&&(this._updateColumns(g.columns,!1,g.forceUpdate,u),this._processHeaderListener())}this._filterCoordsCallback?.(a)}t.styleOptions!==void 0&&(this._styleCache=null),this._getEmitter().notify("onAnyChange"),i.commit()}catch(a){throw i.rollback(),a}return this}addListeners(t,e){return this._emitter.addListeners(t,e)}_processStateChange(t,e,n){super._processStateChange(t,e,n),this._styleCache=null,this._stylePropsCache=null,this._processTableUpdate?.(),this._getEmitter().notify("onAnyChange")}_processHeaderListener(){if(this._getState().headerRemoveListener?.(),this._sheet){let e=this._getHeaderCoords();if(!e){const r=this._getUsedCoords();e={...r,rowEnd:r.rowStart}}const n=this._sheet.getRange(e).addListener(this._headerValueListener,{transactional:!0});this._updateState({headerRemoveListener:n})}}toJSON(){const t={},e=this._getState();if(!e)return null;if(e.name&&(t.name=e.name),e.anchor&&(t.ref=sn(e.anchor,this._options.maxRangeCoords)),e.description&&(t.description=e.description),e.headerRowCount!==1&&(t.headerRowCount=e.headerRowCount),e.totalsRowCount!==0&&(t.totalsRowCount=e.totalsRowCount),e.columns&&(t.columns=[...e.columns]),e.styleOptions){const n=E.CommonUtils.diffValues(e.styleOptions,{...es,name:null});n&&(t.styleOptions=n)}if(e.filter){const n=e.filter.toJSON();n&&(t.filter=n,delete t.filter.ref)}return t}_createNamed(){return this._sheet?.getName()&&this._names?new P_(this._names,this._sheet,this,{transactions:this._getTransactions(),json:{name:this.getName()}}):null}_fromJSON(t){const e=t??{},n={headerRowCount:1,totalsRowCount:0};var r;if(e.name&&(n.name=e.name),e.ref&&(e.ref=(r=e.ref)&&typeof r=="string"?ye(r):r),this._names){const i=this._names.findValidName(n.name??dd);n.name!==i&&(n.name=i)}n.name||(n.name=dd),e.description&&(n.description=e.description),e.headerRowCount!==void 0&&(n.headerRowCount=e.headerRowCount),e.totalsRowCount!==void 0&&(n.totalsRowCount=e.totalsRowCount),n.columns=e.columns??E.CommonUtils.EmptyArray,n.styleOptions={...es,...e.styleOptions};const o="Insert Table";this._updateState(n,{description:o});const s=this._columnsFromSheet();s&&(n.columns=this._updateColumns(s.columns,!0,s.forceUpdate,null),delete n.columns),e.sort&&(n.sort=this._createSort(e.sort)),e.filter&&(n.filter=this._createFilter(e.filter)),this._modifyTable(n,o),this._processHeaderListener()}close(){super.close(),this.isClosed()||(this._autoExpandRemoveListener?.(),this._getState()?.headerRemoveListener?.(),this._updateState({headerRemoveListener:null},{description:"Close Table"}),this._stylesRemoveListener?.(),this._colHeadersSizeUnlistener?.(),this._rowHeadersSizeUnlistener?.())}get isITable(){return!0}}let ae=null;const $r="TableStyleMedium2",Ae=(l,t,e)=>{if(!l.border)return l;let n=((o,s,i)=>{if(!o)return o;let a=null;return(o.top||o.horizontal)&&(s.rowIndex!==i.rowStart||s.colIndex<i.colStart||s.colIndex>i.colEnd)&&(a=a??{...o},delete a.top,o.horizontal&&(a.top=o.horizontal)),(o.bottom||o.horizontal)&&(s.rowIndex!==i.rowEnd||s.colIndex<i.colStart||s.colIndex>i.colEnd)&&(a=a??{...o},delete a.bottom,o.horizontal&&(a.bottom=o.horizontal)),(o.left||o.vertical)&&(s.colIndex!==i.colStart||s.rowIndex<i.rowStart||s.rowIndex>i.rowEnd)&&(a=a??{...o},delete a.left,o.vertical&&(a.left=o.vertical)),(o.right||o.vertical)&&(s.colIndex!==i.colEnd||s.rowIndex<i.rowStart||s.rowIndex>i.rowEnd)&&(a=a??{...o},delete a.right,o.vertical&&(a.right=o.vertical)),o.horizontal&&(a=a??{...o},delete a.horizontal),o.vertical&&(a=a??{...o},delete a.vertical),a??o})(l.border,t,e),r=l;return n!==l.border&&(r={...l},Object.keys(n).length>0?r.border=n:delete r.border),r};class H_{constructor(t,e,n){this._table=t,this._styles=e,this._properties=n}_resolveProperties(t){const e={name:t.name},n=this._styles,r=Object.values(exports.ITableStyle.ElementType),o=r.length;for(let s=0;s<o;s++){const i=r[s],a=t[i];if(!a||!E.CommonUtils.isObject(a))continue;const c=E.TypedObject.resolveTypedUpdates(Object.freeze(a),Tt,n);e[i]=c}return Object.freeze(e)}getCoords(){return this._table.getAnchorCoords()}getPropertiesAt(t,e){const n=this._table,r=this._styles,o=this._properties;Sl.rowIndex=t,Sl.colIndex=e;const s=n.getVisibleCellCoords(Sl),i=n.getVisibleRefRangeCoords();if(!i)return null;const a=Math.max(0,i.colEnd-i.colStart)+1,c=Math.max(0,i.rowEnd-i.rowStart)+1,h=Math.max(0,s.rowIndex-i.rowStart),d=Math.max(0,s.colIndex-i.colStart),u={rowIndex:h,colIndex:d},g=n.getStyleOptions();let m={},f=!1,_=0;n.isHeaderVisible()&&(_=n.getShowHeaders()?1:0,f=_>h);let p=!1,S=0;n.isTotalVisible()&&(S=n.getShowTotals()?1:0,p=c-S<=h);let C=d===a-1&&g.showLastColumn;n.isLastColumnVisible()||(C=!1);let y=d===0&&g.showFirstColumn;n.isFirstColumnVisible()||(y=!1);const I=!f&&!p;if(o.wholeTable&&(m=o.wholeTable,m.border&&(m=Ae(m,u,{rowStart:0,rowEnd:c-1,colStart:0,colEnd:a-1}))),I&&g.showColumnStripes){const w=o.firstColumnStripe?.size??1,b=o.secondColumnStripe?.size??1;let x=d%(w+b);const R=x<w;R||(x-=w);let v=R?o.firstColumnStripe:o.secondColumnStripe;if(v){const T={rowIndex:h,colIndex:x},M={rowStart:_,rowEnd:c-S-1,colStart:0,colEnd:Math.min(a-d,R?w:b)};R&&x===0&&d>0&&v.border?.left&&o.secondColumnStripe?.border.right&&(v={...v},v.border={...v.border},delete v.border.left),R&&x===w-1&&d<a-1&&v.border?.right&&o.secondColumnStripe?.border.left&&(v={...v},v.border={...v.border},delete v.border.right);const F=v.border?Ae(v,T,M):v;m=E.TypedObject.resolveTypedUpdates(F,Tt,r,m)}}if(I&&g.showRowStripes){const w=_,b=o.firstRowStripe?.size??1,x=o.secondRowStripe?.size??1;let R=(h-w)%(b+x);const v=R<b;v||(R-=b);let T=v?o.firstRowStripe:o.secondRowStripe;if(T){const M={colIndex:d,rowIndex:R},F={colStart:0,colEnd:a-1,rowStart:0,rowEnd:Math.min(c-h,v?b:x)};v&&R===0&&h>w&&T.border?.top&&o.secondRowStripe?.border.bottom&&(T={...T},T.border={...T.border},delete T.border.top),v&&R===b-1&&h<c-1&&T.border?.bottom&&o.secondRowStripe?.border.top&&(T={...T},T.border={...T.border},delete T.border.bottom);const N=T.border?Ae(T,M,F):T;m=E.TypedObject.resolveTypedUpdates(N,Tt,r,m)}}if(C&&o.lastColumn){let w=o.lastColumn;w.border&&(w=Ae(w,u,{rowStart:0,rowEnd:c-1,colStart:a-1,colEnd:a-1})),m=E.TypedObject.resolveTypedUpdates(w,Tt,r,m)}if(y&&o.firstColumn){let w=o.firstColumn;w.border&&(w=Ae(w,u,{rowStart:0,rowEnd:c-1,colStart:0,colEnd:0})),m=E.TypedObject.resolveTypedUpdates(w,Tt,r,m)}if(f&&o.headerRow){let w=o.headerRow;w.border&&(w=Ae(w,u,{rowStart:0,rowEnd:_-1,colStart:0,colEnd:a-1})),m=E.TypedObject.resolveTypedUpdates(w,Tt,r,m)}if(p&&o.totalRow){let w=o.totalRow;w.border&&(w=Ae(w,u,{rowStart:c-S,rowEnd:c-1,colStart:0,colEnd:a-1})),m=E.TypedObject.resolveTypedUpdates(w,Tt,r,m)}if(f&&y&&o.firstHeaderCell){let w=o.firstHeaderCell;w.border&&(w=Ae(w,u,{rowStart:0,rowEnd:_-1,colStart:0,colEnd:0})),m=E.TypedObject.resolveTypedUpdates(w,Tt,r,m)}if(f&&C&&o.lastHeaderCell){let w=o.lastHeaderCell;w.border&&(w=Ae(w,u,{rowStart:0,rowEnd:_-1,colStart:a-1,colEnd:a-1})),m=E.TypedObject.resolveTypedUpdates(w,Tt,r,m)}if(p&&y&&o.firstTotalCell){let w=o.firstTotalCell;w.border&&(w=Ae(w,u,{rowStart:c-S,rowEnd:c-1,colStart:0,colEnd:0})),m=E.TypedObject.resolveTypedUpdates(w,Tt,r,m)}if(p&&C&&o.lastTotalCell){let w=o.lastTotalCell;w.border&&(w=Ae(w,u,{rowStart:c-S,rowEnd:c-1,colStart:a-1,colEnd:a-1})),m=E.TypedObject.resolveTypedUpdates(w,Tt,r,m)}return f&&o.headerRow&&n.getColumnFilter(d)&&!n.getColumnFilter(d).hasHiddenButton()&&(m.insets={right:15}),m}}class gd{constructor(t,e,n,r){this._styles=t,this._isBuiltIn=n,this._doDelete=r,this._properties=E.CommonUtils.deepFreeze(this._resolveProperties(e)),this.isShownInTableStyles()}_resolveProperties(t){const e={name:t.name};t.table!==void 0&&(e.table=t.table),t.pivot!==void 0&&(e.pivot=t.pivot);const n=this._styles,r=Object.values(exports.ITableStyle.ElementType),o=r.length;for(let s=0;s<o;s++){const i=r[s],a=t[i];if(!a||!E.CommonUtils.isObject(a))continue;const c=E.TypedObject.resolveTypedUpdates(Object.freeze(a),Tt,n);e[i]=c}return Object.freeze(e)}delete(){if(!this._doDelete)throw new Error("Not able to delete builtin style.");this._doDelete(this._properties.name)}getRanged(t){return new H_(t,this._styles,this._properties)}getProperties(){return this._properties}getName(){return this._properties.name}isShownInTableStyles(){return this._properties.table!==!1}isShownInPivotStyles(){return this._properties.pivot??!1}isBuiltIn(){return this._isBuiltIn}toJSON(){const t=E.CommonUtils.cloneObject(this._properties);return t.name=this._properties.name,t}get isITableStyle(){return!0}}const Sl={rowIndex:0,colIndex:0};class W_ extends zt{constructor(t,e){super(t,E.CoordUtils.EmptyRange,e)}isEmpty(){return this._p===null}getCoords(){return this._r}cloneWithUpdate(t){if(t===void 0)return this;const e=this._c,n=this._r,r=E.TypedObject.resolveTypedUpdates(t,Tt,e,this._p);return new zt(e,n,r)}_createShifted(t){return new zt(this._c,t,this._p)}getShifted(t){return t.after?{...t.after,value:this._createShifted(E.CoordUtils.sanitizeRange(t.after))}:null}getSplit(t,e){const n=this._c,r=this._p;return[new zt(n,t[0],r),new zt(n,t[1],r)]}getMerged(t,e,n){const r=this._p,o=t._p;if(r&&!o||o&&!r||!r&&!o)return;let s=Object.keys(r),i=Object.keys(o);if(r.named===exports.IStyle.BuiltInName.Normal&&(s=s.filter(c=>c.toLowerCase()!==exports.IStyle.BuiltInName.Normal)),o.named===exports.IStyle.BuiltInName.Normal&&(i=i.filter(c=>c.toLowerCase()!==exports.IStyle.BuiltInName.Normal)),s.length!==i.length)return;for(let c=0;c<s.length;c++){const h=s[c],d=r[h],u=o[h];if(!E.CommonUtils.deepEqual(d,u))return}const a=this._c;return new zt(a,e,this._p)}getPropertiesAt(t,e){return this._p}toJSON(){return E.CommonUtils.toSafeJSON(this._p)}}class md{constructor(t,e,n,r=null){this._name=e.name,this._properties=e,this._rangeStyle=new W_(t,e.style),this._doDelete=n,this._builtInID=r}getRanged(){return this._rangeStyle}getName(){return this._name}isHidden(){return this._properties.hidden??!1}getILevel(){return this._properties.iLevel??null}getBuiltInID(){return this._builtInID}delete(){this._doDelete?.(this)}toJSON(){return this._properties?E.CommonUtils.toSafeJSON(this._properties):null}get isINamed(){return!0}}let j_=class{constructor(l,t,e,n,r){this._state=l,this._normalJSON=t??{},this._toJSONInternal=e,this._fromJSONInternal=n,this._onLastEnd=r,this._state.openScopes.add(this),this._isClosed=!1,this._state.byJSONs.set(E.JSONStableStringify(this._normalJSON),0),this._state.byIds.set(0,this._normalJSON)}endPersist(){if(!this._state.openScopes.delete(this))throw new Error("PersistScope is closed.");this._isClosed=!0,this._state.openScopes.size===0&&this._onLastEnd()}getElementID(l){if(this._isClosed)throw new Error("PersistScope is closed.");l=l??{};const t=E.JSONStableStringify(l);let e=this._state.byJSONs.get(t);return e!==void 0||(e=this._state.byJSONs.size,this._state.byJSONs.set(t,e),this._state.byIds.set(e,l)),e}getElementJSON(l){if(this._isClosed)throw new Error("PersistScope is closed.");return this._state.byIds.get(l)??null}fromJSON(l){if(this._isClosed)throw new Error("PersistScope is closed.");const t=JSON.parse(JSON.stringify(l||{}));this._fromJSONInternal(t);const e=t.direct;if(e)for(let n=0;n<e.length;n++){const r=n,o=e[n],s=E.JSONStableStringify(o);this._state.byIds.set(r,o),this._state.byJSONs.set(s,r)}}toJSON(){if(this._isClosed)throw new Error("PersistScope is closed.");const l=[];return this._state.byIds.forEach((t,e)=>{l[e]=t}),l.length===1&&l.splice(0,1),this._toJSONInternal(l)}};class Fr{constructor(t=null,e=null,n=11){this._emitter=null,this._normalRanged=null,this._theme=t??new va().getDefaultTheme(),this._defaultFontSize=n;const r=this;this._emitter=new Yt(this),this._schemeLookup=o=>r._theme.schemeLookup()(o),this._indexedColors=this._fromJSONIndexedColors(e),this._indexedLookup=o=>{const s=this._indexedColors[o];return s?s.toRGBA():Xs(o)},this._initializeBuiltIns(),this._customCellStyles=new Map,this._customTableStyles=new Map,this._indexedColors=[],this._mruColors=[],this._persistCache=null}_initializeNamedStyles(t,e){for(let n=0;n<t.length;n++){const r=t[n],o={...r},s=r.named;delete o.named;const i=E.TypedObject.resolveTypedUpdates(o,Tt,this),a=new md(this,{name:s,style:i},this._hideOrRemoveNamed.bind(this),n);s===exports.IStyle.BuiltInName.Normal&&(this._normalRanged=a.getRanged(),this._normalStyle=Rr(this,null)),e.set(s.toLowerCase(),a)}}_initializeTableStyles(){const t=(()=>{if(ae)return ae;ae=new Map;const n=(d,u)=>{if(u===0)return"TableStyleNone";let g="Custom";return d==="l"?g="Light":d==="m"?g="Medium":d==="d"&&(g="Dark"),`TableStyle${g}${u}`},r=(d,u=0)=>u===0?d:u>0?`${d} lumMod ${100-u}, lumOff ${u}`:u<0?`${d} lumMod ${100+u}`:void 0,o=d=>({type:exports.IFill.Type.Pattern,patternType:exports.IFill.BuiltInSheetPattern.Solid,foreground:d,background:d}),s=(d,u=!1)=>{const g={fill:d};return u&&(g.weight=700),g},i=(d,u=exports.IBorder.StrokeStyle.Thin)=>({style:u,color:d}),a=(d,u)=>{for(let g=0;g<7;g++)d.push(u(`accent${g+1}`))};let c=0,h=[];h.push(["dk1",r("bg1",-15),"dk1"]),a(h,d=>[r(d,-25),r(d,80),d]),c=1;for(let d=0;d<7;d++){const u=n("l",d+c),g=h[d][0],m=h[d][1]??g,f=h[d][2]??g;ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),border:{top:i(f),bottom:i(f)}},headerRow:{font:s(g,!0),border:{bottom:i(f)}},totalRow:{font:s(g,!0),border:{top:i(f)}},firstColumn:{font:s(g,!0)},lastColumn:{font:s(g,!0)},firstRowStripe:{fill:o(m)},firstColumnStripe:{fill:o(m)}}))}c+=7,h=[],h.push(["dk1","dk1","lt1"]),a(h,d=>["dk1",d,"lt1"]);for(let d=0;d<7;d++){const u=n("l",d+c),g=h[d][0],m=h[d][1],f=h[d][2];ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),border:{left:i(m),right:i(m),top:i(m),bottom:i(m)}},headerRow:{font:s(f,!0),fill:o(m)},totalRow:{font:s(g,!0),border:{top:i(m,exports.IBorder.StrokeStyle.Double)}},firstColumn:{font:s(g,!0)},lastColumn:{font:s(g,!0)},firstRowStripe:{border:{top:i(m)}},secondRowStripe:{border:{top:i(m)}},firstColumnStripe:{border:{left:i(m)}},secondColumnStripe:{border:{left:i(m)}}}))}c+=7,h=[],h.push(["dk1",r("bg1",-15)]),a(h,d=>[d,r(d,80)]);for(let d=0;d<7;d++){const u=n("l",d+c),g="dk1",m=h[d][0],f=h[d][1];ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),border:{left:i(m),right:i(m),top:i(m),bottom:i(m),horizontal:i(m),vertical:i(m)}},headerRow:{font:s(g,!0)},totalRow:{font:s(g,!0),border:{top:i(m,exports.IBorder.StrokeStyle.Double)}},firstColumn:{font:s(g,!0)},lastColumn:{font:s(g,!0)},firstRowStripe:{fill:o(f)},firstColumnStripe:{fill:o(f)}}))}c=1,h=[],h.push(["dk1","dk1",r("bg1",-15)]),a(h,d=>[d,r(d,40),r(d,80)]);for(let d=0;d<7;d++){const u=n("m",d+c),g="dk1",m="lt1",f=h[d][0],_=h[d][1],p=h[d][2];ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),border:{left:i(_),right:i(_),top:i(_),bottom:i(_),horizontal:i(_)}},headerRow:{font:s(m,!0),fill:o(f)},totalRow:{font:s(g,!0),border:{top:i(f,exports.IBorder.StrokeStyle.Double)}},firstColumn:{font:s(g,!0)},lastColumn:{font:s(g,!0)},firstRowStripe:{fill:o(p)},firstColumnStripe:{fill:o(p)}}))}c+=7,h=[],h.push(["dk1",r("bg1",-15),r("bg1",-35)]),a(h,d=>[d,r(d,80),r(d,60)]);for(let d=0;d<7;d++){const u=n("m",d+c),g="dk1",m="lt1",f=h[d][0],_=h[d][1],p=h[d][2];ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),fill:o(_),border:{horizontal:i(m),vertical:i(m)}},headerRow:{font:s(m,!0),fill:o(f),border:{bottom:i(m,exports.IBorder.StrokeStyle.Thick)}},totalRow:{font:s(m,!0),fill:o(f),border:{top:i(m,exports.IBorder.StrokeStyle.Thick)}},firstColumn:{font:s(m,!0),fill:o(f)},lastColumn:{font:s(m,!0),fill:o(f)},firstRowStripe:{fill:o(p)},firstColumnStripe:{fill:o(p)}}))}c+=7,h=[],h.push(["dk1",r("bg1",-15),r("bg1",-35)]),a(h,d=>[d,r(d,80),r(d,60)]);for(let d=0;d<7;d++){const u=n("m",d+c),g="dk1",m="lt1",f=h[d][0],_=r("bg1",-15);ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),border:{top:i(g,exports.IBorder.StrokeStyle.Medium),bottom:i(g,exports.IBorder.StrokeStyle.Medium),left:d===0?i(g,exports.IBorder.StrokeStyle.Thin):void 0,right:d===0?i(g,exports.IBorder.StrokeStyle.Thin):void 0,horizontal:d===0?i(g,exports.IBorder.StrokeStyle.Thin):void 0,vertical:d===0?i(g,exports.IBorder.StrokeStyle.Thin):void 0}},headerRow:{font:s(m,!0),fill:o(f),border:{bottom:i(g,exports.IBorder.StrokeStyle.Medium)}},totalRow:{border:{top:i(g,exports.IBorder.StrokeStyle.Double)}},firstColumn:{font:s(m,!0),fill:o(f)},lastColumn:{font:s(m,!0),fill:o(f)},firstRowStripe:{fill:o(_)},firstColumnStripe:{fill:o(_)}}))}c+=7,h=[],h.push(["dk1",r("bg1",-15),r("bg1",-35),"dk1"]),a(h,d=>[d,r(d,80),r(d,60),r(d,40)]);for(let d=0;d<7;d++){const u=n("m",d+c),g="dk1",m=h[d][0],f=h[d][1],_=h[d][2],p=h[d][3];ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),fill:o(f),border:{top:i(p),right:i(p),left:i(p),bottom:i(p),vertical:i(p),horizontal:i(p)}},headerRow:{font:s(g),fill:o(f)},totalRow:{font:s(g),border:{top:i(m,exports.IBorder.StrokeStyle.Medium)}},firstColumn:{font:s(g,!0)},lastColumn:{font:s(g,!0)},firstRowStripe:{fill:o(_)},firstColumnStripe:{fill:o(_)}}))}c=1,h=[],h.push(["dk1",r("dk1",15),r("dk1",25),r("dk1",50)]),a(h,d=>["dk1",r(d,-50),r(d,-25),d]);for(let d=0;d<7;d++){const u=n("d",d+c),g="lt1",m=h[d][0],f=h[d][1],_=h[d][2],p=h[d][3];ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),fill:o(p)},headerRow:{font:s(g,!0),fill:o(m),border:{bottom:i(g,exports.IBorder.StrokeStyle.Medium)}},totalRow:{font:s(g,!0),fill:o(f),border:{top:i(g,exports.IBorder.StrokeStyle.Medium)}},firstColumn:{font:s(g,!0),fill:o(_),border:{right:i(g,exports.IBorder.StrokeStyle.Medium)}},lastColumn:{font:s(g,!0),fill:o(_),border:{left:i(g,exports.IBorder.StrokeStyle.Medium)}},firstRowStripe:{fill:o(_)},firstColumnStripe:{fill:o(_)}}))}c+=7,h=[],h.push([r("bg1",-15),"dk1",r("bg1",-35)]),h.push([r("accent1",80),"accent2",r("accent1",60)]),h.push([r("accent3",80),"accent4",r("accent3",60)]),h.push([r("accent5",80),"accent6",r("accent5",60)]);for(let d=0;d<4;d++){const u=n("d",d+c),g="dk1",m="lt1",f=h[d][0],_=h[d][1],p=h[d][2];ae.set(u.toLocaleLowerCase(),Object.freeze({name:u,wholeTable:{font:s(g),fill:o(f)},headerRow:{font:s(m,!0),fill:o(_)},totalRow:{font:s(g,!0),border:{top:i(g,exports.IBorder.StrokeStyle.Double)}},firstColumn:{font:s(g,!0)},lastColumn:{font:s(g,!0)},firstRowStripe:{fill:o(p)},firstColumnStripe:{fill:o(p)}}))}return ae})(),e=new Map;return t.forEach((n,r)=>{const o=n.name.toLowerCase(),s=new gd(this,n,!0);e.set(o,s)}),e}_initializeBuiltIns(){const t=new Map;this._builtInsCellStyles=t,this._initializeNamedStyles(d_,t),this._builtInsTableStyles=this._initializeTableStyles(),this._emptyTableStyle=new exports.ITableStyle.Empty(this._normalStyle)}getNormal(){return this._normalStyle}getNormalRanged(){return this._normalRanged}setTheme(t){this._theme=t,this._emitter.notify("onThemeChange"),this._emitter.notify("onAnyChange")}getTheme(){return this._theme}setDefaultFontSize(t){this._defaultFontSize=t,this._emitter.notify("onDefaultFontChange"),this._emitter.notify("onAnyChange")}getDefaultFontSize(){return this._defaultFontSize}beginPersist(){return this._persistCache||(this._persistCache={byIds:new Map,byJSONs:new Map,openScopes:new Set}),new j_(this._persistCache,{},this._toJSONInternal.bind(this),this._fromJSONInternal.bind(this),()=>{this._persistCache=null})}getNamed(t){if(!t)return null;t=t.toLowerCase();let e=null;return this._customCellStyles&&(e=this._customCellStyles.get(t)),e||(e=this._builtInsCellStyles.get(t)),e??null}getCustomNamed(){const t=Array.from(this._customCellStyles.values());return t.sort((e,n)=>e.getName().localeCompare(n.getName())),t}setNamed(t,e=!1){if(!t||!t.name||!t.style)throw new E.NullNotAllowedError;this.validateStyleName(t.name,!1);const n=this._setCustomCellStyleInternal(t,e);return this._emitter.notify("onNamedStylesChange"),this._emitter.notify("onAnyChange"),n}_setCustomCellStyleInternal(t,e=!1,n=0){const r=t.name.toLowerCase(),o=this._builtInsCellStyles.get(r),s=o?.getBuiltInID()??null;let i=null;e&&(i=(this._customCellStyles.get(r)??o)?._properties??null);const a=wi(0,t.style,this.getNormal());t={...t,style:a};const c=E.TypedObject.resolveTypedUpdates(t,i_,this,i),h=new md(this,c,this._hideOrRemoveNamed.bind(this),s);return c.name===exports.IStyle.BuiltInName.Normal&&(this._normalRanged=h.getRanged(),this._normalStyle=Rr(this,null)),this._customCellStyles.set(r,h),h}_setCustomTableStyleInternal(t,e){const n=t.toLowerCase();let r=this._customTableStyles.get(n)??this._builtInsTableStyles.get(n);r&&(t=r.getName());const o=new gd(this,{...e,name:t},!1,this._deleteCustomTableStyle.bind(this));return this._customTableStyles.set(n,o),o}_hideOrRemoveNamed(t){let e=null;if(e=typeof t=="string"?t:t?.getName?.(),!e||(e=e.toLowerCase(),e===exports.IStyle.BuiltInName.Normal.toLowerCase()))return!1;const n=this._builtInsCellStyles.get(e);let r=!1;if(n&&!n.isHidden()){const o=n.toJSON();this.setNamed({...o,hidden:!0}),r=!0}else e=e.toLowerCase(),r=this._customCellStyles.delete(e);return r&&(this._emitter.notify("onNamedStylesChange"),this._emitter.notify("onAnyChange")),r}getTableStyle(t){if(!t)return this._emptyTableStyle;let e=this._customTableStyles.get(t.toLowerCase());return e||(e=this._builtInsTableStyles.get(t.toLowerCase())),e??null}getCustomTableStyles(){const t=Array.from(this._customTableStyles.values());return t.sort((e,n)=>e.getName().localeCompare(n.getName())),t}setDefaultTableStyle(t){const e=t?.toLowerCase();return this._defaultTableStyle=this._customTableStyles.get(e)??this._builtInsTableStyles.get(e)??this._builtInsTableStyles.get($r.toLowerCase()),this._emitter.notify("onTableStylesChange"),this._emitter.notify("onAnyChange"),t===this._defaultTableStyle.getName()}getDefaultTableStyle(){return this._defaultTableStyle||(this._defaultTableStyle=this._builtInsTableStyles.get($r.toLowerCase())),this._defaultTableStyle}_deleteCustomTableStyle(t){const e=this._customTableStyles.get(t?.toLowerCase());return!!e&&(this._customTableStyles.delete(t.toLowerCase()),this._defaultTableStyle?.getName()===e.getName()&&(this._defaultTableStyle=this._builtInsTableStyles.get($r.toLowerCase())),this._emitter.notify("onTableStylesChange"),this._emitter.notify("onAnyChange"),!0)}setCustomTableStyle(t,e){const n=this._setCustomTableStyleInternal(t,e);return this._emitter.notify("onTableStylesChange"),this._emitter.notify("onAnyChange"),n}validateStyleName(t,e=!1){if(!t||t.trim().length===0)throw new Error("Style name cannot be empty.");if(e&&this.getNamed(t)!==null)throw new Error("Style name is already taken.")}normalize(t){if(!t)return null;const e=E.TypedObject.resolveTypedUpdates(t,Tt,this),n=bg;let r=null;if(r=e.named?this.getNamed(e.named)?.getRanged().getPropertiesAt(0,0,null):this._normalRanged.getPropertiesAt(0,0,null),r){const s={...r};E.CommonUtils.removeEqualValues(e,s)}const o=this.getTheme().getFontScheme();return E.CommonUtils.removeEqualValues(e,{font:{size:this.getDefaultFontSize(),family:o.getMinorFont(),fallbacks:o.getMinorFallbacks()}}),E.CommonUtils.removeEqualValues(e,n),e}schemeLookup(){return this._schemeLookup}indexedLookup(){return this._indexedLookup}parseColor(t){return kt.parse(t,this._schemeLookup,this._indexedLookup)}recentColors(){return this._mruColors}addRecentColor(t){if(!t)return;const e=this._mruColors,n=[],r=t.toString();for(let o=0;o<e.length&&o<10;o++)e[o].toString()!==r&&n.push(e[o]);return n.unshift(t),this._mruColors=Object.freeze(n),this._mruColors}clearRecentColors(){this._mruColors=Object.freeze([])}getIndexedColors(){return this._indexedColors}setCustomIndexedColors(t){this._indexedColors=t?.length>0?[...t]:null}getCustomIndexedColors(){const t=Math.max(this._indexedColors?.length,66),e=[];for(let n=0;n<t;n++)this._indexedColors[n]!==null&&e.push(this._indexedColors[n]??new kt(Xs(n)?.toString()));return e}addListeners(t,e){return this._emitter.addListeners(t,e)}_toJSONInternal(t){const e={};t.length>0&&(e.direct=t);const n=this.getCustomNamed();let r=[];for(let a=0;a<n.length;a++){let c=n[a].toJSON();r.push(c)}r.length>0&&(e.named=r);const o={};this._defaultTableStyle&&this._defaultTableStyle.getName()!==$r&&(o.defaultTableStyle=this._defaultTableStyle.getName());const s={},i=this.getCustomTableStyles();for(let a=0;a<i.length;a++){let c=i[a].toJSON();delete c.name,c&&Object.keys(c).length>0&&(s[i[a].getName()]=c)}if(Object.keys(s).length>0&&(o.styles=s),Object.keys(o).length>0&&(e.tables=o),this._indexedColors.length>0){e.indexedColors=[];for(let a=0;a<this._indexedColors.length;a++)e.indexedColors.push(this._indexedColors[a].toString())}if(this._mruColors.length>0){e.mruColors=[];for(let a=0;a<this._mruColors.length;a++)e.mruColors.push(this._mruColors[a].toString())}return Object.keys(e).length===0?null:e}_fromJSONIndexedColors(t){if(!t||t.length===0)return E.CommonUtils.EmptyArray;const e=[];if(t?.length>0)for(let n=0;n<t.length;n++)try{e.push(this.parseColor(t[n]))}catch{console.warn("Unable to parse color: "+t[n])}return e}_fromJSONInternal(t){this._indexedColors=this._fromJSONIndexedColors(t.indexedColors);const e=t.named;for(let o=0;e&&o<e.length;o++)this._setCustomCellStyleInternal(t.named[o]);let n=$r;if(this._defaultTableStyle=null,t.tables){t.tables.defaultTableStyle&&(n=t.tables.defaultTableStyle);const o=t.tables.styles?Object.keys(t.tables.styles):null;for(let s=0;o&&s<o.length;s++){const i=o[s],a=t.tables.styles[i];this._setCustomTableStyleInternal(i,a)}}this._defaultTableStyle=this.getTableStyle(n);let r=[];if(t.mruColors?.length>0)for(let o=0;o<t.mruColors.length;o++)try{r.push(this.parseColor(t.mruColors[o]))}catch{console.warn("Unable to parse color: "+t.mruColors[o])}this._mruColors=r}}const wl="BinaryResource must have only one initial data value.",yl="Resource is closed.";class Ws{constructor(t){if(this._listeners=new Set,this._type=t.type,this._name=t?.name,t.base64){const e=t.base64;this._asArrayBufferResolve=async()=>{const n=await Promise.resolve(e);return Promise.resolve(E.BufferUtils.base64ToArrayBuffer(n))}}if(t.fetch){if(this._asArrayBufferResolve)throw new Error(wl);const e=t.fetch;this._asArrayBufferResolve=async()=>{let n,r=null;r=typeof e=="string"?e:t.input;const o=await fetch(r,n),s=o.headers.get("Content-Type");return!this._type&&s&&(this._type=s),o.arrayBuffer()}}if(t.buffer){if(this._asArrayBufferResolve)throw new Error(wl);this._asArrayBufferResolve=async()=>{let e=null;return e=typeof t.buffer=="function"?await t.buffer():t.buffer,Promise.resolve(e)}}if(t.file){if(this._asArrayBufferResolve)throw new Error(wl);this._asArrayBufferResolve=async()=>await(await Promise.resolve(t.file)).arrayBuffer()}if(!this._asArrayBufferResolve)throw new Error("BinaryResource must have an initial data value.");this._refs=new Set,this._isClosed=!1}getName(){return this._name}async toJSONAsync(){const t=await this.toBuffer(),e={base64:E.BufferUtils.arrayBufferToBase64(t)};return this._type!==E.BufferUtils.DEFAULT_MIME_TYPE&&(e.type=this._type),this._name&&(e.name=this._name),e}async toBuffer(){if(this._asArrayBuffer)return this._asArrayBuffer;try{this._asArrayBuffer=this._asArrayBufferResolve()}catch(t){throw t}return this._asArrayBuffer}async getType(){return this._type?this._type:(await this.toBuffer(),this._type??E.BufferUtils.DEFAULT_MIME_TYPE)}addReference(t){if(this._isClosed)throw new Error(yl);this._refs.add(t)}deleteReference(t){if(this._isClosed)throw new Error(yl);if(this._refs.size===0||!this._refs.has(t))return;this._refs.delete(t);const e=this;if(this._refs.size===0){const n=this._listeners;n.forEach(r=>{r.onUnload?.(e),n.delete(r)}),this._asArrayBuffer=null,this._isClosed=!0}}addUnloadListener(t){if(this._isClosed)throw new Error(yl);this._listeners.add(t)}get isIResource(){return!0}isClosed(){return this._isClosed}}let V_=class{constructor(l,t,e){this._state=l,this._fromJSON=t,this._onLastEnd=e,this._state.openScopes.add(this),this._isClosed=!1}endPersist(){if(!this._state.openScopes.delete(this))throw new Error("PersistScope is closed.");this._isClosed=!0,this._state.openScopes.size===0&&this._onLastEnd()}toResourceId(l){if(this._isClosed)throw new Error("PersistScope is closed.");let t=this._state.byRefs.get(l);return t!==void 0||(t=this._state.byRefs.size,this._state.byRefs.set(l,t),this._state.byIds.set(t,l)),t}fromResourceId(l){return this._state.byIds.get(l)??null}fromJSON(l){if(this._isClosed)throw new Error("PersistScope is closed.");if(!l||l.length===0)return;const t=this._state.byRefs.size;for(let e=0;e<l.length;e++){const n=l[e],r=this._fromJSON(n);this._state.byRefs.set(r,t+e),this._state.byIds.set(t+e,r)}}toJSONAsync(){if(this._isClosed)throw new Error("PersistScope is closed.");const l=[];return this._state.byRefs.forEach((t,e)=>{l[t]=Promise.resolve(e.toJSONAsync())}),Promise.all(l)}};class Oa{constructor(){this._resources=new Set}add(t){if(typeof t=="string"){let r=!1;this._resources.forEach(o=>{o.getName()===t&&(r=!0,t=o)}),r||(t=new Ws({name:t,fetch:t,type:null}))}let e=null;e=t instanceof Ws?t:new Ws({...t});const n=this;return this._resources.has(e)||(e.addUnloadListener({onUnload:r=>{n._resources.delete(e)}}),this._resources.add(e)),e}getItems(t){return Array.from(this._resources)}getCount(){return this._resources.size}beginPersist(){this._persistOpen||(this._persistOpen={byRefs:new Map,byIds:new Map,openScopes:new Set});const t={},e=new Set,n=this;return new V_(this._persistOpen,r=>{const o=n.add({base64:r.base64,name:r.name,type:r.type});return o.addReference(t),e.add(o),o},()=>{e.forEach(r=>{r.deleteReference(t)}),n._persistOpen=null})}}class $_{constructor(t,e,n){this._state=t,this._fromJSON=e,this._onLastEnd=n,this._state.openScopes.add(this),this._isClosed=!1}endPersist(){if(!this._state.openScopes.delete(this))throw new Error("PersistScope is closed.");this._isClosed=!0,this._state.openScopes.size===0&&this._onLastEnd()}add(t){if(this._isClosed)throw new Error("PersistScope is closed.");let e=this._state.byRefs.get(t);return e!==void 0||(e=this._state.byRefs.size,this._state.byRefs.set(t,e),this._state.byIds.set(e,t)),e}at(t){return this._state.byIds.get(t)??null}fromJSON(t){if(this._isClosed)throw new Error("PersistScope is closed.");t&&t.length!==0&&this._fromJSON(t)}toJSONAsync(){if(this._isClosed)throw new Error("PersistScope is closed.");const t=[];return this._state.byRefs.forEach((e,n)=>{t[e]=Promise.resolve(n.toJSONAsync?n.toJSONAsync():n)}),Promise.all(t)}}class Ei{constructor(){this._nextId=0,this._lastReadId=-1,this._lastReadValue=null,this._stringsByText=new Map,this._stringsById=new Map}addMultiple(t,e=!1){const n=this._stringsByText,r=this._stringsById,o=t.length;let s=this._nextId;for(let i=0;i<o;i++){const a=t[i];n.get(a)!==void 0&&e||(n.set(a,s),r.set(s,a),s++)}this._lastReadId=-1,this._nextId=s}add(t){const e=this._stringsByText,n=e.get(t);if(n!==void 0)return n;const r=this._nextId++;return e.set(t,r),this._stringsById.set(r,t),this._lastReadId=-1,r}getItems(t){if(t?.id!==void 0){const e=this.getById(t.id);return e?[e]:[]}return Array.from(this._stringsById.values())}getById(t){if(this._lastReadId===t)return this._lastReadValue;const e=this._stringsById.get(t)??null;return this._lastReadId=t,this._lastReadValue=e,e}getCount(){return this._stringsById.size}beginPersist(){this._persistOpen||(this._persistOpen={byRefs:new Map,byIds:new Map,openScopes:new Set});const t=this;return new $_(this._persistOpen,e=>(Array.isArray(e)?t.addMultiple(e):t.add(e),e),()=>{t._persistOpen=null})}}exports.IPicture=void 0,exports.IPicture||(exports.IPicture={});class Ng extends Vn{constructor(t){super(t),t.json&&(this._resource=t.fromResourceId(t.json.resId))}getType(){return"picture"}toJSON(t){const e={},n=t?.(this._resource);n!==null&&(e.resId=n);const r=this._getState();return r&&r.effects&&(e.effects=r.effects),e}getTypeDescription(){return"Picture"}async _asDataUrl(){if(this._dataUrl)return this._dataUrl;const t=await this.getDetails(),e=await E.ImageUtils.getImageDataUrl(t.asUrl());return this._dataUrl=e.dataUrl,this._dataUrl}toHtml(){return null}async toImage(){const t=(await this._asDataUrl()).substring(E.ImageUtils.DATA_URL_PNG_PREFIX.length),e=E.BufferUtils.base64ToArrayBuffer(t);return new Blob([e],{type:E.MimeType.png})}async getDetails(){return this._details||(this._details=new Promise(async(t,e)=>{try{const n=await this._resource.toBuffer(),r=await this._resource.getType(),o=await E.ImageUtils.loadImageDetails(n,r);t({getNaturalDimensions:()=>o.naturalDimensions,asUrl:()=>o.asUrl,asSVGText:()=>o.asSVGText})}catch(n){e(n)}})),this._details}_fromDrawingJSON(t,e){this._resource?.deleteReference(this),this._resource=e?.(t.resId),this._resource.addReference(this)}_toDrawingJSON(t){const e={},n=t?.(this._resource);return n!==null&&(e.resId=n),e}_processDelete(){super._processDelete()}}exports.ICalculation=void 0,(exports.ICalculation||(exports.ICalculation={})).Status={Ready:"ready",Error:"error",Starting:"starting",Stopping:"stopping",Off:"off"};class xo extends qt{constructor(t,e=null,n,r,o){if(super(t,n,e),this._sheetName=r||null,this._getEntireCoords=o??ei,this._coords=G_(n,this._getEntireCoords()),!n)throw new Error("ReferenceRange requires a coords");this._validateCoords(n)}toType(t){return new xo(this._values,t,this._coords,this._sheetName,this._getEntireCoords)}getCoords(){return this._coords}get isIReferenceRange(){return!0}isLiteral(){return!1}_validateCoords(t){const e=this._getEntireCoords?.();if(e&&(t.rowStart<e.rowStart&&t.rowStart!==Number.MIN_SAFE_INTEGER||t.rowEnd>e.rowEnd&&t.rowEnd!==Number.MAX_SAFE_INTEGER||t.colStart<e.colStart&&t.colStart!==Number.MIN_SAFE_INTEGER||t.colEnd>e.colEnd&&t.colEnd!==Number.MAX_SAFE_INTEGER))throw new E.OutOfBoundsError}get[Symbol.toStringTag](){return"[ReferenceRange]"}toString(){return`${sn(this._coords,this._getEntireCoords?.())}`}}const G_=(l,t)=>{let e=l.rowStart,n=l.rowEnd,r=l.colStart,o=l.colEnd,s=!1;return r===Number.MIN_SAFE_INTEGER&&(r=t.colStart,s=!0),e===Number.MIN_SAFE_INTEGER&&(e=t.rowStart,s=!0),n===Number.MAX_SAFE_INTEGER&&(n=t.rowEnd,s=!0),o===Number.MAX_SAFE_INTEGER&&(o=t.colEnd,s=!0),s?{rowStart:e,rowEnd:n,colStart:r,colEnd:o}:l},fd=(l,t)=>l.value?.once===t.value?.once,J_=(l,t)=>l.colStart===t.colStart&&l.rowStart===t.rowStart,Og=(l,t,e)=>!!e&&l===e.rowStart&&t===e.colStart,q_=(l,t=0,e=0)=>{const n=l._values,r=l._coords,o=n.getRuns({bounds:r}),s=n.getOrientation()!==A.IRange.Orientation.Row,i=s?r.colStart:r.rowStart,a=s?r.rowStart:r.colStart,c=new exports.Tuple.Builder(null,t,e);let h=o.next();for(;!h.done;){const d=h.value;c.addValues(d[0]-i,d[1]-a,d[2]),h=o.next()}return c.build()},js=(l,t,e,n,r,o,s,i,a,c,h,d,u=!1)=>{let g,m,f=null,_=r.size();d===void 0&&(d=o.getOrientation()===A.IRange.Orientation.Column);const p=t?t.length:0,S=e?e.length:0;let C;const y=p+S;for(let w=0;w<y&&_>0;w++){const b=w<p?t[w]:e[w-p],x=r.search(b),R=x.length;for(let v=0;v<R;v++){const T=x[v];if(!Og(T.rowStart,T.colStart,b)){if(T.value.getError())continue;C||(C=[]),C.push(T)}r.remove(T,J_);const M=T.value;M.getCycleId()!==l&&a?.insert(T),M.getError()||(o.delete(T),n.insertNonOverlapping({colStart:T.colStart,rowStart:T.rowStart,colEnd:T.colEnd,rowEnd:T.rowEnd,value:null},{onIntersect:(F,N)=>{if(F.value!==null)return s?.push(F),f=E.CoordUtils.unionRanges(f,F),i?.insertNonOverlapping(F),f=E.CoordUtils.unionRanges(f,F),N}})),_--}}for(let w=0;w<p;w++){const b=t[w],x={colStart:b.colStart,rowStart:b.rowStart,colEnd:b.colEnd,rowEnd:b.rowEnd,value:null};n.insertNonOverlapping(x,{onIntersect:(R,v)=>{if(R.value===null)return;const T=E.CoordUtils.sanitizeRange(v);return u&&i?.insertNonOverlapping(T),c?.insertNonOverlapping({...v,value:!1}),s?.push(T),f=E.CoordUtils.unionRanges(f,T),v}}),h?.insertNonOverlapping(x,{onIntersect:(R,v)=>{if(R.value!==null)return s?.push(v),f=E.CoordUtils.unionRanges(f,v),v},onUpdates:(R,v,T)=>{m||(m=[]);const M=R.length;for(let N=0;N<M;N++){const O=R[N];m.push(O)}g||(g=[]);const F=v.length;for(let N=0;N<F;N++){const O=v[N],L=E.CoordUtils.sanitizeRange(O);g.push(L)}}})}const I=d?A.IRange.Orientation.Column:A.IRange.Orientation.Row;if(C){const w=C.length,b=new Array(w);for(let x=0;x<w;x++){const R=C[x],v=R.value.setError(!0,l);a?.insert(v),b[x]=v,f=E.CoordUtils.unionRanges(f,R);const T={colStart:R.colStart,rowStart:R.rowStart,colEnd:R.colStart,rowEnd:R.rowStart};n.insertNonOverlapping({colStart:R.colStart,rowStart:R.rowStart,colEnd:R.colStart,rowEnd:R.rowStart,value:new Fe(R,I)}),s?.push(T)}r.load(b)}for(let w=0;w<S;w++){const b=E.CoordUtils.sanitizeRange(e[w]);n.insertNonOverlapping({colStart:b.colStart,rowStart:b.rowStart,colEnd:b.colEnd,rowEnd:b.rowEnd,value:new Fe(b,I)}),u&&i?.insertNonOverlapping(b),s?.push(b),f=E.CoordUtils.unionRanges(f,b)}return f},ca=(l,t,e)=>{if(!t)return l;const n=t.block;if(!n)return l;const r=l??[],o=t.colIndex,s=t.rowIndex;let i,a,c,h;e?(i=e.colStart,a=e.rowStart,c=e.colEnd,h=e.rowEnd):(i=o,a=s,c=o,h=s);const d={colStart:i,rowStart:a,colEnd:c,rowEnd:h,value:{blockEntry:{colStart:i,rowStart:a,colEnd:c,rowEnd:h,value:n},width:1,height:1,index:-1,$absWidth:!1,$absHeight:!1,once:t}};let u=t.dynamic;return u||(u=[],t.dynamic=u),u.push(d),r.push(d),r};class ka{constructor(t){this._fullCalcRequired=!1,this._iterationId=0,this._cycleId=1,this._pendingInvalidations=new Set,this._emitter=null,this._isProcessingJSON=!1,this._collectDirties=(o,s=!1,i,a)=>{const c=this._formulaSpatial,h=this._precedentSpatial;let d=Q_,u=0;if(s){const g=c.all();for(let m=0;m<g.length;m++){const f=g[m].value.calcs,_=f.length;for(let p=0;p<_;p++){const S=f[p],C=S.length;for(let y=0;y<C;y++){const I=S[y];I.markId!==o&&(d[u++]=I,I.markId=o,I.pending=!1,I.pendingResolved=!1,I.pendingPromise&&(I.pendingPromise.cancelled=!0))}}}}else{const g=i.length;for(let m=0;m<g;m++){const f=i[m];wd.length=0;const _=wd;h.search(f,!1,_),c.search(f,!1,_);const p=_.length;if(p===0)continue;const S=f.colStart,C=f.rowStart,y=f.colEnd-S,I=f.rowEnd-C;for(let w=0;w<p;w++){const b=_[w],x=b.value,R=x.blockEntry?.value??x,v=R.ref,T=v.colEnd-v.colStart,M=v.rowEnd-v.rowStart,F=b.colEnd-b.colStart-T,N=b.rowEnd-b.rowStart-M,O=x.once;if(O)O.markId<=o&&(O.removed?(h.remove(b,fd),O.removed=!1):d[u++]=O,O.markId=o);else{let L=0,B=0,U=T,D=M;if(!x.$absHeight){const k=C-b.rowStart;B=Math.min(Math.max(k-N,0),M),D=Math.min(I+C,M)}if(!x.$absWidth){const k=S-b.colStart;L=Math.min(Math.max(k-F,0),T),U=Math.min(y+k,T)}const z=R.calcs;for(let k=B;k<=D;k++){const P=z[k];for(let j=L;j<=U;j++){const H=P[j];H.markId!==o&&(d[u++]=H,H.markId=o,H.pendingPromise&&(H.pendingPromise.cancelled=!0))}}}}}a&&a.forEach(m=>{if(Array.isArray(m)){const f=m.length;for(let _=0;_<f;_++){const p=m[_],S=p.length;for(let C=0;C<S;C++){const y=p[C];y.markId===o||y.removed||(d[u++]=y,y.markId=o,y.pendingPromise&&(y.pendingPromise.cancelled=!0))}}}else m.markId===o||m.removed||(d[u++]=m,m.markId=o,m.pendingPromise&&(m.pendingPromise.cancelled=!0))})}return d.length=u,d};const e=(t={strings:new Ei,...t}).getEntireCoords??ei;if(this._getEntireCoords=e,this._options=t,this._strings=t.strings,this._onCalculated=t?.onCalculated??(()=>{}),this._cycleId=1,this._values=new ze({orientation:A.IRange.Orientation.Column}),this._getFormulaParser=t.getFormulaParser,!this._getFormulaParser)throw new Error("Formula parser is not defined");this._latest={graph:this},this._iterationId=0;const n=this;this._formulaSpatial=new wt({updateEntryOptions:{isMergeOnShift:!0,isSplitOnExpand:!0,onUpdates:(o,s,i)=>{const a=i._cloneKey??n;if(a._isProcessingJSON)return;let c=a._notifyFormulaInsertEntries,h=a._notifyFormulaRemoveEntries;const d=a._precedentSpatial,u=s?s.length:0;if(u>0){let m=h?h.length:0;h?h.length=m+u:(h=new Array(u),a._notifyFormulaRemoveEntries=h);for(let f=0;f<u;f++){const _=s[f],p=_.value,S=p.ref;h[m+f]=S;const C=S.rowStart,y=S.colStart,I=p.formula.getDirectPrecedentsAt(C,y);if(!I)continue;const w=I.length;for(let b=0;b<w;b++){const x=I[b];if(x===null||x instanceof A.FormulaError.Known)continue;const R=d.search(x),v=R.length;for(let T=0;T<v;T++){const M=R[T];M.value.blockEntry.value===_.value&&d.remove(M)}}}}const g=o?o.length:0;if(g>0){const m=[];for(let f=0;f<g;f++){const _=o[f],p=_.colEnd-_.colStart,S=_.rowEnd-_.rowStart,C=_.value,y=C.formula,I=C.ref,w=I.rowStart,b=I.colStart,x=[],R=y.getDirectPrecedentsAt(w,b,!0,ns,rs),v=R.length;for(let T=0;T<v;T++){const M=R[T];if(M instanceof A.FormulaError.Known)continue;const F=ns[T],N=rs[T],O={colStart:M.colStart,rowStart:M.rowStart,colEnd:M.colEnd+(N?0:p),rowEnd:M.rowEnd+(F?0:S),value:{blockEntry:_,width:p+1,height:S+1,index:T,$absWidth:N,$absHeight:F,once:null}};x.push(M),m.push(O)}c||(c=[],a._notifyFormulaInsertEntries=c),c.push({colStart:_.colStart,rowStart:_.rowStart,colEnd:_.colEnd,rowEnd:_.rowEnd,value:{tokens:y.getTokens(),references:y.getReferences(),precedents:x}})}d.load(m)}}}}),this._contentfulSpatial=new wt({updateEntryOptions:{isSplitOnExpand:!0,isMergeOnShift:!0}});const r={updateEntryOptions:{isSplitOnExpand:!0,isMergeOnShift:!1}};this._precedentSpatial=new wt(r),this._volatile=new Set,this._spillSpatial=new wt(r),this._errorSpatial=new wt(r),this._pendingSpatial=new wt(r),this._invalidations=new wt,this._notifyValues=new wt,this._notifySpills=new wt,this._notifyFormats=new wt,this._notifyPending=new wt,this._calculation=t.calculation,this._clearScope()}addListeners(t,e){return this._emitter||(this._emitter=new Yt(this)),this._emitter.addListeners(t,e)}shift(t){const e=t.cloneIfUpdate??!0?this.clone(this):this,n={...t};delete n.cloneIfUpdate,delete n.onShift,e._values.shift(n.range,n.direction);const r=e._contentfulSpatial;e._contentfulSpatial=r.shift(n);const o=e._spillSpatial;e._spillSpatial=o.shift(n);const s=e._formulaSpatial;if(s.isEmpty())return e;const i=t.range,a=t.direction,c=a===A.IRange.Direction.Left||a===A.IRange.Direction.Right;a!==A.IRange.Direction.Up&&A.IRange.Direction.Left,c?(i.colEnd,i.colStart):(i.rowEnd,i.rowStart),e._notifyFormulaInsertEntries,e._notifyFormulaRemoveEntries;const h=e._getEntireCoords(),d=new Map;this._precedentSpatial.visitRanges({...i,colEnd:c?h.colEnd:i.colEnd,rowEnd:c?i.rowEnd:h.rowEnd},p=>{let S=p.value;if(p.value.once)return;let C=S.blockEntry,y=d.get(C);y||(y={rows:[],cols:[],index:[]},d.set(C,y)),y.index.push(S.index)});const u=[],g=[],m=d.entries();let f=m.next();const _=(p,S,C,y)=>{let I=p.value;const w=I.formula.getReferences(),b=S.length;for(let x=0;x<b;x++){const R=w[x];R!==null&&(R instanceof A.FormulaError.Known||typeof R!="string"&&R[x])}return p.value=I,p};for(;!f.done;){const[p,S]=f.value,C=p.value,y=S.rows.sort(),I=y.length,w=S.cols.sort().length,b=S.index.sort();if(g.push(p),I===0&&w===0){const R={...p};_(R,b),u.push(R),f=m.next();continue}let x=0;for(let R=0;R<I;R++){const v=y[R];if(v===x)continue;xl[0]={colStart:C.ref.colStart,rowStart:x,colEnd:C.ref.colEnd,rowEnd:v-1,value:C},xl[1]={colStart:C.ref.colStart,rowStart:v,colEnd:C.ref.colStart,rowEnd:C.ref.rowEnd,value:C};const T=eS(C,xl,A.IRange.Orientation.Row,v);let M=T[0];_(M,b),u.push(M),M=T[1],_(M,b),u.push(M),x=v}f=m.next()}return s._updateNodes(u,g),e._fullCalcRequired=!0,this._invalidate(u),e}clone(t){if(t!==void 0&&this._cloneKey===t)return this;const e=new ka(this._options);e._cloneKey=t,e._values=this._values.clone(e),e._contentfulSpatial=this._contentfulSpatial.clone(e),e._formulaSpatial=this._formulaSpatial.clone(e),e._precedentSpatial=this._precedentSpatial.clone(e),e._volatile=new Set(this._volatile),e._spillSpatial=this._spillSpatial.clone(e),e._errorSpatial=this._errorSpatial.clone(e),e._pendingSpatial=this._pendingSpatial.clone(e),e._invalidations=this._invalidations.clone(e),e._notifyValues=this._notifyValues.clone(e),e._notifySpills=this._notifySpills.clone(e),e._notifyFormats=this._notifyFormats.clone(e),e._notifyPending=this._notifyPending.clone(e);const n=this._notifyFormulaInsertEntries;n&&(e._notifyFormulaInsertEntries=[...n]);const r=this._notifyFormulaRemoveEntries;r&&(e._notifyFormulaRemoveEntries=[...r]);const o=this._pendingActions;return o&&(e._pendingActions=[...o]),e._cycleId=this._cycleId,e._emitter=this._emitter,e._fullCalcRequired=this._fullCalcRequired,this._latest.graph=e,e._iterationId=this._iterationId+1,e}invalidate(t){const e=this._invalidations;if(Array.isArray(t)){const n=t.length;for(let r=0;r<n;r++){let o=t[r];typeof o=="string"&&(o=he(o)),e.insertNonOverlapping(o)}}else{let n=t;typeof n=="string"&&(n=he(n)),e.insertNonOverlapping(n)}}setFormulaAt(t,e){let n,r=null;return typeof t=="string"?n=he(t,bt):(bt.colStart=t.colIndex,bt.rowStart=t.rowIndex,bt.colEnd=t.colIndex,bt.rowEnd=t.rowIndex,n=bt),e?r=this._setInputs(null,[{colStart:n.colStart,rowStart:n.rowStart,colEnd:n.colEnd,rowEnd:n.rowEnd,value:e}]):this.delete(n),r}getFormulaAt(t,e){let n;typeof t=="string"&&(n=he(t,bt));const r=this._formulaSpatial.search(n);if(r.length===0)return null;const o=r[0].value;return o.formula?o.formula.getTextAt(n.rowStart,n.colStart,e):void 0}_formulaAt(t,e){Yr.colStart=e,Yr.rowStart=t,Yr.colEnd=e,Yr.rowEnd=t;const n=this._formulaSpatial.search(Yr);if(n.length===0)throw new Error(`No formula found at ${Oo({rowIndex:t,colIndex:e})}`);return n[0]}getDirectPrecedentsAt(t,e,n){return this._formulaAt(t,e).value.formula.getDirectPrecedentsAt(t,e,n)}getReferencesAt(t,e){return this._formulaAt(t,e).value.formula.getReferences()}setReferenceAt(t,e,n,r){const o=this._formulaAt(t,e).value.formula.setReferenceAt(n,r).getTextAt(t,e);return this.setFormulaAt({rowIndex:t,colIndex:e},o),this}evaluateAt(t,e,n){const r=this._formulaAt(t,e),o=r.value,s=o.ref,i=s.colStart-e,a=s.rowStart-t,c=this._calculation._getContext(),h=this._calculation._getScope();return h.sheetName=this._options.getSheetName?.(),h.rowIndex=t,h.colIndex=e,h.node=o.calcs[a][i],r.value.formula.evaluate(c,n)}setInputAt(t,e){let n=null;const r=typeof t=="string"?mr(t,X_):t;if(e!==null){const o=new exports.Tuple.Builder,s=this._values.getOrientation()===A.IRange.Orientation.Column,i=s?r.colIndex:r.rowIndex,a=s?r.rowIndex:r.colIndex;o.addValue(i,a,e),n=this.setInputs(o.build(),null)}else this.delete(E.CoordUtils.cellToRange(r,bt));return n}setInputs(t,e){return this._setInputs(t,e)}delete(t){typeof t=="string"&&(t=ye(t));const e=this._setInputs(null,[{...t,value:null}],t);return this._emitter?.notify("onInvalidate"),e.removes}_createCopySpillEntries(t,e,n,r,o){const s=r??[],i=o??[],a=e.colStart,c=e.rowStart,h=e.colEnd,d=e.rowEnd,u=n.colStart,g=n.rowStart,m=t.search(e),f=m.length;for(let _=0;_<f;_++){const p=m[_];i&&i.push(p);const S=p.rowStart,C=p.colStart;if(S<c||S>d||C<a||C>h||p.value.getError())continue;const y=u+(p.colEnd-C),I=g+(p.rowEnd-S),w={colStart:u,rowStart:g,colEnd:y,rowEnd:I};s.push({colStart:u,rowStart:g,colEnd:y,rowEnd:I,value:new Pn(w,0,!1)})}return{removes:i,inserts:s}}_copyCalcs(t,e,n){const r=t._formulaSpatial;if(r.isEmpty())return;const o=this._getEntireCoords(),s=o.colStart,i=o.rowStart,a=o.colEnd,c=o.rowEnd,h=r.createCopiedEntries(e,n),d=h.inserts;let u=d.length,g=0;const m=t._spillSpatial;let f=[];for(;g<u;){let _=d[g],p=_.value,S=p.ref,C=S.colStart,y=S.rowStart,I=S.colEnd,w=S.rowEnd;this._createCopySpillEntries(m,e,S,f,null);let b=p.formula.getReferences();const x=b.length;for(let R=0;R<x;R++){const v=b[R];if(!v||v.isFormulaError||typeof v=="string")continue;const T=v,M=T.colStart,F=T.rowStart,N=T.colEnd,O=T.rowEnd;let L=T.$colStart?M:M+C,B=T.$rowStart?F:F+y,U=T.$colEnd?N:N+I,D=T.$rowEnd?O:O+w;if(M===Number.MIN_SAFE_INTEGER&&(L=s,U=a),F===Number.MIN_SAFE_INTEGER&&(B=i,D=c),L<s||U>a||B<i||D>c){const z=s-L,k=i-B,P=a-U,j=c-D;Xr.colStart=Math.max(C,C+z),Xr.rowStart=Math.max(y,y+k),Xr.colEnd=Math.min(I,I+P),Xr.rowEnd=Math.min(w,w+j);const H=xr(_,Xr,As);if(H){const W=H.length;_=H[W-1],p=_.value,S=p.ref,C=S.colStart,y=S.rowStart,I=S.colEnd,w=S.rowEnd;for(let V=0;V<W-1;V++){const $=H[V];d.push($),u++}}else p=p.setReferenceAt(R,null),_.value=p,b=p.formula.getReferences()}}d[g++]=_}this._formulaSpatial._updateNodes(d,h.removes),r._mergeNodes({colStart:n.colStart-1,rowStart:n.rowStart-1,colEnd:n.colEnd+1,rowEnd:n.rowEnd+1}),f&&this._spillSpatial._updateNodes(f,[]),this._fullCalcRequired=!0,this._invalidate(d),this._invalidate(h.removes)}_moveCalcs(t,e,n){const r=t._formulaSpatial.createCopiedEntries(e,n);console.log("_moveCalcs",r,"from:",e,"to:",n);const o=this._formulaSpatial,s=(g,m,f,_)=>{let p=g.value;const S=p.formula.getReferences(),C=S.length,y=m.colStart-f.colStart,I=m.rowStart-f.rowStart,w=p.ref,b=f.colStart-w.colStart,x=f.colEnd-w.colEnd,R=f.rowStart-w.rowStart,v=f.rowEnd-w.rowEnd;for(let T=0;T<C;T++){const M=S[T];if(!M||M.isFormulaError||typeof M=="string")continue;const F=M,N=F.colStart,O=F.rowStart,L=F.colEnd,B=F.rowEnd;let U=y,D=I;const z=b<=N&&x>=L||N==Number.MIN_SAFE_INTEGER,k=R<=O&&v>=B||O==Number.MIN_SAFE_INTEGER;let P=!k;F.$colStart||U===0||N===Number.MIN_SAFE_INTEGER?P=!1:P||(P=N<b||N>x,P||!F.$colEnd||F.$colStart||(P=!0));let j=!z;F.$rowStart||D===0||O===Number.MIN_SAFE_INTEGER?j=!1:j||(j=O<R||O>v,P||!F.$rowEnd||F.$rowStart||(j=!0));let H=!k;F.$colEnd||U===0||O===Number.MIN_SAFE_INTEGER?H=!1:H||(H=L<b||L>x,P||!F.$colStart||F.$colEnd||(H=!0));let W=!z;if(F.$rowEnd||D===0||O===Number.MIN_SAFE_INTEGER?W=!1:W||(W=B<R||B>v,W||!F.$rowEnd||F.$rowStart||(W=!0)),!(P||H||j||W))continue;const V={...F};P&&(V.colStart+=U),j&&(V.rowStart+=D),H&&(V.colEnd+=U),W&&(V.rowEnd+=D),p=p.setReferenceAt(T,V)}return g.value=p,g},i=t._spillSpatial;let a=[],c=[];const h=r.inserts,d=h.length;for(let g=0;g<d;g++){const m=h[g];this._createCopySpillEntries(i,e,m,a,c),h[g]=s(m,e,n)}o._updateNodes(r.inserts,[]),t._formulaSpatial._updateNodes([],r.removes);const u=[];a.length>0&&(this._spillSpatial._updateNodes(a,[]),t._spillSpatial._updateNodes([],c),js(this._cycleId,c,E.CommonUtils.EmptyArray,t._contentfulSpatial,i,t._values,u,t._notifyValues,t._notifySpills,t._notifyPending,t._errorSpatial,t._values.getOrientation()!==A.IRange.Orientation.Row,!1)),this._fullCalcRequired=!0,this._invalidate(r.inserts),t._invalidate(u),t._invalidate(r.removes)}getSnapshot(t){const e=this,n=Object.freeze({...t});let r=n.range;return typeof r=="string"&&(r=he(r)),{async copyTo(o,s){const i=o.calcGraph;let a=o.range;typeof a=="string"&&(a=he(a));const c=Bs(a,r,s?.fitDestination,s?.transpose);return{...n,...s}.isCut?i._moveCalcs(e,r,c):i._copyCalcs(e,r,c),a},getCoords:()=>r,getSource:()=>e,getName:()=>"Calculation",getMarkOptions:()=>n,isISnapshot:!0}}autoFill(t,e){return typeof t=="string"&&(t=he(t)),typeof e=="string"&&(e=he(e)),this._copyCalcs(this,t,e),this}_scheduleRecalculation(t){const e=this._pendingInvalidations;if(t)if(Array.isArray(t)){const r=t.length;for(let o=0;o<r;o++)e.add(t[o])}else e.add(t);const n=this;E.CommonUtils.debounce(()=>{const r=n._latest.graph,o=r._volatile,s=r._cycleId;e.forEach(i=>{i.cycleId>s||o.add(i)}),e.clear(),r.calculate()},100)()}_notifyCalculated(t){const e=this,n=e._notifyValues,r=n.all();return new Promise(o=>{E.CommonUtils.nextTick(()=>{const s=e._cycleId;let i,a=e._fullCalcRequired;a||(typeof t=="boolean"?a=t:t&&(i=t,a=i.full??!1));const c={};let h=null;const d=r.length;if(d>0){n.clear();let C=r,y=null;for(let T=0;T<d;T++){const M=r[T],F=M.colStart,N=M.colEnd;if(F!==N){y||(y=[]);for(let O=F+1;O<=N;O++)y.push({colStart:O,rowStart:M.rowStart,colEnd:O,rowEnd:M.rowEnd});M.colEnd=F}}y&&(C=r.concat(y)),C.sort(E.CoordUtils.columnFirstRangeComparator);const I=new exports.Tuple.Builder(T=>new be(T));let w;const b=e._values,x=b.getOrientation()===A.IRange.Orientation.Column,R=C.length;for(let T=0;T<R;T++){const M=C[T];h=E.CoordUtils.unionRanges(h,M,bt);const F=b.getRuns({bounds:M});let N=F.next();const O=M.colStart,L=M.rowStart,B=M.colEnd,U=M.rowEnd,D=x?L:O,z=x?B:U,k=x?U:B;let P=x?O:L,j=D;for(;!N.done;){const H=N.value,W=H[0];for(;P<W;)w||(w=[]),w.push({colStart:x?P:j,rowStart:x?j:P,colEnd:x?P:k,rowEnd:x?k:P}),P++,j=D;const V=H[1],$=H[2],nt=Math.max(V,D),et=Math.min(V+$.length-1,k);I.addValues(W,nt,$),j<nt&&(w||(w=[]),w.push({colStart:x?W:j,rowStart:x?j:W,colEnd:x?W:nt-1,rowEnd:x?nt-1:W})),j=et+1,et>=k?(P=W+1,j=D):P=W,N=F.next()}for(;P<=z;)j<=k&&(w||(w=[]),w.push({colStart:x?P:j,rowStart:x?j:P,colEnd:x?P:k,rowEnd:x?k:P})),P++,j=D}const v=I.build();v&&(c.valueInserts=v),w&&(c.valueRemoves=w)}const u=e._notifyPending,g=u.all();if(g.length>0){u.clear();const C=e._pendingSpatial;let y;const I=g.length;for(let w=0;w<I;w++){const b=g[w];C.insertNonOverlapping(b,{onIntersect:(x,R)=>(y||(y=[]),y.push({...R}),h=E.CoordUtils.unionRanges(h,R),R.value===!1&&(R.value=null),R)})}y&&y.length>0&&(c.pendingUpdates=y,h=E.CoordUtils.unionRangesArrays(y,h,bt))}const m=e._notifySpills,f=m.all();if(f.length>0){m.clear();const C=e._spillSpatial;let y,I,w;const b=f.length;for(let x=0;x<b;x++){const R=f[x],v=R.value;if(v.getCycleId()!==s)y||(y=[]),y.push({colStart:R.colStart,rowStart:R.rowStart,colEnd:R.colEnd,rowEnd:R.rowEnd});else{const T=C.search(R),M=T.length;for(let F=0;F<M;F++){let N=T[F];if(Og(R.rowStart,R.colStart,N)&&v.getCycleId()===s){I||(I=[],w=new Set);const O=xe(N.colStart)+Ne(N.rowStart);if(w.has(O))continue;w.add(O),I.push({colStart:R.colStart,rowStart:R.rowStart,colEnd:R.colEnd,rowEnd:R.rowEnd,value:N.value.getError()})}}}}I&&(c.spillInserts=I,h=E.CoordUtils.unionRangesArrays(I,h,bt)),y&&(c.spillRemoves=y,h=E.CoordUtils.unionRangesArrays(y,h,bt))}const _=e._notifyFormats.all();_.length>0&&(c.formatInserts=_,h=E.CoordUtils.unionRangesArrays(_,h,bt),e._notifyFormats.clear());const p=e._notifyFormulaInsertEntries;if(p){const C=e._formulaSpatial;for(let y=p.length-1;y>=0;y--){const I=p[y];C.search(I).length===0?p.splice(y,1):h=E.CoordUtils.unionRanges(h,I,bt)}c.formulaInserts=p,e._notifyFormulaInsertEntries=void 0}const S=e._notifyFormulaRemoveEntries;S&&(c.formulaRemoves=S,h=E.CoordUtils.unionRangesArrays(S,h,bt),e._notifyFormulaRemoveEntries=void 0),h&&(c.bounds=E.CoordUtils.sanitizeRange(h)),Object.keys(c).length===0?c.cycleId=s-1:(c.cycleId=s,e._cycleId++),a&&(c.isFull=!0),e._fullCalcRequired=!1,e._options.onCalculated?.(c),o(c)})})}_setInputs(t,e,n){if(this._calculation.getStatus()===exports.ICalculation.Status.Starting)return this._addToPending(()=>{const R=this._setInputs(t,e,n),v={formulaInserts:R.inserts??E.CommonUtils.EmptyArray,formulaRemoves:R.removes??E.CommonUtils.EmptyArray,cycleId:this._cycleId,bounds:E.CoordUtils.unionRanges(E.CoordUtils.unionRangesArrays(R.inserts),E.CoordUtils.unionRangesArrays(R.removes))};return Promise.resolve(v)}),tS;const r=this._values.getOrientation()!==A.IRange.Orientation.Row,o=this._spillSpatial,s=this._errorSpatial,i=this._contentfulSpatial,a=[],c=this._formulaSpatial;let h,d,u=!c.isEmpty(),g=u?[]:null,m=this._values;if(t&&t.tuples){if(h=t.tuples,g){let R=t.bounds;if(u)if(R){const M=Co(R,r);a.push(M)}else{const M={colStart:Number.MIN_SAFE_INTEGER,rowStart:Number.MIN_SAFE_INTEGER,colEnd:Number.MAX_SAFE_INTEGER,rowEnd:Number.MAX_SAFE_INTEGER};a.push(M)}const v={majorStart:0,minorStart:0,majorEnd:0,minorEnd:0},T=h.length;for(let M=0;M<T;M++){const F=h[M],N=F[0];v.majorStart=N,v.majorEnd=N;const O=F[1],L=O.length;for(let B=0;B<L;B++){const U=O[B];v.minorStart=U[0];const D=U[1];v.minorEnd=v.minorStart+D.length-1;const z=Co(v,r);g&&c.search(z).length>0&&g.push(z)}}}d=bh(t.tuples,r)}(n||h)&&(js(this._cycleId,n?[n]:E.CommonUtils.EmptyArray,d,i,o,m,a,this._notifyValues,this._notifySpills,this._notifyPending,s,r,!1),n&&m.delete(n),h&&m.setValues(h));const f=this._calculation._getContext(),_=this._calculation._getScope();let p,S;_.sheetName=this._options.getSheetName?.();const C=this._getFormulaParser(),y=(R,v)=>{const T=R.rowStart,M=R.colStart,F={...R,value:null};if(c.insertNonOverlapping(F,{noMerge:!0,onIntersect:(N,O)=>N.value===null?null:(S||(S=[]),S.push(N),O)}),v!==null){_.rowIndex=T,_.colIndex=M;const N=C.parse(f,v),O=new Ke(R,N),L={...R,value:O};p||(p=[]),p.push(L)}},I=g?g.length:0;for(let R=0;R<I;R++)y(g[R],null);const w=e?e.length:0;for(let R=0;R<w;R++){const v=e[R],T=v.value;y(E.CoordUtils.sanitizeRange(v),T)}const b=S?S.length:0,x=this._precedentSpatial;for(let R=0;R<b;R++){const v=S[R].value.calcs;if(v){const T=v.length;for(let M=0;M<T;M++){const F=v[M];for(let N=0;N<F.length;N++){const O=F[N];if(O.dynamic){for(let L=0;L<O.dynamic.length;L++){const B=O.dynamic[L];x.remove(B)}O.dynamic=null}}}}}return e&&(c._updateNodes(p,E.CommonUtils.EmptyArray),js(this._cycleId,S,p,i,o,m,a,this._notifyValues,this._notifySpills,this._notifyPending,s,r,!0)),this._invalidate(a),{inserts:this._notifyFormulaInsertEntries??E.CommonUtils.EmptyArray,removes:this._notifyFormulaRemoveEntries??E.CommonUtils.EmptyArray}}_invalidate(t){if(!t||t.length==0)return;const e=this._invalidations,n=Qe(t,A.IRange.Orientation.Column,2);for(let r=0;r<n.length;r++)e.insertNonOverlapping(n[r]);this._emitter?.notify("onInvalidate")}_markAndPlan(t,e,n){let r;qr=0,vl=0,is=0,Kr=0;const o=this._precedentSpatial,s=this._formulaSpatial;Il=0,ss=0;const i=this._cycleId,a=e.length;for(let u=0;u<a;u++){const g=e[u];g.markId!==n&&(g.markId=n,g.cycleId=i,g.inDegree=0,Cl[qr++]=g,El[ss++]=g)}const c=(u,g,m)=>{(t||u.state===ra)&&(r||(r=[]),r.push(g),t||m(u))},h=u=>{u.markId!==n&&(u.markId=n,u.cycleId=i,u.inDegree=0,Cl[qr++]=u,El[ss++]=u)};for(;Il<ss;){const u=El[Il++],g=u.colIndex,m=u.rowIndex;bt.colStart=g,bt.rowStart=m,bt.colEnd=g,bt.rowEnd=m;const f=o.search(bt),_=f.length;if(_===0)u.dependents=E.CommonUtils.EmptyArray;else for(let p=0;p<_;p++){const S=f[p],C=S.value.once;C?c(C,S,h):_d(S,m,g,h)}}for(let u=0;u<qr;u++){const g=Cl[u],m=g.block,f=g.rowIndex,_=g.colIndex,p=m.formula.getDirectPrecedentsAt(f,_);let S=0;const C=g.precedents;for(let y=0;y<p.length;y++){const I=p[y];if(I.isFormulaError){C[y]=I;continue}{const M=I;M.calc=void 0,C[y]=M}const w=I.colStart,b=I.rowStart,x=I.colEnd,R=I.rowEnd,v=s.search(I),T=v.length;for(let M=0;M<T;M++){const F=v[M],N=F.colStart,O=F.rowStart,L=F.colEnd,B=F.rowEnd,U=Math.max(N,w),D=Math.max(O,b),z=Math.min(L,x),k=Math.min(B,R),P=F.value.calcs;for(let j=D;j<=k;j++){const H=P[j-O];for(let W=U;W<=z;W++){const V=H[W-N];V.markId===n&&(I.calc=V,S++)}}}}g.inDegree=S,g.inDegree===0&&(bl[is++]=g)}const d=u=>{u.markId===n&&(u.inDegree--,u.inDegree===0&&(bl[is++]=u))};for(;vl<is;){const u=bl[vl++];Sd[Kr++]=u;const g=u.colIndex,m=u.rowIndex;bt.colStart=g,bt.rowStart=m,bt.colEnd=g,bt.rowEnd=m;const f=o.search(bt),_=f.length;for(let p=0;p<_;p++){const S=f[p],C=S.value.once;C?c(C,S,d):_d(S,m,g,d)}}return Kr<qr?{completed:!1,onces:r}:{completed:!0,onces:r}}_evaluate(t){const e=this._calculation._getContext(),n=this._calculation._getScope();n.sheetName=this._options.getSheetName?.();let r=Z_;r.length=0;let o=0,s=!0;const i=this._cycleId,a=this._invalidations,c=this._contentfulSpatial,h=this._notifyValues,d=this._notifySpills,u=this._precedentSpatial,g=this._spillSpatial,m=this._values,f=m.getOrientation(),_=f===A.IRange.Orientation.Column;let p;n.spillSpatial=this._spillSpatial,n.values=m;const S=e.getEntireCoords.bind(e);let C;for(let y=0;y<Kr;y++){const I=Sd[y];if(I.state===vh&&i===I.cycleId){I.state=ra;continue}if(I.dynamic){for(let K=0;K<I.dynamic.length;K++){const rt=I.dynamic[K];u.remove(rt)}I.dynamic=null}const w=I.block,b=I.colIndex,x=I.rowIndex;let R=t?void 0:I.cachedValue,v=I.error;!v&&R&&R.isFormulaError&&(v=R);let T=!1;const M=I.precedents;if(M){const K=M.length,rt=I.inputs;for(let mt=0;mt<K;mt++){const G=M[mt],lt=G.calc;if(lt&<.pending){T=!0;continue}if(G.isFormulaError){rt[mt]=G;continue}const st=G.colStart,tt=G.rowStart,J=G.colEnd;G.rowEnd!==tt||st!==J?(o>0&&(r.length=o,pd(r,m,h,_),o=0),rt[mt]=new xo(m,null,{...G},null,S)):rt[mt]=lt===void 0?G:lt.cachedValue}I.pendingPrecedents=T}const F=_?b:x,N=_?x:b;n.node=I,n.colIndex=b,n.rowIndex=x;const O=w.formula;let L,B;const U=I.pending;let D=U;if((T||I.pendingPromise)&&(D=!0,L=I.cachedValue??null,I.pendingPromise&&(I.pendingResolved?(I.pendingPromise=null,I.pendingResolved=!1,D=!1):(I.pendingPromise.cancelled=!0,L=void 0))),L===void 0&&(n.formula=O,n.colIndex=b,n.rowIndex=x,L=O.evaluate(e,void 0,I.inputs),n.formula=null,B=L&&L.then?L:null,D=!!B),D!==U&&(I.pending=D,p||(p=In(_)),p.append(F,N,D)),B&&(L=I.cachedValue??null,!B.__originator)){B.__originator=i;const K=I;os.add(K),K.pendingPromise=B,K.pendingResolved=!1,B.then(rt=>{if(os.delete(K),B.cancelled)return;K.pendingPromise=B,K.pendingResolved=!0;let mt=No(rt,e);mt===null&&(mt=0),K.cachedValue=mt,this._scheduleRecalculation(K)},rt=>{})}let z=1,k=1;const P=R instanceof qt;let j;const H=R instanceof A.FormulaError.Spill;if(P||H){Gr.colStart=b,Gr.rowStart=x,Gr.colEnd=b,Gr.rowEnd=x;const K=g.search(Gr);for(let rt=0;!j&&rt<K.length;rt++){const mt=K[rt];mt.colStart===b&&mt.rowStart===x&&(j=mt)}if(j){if(P){const mt=R;z=mt.getWidth(),k=mt.getHeight()}const rt={colStart:b,rowStart:x,colEnd:b+z-1,rowEnd:x+k-1};g.remove(j),j&&j.value.getError()||(c.insertNonOverlapping({...rt,value:null}),m.delete(rt),h.insertNonOverlapping(rt))}}let W=1,V=1;const $=L,nt=$?.isIRange;let et,at=L instanceof A.FormulaError.Spill;if(nt&&$.size>1){W=$.getWidth(),V=$.getHeight();const K={colStart:b,rowStart:x,colEnd:b+W-1,rowEnd:x+V-1},rt=e.getEntireCoords(),mt=!E.CoordUtils.isRangeWithinRange(K,rt);if(mt&&(K.colEnd=Math.min(K.colEnd,rt.colEnd),K.rowEnd=Math.min(K.rowEnd,rt.rowEnd)),at=mt,!at){const st=c.search(K);if(at=st.length>1,!at&&st.length===1){const tt=st[0],J=E.CoordUtils.intersectRanges(K,tt,bt);(J&&(J.rowEnd!==J.rowStart||J.colStart!==J.colEnd)||J.colStart!==b||J.rowStart!==x)&&(at=!0)}}let G,lt;if(at)L=A.FormulaError.BuiltIn.Spill,W=1,V=1,G=[[F,[[N,[L]]]]],m.setValues(G),lt={colStart:b,rowStart:x,colEnd:b,rowEnd:x};else{const st=q_($,F,N);st&&(G=st.tuples),G&&m.setValues(G),lt=K}et={...K,value:new Pn(K,i,at)},g.insert(et),C=ca(C,I,K),h.insertNonOverlapping(lt),a.insertNonOverlapping(lt),c.insertNonOverlapping({...lt,value:new Fe(lt,f)})}(!E.CoordUtils.isEqualRanges(j,et)||at||H)&&(j&&d.insert(j),et&&d.insert(et)),W===z&&V===k||(I.state=vh,a.insertNonOverlapping({colStart:b,rowStart:x,colEnd:b+Math.max(W,z)-1,rowEnd:x+Math.max(V,k)-1}),s=!1);let q=L&&L.isFormulaError?L:null;O.getError()&&(q=O.getError()),(q||v&&!t)&&(q&&!q.equals(v)||v&&v.equals(q)),I.cachedValue=L,r[o++]=I}if(n.node=null,n.colIndex=Number.MAX_SAFE_INTEGER,n.rowIndex=Number.MAX_SAFE_INTEGER,p){const y=p.done(!0);this._notifyPending.load(y)}return o>0&&(r.length=o,pd(r,m,h,_),o=0),{completed:s,dynamic:C,count:Kr}}async calculate(t){const e=this._calculation.getStatus();if(e===exports.ICalculation.Status.Starting)return void this._addToPending(()=>this.calculate(t));if(e!==exports.ICalculation.Status.Ready)return;let n=this._fullCalcRequired;n||(typeof t=="boolean"?n=t:t&&(n=t.full??!1));const r=this._invalidations;if(this._formulaSpatial.isEmpty()){if(r.clear(),os.size>0){const h=++Jr;os.forEach(d=>{d.markId=h})}return this._notifyCalculated(t)}let o=n;const s=this._volatile;let i=++Jr,a=this._collectDirties(i,o,r.all(),s);if(r.clear(),s.clear(),!o&&a.length===0)return this._notifyCalculated(t);o&&this._clearCalcs();const c=this._resetScope();for(;a.length>0;){i=++Jr;const h=this._markAndPlan(o,a,i).onces;if(h){const u=this._precedentSpatial,g=h.length;for(let m=0;m<g;m++)u.remove(h[m],fd)}a.length=0;const d=this._evaluate(o);if(d.dynamic&&this._precedentSpatial.load(d.dynamic),c.dynamicPrecedentsInserts&&(this._precedentSpatial.load(c.dynamicPrecedentsInserts),c.dynamicPrecedentsInserts=[]),c.conflatingFormats){const u=c.conflatingFormats.done(!0),g=this._notifyFormats;for(let m=0;m<u.length;m++){const f=u[m];g.insertNonOverlapping(f)}c.conflatingFormats=null}d.completed||(o=!1,i=++Jr,a=this._collectDirties(i,o,r.all(),s),r.clear())}return this._clearScope(),this._notifyCalculated(t)}_clearScope(){const t=this._calculation._getScope();t&&(t.rowIndex=0,t.colIndex=0,t.node=null,t.values=this._values,t.formulaSpatial=this._formulaSpatial,t.volatile=this._volatile,t.conflatingFormats=null,t.dynamicPrecedentsInserts=null,t.formula=null,t.getEntireCoords=ei)}_resetScope(){const t=this._calculation._getScope();if(t)return t.rowIndex=0,t.colIndex=0,t.node=null,t.values=this._values,t.formulaSpatial=this._formulaSpatial,t.volatile=this._volatile,t.conflatingFormats=null,t.dynamicPrecedentsInserts=null,t.formula=null,t.getEntireCoords=this._getEntireCoords,t}_clearCalcs(){const t=this._values,e=this._spillSpatial,n=this._contentfulSpatial,r=e.all();for(let o=0;o<r.length;o++){const s=r[o];s.value.getError()||(t.delete(s),n.insertNonOverlapping({...s,value:null}))}e.clear(),this._errorSpatial.clear(),this._pendingSpatial.clear(),this._volatile.clear(),this._clearNotifications()}_clearNotifications(){this._invalidations.clear(),this._notifyValues.clear(),this._notifySpills.clear(),this._notifyFormats.clear(),this._notifyPending.clear()}_clearAll(){this._cycleId!==1&&this._cycleId++,Jr++,this._formulaSpatial.clear(),this._contentfulSpatial.clear(),this._pendingInvalidations.clear(),this._values.clear(),this._precedentSpatial.clear(),this._volatile.clear(),this._spillSpatial.clear(),this._errorSpatial.clear(),this._pendingSpatial.clear(),this._clearNotifications(),this._notifyFormulaInsertEntries=void 0,this._notifyFormulaRemoveEntries=void 0}_addToPending(t){let e=this._pendingActions;if(!e){this._pendingActions=e=[];const n=this;n._calculation.addListeners({onReady:()=>{(async()=>{const r=n._pendingActions,o=r.length;for(let s=0;s<o;s++){const i=r[s],a=await i.bind(n)();n._options.onCalculated?.(a)}this._pendingActions=null})()},onError:()=>{}},{once:!0})}e.push(t)}fromJSON(t){const e=this._calculation.getStatus();if(e===exports.ICalculation.Status.Starting)return void this._addToPending(()=>Promise.resolve(this.fromJSON(t)));if(e!==exports.ICalculation.Status.Ready)return;this._clearAll();const n={cycleId:0,isFull:!0};if(!t)return n;this._isProcessingJSON=!0;try{if(t.data){const s=t.data;this._values.setValues(s);const i=this._values.getOrientation()===A.IRange.Orientation.Column,a=bh(s,i);this._contentfulSpatial.load(a)}const r=this._formulaSpatial,o=t.formulas;if(o){const s=t.dynamic,i=new Set;if(s){const p=s.length;for(let S=0;S<p;S++){const C=s[S],y=C[0].split(":")[0];i.add(y)}}const a=o.length,c=new Array(a),h=[],d=[],u=this._calculation._getContext(),g=this._calculation._getScope();g.colIndex=0,g.rowIndex=0;const m=this._getFormulaParser();for(let p=0;p<a;p++){const S=o[p],C=S[0],y=he(C),I=S[1],w=y.rowStart,b=y.colStart;g.colIndex=b,g.rowIndex=w;let x=m.parse(u,I);const R=x.getDirectPrecedentsAt(w,b,!0,ns,rs),v=R.length;v===1&&(x=x.wrapImplicit(w,b,i));const T={...y},M=new Ke(T,x);y.value=M,c[p]=y;const F=y.rowEnd,N=y.colEnd-b,O=F-w,L=[];for(let B=0;B<v;B++){const U=R[B];if(U instanceof A.FormulaError.Known)continue;const D=ns[B],z=rs[B],k={colStart:U.colStart,rowStart:U.rowStart,colEnd:U.colEnd+(z?0:N),rowEnd:U.rowEnd+(D?0:O),value:{blockEntry:y,width:N+1,height:O+1,index:B,$absWidth:z,$absHeight:D,once:null}};L.push(U),d.push(k)}h.push({colStart:T.colStart,rowStart:T.rowStart,colEnd:T.colEnd,rowEnd:T.rowEnd,value:{tokens:x.getTokens(),references:x.getReferences(),precedents:L}})}if(r.load(c),this._precedentSpatial.load(d),h.length>0&&(n.formulaInserts=h),s){const p=[],S=[];let C;const y=this._values,I=s.length;for(let w=0;w<I;w++){const b=s[w],x=b[0],R=he(x),v=b[1],T={...R},M=T.colStart,F=T.rowStart,N=T.colEnd,O=T.rowEnd;ar.colStart=M,ar.rowStart=F,ar.colEnd=M,ar.rowEnd=F;const L=r.search(ar);if(L.length!==1)continue;const B=L[0].value,U=B.ref,D=B.calcs,z=F-U.rowStart,k=M-U.colStart,P=D[z][k];if(v)P.cachedValue=A.FormulaError.BuiltIn.Spill;else{const H=new qt(y,T);P.cachedValue=H}R.value=new Pn(T,0,v),S.push(R);const j={colStart:M,rowStart:F,colEnd:N,rowEnd:O,value:v};E.CoordUtils.isSingleCell(j)||p.push(j),ca(C,P,T)}this._spillSpatial.load(S),this._precedentSpatial.load(C),p.length>0&&(n.spillInserts=p)}const f=t.volatile,_=f?f.length:0;if(_>0){const p=this._volatile,S=C=>{p.add(C)};for(let C=0;C<_;C++){const y=f[C],I=he(y,ar),w=r.search(I),b=w.length;for(let x=0;x<b;x++){const R=w[x];K_(R,I,S)}}}}}catch(r){throw r}finally{this._isProcessingJSON=!1}return n}async toJSON(t=!1){const e=this._formulaSpatial.all(),n=e.length;if(n===0)return null;const r={};if(n>0){const a=new Array(n);for(let c=0;c<n;c++){const h=e[c];a[c]=h.value.toJSON()}r.formulas=a}const o=this._spillSpatial.all(),s=o.length;if(s>0){const a=this._getEntireCoords(),c=new Array(s);for(let h=0;h<s;h++){const d=o[h],u=sn(d,a);c[h]=[u,d.value.getError()]}r.dynamic=c}const i=this._volatile;if(i.size>0){const a=i.values();let c=a.next();const h=this._values.getOrientation()===A.IRange.Orientation.Column,d=In(!0);for(;!c.done;){const f=c.value;if(Array.isArray(f))for(let _=0;_<f.length;_++){const p=f[_];for(let S=0;S<p.length;S++){const C=p[S],y=C.colIndex,I=C.rowIndex,w=h?y:I,b=h?I:y;d.append(w,b)}}else{const _=f.colIndex,p=f.rowIndex,S=h?_:p,C=h?p:_;d.append(S,C)}c=a.next()}const u=d.done(!0),g=u.length,m=new Array(g);for(let f=0;f<g;f++){const _=u[f],p=sn(_,this._getEntireCoords());m[f]=p}r.volatile=m}return r}}const pd=(l,t,e,n)=>{const r=new exports.Tuple.Builder(Y_),o=In(n);l.sort(n?E.CoordUtils.columnFirstCellComparator:E.CoordUtils.rowFirstCellComparator);const s=l.length;for(let c=0;c<s;c++){const h=l[c],d=h.colIndex,u=h.rowIndex;if(!h.cachedValue?.isIRange){const m=n?d:u,f=n?u:d;let _=h.cachedValue;r.addValue(m,f,_),o.append(m,f)}}const i=r.build();i&&i.tuples&&t.setValues(i.tuples);const a=o.done(!0);for(let c=0;c<a.length;c++){const h=a[c];e.insertNonOverlapping(h)}},K_=(l,t,e)=>{const n=l.colStart,r=l.rowStart,o=l.colEnd,s=l.rowEnd,i=t.colStart,a=t.rowStart,c=t.colEnd,h=t.rowEnd,d=Math.max(n,i),u=Math.max(r,a),g=Math.min(o,c),m=Math.min(s,h),f=l.value.calcs;for(let _=u;_<=m;_++){const p=_-r,S=f[p];for(let C=d;C<=g;C++){const y=C-n;e(S[y],p,y)}}},_d=(l,t,e,n)=>{const r=l.value,o=r.$absHeight,s=r.$absWidth,i=r.width,a=r.height,c=r.blockEntry.value.calcs,h=e-l.colStart,d=t-l.rowStart,u=Math.min(Math.max(h,0),i-1),g=Math.min(Math.max(d,0),a-1);if(o||s)if(s){const m=c[g];for(let f=0;f<i;f++)n(m[f])}else if(o)for(let m=0;m<a;m++)n(c[m][u]);else for(let m=0;m<a;m++){const f=c[m];for(let _=0;_<i;_++)n(f[_])}else n(c[g][u])},X_={rowIndex:0,colIndex:0},bt={rowStart:0,colStart:0,rowEnd:0,colEnd:0},ns=[],rs=[],ar={rowStart:0,colStart:0,rowEnd:0,colEnd:0},Gr={rowStart:0,colStart:0,rowEnd:0,colEnd:0};new A.FormulaError.Calc("Cyclical dependency");const Y_=l=>new be(l);let Jr=0;const $n=1e4,Q_=new Array($n),Z_=new Array($n),os=new Set,Cl=new Array($n);let qr=0;const El=new Array($n);let Il=0,ss=0;const bl=new Array($n);let vl=0,is=0;const Sd=new Array($n);let Kr=0;const wd=new Array($n),Xr={colStart:0,rowStart:0,colEnd:0,rowEnd:0},Yr={colStart:0,rowStart:0,colEnd:0,rowEnd:0},xl=[null,null],tS=Object.freeze({inserts:E.CommonUtils.EmptyArray,removes:E.CommonUtils.EmptyArray});function eS(l,t,e,n){const r=l;if(r?.getSplit){const o=r.getSplit(t,e,n);if(o===void 0)return;t[0].value=o[0],t[1].value=o[1]}return t}class nS{constructor(t,e=!0){this._options={...sS,...t},this._getFunction=this._options.getFunction,this._isColumn=e}_setInstanceScope(t){this._instanceScope=t}async _initialize(){const t=await pa._validate(!0),e=oS();this._calcScope=e,this._runtime=new rS(this._options,t);const{initializeBuiltIns:n}=await Promise.resolve().then(()=>require("./DUDXGRhi2q5FiQBv.cjs")),r=this;return this._builtInFunctions=Object.freeze(n(()=>r)),{builtInFunctions:this._builtInFunctions,calcScope:this._calcScope}}getBuiltInFunctions(){return this._builtInFunctions}getFunction(t){return this._builtInFunctions.get(t)??this._getFunction?.(t)}getNumberFormat(t,e){return exports.NumberFormat.Parser.formatValue(t,e,{date1904:this._options.isDate1904?.()??!1})}getEntireCoords(){return this._calcScope.getEntireCoords()}getFormulaAt(t,e){const n=this._calcScope.formulaSpatial;if(!n)return null;Qr.colStart=e,Qr.rowStart=t,Qr.colEnd=e,Qr.rowEnd=t;const r=n.search(Qr);return r.length===0?null:r[0].value.formula.getTextAt(t,e)??null}markVolatile(){const t=this._calcScope,e=t.volatile;e&&e.add(t.node)}formatResults(t){const e=this._calcScope,n=this._isColumn,r=n?e.colIndex:e.rowIndex,o=n?e.rowIndex:e.colIndex;e.conflatingFormats||(e.conflatingFormats=In(n)),e.conflatingFormats.append(r,o,t)}getSheetIndex(t){const e=this._calcScope;return t===void 0&&(t=e.sheetName),this._options.getSheetIndex?.(t)??-1}getSheetCount(){return this._options.getSheetCount?.()??1}isValidDate(t){return Tr(t)}fromOADate(t){return Mr(t,this._options.isDate1904?.()??!1)}toOADate(t){return Ao(t,this._options.isDate1904?.()??!1)}_fromTuples(t,e=null,n=!1){if(!t)return null;const r=Co(t.bounds,!0),o=this._calcScope,s=this._isColumn?A.IRange.Orientation.Column:A.IRange.Orientation.Row,i=new ze({orientation:s,maxCoords:o.getEntireCoords()});return i.setValues(t.tuples),new qt(i,r,e,n)}getValueAt(t,e){return this._calcScope.values.getValueAt(t,e)??null}getSpillAt(t,e){const n=this._calcScope.spillSpatial;if(!n)return null;Zr.rowStart=t,Zr.colStart=e,Zr.rowEnd=t,Zr.colEnd=e;const r=n.search(Zr);if(r.length===0)return null;for(let o=0;o<r.length;o++){const s=r[o];if(s.rowStart===t&&s.colStart===e)return this.getReference(E.CoordUtils.sanitizeRange(s))}return null}getRange(t,e){if(t?.isIRange)return t;let n;const r=Array.isArray(t);if(e=e??r,r)if(Array.isArray(t[0]))n=t;else{if(t[0]?.isIRange)throw A.FormulaError.BuiltIn.Value;n=[t]}else n=[[t]];const o=this._isColumn,s=o?A.IRange.Orientation.Column:A.IRange.Orientation.Row,i=this._fromTuples(Zs(n,o,ue(0,0,void 0,void 0,o),!0),void 0,e);if(i)return i;const a=new ze({orientation:s,maxCoords:this._calcScope.getEntireCoords()});return new qt(a,E.CoordUtils.EmptyRange,void 0,e)}getPosition(){const t=this._calcScope;return{colIndex:t.colIndex,rowIndex:t.rowIndex}}getReference(t,e){if(!t)throw A.FormulaError.BuiltIn.Ref;const n=this._calcScope,r=n.getEntireCoords;if(typeof t=="string"){if(e)throw A.FormulaError.BuiltIn.Ref;try{const c=Ma(t,r(),ko,()=>{throw A.FormulaError.BuiltIn.Ref},e);if(c.length>1)throw A.FormulaError.BuiltIn.Ref;t=c[0]}catch{throw A.FormulaError.BuiltIn.Ref}}if(!t)throw A.FormulaError.BuiltIn.Ref;const o=n.values;let s;const i=n.node;let a;if(i){const c=i.precedents;a=iS(c,t)}if(a){const c=a.calc;s=c&&c.isIReferenceRange?c.cachedValue:new xo(o,void 0,t,null,r)}else n.dynamicPrecedentsInserts=ca(n.dynamicPrecedentsInserts,i,t),s=new xo(o,void 0,t,null,r);return s}getAddress(t,e=!1){t||(t=this.getPosition());const n=this.getEntireCoords().sheetName;return t.colIndex!==void 0?((r,o,s=!1)=>s?Ls(r,o):ll(r,o))(t,n,e):((r,o,s=!1)=>(s?Ls({colIndex:r.colStart,rowIndex:r.rowStart,$colIndex:r.$colStart,$rowIndex:r.$rowStart,sheetName:r.sheetName},o):ll({colIndex:r.colStart,rowIndex:r.rowStart,$colIndex:r.$colStart,$rowIndex:r.$rowStart,sheetName:r.sheetName},o))+":"+(s?Ls({colIndex:r.colEnd,rowIndex:r.rowEnd,$colIndex:r.$colEnd,$rowIndex:r.$rowEnd},null):ll({colIndex:r.colEnd,rowIndex:r.rowEnd,$colIndex:r.$colEnd,$rowIndex:r.$rowEnd},null)))(t,n,e)}parseAsDateTime(t,e=!1){return function(n,r=!1,o=!1){let s=n,i=Cu(n,r,!0);i&&(s=i.leadingText);let a=null;if(s.trim().length>0&&(a=wa(s,r),!a&&o))return null;!a&&i?.leadingText.trim().length>0&&(i=null);let c=0;return a&&(c+=a.asOADate),i&&(c+=i.parsed.oaDateTime),c}(t,this._options.isDate1904?.()??!1,e)}getRuntime(){return this._runtime}get[Symbol.toStringTag](){return"[CalculationContext]"}toString(){let t="";const e=this._instanceScope;let n;return e&&(n=e.toString?.()),n&&n&&(t=`${t}:[${n}]`),t}}class rS{constructor(t,e){this._options=t,this._license=e}getCurrencySymbol(){return"$"}getNumberDecimalSeparator(){return"."}getNumberGroupSeparator(){return","}isDate1904(){return this._options.isDate1904?.()??!1}getDescription(){return"Calculation Runtime"}getLocation(){return E.CommonUtils.isNode()?process.cwd():window.location?.href??"/"}getVersion(){try{const t="0.6.4";if(t.indexOf(".env.")===-1)return`${t}`}catch{return"local"}}getOS(){return E.CommonUtils.getOS()}getUser(){return this._license?.licensee?.()??null}}const oS=()=>({rowIndex:0,colIndex:0,sheetName:null,node:null,values:null,formulaSpatial:null,spillSpatial:null,volatile:null,conflatingFormats:null,dynamicPrecedentsInserts:null,formula:null,getEntireCoords:()=>Fo}),sS={getSheetIndex:l=>-1,getSheetCount:()=>1,getSheetName:()=>null,getEntireCoords:()=>Fo,getNamed:(l,t)=>null,getFunction:l=>null,isDate1904:()=>!1},iS=(l,t)=>{if(!l)return;const e=l.length;if(e===0)return;const n=t.colStart,r=t.rowStart,o=t.colEnd,s=t.rowEnd;for(let i=0;i<e;i++){const a=l[i],c=a;if(c!==void 0&&a.colStart===n&&a.rowStart===r&&a.colEnd===o&&a.rowEnd===s)return c}return null},Qr={rowStart:0,colStart:0,rowEnd:0,colEnd:0},Zr={rowStart:0,colStart:0,rowEnd:0,colEnd:0};class lS{_setScope(t){this._scope=t}_getScope(t=!1){const e=this._scope;if(!e&&!t)throw new Error("FunctionContext can only be used in a function.");return e}getNumberFormat(t,e){return this._getScope().getNumberFormat(t,e)}getEntireCoords(){return this._getScope().getEntireCoords()??Fo}isValidDate(t){return this._getScope().isValidDate(t)}parseAsDateTime(t,e){return this._getScope().parseAsDateTime(t,e)}fromOADate(t){return this._getScope().fromOADate(t)}toOADate(t){return this._getScope().toOADate(t)}getRange(t){return this._getScope().getRange(t)}getValueAt(t,e){return this._getScope().getValueAt(t,e)}getPosition(){return this._getScope().getPosition?.()??Wp}getReference(t,e){return this._getScope().getReference(t,e)}getFormulaAt(t,e){return this._getScope().getFormulaAt?.(t,e)??null}getSpillAt(t,e){return this._getScope().getSpillAt?.(t,e)??null}getSheetIndex(t){return this._getScope().getSheetIndex?.(t)??-1}getSheetCount(){return this._getScope().getSheetCount?.()??1}markVolatile(){this._getScope().markVolatile?.()}formatResults(t){this._getScope().formatResults?.(t)}getFunction(t){return this._getScope().getFunction?.(t)??null}getAddress(t,e){return this._getScope().getAddress(t,e)}getRuntime(){return this._getScope().getRuntime()}get[Symbol.toStringTag](){return"[FormulaContext]"}toString(){const t=this._getScope();if(t){const e=t.toString?.();if(e)return e}return t?"":"{NO SCOPE}"}}const kg=new lS,li="__SHEETXL";let Un;const yd={FormulaContext:Un,ScalarType:A.ScalarType,IRange:A.IRange,FormulaError:A.FormulaError,Observable:A.Observable};let Vs;function Ba(l){Un||(Un=kg,yd.FormulaContext=Un),Vs=globalThis[li],globalThis[li]=yd,Un._setScope(l)}function ai(){Vs?(globalThis[li]=Vs,Vs=void 0):delete globalThis[li],Un&&Un._setScope(null)}var en;(en||(en={})).Context={Workbook:"workbook",Sheet:"sheet",Ranges:"ranges",Range:"range",Calculation:"calculation"};class Ro{constructor(t,e,n,r=null,o=!1){this._ct=en.Context.Calculation,this._builtIn=!1,this._broadcast=!1,this._pj=null,this._json=t,this._n=t.name,this._d=new dS(t),this._ct=t.context??en.Context.Calculation;const s=t.parameters;let i;this._pj=s,e||(console.log(`TypeFunction '${t.name}' was not provided a function implementation.`),e=()=>{}),this._fn=e.bind(this),this._cf=n??cS,this._builtIn=o,i=r?typeof r=="function"?r:()=>Promise.resolve(r):aS(t),this._descFn=i;const a=s?.length??0;let c=a===1||a===2;c&&(s[0].arrayDepth>0||s[0].range)&&(c=!1),c&&a===2&&(s[1].arrayDepth>0||s[1].range)&&(c=!1),this._broadcast=c}execute(...t){const e=this._pj,n=[],r=this._cf?.();Ba(r);let o=!1,s=null;const i=e?.length??0;let a,c=this._broadcast;if(c){const h=wh(t[0]);if(i===1&&h)c=!1;else if(i===2){const d=wh(t[1]);h&&d&&(c=!1)}}try{for(let d=0;!o&&d<i;d++){const u=e[d];let g=u.scalar??null;g!==A.ScalarType.Null&&g!=="*"||(g=null);let m=u.range??null;const f=u.rest??!1,_=u.optional??!1;let p=t[d];if(_&&p===null&&(p=void 0),p===void 0){if(_){n.push(void 0);continue}if(!_&&!f)throw d<=t.length?Ed.ARGS_TOO_FEW([u.name],this._n):Ed.PARAM_MISSING(u.name,this._n);if(d>=t.length){o=!0;continue}}const S=u.arrayDepth??0;let C=(u.range?2:0)+S;const y=u.rest??!1;if(y)for(;d<t.length&&!s;)p!==void 0&&(s=ha(r,n,p,g,m,S,y,C)),p=t[++d];else c&&(m="l",C=2),s=ha(r,n,p,g,m,S,y,C),o=!!s}if(s)throw s;for(;n.length>0&&n[n.length-1]===void 0;)n.length--;const h=this._fn;if(c){if(n.length===1){const d=n[0];let u=e[0].scalar;u!==A.ScalarType.Null&&u!=="*"||(u=null),a=d.map(g=>{if(g instanceof A.FormulaError.Known)return g;let m=g;try{m=h(m),(Array.isArray(m)||m?.isIRange)&&(m=A.FormulaError.BuiltIn.Value)}catch(f){m=f}return m},{type:u})}if(n.length===2){const d=n[0];let u=e[0].scalar;u!==A.ScalarType.Null&&u!=="*"||(u=null);const g=n[1];let m=e[1].scalar;m!==A.ScalarType.Null&&m!=="*"||(m=null),a=d.broadcast(g,(f,_)=>{if(f instanceof A.FormulaError.Known)return f;if(_ instanceof A.FormulaError.Known)return _;let p;try{p=h(f,_),(Array.isArray(p)||p?.isIRange)&&(p=A.FormulaError.BuiltIn.Value)}catch(S){p=S}return p},{type:u,otherType:m})}}else a=h(...n);a=No(a,r)}catch(h){throw h}finally{ai()}return a}getName(){return this._n}getDeclaration(){return this._d}async getDescriptor(t){if(this._desc)return this._desc;const e=await Promise.resolve(this._descFn(t));return this._desc=new uS(this,e),this._desc}isBuiltIn(){return this._builtIn}getContext(){const t=this._ct;if(t==="sheet"||t==="workbook"||t==="ranges"||t==="range"){const e=this._json;return e&&e.behavior&&e.behavior.default?"autoRun":"macro"}return"formula"}get[Symbol.toStringTag](){return"[TypedFunction]"}toString(){let t="";const e=this._pj;return e.length>0&&(t=e.map(n=>{let r=n.name;return n.rest&&(r="..."+r),n.optional&&(r+="?"),r+=": "+((o,s)=>{if(s){const i=jp.get(s)??"InvalidRange";return o?`${i}<${Sh.get(o)??"InvalidScalar"}>`:i}return Sh.get(o)??"InvalidScalar"})(n.scalar,n.range),r+="[]".repeat(n.arrayDepth),r}).join(", ")),`${this.getName()}(${t})`}get isIFunction(){return!0}get isITypedFunction(){return!0}}const aS=l=>async t=>{const e={};for(let n=0;n<l.parameters.length;n++)e[l.parameters[n].name]=E.CommonUtils.camelToPrettyCase(l.parameters[n].description);return{summary:E.CommonUtils.camelToPrettyCase(l.name),parameters:e,category:"User Defined"}},cS=()=>null;class Bg{constructor(t){this._s=t.scalar,this._r=t.range??null,this._d=t.arrayDepth??0}getScalarType(){return this._s}getRangeType(){return this._r}getArrayDepth(){return this._d}}class hS extends Bg{constructor(t){super(t),this._n=t.name,this._o=t.optional??!1,this._rest=t.rest??!1,this._e=t.enums?Object.freeze(t.enums):E.CommonUtils.EmptyArray}getName(){return this._n}isOptional(){return this._o}isRest(){return this._rest}getEnums(){return this._e}}class Cd extends Bg{constructor(t){super(t),this._a=t.async??!1,this._stream=t.stream??!1}isAsync(){return this._a}isStreaming(){return this._stream}}class dS{constructor(t){if(this._n=t.name,t.parameters){const e=t.parameters.length,n=new Array(e);for(let r=0;r<e;r++)n[r]=new hS(t.parameters[r]);this._p=Object.freeze(n)}else this._p=E.CommonUtils.EmptyArray;t.returnType?this._r=new Cd(t.returnType):this._r=new Cd({scalar:null,arrayDepth:0,range:null})}getName(){return this._n}getParameters(){return this._p}getReturnType(){return this._r}}class uS{constructor(t,e){if(this._n=e.name,this._fn=t,this._s=e.summary??E.CommonUtils.camelToPrettyCase(e.name),this._c=e.category??"Uncategorized",this._h=e.hidden??!1,e.links&&e.links.length>0){const n=e.links.length,r=new Array(n);for(let o=0;o<n;o++)r[o]=Object.freeze([e.links[o][0],e.links[o][1]]);this._l=Object.freeze(r)}else this._l=E.CommonUtils.EmptyArray;if(e.parameters){for(const n in e.parameters)if(Object.prototype.hasOwnProperty.call(e.parameters,n)){const r=e.parameters[n].description,o=e.parameters[n].example,s=e.parameters[n].defaultValue,i={};r&&(i.description=r),o&&(i.example=o),s!==void 0&&(i.defaultValue=s),Object.freeze(i)}}}getName(){return this._n}getSummary(){return this._s}getCategory(){return this._c}isHidden(){return this._h}getLinks(){return this._l}getParameters(){return this._p}get[Symbol.toStringTag](){return"[Descriptor]"}toString(){const t=this._fn;return`${this.getSummary()}: ${t}`}}const ha=(l,t,e,n,r,o,s,i)=>{if(e&&e.colStart!==void 0)if(r)e=l.getReference?.(e);else{const a=e.colStart,c=e.rowStart,h=e.colEnd;e=e.rowEnd!==c||a!==h?l.getReference?.(e):l.getValueAt(c,a)}if(i===0){let a=((c,h=null,d=!1)=>{let u=c;for(;Array.isArray(u);){if(u.length>1)return d?A.FormulaError.BuiltIn.Value:u;u=u[0]}if(u?.isIRange){if(u.size!==1)return d?A.FormulaError.BuiltIn.Value:u;u=u.getValueAt(0,0)}return h&&(u=Ie(u,$t(u,!0),h)),u})(e,n,!0);return a instanceof A.FormulaError.Known?a:void t.push(a)}if(i===2)return jr(l,t,e,n,r,Array.isArray(e));if(i===1||i===3){let a;const c=s?t:[];if(r){const h=Array.isArray(e);if(h){const d=e.length;for(let u=0;!a&&u<d;u++)a=jr(l,c,e[u],n,r,h)}else a=jr(l,c,e,n,r,h)}else if(i===3){let h=(d=>{let u=d,g=0;for(;Array.isArray(u);)g++,u=u[0];return u.isIRange&&(g+=2),g})(e);for(let d=h;d<2;d++)e=[e],h++;if(h===3){const d=e.length;for(let u=0;!a&&u<d;u++)a=jr(l,c,e[u],n,r,!0)}else a=jr(l,c,e,n,r,!0)}else a=ng(l,c,e,n,r,r!==null);return a?.isFormulaError?a:void(s||t.push(c))}{if(!Array.isArray(e)){if(n&&(e=Ie(e,$t(e,!0),n,!1),e?.isFormulaError))return t.push(e),e;e=[e]}const a=e.length;for(let c=0;c<a;c++){const h=[],d=ha(l,h,e[c],n,r,o,s,i-1);if(d?.isFormulaError)return d;h.length>0&&t.push(h)}}},Ed={PARAM_MISSING:(l,t)=>new A.FormulaError.NA(`Parameter ${l} is missing${t?` for ${t}`:""}.`),ARGS_TOO_FEW:(l,t)=>new A.FormulaError.Parse(`Argument type ${l.join(", ")} is missing${t?` for ${t}`:""}.`)};class Dg{constructor(t){this._emitter=null,this._readonly=null,this._closed=!1,this._options={...t};const e=this;this._transactions=this._options.transactions??new ve({transient:!0}),this._transactionsRemoveListener=this._transactions.addStateListener(this,{onAfterStateChange(n,r,o){e._emitter.notify("onCollectionChange")}}),this._emitter=new Yt(this,this._transactions),this._readonly=t?.readonlyFunctions,this._initState()}getItems(t){const e=this._getState();if(!e)return E.CommonUtils.EmptyArray;const n=t?.name?t.name.toUpperCase():null,r=t?.type?t.type:null;let o;t?.category&&t.category.toUpperCase(),t?.text&&t.text;const s=(a,c)=>(!n||c===n)&&(!r||a.getContext()===r)&&(o||(o=[]),void o.push(a)),i=this._readonly;return i&&i.forEach(s),e.itemsByKey.forEach(s),o??E.CommonUtils.EmptyArray}getByName(t){if(!t)return null;const e=this._getState();if(!e)return null;if(!e)return E.CommonUtils.EmptyArray;const n=t.toUpperCase(),r=this._readonly;if(!r||!r.size)return null;let o=r.get(n);return o||(o=e.itemsByKey.get(n),o||null)}getCount(){const t=this._getState();if(!t)return 0;let e=t.itemsByKey.size;return this._readonly&&(e+=this._readonly.size),e}validateName(t){return this._validateName(t)}_validateName(t,e=!1){if(this._closed)throw new Error(Ce)}add(t){if(this._closed)throw new Error(Ce);if(!t)throw new Error("Item must be specified.");let e;if(t.isIFunction){const o=t,s=t._json;e=new Ro(s,o._fn,()=>this._options.context,o._desc)}else{const o=t;e=new Ro(o.declaration,o.execute,()=>this._options.context,o.descriptor)}const n=this._getState(),r=e.getName().toUpperCase();return n.itemsByKey.set(r,e),e}beginCommit(t){return this._beginCommit(t)}_getState(){if(this._closed)throw new Error(Ce);return this._transactions.getState(this)}_beginCommit(t){return this._transactions.beginCommit(typeof t=="string"?{description:t}:t)}_updateState(t,e="Update",n){if(!t)return;const r=this._beginCommit(e);try{r.updateState(this,t),r.commit(n)}catch(o){throw r.rollback(),o}}_initState(){this._updateState(t=>({...t,itemsByKey:new Map}),"Initialize",{forceAmend:!0})}addListeners(t,e){return this._emitter.addListeners(t,e)}isClosed(){return this._closed}close(){this._closed||(this._emitter.notify("onClose"),this._closed=!0,this._transactionsRemoveListener?.())}get isFunctionCollection(){return!0}}class Da extends Vn{constructor(t){super(t),this._status=exports.ICalculation.Status.Off,this._statusTransition=null,this._emitter=new Yt(this)}_getContext(){return this._context}_getScope(){return this._scope}start(){return this._statusTransition||(this._statusTransition=(async()=>{if(this._status===exports.ICalculation.Status.Off)try{this._status=exports.ICalculation.Status.Starting,this._emitter.notify("onStatusChange"),this._emitter.notify("onStarting");const t=this,e=this._options,n=a=>t.getFunctions().getByName(a)??e?.getFunction?.(a),r=new nS({...e,getFunction:n});this._context=r;const o=await r._initialize(),s=o.builtInFunctions;this._functions=new Dg({transactions:this._transactions,context:r,readonlyFunctions:s});const i=await Promise.resolve().then(()=>require("./SIbWAxmy_evb5nrx.cjs"));this._formulaParser=new i.FormulaParser,this._scope=o.calcScope,this._status=exports.ICalculation.Status.Ready,this._emitter.notify("onStatusChange"),this._emitter.notify("onReady")}catch(t){throw this._status=exports.ICalculation.Status.Off,this._emitter.notify("onError",t),this._emitter.notify("onStatusChange"),t}finally{this._statusTransition=null}})()),this._statusTransition}_createGraph(t){const e=this._options;return new ka({...e,...t,getFormulaParser:()=>this._formulaParser,calculation:this})}async stop(){this._status===exports.ICalculation.Status.Ready&&(this._status=exports.ICalculation.Status.Stopping,this._emitter.notify("onStatusChange"),this._emitter.notify("onStopping"),this._status=exports.ICalculation.Status.Off,this._emitter.notify("onStatusChange"),this._emitter.notify("onStop"))}getStatus(){return this._status}getFunctions(){return this._checkReady(),this._functions}getRuntime(){return this._checkReady(),this._runtime}_checkReady(){if(this._status!==exports.ICalculation.Status.Ready)throw new Error(this._statusMessage())}_statusMessage(){switch(this._status){case exports.ICalculation.Status.Off:return"Calculation is off";case exports.ICalculation.Status.Starting:return"Calculation is starting";case exports.ICalculation.Status.Ready:return"Calculation is ready";default:return"Unknown calculation status"}}}var ls,as;exports.ICellRange=void 0,exports.ICellRange||(exports.ICellRange={}),exports.ICellHeaderRange=void 0,exports.ICellHeaderRange||(exports.ICellHeaderRange={}),exports.IMovable=void 0,exports.IMovable||(exports.IMovable={}),exports.IAutoFilter=void 0,(ls=exports.IAutoFilter||(exports.IAutoFilter={})).NumberFilterOperatorType={Equal:"equal",GreaterThan:"greaterThan",GreaterThanOrEqual:"greaterThanOrEqual",LessThan:"lessThan",LessThanOrEqual:"lessThanOrEqual",NotEqual:"notEqual"},ls.Type={Color:"color",Custom:"custom",Dynamic:"dynamic",Items:"items",Icon:"icon",Top10:"top10"},ls.DynamicType={AboveAverage:"aboveAverage",BelowAverage:"belowAverage",LastMonth:"lastMonth",LastQuarter:"lastQuarter",LastWeek:"lastWeek",LastYear:"lastYear",M1:"M1",M2:"M2",M3:"M3",M4:"M4",M5:"M5",M6:"M6",M7:"M7",M8:"M8",M9:"M9",M10:"M10",M11:"M11",M12:"M12",NextMonth:"nextMonth",NextQuarter:"nextQuarter",NextWeek:"nextWeek",Null:"null",Q1:"Q1",Q2:"Q2",Q3:"Q3",Q4:"Q4",ThisMonth:"thisMonth",ThisQuarter:"thisQuarter",ThisWeek:"thisWeek",Today:"today",Tomorrow:"tomorrow",YearToDate:"yearToDate",Yesterday:"yesterday"},ls.DateItemGroupingType={Day:"day",Hour:"hour",Minute:"minute",Month:"month",Second:"Second",Year:"year"},exports.IConditionalFormat=void 0,(as=exports.IConditionalFormat||(exports.IConditionalFormat={})).Type={AboveAverage:"aboveAverage",BeginsWith:"beginsWith",CellIs:"cellIs",ColorScale:"colorScale",ContainsBlanks:"containsBlanks",ContainsErrors:"containsErrors",ContainsText:"containsText",DataBar:"dataBar",DuplicateValues:"duplicateValues",EndsWith:"endsWith",Expression:"expression",IconSet:"iconSet",NotContainsBlanks:"notContainsBlanks",NotContainsErrors:"notContainsErrors",NotContainsText:"notContainsText",TimePeriod:"timePeriod",Top10:"top10",UniqueValues:"uniqueValues"},as.OperatorType={BeginsWith:"beginsWith",Between:"between",ContainsText:"containsText",EndsWith:"endsWith",Equal:"equal",GreaterThan:"greaterThan",GreaterThanOrEqual:"greaterThanOrEqual",LessThan:"lessThan",LessThanOrEqual:"lessThanOrEqual",NotBetween:"notBetween",NotContains:"notContains",NotEqual:"notEqual"},as.TimePeriod={Last7Days:"last7Days",LastMonth:"lastMonth",LastWeek:"lastWeek",NextMonth:"nextMonth",NextWeek:"nextWeek",ThisMonth:"thisMonth",ThisWeek:"thisWeek",Today:"today",Tomorrow:"tomorrow",Yesterday:"yesterday"},as.ConditionalBoundsType={Formula:"formula",Max:"max",Min:"min",Num:"num",Percent:"percent",Percentile:"percentile"},exports.ISheetView=void 0,(exports.ISheetView||(exports.ISheetView={})).HeaderTextStyle={A1:"a1",Zero:"zero",One:"one"};class gS{constructor(t,e,n,r){this._mergedReading=[],this._colsReading=[],this._rowsReading=[],this._styles=t,this._topLeft=r??{rowIndex:0,colIndex:0},this._sheet=new Ar({styles:this._styles,date1904:e,container:{getName:()=>n,getIndex:()=>1}}),this._cellUpdater=this._sheet.getEntireRange().startIncrementalUpdates()}applyCSSStyle(t,e){let n=!1;t.style||(t.style={},n=!0);let r=t.style,o={...e};if(e.msoIgnore){const d=e.msoIgnore.split(",");let u=Object.keys(o);for(let g=0;g<u.length;g++){const m=u[g];d.includes(m)&&delete o[m]}}const s=zs(o.fontFamily);r.font={},s&&(r.font.family=s.family,r.font.fallbacks=s.fallbacks,r.font.size=s.size),r.font.size=o.fontSize,r.font.weight=o.fontWeight,r.font.style=o.fontStyle,r.font.fill=o.color;const i=(d=>{if(!d)return a0;let u=exports.IFont.UnderlineStyle.None,g=!1;return(d=d.toLowerCase()).includes("underline")&&(u=exports.IFont.UnderlineStyle.Single),(d.includes("line-through")||d.includes("linethrough"))&&(g=!0),{underline:u,strike:g}})(o.textDecoration);r.font.underline=i.underline,r.font.strike=i.strike,o.textUnderlineStyle&&(r.font.underline=Sg(o.textUnderlineStyle)),r.alignment={},o?.textAlign&&(r.alignment.horizontal=(d=>{const u=E.CommonUtils.textToKey(d);return Sn.get(u)||null})(o.textAlign)),o?.textAlign&&!r.alignment.horizontal&&o?.textAlign!=="general"&&(o.textAlign==="center-across"?r.alignment.horizontal=exports.ITextFrame.HorizontalAlignment.CenterContinuous:o.textAlign==="fill"?r.alignment.horizontal=exports.ITextFrame.HorizontalAlignment.Fill:o.textAlign==="121"||o.textAlign==="010"?(r.alignment.horizontal=exports.ITextFrame.HorizontalAlignment.Distributed,r.alignment.justifyLastLine=o.textAlign==="121"):console.warn("unknown text-align",o.textAlign)),o.verticalAlign&&(o.verticalAlign.toLowerCase()==="super"?r.font.verticalAlign=exports.IFont.VerticalAlignment.Super:o.verticalAlign.toLowerCase()==="sup"?r.font.verticalAlign=exports.IFont.VerticalAlignment.Sub:r.alignment.vertical=(d=>{const u=E.CommonUtils.textToKey(d);return Je.get(u)||null})(o.verticalAlign),r.alignment.vertical||(o.verticalAlign==="121"?r.alignment.vertical=exports.ITextFrame.VerticalAlignment.Distributed:console.warn("unknown vertical-align",o.verticalAlign))),o.msoCharIndentCount&&(r.alignment.indent=o.msoCharIndentCount),o.whiteSpace&&(r.alignment.overflow=o.whiteSpace==="no-wrap"||o.whiteSpace==="nowrap"?exports.ITextFrame.Overflow.Visible:exports.ITextFrame.Overflow.Wrap),o.msoTextControl==="shrinktofit"&&(r.alignment.overflow=exports.ITextFrame.Overflow.Shrink);let a=null;if(o.background?a=o.background:o.backgroundColor&&(a=o.backgroundColor),a&&(r.fill={color:a}),o.msoPattern){let d=W0(o.msoPattern);d&&(d.patternType===exports.IFill.BuiltInSheetPattern.Solid?r.fill={color:d.foreground}:d.patternType!==exports.IFill.BuiltInSheetPattern.None&&(a&&(d.background=a),r.fill=d))}o.msoRotate!==void 0&&(r.alignment.rotation=(d=>{let u=parseFloat(d);return isNaN(u)||(u%=360,u>0?u=360-u:u<0&&(u*=-1)),u})(o.msoRotate));const c=(d,u)=>{d&&(r.border||(r.border={}),r.border[d]=u)};o.border&&o.border!=="none"&&(c("top",o.border),c("left",o.border),c("right",o.border),c("bottom",o.border)),o.borderTop&&c("top",o.borderTop),o.borderLeft&&c("left",o.borderLeft),o.borderRight&&c("right",o.borderRight),o.borderBottom&&c("bottom",o.borderBottom),o.msoDiagonalUp&&c("diagonalUp",o.msoDiagonalUp),o.msoDiagonalDown&&c("diagonalDown",o.msoDiagonalDown);let h=r.numberFormat;o.msoNumberFormat&&(h=(d=>{let u=d.replace(/(\\[0-9]{4})/g,g=>String.fromCharCode(parseInt(g.replace(/\\/g,""),16)));return u=u.replace(/(\\.{1})/g,g=>g.substring(g.length-1,g.length)),u.includes("\\")&&(u=u.replace(/(\\.{1})/g,g=>g.substring(g.length-1,g.length))),u=u.replace(/^"(.*)"$/,"$1"),u})(o.msoNumberFormat),h.includes("\\")?h=null:h==="Fixed"?h=exports.NumberFormat.Styles.lookupStyle(r.numberFormat).formatType===exports.NumberFormat.Type.Number?null:exports.NumberFormat.Type.Number:h==="Percent"&&(h=exports.NumberFormat.Styles.lookupStyle(r.numberFormat).formatType===exports.NumberFormat.Type.Percentage?null:exports.NumberFormat.Type.Percentage)),h&&(r.numberFormat=h),t.style=this._styles.normalize(r),n&&Object.keys(t.style).length===0&&delete t.style}onCell(t,e,n,r,o){const s=r(o);let i={value:e!==void 0?e:n??""};if(typeof i.value=="string"&&i.value.length===0&&(i.value=void 0),s&&this.applyCSSStyle(i,s),o?.tagName.toUpperCase()==="TD"){let a=i.style,c=a?.font??{};(o.querySelectorAll("s").length>0||o.querySelectorAll("strike").length>0)&&(c.strike=!0),o.querySelectorAll("sub").length>0&&(c.verticalAlign=exports.IFont.VerticalAlignment.Sub),o.querySelectorAll("sup").length>0&&(c.verticalAlign=exports.IFont.VerticalAlignment.Super),(o.querySelectorAll("b").length>0||o.querySelectorAll("strong").length>0)&&(c.weight=700),o.querySelectorAll("i").length>0&&(c.style=exports.IFont.Style.Italic),o.querySelectorAll("u").length>0&&(c.underline=exports.IFont.UnderlineStyle.Single),Object.keys(c).length>0&&(a||(a={},i.style=a),a.font||(a.font=c));const h=o.querySelectorAll("a");if(h.length>0){const d=h[0].getAttribute("href");d&&(i.hyperlink=d)}}if(!E.CoordUtils.isSingleCell(t)){const a={rowStart:this._topLeft.rowIndex+t.rowStart,colStart:this._topLeft.colIndex+t.colStart,rowEnd:this._topLeft.rowIndex+t.rowEnd,colEnd:this._topLeft.colIndex+t.colEnd};this._mergedReading.push(a)}if((i.value!==void 0||i.style||!(Object.keys(i).length<=1))&&(this._cellUpdater.pushAt(this._topLeft.rowIndex+t.rowStart,this._topLeft.colIndex+t.colStart,i),!E.CoordUtils.isSingleCell(t)&&s.msoIgnore)){if(s.msoIgnore.includes("colspan")){const a={};s&&this.applyCSSStyle(a,s);const c=t.colEnd-t.colStart;for(let h=1;h<=c;h++)this._cellUpdater.pushAt(this._topLeft.rowIndex+t.rowStart,this._topLeft.colIndex+t.colStart+h,a);t={...t,colEnd:t.colStart}}s.msoIgnore.includes("rowspan")&&(t={...t,rowEnd:t.rowStart})}}onNoTable(t,e,n){this.onCell({rowStart:this._topLeft.rowIndex,colStart:this._topLeft.colIndex,rowEnd:this._topLeft.rowIndex,colEnd:this._topLeft.colIndex},t,null,e,n)}onRowStart(t,e,n,r){const o=n(r);if(o.msoHeightSource!=="userset")return;let s=r.getAttribute("height")??o.height,i=null;if(s&&(i=Er(s,this._styles.getNormal().getFont().getSize(),"px")),i===null)for(let a=0;a<r.cells.length;a++){const c=r.cells[a],h=c.getAttribute("height")??n(c).height;let d=Er(h,this._styles.getNormal().getFont().getSize(),"px");d!==null&&(i=Math.max(d,i??0))}i!==null&&this._rowsReading.push({address:{min:this._topLeft.rowIndex+t,max:this._topLeft.rowIndex+t+e-1},update:{size:i*exports.IFont.getDeviceScale()}})}onColumn(t,e,n,r){const o=n(r);if(o.msoWidthSource!=="userset")return;let s=r.getAttribute("width")??o.width,i=null;s&&(i=Er(s,this._styles.getNormal().getFont().getSize(),"px")),i!==null&&this._colsReading.push({address:{min:this._topLeft.colIndex+t,max:this._topLeft.colIndex+t+e-1},update:{size:i*exports.IFont.getDeviceScale()}})}onDone(){this._colsReading.length>0&&this._sheet.getColumnHeaders().updateHeaderPairs(this._colsReading),this._rowsReading.length>0&&this._sheet.getRowHeaders().updateHeaderPairs(this._rowsReading),this._sheet.doBatch(()=>{this._cellUpdater.apply()}),this._mergedReading.length>0&&this._sheet.getRanges(this._mergedReading).merge()}sheet(){return this._sheet}}let Id=!1;class mS{constructor(t,e){this._mapStylesByName=new Map,this._arrStyleNames=[],this._mapStylesByName=t,this._arrStyleNames=e}setNode(t){this._node=t}addStyle(t,e){e!=null&&(this._node?.styles||(this._node.styles=new Map),this._node.styles.set(t,e))}addAttribute(t,e){e!=null&&(this._node?.attributes||(this._node.attributes=new Map),this._node.attributes.set(t,e),t.toLowerCase()==="rowspan"&&parseInt(e)>1&&(this._node.rowspan=parseInt(e)),t.toLowerCase()==="colspan"&&parseInt(e)>1&&(this._node.colspan=parseInt(e)))}addSharedStyle(t,e){let n=this._mapStylesByName.get(t);n?n={...e}:(this._arrStyleNames.push(t),n=e),this._mapStylesByName.set(t,n)}setPlainText(t){this._node.plainText=t}setHTMLText(t){this._node.htmlText=t.replace(/(?:\r\n|\r|\n)/g,"<br>")}}const bd=l=>{const t={};if(!l)return t;l.endsWith(";")||(l+=";");const e=new RegExp(';(?=([^"]*"[^"]*")*[^"]*$)',"gsm");let n,r=0;for(;(n=e.exec(l))!==null;){try{let o=l.substring(r,n.index).trim();const s=new RegExp(':(?=([^"]*"[^"]*")*[^"]*$)',"gsm");let i,a,c;for(;(c=s.exec(o))!==null;)i=unescape(o.substring(0,c.index)).trim(),a=unescape(o.substring(c.index+1,o.length)).trim();a!==null&&a!=="null"&&(i&&(i=Iu(i)),t[i]=a)}catch(o){console.warn(o)}r=n.index+1}return t},cs=(l,t)=>{const e=[];if(!l)return e;const n=l.children;for(let r=0;r<n.length;r++){const o=n.item(r);if(o.nodeType===1){const s=o.tagName.toUpperCase();t.includes(s)&&e.push(o)}}return e},fS=(l,t,e)=>{try{let n=null,r=null;const o=a=>((c,h)=>{if(!c)return{};let d={},u=h.get(c.localName);u&&(d=Object.assign(d,u));const g=c.getAttribute("class");if(g){const f=h.get("."+g);f&&(d=Object.assign(d,f))}const m=c.getAttribute("style");if(m){const f=bd(m);f&&(d=Object.assign(d,f))}return c.getAttribute("align")&&!d.textAlign&&(d.textAlign=c.getAttribute("align")),d})(a,r);if(l)try{n=[];const a="P, H1, H2, H3, H4, H5, H6, PRE",c=l.querySelector("parsererror");if(c)return console.warn("error",c),!1;const h=l.querySelectorAll("html"),d=h[h.length-1];r=(p=>{const S=p.querySelectorAll("style"),C=new Map;if(S.length<=0)return C;for(let y=0;y<S.length;y++){const I=S[y].childNodes;for(let w=0;w<I.length;w++)if(I[w].nodeType===Node.TEXT_NODE){const b=new RegExp("<!--(.*)-->","gs");let x=I[w].textContent;const R=b.exec(I[w].textContent);if(R&&R.length>1&&(x=R[1]),x=x.replace(/^\s/,""),x?.startsWith("table")){const v=new RegExp("{(.*?)}","gs");let T,M=0;for(;(T=v.exec(x))!==null;)try{const F=x.substring(M,T.index),N=bd(T[1]);C.set(F.trim(),N),M=T.index+T[0].length}catch(F){console.warn(F)}return C}}}return C})(d);const u=d.querySelectorAll("body"),g=u[u.length-1];let f=g.querySelectorAll("table")[0],_=!1;if(!f){let p=g.querySelectorAll("span");f=p[0],_=p.length>1}if(f||(f=cs(g,a)[0]),f||(f=cs(l,a)[0]),f?.nodeName.toUpperCase()==="TABLE"){e.onStart?.(r);const p=f;e.onTableStart?.(o,p);const S=cs(p,"COLGROUP");for(let I=0;S&&I<S.length;I++){const w=cs(S[I],"COL");let b=0;for(let x=0;x<w.length;x++){const R=w[x],v=parseFloat(R.getAttribute("span")),T=isNaN(v)?1:v;e.onColumn?.(b,T,o,R),b+=T}}const C=p.rows;let y=0;for(let I=0;I<C.length;I++){const w=C[I],b=parseFloat(w.getAttribute("span")),x=isNaN(b)?1:b;e.onRowStart?.(y,x,o,w);const R=[];n.push(R);const v=w.cells;for(let T=0;T<v.length;T++){let M=v[T],F=!1;for(let N=0;!F&&N<M.childNodes.length;N++)if(M.childNodes[N].nodeType===8){const O=M.childNodes[N].textContent;if(O!=="[if gte vml 1]"){if(O!=="[if !vml]"){if(O==="[endif]"){const L=M.childNodes[N+1];L?.querySelectorAll&&L.querySelectorAll("table, td").length===2&&(M=L?.querySelectorAll("table, td")[1],F=!0)}}}}R.push({htmlValue:M.textContent?.replace(/^"|"$/gi,""),element:M})}y+=x,e.onRowDow?.(y,x,o,w)}e.onTableDone?.(o,p)}else{if(f?.nodeName.toUpperCase()==="SPAN"){const p=t?t[0]?.[0]:null,S=_&&p?p:f.textContent.replace(/^"|"$/gi,"");return e.onStart?.(r),e.onCell({colStart:0,colEnd:0,rowStart:0,rowEnd:0},t?t[0]?.[0]:null,S,o,f),e.onDone?.(),!0}if(f?.textContent){const p=f.textContent.replace(/^"|"$/gi,"");return e.onStart?.(r),e.onNoTable?.(p,o,f),e.onDone?.(),!0}}}catch(a){console.warn(a),n=null}!n||n.length!==0&&(n.length!==1||n[0]!==null&&n[0].length!==0)||(n=null);const s=t&&(t.length===0||t.length===1&&(t[0]===null||t[0].length===0));n&&s&&(t=null);const i=a=>{const c=new Set;let h=1,d=1;for(let u=0;u<Math.max(t?t.length:0,n?n.length:0);u++){let g=0,m=0,f=n&&n[u]?n[u].length:t[u]?t[u].length:0;for(;m<f;){const _=u+"-"+g;if(!c.has(_)){h=Math.max(h,g+1),d=Math.max(d,u+1);let p=null;const S=n?n[u]?.[m]?.element:void 0;if(S&&(S.getAttribute("rowspan")||S.getAttribute("colspan"))){const C=parseInt(S.getAttribute("colspan"))||1,y=parseInt(S.getAttribute("rowspan"))||1;h=Math.max(h,g+C),d=Math.max(d,u+y),p={rowStart:u,colStart:g,rowEnd:u+Math.max(0,y-1),colEnd:g+Math.max(0,C-1)};for(let I=u;I<u+y;I++)for(let w=g;w<g+C;w++)I===u&&w===g||c.add(I+"-"+w)}else p={rowStart:u,colStart:g,rowEnd:u,colEnd:g};a(p,t?t[u]?.[g]:void 0,n?n[u]?.[m]?.htmlValue:null,o,S||null),m++}g++}}};if(n&&t){let a=0,c=0;i(h=>{a=Math.max(a,h.colEnd+1),c=Math.max(c,h.rowEnd+1)}),t&&n&&(t.length!==c||t[0].length!==a)&&(console.warn("mismatched mimeTypes",t,n),t=null)}return i(e.onCell.bind(e)),e.onDone?.(),!s||n!==null}catch(n){throw console.warn(n),n}};exports.ISheet=void 0,(exports.ISheet||(exports.ISheet={})).Visibility={Visible:"visible",Hidden:"hidden",VeryHidden:"veryHidden"};class ci extends Ci{static{this.instanceCounter=0}constructor(t){if(super(t),!t.content)throw new Error("Content type is required");this._content=t.content,this._uuid=E.CommonUtils.uuidV4(),this._optionsMovable=t;const e=this;this._optionsMovable.setContainerZIndexCallback?.(()=>{e._processZIndex()}),this._optionsMovable.setContainerSelectionCallback?.((r,o)=>{e._processContainerSelect(r,o)}),t.json&&this._fromJSON(t.json);const n=this._content.addListeners({onDelete:()=>{e._options.deleteFromContainer&&e._options.deleteFromContainer?.()}},{transactional:!0});this._updateState({contentListenerRemove:n},null,[])}getUUID(){return this._uuid}getContent(){return this._content}_processStateChange(t,e,n){super._processStateChange(t,e,n),this._getEmitter().notify("onBoundsChange"),this._getEmitter().notify("onAnyChange")}_processZIndex(){this._getEmitter().notify("onAnyChange")}_processContainerSelect(t,e){this._getEmitter().notify("onSelectionChange")}isSelected(){return this._optionsMovable.isSelected?.()??!1}async scrollIntoView(t){return this._optionsMovable.scrollIntoView?.(t)??!1}async select(t){if(await this._optionsMovable.select?.(t)===!1)return!1;if(t?.autoFocus!==!1){const e=await this._getEmitter().notify("onRequestFocus",{async:!0});if(!e)return!1;for(let n=0;n<e.length;n++)if(e[n]===!1)return!1}return!0}unselect(){const t=this._optionsMovable.isSelected?.()??!1;return this._optionsMovable.unselect?.(),t}_clone(){const t=this.isSelected(),e=this.getZIndex(),n=this._optionsMovable.getMaxBounds,r=this._options.maxRangeCoords,o=this.getContent(),s={beginPersistResource:this._optionsMovable.beginPersistResource,getBoundsAtCoords:this._optionsMovable.getBoundsAtCoords,getCoordsAtBounds:this._optionsMovable.getCoordsAtBounds,isSelected:()=>t,getZIndex:()=>e,getMaxBounds:n,maxRangeCoords:r,transactions:new ve({transient:!0}),json:this.toJSON(),initialAnchor:this.getAnchorCoords(),content:o},i=new ci(s),a=this._getState();return i._updateState({...a}),i}getSnapshot(t,e){const n=this._optionsMovable.getCoordsAtBounds(t),r=this._getState().offsets;let o=this.getAnchorCoords();if((r.br.x>0||r.br.y>0)&&(o={...o},o.colEnd-=r.br.x>0?1:0,o.rowEnd-=r.br.y>0?1:0),!E.CoordUtils.isRangeWithinRange(o,n))return null;const s=this,i=s._clone(),a=Object.freeze({...e});let c=!1;return{async copyTo(d,u){const g={...a,...u};return await i._doCopy(d,g),g.isCut&&!c&&(s.delete(),c=!0),d.bounds},getCoords:()=>i.getBounds(),getSource:()=>i,getName:()=>i.getName(),getMarkOptions:()=>a,toText:()=>i._toText(),toHtml:()=>i._toHtml(),toImage:()=>i._toImage(),isISnapshot:!0}}async _doCopy(t,e){const n=this._optionsMovable.beginPersistResource(),r=this.toJSON(n.toResourceId.bind(n));r.content.json.name=`${this.getName()} (Copy)`;const o=r.content.json;delete r.content;const s=t.movables;if(!s)throw new Error("Movables is required");const i=t.bounds??this.getBounds();try{await s.add({...r,...e,fromResourceId:n.fromResourceId.bind(n),bounds:i,type:this.getContent().getType(),json:o,description:"Copy Movable"})}finally{n.endPersist()}}_toText(){return this.getContent().toText?.()}_toHtml(){return this.getContent().toHtml?.()}_toImage(){return this.getContent().toImage?.()}setName(t){return this._updateState({name:t},{description:"Set Movable Name"},["onNameChange"]),this}getName(){return this.isClosed()?null:this._getState()?.name}setDescription(t){return this._updateState({description:t},{description:"Set Movable Description"}),this}getDescription(){return this.isClosed()?null:this._getState()?.description}setHidden(t=!1){return this._updateState({hidden:t},{description:"Set Movable Visibility"}),this}isHidden(){return this._getState()?.hidden??!1}setLockAspectRatio(t){return this._updateState({lockAspectRatio:t},{description:"Set Lock Aspect Ratio"}),this}isLockAspectRatio(){return this._getState()?.lockAspectRatio??this._optionsMovable.defaultLockAspectRatio??!1}setRotation(t=0){return this._updateState({rotation:t},{description:"Set Movable Rotation"}),this}getRotation(){return this._getState()?.rotation??0}moveToBack(){return this._optionsMovable.moveToBackOnContainer?.(),this}moveBackward(){return this._optionsMovable.moveBackwardOnContainer?.(),this}moveToFront(){return this._optionsMovable.moveToFrontOnContainer?.(),this}moveForward(){return this._optionsMovable.moveForwardOnContainer?.(),this}getZIndex(){return this._optionsMovable.getZIndex?.()??0}setBounds(t,e){if(!t)return this;let n={...this.getBounds(),...t};if(this._optionsMovable.getMaxBounds&&(n={x:Math.max(n.x,this._optionsMovable.getMaxBounds().x),y:Math.max(n.y,this._optionsMovable.getMaxBounds().y),width:Math.min(n.width,this._optionsMovable.getMaxBounds().width),height:Math.min(n.height,this._optionsMovable.getMaxBounds().height)}),n.width<0||n.height<0)throw new E.OutOfBoundsError;const r=this._updateMovableLocation({bounds:n,anchorType:exports.IAnchored.Type.Absolute}),o=this._beginCommit(e?.description??"Set Movable Bounds");return this._updateState({offsets:r.offsets,anchor:r.anchor},{description:"Update Movable Bounds"}),this._options.setContainerCoords(r.anchor),this._invalidateBounds(),o.commit(),this}_updateMovableLocation(t){let e=t.offsets??{tl:{x:0,y:0},br:{x:0,y:0}},n=t.anchor??this.getAnchorCoords(),r=t.anchorType??this.getAnchorType();const o=t.bounds??this.getBounds();if(o){if(r===exports.IAnchored.Type.Absolute){n=this._optionsMovable.getCoordsAtBounds(o);const s=this._optionsMovable.getBoundsAtCoords(n);e={...e,tl:{x:o.x-s.x,y:o.y-s.y}}}if(r===exports.IAnchored.Type.Absolute||r===exports.IAnchored.Type.OneCell){const s=this._optionsMovable.getBoundsAtCoords({rowStart:n.rowStart,colStart:n.colStart,colEnd:n.colStart,rowEnd:n.rowStart}),i=this._optionsMovable.getCoordsAtBounds({x:s.x,y:s.y,width:o.width+Math.min(s.width,e.tl.x),height:o.height+Math.min(s.height,e.tl.y)});n={...n,colEnd:i.colEnd,rowEnd:i.rowEnd};const a=this._optionsMovable.getBoundsAtCoords({colStart:n.colEnd,rowStart:n.rowEnd,colEnd:n.colEnd,rowEnd:n.rowEnd}),c=o.width-(a.x-s.x-Math.min(e?.tl.x??0,s.width)),h=o.height-(a.y-s.y-Math.min(e?.tl.y??0,s.height));e={...e,br:{x:c,y:h}}}return e!==t.offsets&&(e.br.y<=0&&(e.br={...e.br,y:0},n.rowEnd--),e.br.x<=0&&(e.br={...e.br,x:0},n.colEnd--)),{anchor:n,offsets:e}}}_calcAbsoluteBounds(t,e={tl:{x:0,y:0},br:{x:0,y:0}}){if(!t)return null;const n=this._optionsMovable.getBoundsAtCoords({rowStart:t.rowStart,colStart:t.colStart,colEnd:t.colStart,rowEnd:t.rowStart});let r=e.br.x?0:1,o=e.br.y?0:1;const s=this._optionsMovable.getBoundsAtCoords({colStart:t.colEnd+r,rowStart:t.rowEnd+o,colEnd:t.colEnd+r,rowEnd:t.rowEnd+o}),i=Math.min(n.x+(e?.tl.x??0),n.x+n.width),a=Math.min(n.y+(e?.tl.y??0),n.y+n.height);return{x:i,y:a,width:Math.min(s.x+(e?.br.x??0),s.x+s.width)-i,height:Math.min(s.y+(e?.br.y??0),s.y+s.height)-a}}getBounds(){return this._getState()?.bounds}setAnchorType(t){return E.CommonUtils.validEnumValue(exports.IAnchored.Type,t),this._updateState({anchorType:t},{description:"Set Movable Resize Behavior"},["onAnchorTypeChange"]),this}_processContainerShift(t){const e=this.getAnchorType(),n=this._getState()?.offsets;let r=n,o=!1;const s=t.before,i=t.orientation===A.IRange.Orientation.Column,a=t.intersect,c=t.amount;let h=t.after;if(e!==exports.IAnchored.Type.Absolute){let g=i?a.colStart:a.rowStart,m=i?s.colStart:s.rowStart;e===exports.IAnchored.Type.TwoCell&&(m=i?s.colEnd:s.rowEnd),o=g<=m}if(o&&(e!==exports.IAnchored.Type.OneCell||h)||(h=s),o&&h&&c<0&&(i?(a.colStart<=s.colStart&&a.colEnd>=s.colStart&&(r={...r,tl:{...r.tl,x:0}}),r.br.x>0&&a.colStart<=s.colEnd&&a.colEnd>=s.colEnd&&(r={...r,br:{...r.br,x:0}},h={...h,colEnd:h.colEnd+1})):(a.rowStart<=s.rowStart&&a.rowEnd>=s.rowStart&&(r={...r,tl:{...r.tl,y:0}}),r.br.y>0&&a.rowStart<=s.rowEnd&&a.rowEnd>=s.rowEnd&&(r={...r,br:{...r.br,y:0}},h={...h,rowEnd:h.rowEnd+1}))),h!==null){const{offsets:g,anchor:m}=this._updateMovableLocation({anchor:h,offsets:r});r=g,h=m}let d=null;const u=this._beginCommit("Shifting Movable Bounds");try{if(n!==r||!E.CoordUtils.isEqualRanges(s,h)){const g={offsets:r,anchor:h};this._updateState(g)}this._invalidateBounds(),d=super._processContainerShift({...t,after:h}),u.commit()}catch(g){throw u.rollback(),g}return d}_invalidateBounds(){const t=this.getAnchorCoords();if(t===null)return null;const e=this._getState()?.offsets,n=this._calcAbsoluteBounds(t,e);this._updateState({bounds:n},null,["onBoundsChange"])}_processContainerDelete(){super._processContainerDelete(),this._getState().contentListenerRemove?.(),this.getContent().delete()}_processContainerLayout(){const t=this.getAnchorCoords(),e=this._getState()?.offsets,{offsets:n,anchor:r}=this._updateMovableLocation({anchor:t,offsets:e}),o=this._beginCommit("Updating Movable Bounds");try{if(e!==n||t!==r){const s={offsets:n,anchor:r};this._updateState(s)}this._invalidateBounds(),super._processContainerLayout(),o.commit()}catch(s){throw o.rollback(),s}}_processAnchorCoords(){super._processAnchorCoords()}_fromJSON(t){const e={tl:{x:0,y:0},br:{x:0,y:0}},n={...E.CoordUtils.EmptyRange};t.anchor&&(e.tl.x=t.anchor.tl?.x??0,e.tl.y=t.anchor.tl?.y??0,e.br.x=t.anchor.br?.x??0,e.br.y=t.anchor.br?.y??0,n.colStart=t.anchor.tl?.c??0,n.rowStart=t.anchor.tl?.r??0,n.colEnd=Math.max(n.colStart,(t.anchor.br?.c??0)+(e.br.x>0?0:-1)),n.rowEnd=Math.max(n.rowStart,(t.anchor.br?.r??0)+(e.br.y>0?0:-1)));const r=this._beginCommit("Load Movable"),o=t.content.json,s={offsets:e,name:o.name??null,description:o.name??null,hidden:o.hidden??!1,rotation:o.rotation??0,lockAspectRatio:o.lockAspect??null};t.anchorType&&(s.anchorType=t.anchorType),s.name||(s.name=`${this._content.getTypeDescription()} ${++ci.instanceCounter}`),s.bounds=this._calcAbsoluteBounds(n,e),this._updateState(s,{description:"Load Movable"}),this._optionsMovable.setContainerCoords?.(n),r.commit()}toJSON(t){const e=this._getState(),n=e.anchor,r=e.offsets,o={tl:{c:n.colStart,r:n.rowStart},br:{c:n.colEnd+(r.br.x?0:1),r:n.rowEnd+(r.br.y?0:1)}};r&&(r.tl?.x&&(o.tl.x=E.CommonUtils.roundAccurately(r.tl.x,1)),r.tl?.y&&(o.tl.y=E.CommonUtils.roundAccurately(r.tl.y,1)),r.br?.x&&(o.br.x=E.CommonUtils.roundAccurately(r.br.x,1)),r.br?.y&&(o.br.y=E.CommonUtils.roundAccurately(r.br.y,1)));const s=this._content.toJSON(t)??{},i={anchor:o,content:{type:this._content.getType(),json:s}},a=e.anchorType;return a&&a!==exports.IAnchored.Type.TwoCell&&(i.anchorType=this.getAnchorType()),e.hidden&&(i.hidden=e.hidden),e.name&&(i.name=e.name),e.description&&(i.name=e.description),e.rotation!==void 0&&e.rotation!==0&&(i.rotation=e.rotation),E.CommonUtils.isDefined(e.lockAspectRatio)&&e.lockAspectRatio!==this._optionsMovable.defaultLockAspectRatio&&(i.lockAspect=e.lockAspectRatio),i}get isIMovable(){return!0}}class pS{constructor(t,e,n,r,o,s){this._add=t,this._getItems=e,this._getCount=n,this._updateSelected=r,this._addListeners=o,this._addImage=s}async add(t){return this._add(t)}getItems(t){return this._getItems(t)}getCount(){return this._getCount()}updateSelected(t,e){return this._updateSelected(t,e)}addListeners(t,e){return this._addListeners(t,e)}addImage(t,e){return this._addImage(t,e)}}const Rl={transactional:!0,ignoreDataChanges:!0};class vd extends $u{constructor(t){super({...t,type:"namedReference"});const e=this;this._listener=r=>{const o=this._getState().ranges;let s=r.getSource(),i=!1;const a={ranges:s};if(r.trigger==="moveCells"){const d=e._getState(),u=r.getTo(),g=r.getFrom(),m=[];for(let p=0;p<o.getCount();p++){const S=o.at(p);if(m.push(S.getCoords()),!S.isInvalid()){for(let C=0;C<g.getCount();C++){const y=g.at(C).getCoords(),I=S.getCoords();if(!E.CoordUtils.isRangeWithinRange(I,y))continue;const w=u.getCoords(),b=w.colStart-y.colStart+I.colStart,x=w.rowStart-y.rowStart+I.rowStart,R={...I,colStart:b,rowStart:x,colEnd:b+(I.colEnd-I.colStart),rowEnd:x+(I.rowEnd-I.rowStart)};(u.size!==1||E.CoordUtils.isRangeWithinRange(R,w))&&(m[p]=u.getSource().getRange(R).getCoords(),i=!0)}if(!i)return}}const f=this._options.addressToRanges(m);let _;d.removeListener?.(),f.isInvalid()||(_=f.addListener(e._listener,Rl)),a.ranges=f,a.removeListener=_}this._updateState(a,null,["onRangesChange"]);const c=s.getCoords();let h=!c||c.length===0;for(let d=0;!h&&d<c.length;d++)if(!c[d]){h=!0;break}h&&e.delete()};const n=t.value;if(n&&!n.isInvalid()){const r=n.addListener(this._listener,Rl);this._updateState({ranges:n,removeListener:r},null)}}setReference(t){const e=this._options.addressToRanges(t);if(e&&!e.isInvalid()){this._getState().removeListener?.();const r=e.addListener(this._listener,Rl);this._updateState({ranges:e,removeListener:r},null)}return null}async select(t){return await this._getState().ranges.select(t),this}getRanges(){return this._getState().ranges}setHidden(t=!1,e){return this._updateState({hidden:t},{description:"Set Hidden",...e},[]),this}setScope(t,e){return this._updateState({scope:t},{description:"Set Scope",...e},[]),this}getType(){return"reference"}getValue(){return this._getState().ranges}toJSON(){const t=super._toJSON();return t.ref=this._getState().ranges.toString(),t}_getDescription(){return`Named '${this.getName()}'`}_processDelete(){const t=this._getState();t&&t.removeListener?.(),super._processDelete()}}const xd="Item must be specified.",Rd="Name must be a non-empty string",Ad=(l,t=null)=>`Named item '${l}' already exists${t?`in scope ${t}`:""}.`,Td=l=>{const t=[];for(let e=0;e<l.getCount();e++){let n=null;try{n=l.at(e),n.isICellRange&&(n=n.getFixed(!0))}catch(r){console.warn("Invalid range",r)}t.push(n?n.toString().toLowerCase():Pt)}return t.sort(),t.join(",")},_S=/^[^a-zA-Z_\\]+$/,SS=/^[^a-zA-Z0-9_.]+$/;class Lg{constructor(t){this._emitter=null,this._closed=!1,this._lastLookup=E.CommonUtils.EmptyArray,this._lastLookupAddress=null,this._lastLookupScope=null,this._lastLookupType=null,this._allowExtrudes=!1,this._options={...t};const e=this;this._transactions=this._options.transactions??new ve({transient:!0}),this._transactionsRemoveListener=this._transactions.addStateListener(this,{onAfterStateChange(n,r,o){r?.initial||e._emitter.notify("onCollectionChange")}}),this._emitter=new Yt(this,this._transactions),this._initState(),this._fromJSON(this._options?.json)}getItems(t){if(this.isClosed())return E.CommonUtils.EmptyArray;const e=this._getState();if(!e)return E.CommonUtils.EmptyArray;const n=e.itemsSpatial;if(n.isEmpty())return E.CommonUtils.EmptyArray;if(t&&t.address===this._lastLookupAddress&&t.scope===this._lastLookupScope&&t.type===this._lastLookupType&&t.allowExtrudes===this._allowExtrudes)return this._lastLookup;this._lastLookupAddress=t?.address??void 0,this._lastLookupScope=t?.scope??void 0,this._lastLookupType=t?.type??void 0,this._allowExtrudes=t?.allowExtrudes??void 0;let r=null;if(t?.address){const h=this._options.addressToRanges(t?.address);if(!h)return console.debug("invalid address",t?.address),this._lastLookup=null,null;r=h.getCoords()}let o=null;if(r){o=[];for(let h=0;h<r.length;h++){const d=n.search(r[h]),u=d.length;for(let g=0;g<u;g++)o.push(d[g])}}else o=n.all();if(!o||o.length===0)return this._lastLookup=E.CommonUtils.EmptyArray,E.CommonUtils.EmptyArray;const s=new Set,i=new Set;o.forEach(h=>{const d=h.value;if(!t?.type||d.getType()===t.type){if(r&&!t?.allowExtrudes){const u=d.getRanges?.();if(!u||u.getCount()===0)return;for(let g=0;g<r.length;g++)if(!E.CoordUtils.isRangeWithinRange(h,r[g]))return}!t?.scope||d.getScope()!==t.scope&&t.scope!=="all"?d.getScope()||i.add(d):s.add(d)}});const a=new Map;i.forEach(h=>{a.set(h.getName(),h)}),s.forEach(h=>{a.set(h.getName(),h)});let c=[];return a.forEach(h=>{c.push(h)}),c=c.sort((h,d)=>{let u=h.getType().localeCompare(d.getType());return u!==0?u:h.getName().localeCompare(d.getName())}),this._lastLookup=c,c}lookupByRanges(t){const e=this._options.addressToRanges(t);if(!e||e.getCount()===0)return null;const n=this._getState();if(!n||n.itemsByKey.size===0)return null;const r=Td(e),o=n.itemsByFullRange.get(r);if(!o)return null;const s=[];return o.forEach(i=>{const a=n.itemsByKey.get(i);a&&s.push(a.item)}),s.length>0?s:null}getByName(t,e=!1){if(!t)return null;const n=this._getState();if(!n||n.itemsByKey.size===0||typeof t!="string")return null;const r=t.toLowerCase(),o=this._options.getCurrentScope();if(!e&&o){const i=r+":"+o.toLowerCase(),a=n.itemsByKey.get(i);if(a)return a.item}return n.itemsByKey.get(r)?.item??null}getCount(){const t=this._getState();return t?t.itemsByKey.size:0}getRanges(t){const e=this._options.addressToRanges(t),n=[];for(let r=0;r<e.getCount();r++){const o=e.at(r).getFixed(!0).getCoords();n.push(o)}return this._options.addressToRanges(n)}findValidName(t,e=null,n=!1){if(!t)throw new Error("A template string must be specified.");const r=this,o=s=>{try{return r._validateName(s,e,n),!0}catch{}return!1};return o(t)?t:Eu(t,o)}validateName(t,e=null,n=!1){return this._validateName(t,e,n)}_validateName(t,e,n=!1){if(this._closed)throw new Error(Ce);if(!t||t.length===0)throw new Error(Rd);if(t.length>255)throw new Error("Name must not exceed 255 characters.");if(t.indexOf(" ")!==-1)throw new Error("Name must not contain any spaces.");const r=t.trim().toLowerCase(),o=r.substring(1,t.length-1);if(new RegExp(_S).test(r[0]))throw new Error("First letter must be either a letter, an underscore, or a backslash.");if(new RegExp(SS).test(o))throw new Error("Name must be either letters, numbers, periods or underscores.");if(r.length===1&&(r[0]==="r"||r[0]==="c"))throw new Error("Name can not be 'r' or 'c'.");if(((a,c=Yp,h=og,d=!1)=>{let u=cg(a,d);if(!u||u[2]||!u[1])return!1;const g=ea(a,na);if(!g)return!1;const m=g.rowIndex;if(m<0||m>c)return!1;const f=g.colIndex;return!(f<0||f>=h)})(t))throw new Error("Name can not be an address.");let s=t.toLowerCase()?.trim();e&&(s=s+":"+e.toLowerCase());const i=this._getState()?.itemsByKey.get(s);if(i){const a=i.item.getRanges();if(!n||a||a.getCount()>0)throw new Error(Ad(t,e))}}addReference(t,e,n=!1){const r=this._options.addressToRanges(e),o=this.getByName(t);let s=null;const i=this._beginCommit(`${o&&n?"Update":"Insert"} Named '${t}'`);try{if(o){if(!n)throw new Error(Ad(t));this._delete(o,{description:`Delete Named '${o.getName()}'`})}s=new vd({value:r,addressToRanges:this._options.addressToRanges,json:{name:t,ref:r.toString()},transactions:this._transactions}),this.add(s),i.commit()}catch(a){throw i.rollback(),a}return s}add(t){if(this._closed)throw new Error(Ce);if(!t)throw new Error(xd);if(!t.getName||typeof t=="string")throw new Error("Add must take a 'INamed' object. To add a string use 'addReference'.");if(this._validateName(t.getName(),t.getScope(),!1),this._options.isReadOnly?.())throw new Error("Names are read-only.");const e=this._beginCommit(`Insert Named Item '${t.getName()}'`),n=this._add([t]);if(n===null)return e.rollback(),null;const r=n.itemsByKey.get(t.getName().toLowerCase());return this._updateState(o=>({...o,...n})),e.commit(),r?.item??null}_toKey(t){let e=t.getName().toLowerCase();return e.startsWith("_xlnm.")&&(e=e.substring(6)),t.getScope()?e+":"+t.getScope().toLowerCase():e}_delete(t,e){if(!t)throw new Error(xd);if(this._closed)throw new Error(Ce);const n=this._beginCommit(e?.description??`Delete Named Item '${t.getName()}'`);let r=null;try{const o=this._getState()?.itemsByKey,s=this._toKey(t);if(r=o.get(s),!r)throw new Error(`Item '${t.getName()}' does not exist.`);const i=this._cloneState();this._index(s,null,i),this._updateState(a=>({...a,...i})),n.commit()}catch(o){throw n.rollback(),o}return this._emitter.notify("onCollectionChange"),r.item}_cloneState(){const t=this._getState();return{itemsBySource:new Map(t.itemsBySource),itemsByKey:new Map(t.itemsByKey),itemsSpatial:t.itemsSpatial.clone(),itemsByFullRange:new Map(t.itemsByFullRange),itemsByPartialRange:new Map(t.itemsByPartialRange)}}_index(t,e,n){const r=n.itemsByKey.get(t);if(r){const s=r.asPartialRanges;if(s)for(let a=0;a<s.length;a++){const c=n.itemsByPartialRange.get(s[a]);if(c)if(c.size===1)n.itemsByPartialRange.delete(s[a]);else{const h=new Set(c);h.delete(t),n.itemsByPartialRange.set(s[a],h)}}const i=r.asFullRange;if(i){const a=n.itemsByFullRange.get(i);if(a)if(a.size===1)n.itemsByFullRange.delete(i);else{const c=new Set(a);c.delete(t),n.itemsByFullRange.set(i,c)}}if(r.nodes)for(let a=0;a<r.nodes.length;a++)n.itemsSpatial.remove(r.nodes[a]);r.unwatch?.(),n.itemsByKey.delete(t),n.itemsBySource.delete(r.item)}let o=null;if(e){let s=[],i=null,a=null;o=e.getRanges?.();const c=this._toKey(e);if(o){const{asFullRange:g,asPartialRanges:m,asRanges:f}=(_=>{const p=_.getCoords(),S=Td(_),C=S.split(",");return{asFullRange:S,asPartialRanges:C,asRanges:p}})(o);if(i=g,a=m,f){for(let _=0;_<m.length;_++){let p=n.itemsByPartialRange.get(m[_]);const S=p?new Set(p):new Set;S.add(c),n.itemsByPartialRange.set(m[_],S),s.push({...f[_],value:e})}if(n.itemsSpatial.load(s),g){let _=n.itemsByFullRange.get(g);const p=_?new Set(_):new Set;p.add(c),n.itemsByFullRange.set(g,p)}}}const h=this,d=e.addListeners({onDelete:g=>{h._delete(g)},onAnyChange:g=>{const m=h._beginCommit(`Update Named '${g.getName()}'`);try{const f=h._cloneState(),_=f.itemsBySource.get(g).globalKey;h._index(_,g,f),h._updateState(p=>({...p,...f})),m.commit()}catch(f){throw m.rollback(),f}}},{transactional:!0}),u={item:e,asFullRange:i,asPartialRanges:a,unwatch:d,nodes:s,globalKey:c};n.itemsByKey.set(c,u),n.itemsBySource.set(e,u)}}_add(t){if(this._closed)throw new Error(Ce);const e=this._getState();if(!t)return e;const n=this._cloneState(),r=t.length;for(let o=0;o<r;o++){const s=t[o];if(!s.getName())throw new Error(Rd);const i=this._toKey(s);try{this._index(i,s,n)}catch(a){console.debug(`Unable to add named item '${i}'.`,a)}}return n}beginCommit(t){return this._beginCommit(t)}_getState(){if(this._closed)throw new Error(Ce);return this._transactions.getState(this)}_beginCommit(t){return this._transactions.beginCommit(typeof t=="string"?{description:t}:t)}_updateState(t,e="Update"){if(!t)return;this._lastLookup=E.CommonUtils.EmptyArray,this._lastLookupAddress=null,this._lastLookupType=null,this._lastLookupScope=null;const n=this._beginCommit(e);try{n.updateState(this,t),n.commit()}catch(r){throw n.rollback(),r}}fromJSON(t){if(this._closed)throw new Error(Ce);this._fromJSON(t)}_initState(){this._updateState(t=>({...t,items:new Set,itemsByKey:new Map,itemsSpatial:new wt,itemsByFullRange:new Map,itemsByPartialRange:new Map}))}_fromJSON(t){const e=this._beginCommit("Load Names");try{if(t){const n=[],r=t.length;for(let s=0;s<r;s++){const i=t[s];try{const a=this._options.addressToRanges(i.ref),c=new vd({value:a,addressToRanges:this._options.addressToRanges,deleteFromContainer:h=>{this._delete(c,h)},json:i,transactions:this._transactions});n.push(c)}catch(a){console.debug("Unable to load named item.",i,a.message)}}const o=this._add(n);this._updateState(s=>({...s,...o}))}e.commit({viewAfter:{initial:!0}})}catch(n){throw e.rollback(),n}}toJSON(){const t=this._getState();if(!t||t.itemsByKey.size===0)return null;const e=[],n=Array.from(t.itemsByKey.keys()).sort(),r=n.length;for(let o=0;o<r;o++){const s=t.itemsByKey.get(n[o]).item,i=s.toJSON?.();i&&e.push(i)}return e.length===0?null:e}addListeners(t,e){return this._emitter.addListeners(t,e)}isClosed(){return this._closed}close(){this._closed||(this._emitter.notify("onClose"),this._closed=!0,this._transactionsRemoveListener?.())}get isNamedCollection(){return!0}}class wS extends Vn{constructor(t){super(t),t.json&&this._updateState({data:t.json})}getType(){return"chart"}getDescription(){return`Chart: ${this._getState()?.data?.types?.[0]?.type??"unknown"}`}toJSON(t){const e=this._getState();let n=null;return e&&e.data&&(n=e.data),n}getTypeDescription(){return"Chart"}}class yS extends Vn{constructor(t){super(t),t.json&&this._updateState({data:t.json})}getType(){return"shape"}getDescription(){return`Shape: ${this._getState()?.data}`}toJSON(t){const e=this._getState();let n=null;return e&&e.data&&(n=e.data),n}getTypeDescription(){return"Shape"}}class CS extends Vn{constructor(t){super(t),t.json&&this._updateState({data:t.json})}getType(){return"custom"}getDescription(){return`CustomElement: ${this._getState()?.data}`}toJSON(t){const e=this._getState();let n=null;return e&&e.data&&(n=e.data),n}getTypeDescription(){return"CustomElement"}}const Md=(l,t,e=!0,n=!0)=>{let r=0,o=0;if(!e&&!n)return{x:r,y:o};let s=!1,i=0;do{const a={x:t.x+r,y:t.y+o,width:0,height:0},c=l.getItems({bounds:a});if(s=!1,c.length>0){for(let h=0;!s&&h<c.length;h++){const d=c[h].getBounds();d.x===a.x&&d.y===a.y&&(s=!0)}s&&(r+=e?16:0,o+=n?16:0)}}while(s&&++i<100);return{x:r,y:o}};class ES{constructor(t,e,n){this._add=t,this._get=e,this._getByName=n}add(t,e){if(!t)throw new Error(aa);return this._add(t,e)}getItems(t){if(t&&t.name&&Object.keys(t).length===0)return[this._getByName(t.name)];let e;t?.address&&(e=t.address);const n=this._get(e,t?.excludeHidden,t?.fullyContained);if(t?.name){const r=t.name.toLocaleLowerCase();for(let o=0;o<n.length;o++)if(n[o].getName().toLocaleLowerCase()===r)return[n[o]]}return n}getByName(t){if(typeof t!="string")throw new Error("Get by name must take a valid name.");return this._getByName(t)}getCount(){return this._get(null,!1,!1).length}}const ee=(l,t,e)=>{if(!l)return t;let n=t;const r=e===A.IRange.Direction.Right||e===A.IRange.Direction.Down;for(;;){const o=l(n,!r);if(o===0)return n;r?n+=o:n-=o}},IS=Object.freeze({colIndex:0,rowIndex:0}),da=Object.freeze([]),Al=Object.freeze({cell:E.CoordUtils.EmptyCell,ranges:da,rangeIndex:-1}),Ug=(l,t=A.IRange.Direction.Right,e,n,r,o=null)=>{if(o&&E.CoordUtils.isEqualSelectionCoords(o,l))return l;const s=l.ranges[l.rangeIndex];if(!E.CoordUtils.isRangesIntersect({rowStart:l.cell.rowIndex,colStart:l.cell.colIndex,rowEnd:l.cell.rowIndex,colEnd:l.cell.colIndex},s))return l;let i={...l.cell},a=l.rangeIndex;switch(t){case A.IRange.Direction.Right:i.colIndex=ee(r,i.colIndex+1,t);break;case A.IRange.Direction.Left:i.colIndex=ee(r,i.colIndex-1,t);break;case A.IRange.Direction.Down:i.rowIndex=ee(n,i.rowIndex+1,t);break;case A.IRange.Direction.Up:i.rowIndex=ee(n,i.rowIndex-1,t)}const c=u=>{if(u){a=l.rangeIndex>=l.ranges.length-1?0:l.rangeIndex+1;const g=l.ranges[a];i={colIndex:g.colStart,rowIndex:g.rowStart}}else{a=l.rangeIndex<=0?l.ranges.length-1:l.rangeIndex-1;const g=l.ranges[a];i={colIndex:g.colEnd,rowIndex:g.rowEnd}}};if(t===A.IRange.Direction.Right&&i.colIndex>s.colEnd&&i.rowIndex===s.rowEnd)c(!0);else if(t===A.IRange.Direction.Left&&i.colIndex<s.colStart&&i.rowIndex===s.rowStart)c(!1);else if(t===A.IRange.Direction.Down&&i.colIndex===s.colEnd&&i.rowIndex>s.rowEnd)c(!0);else if(t===A.IRange.Direction.Up&&i.colIndex===s.colStart&&i.rowIndex<s.rowStart)c(!1);else{let u=i.rowIndex,g=i.colIndex;switch(t){case A.IRange.Direction.Right:g>s.colEnd&&(u=ee(n,u+1,t),g=s.colStart,u>s.rowEnd&&(u=s.rowStart));break;case A.IRange.Direction.Left:g<s.colStart&&(u=ee(n,u-1,t),g=s.colEnd,u<s.rowStart&&(u=s.rowEnd));break;case A.IRange.Direction.Down:u>s.rowEnd&&(g=ee(r,g+1,t),u=s.rowStart,g>s.colEnd&&(g=s.colStart));break;case A.IRange.Direction.Up:u<s.rowStart&&(g=ee(r,g-1,t),u=s.rowEnd,g<s.colStart&&(g=s.colEnd))}i={rowIndex:u,colIndex:g}}let h=e(i);if(!E.CoordUtils.isRangeWithinRange(h,s)){const u=E.CoordUtils.intersectRanges(h,s);u&&(h=u)}let d={rowStart:ee(n,h.rowStart,A.IRange.Direction.Down),colStart:ee(r,h.colStart,A.IRange.Direction.Right),rowEnd:ee(n,h.rowEnd,A.IRange.Direction.Up),colEnd:ee(r,h.colEnd,A.IRange.Direction.Left)};if(d.rowStart!==i.rowIndex||d.colStart!==i.colIndex){switch(t){case A.IRange.Direction.Right:l.ranges[a].colStart===d.colStart&&l.ranges[a].colEnd===d.colEnd&&(i.rowIndex=d.rowEnd),i.colIndex=d.colEnd;break;case A.IRange.Direction.Left:l.ranges[a].colStart===d.colStart&&l.ranges[a].colEnd===d.colEnd&&(i.rowIndex=d.rowStart),i.rowIndex===d.rowStart?i.colIndex=d.colStart+1:i.colIndex=d.colStart;break;case A.IRange.Direction.Down:l.ranges[a].rowStart===d.rowStart&&l.ranges[a].rowEnd===d.rowEnd&&(i.colIndex=d.colEnd),i.rowIndex=d.rowEnd;break;case A.IRange.Direction.Up:l.ranges[a].rowStart===d.rowStart&&l.ranges[a].rowEnd===d.rowEnd&&(i.colIndex=d.colStart),i.colIndex===d.colStart?i.rowIndex=d.rowStart+1:i.rowIndex=d.rowStart}return o&&console.warn("call recursive > 1"),Ug({cell:i,ranges:l.ranges,rangeIndex:a},t,e,n,r,o??l)}return{ranges:l.ranges,cell:i,rangeIndex:a}};class bS{constructor(t){this._adjusting=null,this._emitter=null,this._coords=Al,this._sheet=t.sheet,this._emitter=new Yt(this);const e=t.sheet;this._adjusting=null,this._hiddenRowsAt=(n,r)=>e.getRowHeaders().hiddenHeadersAt(n,r),this._hiddenColumnsAt=(n,r)=>e.getColumnHeaders().hiddenHeadersAt(n,r),this._getCellCoordsAsRangeCoords=n=>{const r=E.CoordUtils.cellToRange(n);if(e.isClosed())return r;const o=e.getRange(r,{excludeHidden:!0}).getMerges();return o.length===0?r:o[0]},this._canSelectionSpanMergedCells=n=>{const r=e.getRange(n);return r.isEntireColumns()||r.isEntireRows()},this._getMergedRanges=n=>e.getRange(n,{excludeHidden:!0}).getMerges(),this._isContentfulCell=()=>!1,this._contentfulCellFinder=(n,r,o,s,i,a)=>{const c=e.getSelectedRange().getExtended(s,n).getCoords();switch(s){case A.IRange.Direction.Up:return c.rowStart;case A.IRange.Direction.Down:return c.rowEnd;case A.IRange.Direction.Left:return c.colStart;case A.IRange.Direction.Right:return c.colEnd}},this._scrollCellCoordsIntoView=(n,r)=>e.scrollTo(n,r?{scroll:r}:void 0),this._selectionPolicy=t.selectionPolicy??"multiple",this._newSelectionMode=t.newSelectionMode??"clear"}navigate(t,e=!1,n=!1,r=0){const o=this._coords;if(!o.cell)return this;let s=o.cell,i=o.cell;if(e&&o.ranges.length>0){const S=o.ranges[o.rangeIndex],C=o.cell;switch(t){case A.IRange.Direction.Up:i={rowIndex:C.rowIndex===S.rowStart?S.rowEnd:S.rowStart,colIndex:S.colEnd},s={rowIndex:C.rowIndex===S.rowStart?S.rowStart:S.rowEnd,colIndex:S.colStart};break;case A.IRange.Direction.Down:i={rowIndex:C.rowIndex===S.rowEnd?S.rowStart:S.rowEnd,colIndex:S.colEnd},s={rowIndex:C.rowIndex===S.rowEnd?S.rowEnd:S.rowStart,colIndex:S.colStart};break;case A.IRange.Direction.Left:i={rowIndex:S.rowEnd,colIndex:C.colIndex===S.colStart?S.colEnd:S.colStart},s={rowIndex:S.rowStart,colIndex:C.colIndex===S.colStart?S.colStart:S.colEnd};break;case A.IRange.Direction.Right:i={rowIndex:S.rowEnd,colIndex:C.colIndex===S.colEnd?S.colStart:S.colEnd},s={rowIndex:S.rowStart,colIndex:C.colIndex===S.colEnd?S.colEnd:S.colStart}}}const a=this._getCellCoordsAsRangeCoords(i);let{rowStart:c,colStart:h}=a;const d=this._magicCell;if(d)switch(t){case A.IRange.Direction.Up:case A.IRange.Direction.Down:d.colIndex>=a.colStart&&d.colIndex<=a.colEnd&&(h=d.colIndex);break;case A.IRange.Direction.Left:case A.IRange.Direction.Right:d.rowIndex>=a.rowStart&&d.rowIndex<=a.rowEnd&&(c=d.rowIndex)}if(!r){const S=this._getMaxRange();switch(t){case A.IRange.Direction.Up:c=ee(this._hiddenRowsAt,Math.max(a.rowStart-1,S.rowStart??0),t);break;case A.IRange.Direction.Down:c=ee(this._hiddenRowsAt,Math.min(a.rowEnd+1,S.rowEnd??Number.MAX_SAFE_INTEGER),t);break;case A.IRange.Direction.Left:h=ee(this._hiddenColumnsAt,Math.max(a.colStart-1,S.colStart??0),t);break;case A.IRange.Direction.Right:h=ee(this._hiddenColumnsAt,Math.min(a.colEnd+1,S.colEnd??Number.MAX_SAFE_INTEGER),t)}if(n){const C=this._getMaxRange();let y=0;switch(t){case A.IRange.Direction.Up:y=C.rowStart??0,c=this._contentfulCellFinder({...i,colIndex:this._coords.cell.colIndex},this._isContentfulCell,this._hiddenRowsAt,t,!1,Math.max(y,this._hiddenRowsAt(y,!1)));break;case A.IRange.Direction.Down:y=C.rowEnd??Number.MAX_SAFE_INTEGER,c=this._contentfulCellFinder({...i,colIndex:this._coords.cell.colIndex},this._isContentfulCell,this._hiddenRowsAt,t,!1,Math.min(y,y-this._hiddenRowsAt(y,!0)));break;case A.IRange.Direction.Left:y=C.colStart??0,h=this._contentfulCellFinder({...i,rowIndex:this._coords.cell.rowIndex},this._isContentfulCell,this._hiddenColumnsAt,t,!1,Math.max(y,this._hiddenColumnsAt(y,!1)));break;case A.IRange.Direction.Right:y=C.colEnd??Number.MAX_SAFE_INTEGER,h=this._contentfulCellFinder({...i,rowIndex:this._coords.cell.rowIndex},this._isContentfulCell,this._hiddenColumnsAt,t,!1,Math.min(y,y-this._hiddenColumnsAt(y,!0)))}}}let u=null;r&&(u={});const g={rowIndex:c,colIndex:h},m=this._getCellCoordsAsRangeCoords(g),f={rowIndex:m.rowStart,colIndex:m.colStart};e||(this._magicCell=g);const _=this._firstActiveCoords,p=E.CoordUtils.isEqualCells(_,f)&&E.CoordUtils.isEqualCells(_,s);if(e&&!p?this.modify(f,s):this.clearAndModify(f),u)this._scrollCellCoordsIntoView(u);else{if(e&&_){const S=this._getMaxRange();if(t===A.IRange.Direction.Right&&_.colIndex===S.colEnd||t===A.IRange.Direction.Left&&_.colIndex===S.colStart||t===A.IRange.Direction.Up&&_.rowIndex===S.rowEnd||t===A.IRange.Direction.Down&&_.rowIndex===S.rowStart)return this}t===A.IRange.Direction.Left||t===A.IRange.Direction.Right?this._scrollCellCoordsIntoView({colStart:g.colIndex}):t!==A.IRange.Direction.Up&&t!==A.IRange.Direction.Down||this._scrollCellCoordsIntoView({rowStart:g.rowIndex})}return this}getCoords(){return this._coords}updateCoords(t){const e=this._coords;if(E.CoordUtils.isEqualSelectionCoords(e,t))return;const n=((r,o,s)=>{if(!r)return Al;let i=o.cell;E.CoordUtils.isEqualCells(i,r?.cell)||(i=Object.freeze({colIndex:Math.max(0,Math.min(r?.cell?.colIndex??o.cell?.colIndex??0)),rowIndex:Math.max(0,Math.min(r?.cell?.rowIndex??o?.cell?.rowIndex??0))}));const a=r?.ranges?[...r.ranges]:[];let c=!1;const h=a.length;let d=h===0;for(let f=0;f<h;f++){const _=a[f];a[f]=Object.freeze({colStart:Math.max(s.colStart,Math.min(_.colStart,s.colEnd)),colEnd:Math.max(s.colStart,Math.min(_.colEnd,s.colEnd)),rowStart:Math.max(s.rowStart,Math.min(_.rowStart,s.rowEnd)),rowEnd:Math.max(s.rowStart,Math.min(_.rowEnd,s.rowEnd))}),d=d||E.CoordUtils.isCellWithinRange(i,_),c=c||Object.keys(_).length>4}let u=o?.ranges??[];!c&&E.CoordUtils.isEqualRangesArrays(u,a)||(u=a);let g=r?.rangeIndex??o?.rangeIndex??Al.rangeIndex;if(g=Math.max(-1,Math.min(g,u.length-1)),!d){const f=u[g];let _=i.rowIndex;_<f.rowStart?_=f.rowStart:_>f.rowEnd&&(_=f.rowEnd);let p=i.rowIndex;p<f.colStart?p=f.colStart:p>f.colEnd&&(p=f.colEnd),i=Object.freeze({colIndex:p,rowIndex:_})}return Object.freeze({cell:i,ranges:u,rangeIndex:g})})(t,this._coords,this._getMaxRange());return this._coords=n,!E.CoordUtils.isEqualCells(n.cell,e.cell)&&this._scrollCellCoordsIntoView({colStart:n.cell.colIndex,rowStart:n.cell.rowIndex}),this._emitter.notify("onChange"),this}isEntire(){const t=this._coords;if(t.ranges.length===0)return!1;const e=this._getMaxRange();for(let n=0;n<t.ranges.length;n++){const r=t.ranges[n];if(!E.CoordUtils.isRangeWithinRange(e,r))return!1}return!0}traverse(t=A.IRange.Orientation.Row,e=!1){let n=A.IRange.Direction.Right;n=t===A.IRange.Orientation.Row?e?A.IRange.Direction.Left:A.IRange.Direction.Right:e?A.IRange.Direction.Up:A.IRange.Direction.Down;const r=this._coords;if(r.ranges.length===0)return this.navigate(n);const o=this._getCellCoordsAsRangeCoords(r.cell);if(E.CoordUtils.isEqualRangesArrays([o],r.ranges))return this.navigate(n);const s=Ug(r,n,this._getCellCoordsAsRangeCoords.bind(this),this._hiddenRowsAt.bind(this),this._hiddenColumnsAt.bind(this));this.updateCoords(s)}clear(){this._setSelectionRanges(da)}modify(t,e,n){if(this._selectionPolicy==="single")return;const r=this._coords,o=this._rangesFromCellOptional(r,t,e??r.cell);if(!o)return;const s=r.rangeIndex;this._setSelectionRanges(i=>i.length?i.map((a,c)=>s===c?o:a):[o]),n&&o&&this._setSelectionCell({colIndex:o.colStart,rowIndex:o.rowStart})}append(t,e=t,n){if(this._selectionPolicy!=="multiple"||!t||this._isCellOutOfBounds(t)||this._isCellOutOfBounds(e))return;const r=this._coords,o=this._cellToRangeActual(t,e);if(!o)return;const s=r.ranges.length>0?[...r.ranges]:[this._cellToRangeActual(r.cell,r.cell)];s.push(o);const i={ranges:s,cell:{rowIndex:o.rowStart,colIndex:o.colStart,...n},rangeIndex:s.length-1};E.CoordUtils.isEqualSelectionCoords(i,r)||this.updateCoords(i)}clearAndModify(t,e,n){const r=this._coords;t={...r.cell,...t},e=e??t;const o=this._rangesFromCellOptional(r,t,e);if(!o)return;const s={rowIndex:o.rowStart,colIndex:o.colStart},i={...s,...n},a=this._newSelectionMode;a==="clear"?(this._firstActiveCoords=i,this.clear()):a==="modify"?this.modify(s):this.append(s),this._setSelectionCell(i)}setAdjusting(t){this._adjusting=t,this._emitter.notify("onAdjustingChange")}getAdjusting(){return this._adjusting}addListeners(t,e){return this._emitter.addListeners(t,e)}_setSelectionRanges(t){const e=this._coords;let n=typeof t=="function"?t(e.ranges):t??da;if(E.CoordUtils.isEqualRangesArrays(n,e.ranges))return;let r=Math.max(n.length?0:-1,Math.min(e.rangeIndex,n.length-1)),o=e.cell;r===-1||E.CoordUtils.isCellWithinRange(o,n[r])||(o={rowIndex:n[r].rowStart,colIndex:n[r].colStart}),n.length===1&&E.CoordUtils.isSingleCell(n[0])&&E.CoordUtils.isCellWithinRange(o,n[0])&&(n=[],r=-1);const s={cell:o,ranges:n,rangeIndex:r};E.CoordUtils.isEqualSelectionCoords(s,e)||this.updateCoords(s)}_setSelectionCell(t){const e=this._coords,n=t??IS,r=this._getCellCoordsAsRangeCoords(n);if(!E.CoordUtils.isSingleCell(r)&&e.ranges.length===0)return this.updateCoords({ranges:[r],rangeIndex:0,cell:n});if(E.CoordUtils.isEqualCells(n,e.cell))return;let o=e.ranges,s=e.rangeIndex;e.ranges.length===1&&(E.CoordUtils.isSingleCell(e.ranges[0])&&E.CoordUtils.isCellWithinRange(n,e.ranges[0])||!E.CoordUtils.isCellWithinRange(n,e.ranges[0]))&&(o=[],s=-1);const i={ranges:o,rangeIndex:s,cell:n};return E.CoordUtils.isEqualSelectionCoords(i,e)?void 0:this.updateCoords(i)}_isCellOutOfBounds(t){const e=this._getMaxRange();return t.rowIndex<e.rowStart||t.colIndex<e.colStart||t.colIndex>e.colEnd||t.rowIndex>e.rowEnd}_cellToRangeActual(t,e){const n={rowStart:Math.min(t.rowIndex,e.rowIndex),colStart:Math.min(t.colIndex,e.colIndex),rowEnd:Math.max(t.rowIndex,e.rowIndex),colEnd:Math.max(t.colIndex,e.colIndex)};if(this._canSelectionSpanMergedCells(n))return n;const r=this._getCellCoordsAsRangeCoords(t),o=this._getCellCoordsAsRangeCoords(e),s={rowStart:Math.min(r.rowStart,o.rowStart),colStart:Math.min(r.colStart,o.colStart),rowEnd:Math.max(r.rowEnd,o.rowEnd),colEnd:Math.max(r.colEnd,o.colEnd)},i=this._getMergedRanges(s);return E.CoordUtils.extendRangeToUnionRanges(s,i)}_rangesFromCellOptional(t,e,n){const r=t.ranges.length>0?t.ranges[t.rangeIndex]:{rowStart:t.cell.rowIndex,colStart:t.cell.colIndex,rowEnd:t.cell.rowIndex,colEnd:t.cell.colIndex},o={rowStart:Math.min(e.rowIndex??r.rowStart,n.rowIndex??r.rowStart),colStart:Math.min(e.colIndex??r.colStart,n.colIndex??r.colStart),rowEnd:Math.max(e.rowIndex??r.rowEnd,n.rowIndex??r.rowEnd),colEnd:Math.max(e.colIndex??r.colEnd,n.colIndex??r.colEnd)},s={rowIndex:o.rowStart,colIndex:o.colStart},i={rowIndex:o.rowEnd,colIndex:o.colEnd};if(!(this._isCellOutOfBounds(s)||this._isCellOutOfBounds(i)))return this._cellToRangeActual(s,i)}_getMaxRange(){return this._sheet.getEntireRange().getCoords()}toString(){let t="";return t+=`selection:[${this._sheet.getRange(this._coords.cell).toString()}`,this._coords.ranges&&this._coords.ranges.length>0&&(t+=`, ${this._sheet.getRanges(this._coords.ranges).toString()}`),this._coords.rangeIndex!==void 0&&this._coords.rangeIndex!==-1&&(t+=`, ${this._coords.rangeIndex}`),t+="]",t}}class hi{constructor(t,e){this._c=t,this._m=e}getModel(){return this._m}getCoords(){return this._c}getPropertiesAt(t,e,n){return this._m.getPropertiesAt(t,e,n)}getSplit(t){const e=this._m;return[new hi(t[0],e),new hi(t[1],e)]}}class vS extends Vn{constructor(t){if(super({...t}),this._coordsCache=null,!t.json)throw new Error("json is required");this._sheet=t.sheet,this._styles=t.sheet?.getStyles()??new Fr,this._options={...t},t.setOnContainerCoordsChange(this._processCoordsChange.bind(this)),t.setCreateSpatial(this._createSpatial.bind(this)),this._getContainerRanges=t.getContainerRanges,this._setContainerRanges=t.setContainerRanges;const e=this;this._options.transactions.addStateListener(this,{onRestoreOrRevert(){e._coordsCache=null},onBeforeCommitEnd(){e._coordsCache=null}}),this._fromJSON({...t.json})}getRanges(){return this._getContainerRanges()}setRanges(t,e){const n=this.getRanges(),r=this._setContainerRanges(t,e);return this._processCoordsChange({before:n?.getCoords()??null,after:r?.getCoords()??null}),this}setType(t,e){return this._updateState({type:t},{description:"Set Conditional Format Type",...e}),this}getType(){return this._getState().type}setPriority(t,e){return this._updateState({priority:t},{description:"Set Priority",...e}),this}getPriority(){return this._getState().priority}setStopIfTrue(t,e){return this._updateState({stopIfTrue:t},{description:`Set Stop ${t??!1}`,...e}),this}getStopIfTrue(){return this._getState().stopIfTrue??!1}getScalar(){return this._getState().value??null}getColorScale(){return this._getState().colorScale??null}getContainsText(){return this._getState().text}getCustom(){return this._getState().formulas}getDataBar(){return this._getState().dataBar??null}getIconSet(){return this._getState().iconSet}getPresetCriteria(){return this._getState().style}getTopBottom(){return this._getState()}getSnapshot(t){this.toJSON();const e=null,n=this,r=Object.freeze({...t});let o=!1;return{async copyTo(s,i){s.conditionals;const a=s.range;({...r,...i}).isCut&&!o&&(n.delete(),o=!0);const c={colStart:a.colStart,rowStart:a.rowStart,colEnd:e.colEnd-e.colStart+a.colStart,rowEnd:e.rowEnd-e.rowStart+a.rowStart};return console.log("implement copyTo"),c},getCoords:()=>e,getSource:()=>n,getName:()=>"Conditional Format",getMarkOptions:()=>r,isISnapshot:!0}}_processRestoreOrRevert(t,e,n){super._processRestoreOrRevert(t,e,n)}_createSpatial(t){return new hi(t,this)}_processCoordsChange(t){this._coordsCache=null,t.after?this._emitter.notify("onAnyChange"):this._delete()}update(t,e){if(this.isClosed())throw new Error("Table has been closed. No further operations are allowed.");const n=this._getState(),r=this._beginCommit(e?.description??"Update Conditional Format");try{const o={...n,...t};this._updateState(o,e),this._getEmitter().notify("onAnyChange"),r.commit()}catch(o){throw r.rollback(),o}return this}_processDelete(){this._getState(),super._processDelete()}_processStateChange(t,e,n){super._processStateChange(t,e,n),this._getEmitter().notify("onAnyChange")}toJSON(){const t={},e=this._getState();if(e===null)return null;const n=this.getRanges()?.toString();return n?(t.ref=n,t.type=e.type,e.priority!==0&&(t.priority=e.priority),e.stopIfTrue&&(t.stopIfTrue=e.stopIfTrue),e.style&&(t.style=e.style),e.colorScale&&(t.colorScale=e.colorScale),e.dataBar&&(t.dataBar=e.dataBar),e.iconSet&&(t.iconSet=e.iconSet),e.aboveAverage&&(t.aboveAverage=e.aboveAverage),e.equalAverage&&(t.equalAverage=e.equalAverage),e.stdDev!==0&&(t.stdDev=e.stdDev),e.bottom&&(t.bottom=e.bottom),e.percent&&(t.percent=e.percent),e.rank!==0&&(t.rank=e.rank),e.operator&&(t.operator=e.operator),e.formulas&&(t.formulas=e.formulas),e.text&&(t.text=e.text),e.timePeriod&&(t.timePeriod=e.timePeriod),t):null}_fromJSON(t){const e={};e.type=t.type??exports.IConditionalFormat.Type.CellIs,e.priority=t.priority??0,e.stopIfTrue=t.stopIfTrue??!1,e.style=t.style??null,e.colorScale=t.colorScale??null,e.dataBar=t.dataBar??null,e.iconSet=t.iconSet??null,e.aboveAverage=t.aboveAverage??!1,e.equalAverage=t.equalAverage??!1,e.stdDev=t.stdDev??0,e.bottom=t.bottom??!1,e.percent=t.percent??!1,e.rank=t.rank??0,e.operator=t.operator??null,e.formulas=t.formulas??null,e.text=t.text??null,e.timePeriod=t.timePeriod??null,this._updateState(e,{description:"Initialize Conditional Format"})}close(){super.close(),this.isClosed()||(this._updateState({},{description:"Close Conditional"}),this._stylesRemoveListener?.())}getCoords(){return this.getRanges().getCoords()[0]}getPropertiesAt(t,e,n){let r=this._coordsCache;r||(r=this._coordsCache=this.getRanges().getCoords());let o=0,s=0;const i={rowIndex:t,colIndex:e};for(let c=0;c<r.length;c++){const h=r[c];if(E.CoordUtils.isCellWithinRange(i,h)){const d=t-h.rowStart,u=e-h.colStart;s=o+(d*(h.colEnd-h.colStart+1)+u+1)}o+=(h.rowEnd-h.rowStart+1)*(h.colEnd-h.colStart+1)}let a={fill:{type:"solid",color:"red"}};return a.fill.color=((c,h,d,u)=>{let g=1;h!==0&&(g=c/h);const m=d[0]+g*(u[0]-d[0]),f=d[1]+g*(u[1]-d[1]),_=d[2]+g*(u[2]-d[2]);return`rgb(${Math.round(m)}, ${Math.round(f)}, ${Math.round(_)})`})(s,o,[255,255,255],[255,0,0]),a}get isIConditionalFormat(){return!0}}class xS{constructor(t,e){this._add=t,this._get=e}add(t,e){if(!t)throw new Error(yr);return this._add(t,e)}getItems(t){let e;return t?.address&&(e=t.address),this._get(e,t?.excludeHidden,t?.fullyContained)}getCount(){return this._get(null,!1,!1).length}}const Fd=(l,t)=>{if(t){if(t.getType()===exports.IFill.Type.Solid)l.background=Ue(t.getColor())||"none",l["mso-pattern"]="black none";else if(t.getType()===exports.IFill.Type.Pattern){const e=t;l.background=Ue(e.getBackground())||"none";const n=Ue(e.getForeground())||"";if(e.getPatternType()===exports.IFill.BuiltInSheetPattern.Solid)l["mso-pattern"]=`${l.background} none`,l.background=n;else{const r=(o=>Nt.get(o)?.cssKey??"solid")(e.getPatternType());l["mso-pattern"]=n+(r?" ":"")+r}}else if(t.getType()===exports.IFill.Type.Gradient){const e=t;l.background=Ue(e.getStops()?.[0]?.getColor())||"auto",l.msoGradient=yg(e)||"auto"}}};class RS{constructor(t,e){if(this._visitedStyles=new Map,this._lastStyleClassId=63,this._wroteTD=!1,!t)throw new Error("Can not create with a null sheet.");this._sheet=t,this._includeSizeInCell=e??!1,this._normalStyle=t.getStyles().getNormal()}_createCSSStyle(t){const e=this._normalStyle,n={},r=(u,g)=>u===g||!(u&&!g)&&!(!u&&g)&&g.isEqual?.(u),o=t.getFont(),s=e.getFont();var i;r(o.getFill(),s.getFill())||(n.color=Ue(o.getFill())),r(o.getSize(),s.getSize())||(n["font-size"]=Vh(o.getSize())),r(o.getWeight(),s.getWeight())||(n["font-weight"]=o.getWeight()),r(o.getStyle(),s.getStyle())||(n["font-style"]=o.getStyle()),r(o.getUnderline(),s.getUnderline())||(n["text-decoration"]="underline",n["text-underline-style"]=(i=o.getUnderline())===exports.IFont.UnderlineStyle.Single?"single":i===exports.IFont.UnderlineStyle.Double?"double":i===exports.IFont.UnderlineStyle.SingleAccounting?"single-accounting":i===exports.IFont.UnderlineStyle.DoubleAccounting?"double-accounting":"none"),r(o.getFamily(),s.getFamily())&&r(o.getFallbacks(),s.getFallbacks())||(n["font-family"]=oi(o.getFamily(),o.getFallbacks())),r(t.getNumberFormat(),e.getNumberFormat())||(n["mso-number-format"]=Jh(t.getNumberFormat()));const a=t.getAlignment(),c=e.getAlignment();if(!r(a.getHorizontal(),c.getHorizontal())){const u=a.getHorizontal();u===exports.ITextFrame.HorizontalAlignment.CenterContinuous?n["text-align"]="center-across":u===exports.ITextFrame.HorizontalAlignment.Fill?n["text-align"]="fill":u===exports.ITextFrame.HorizontalAlignment.Distributed?n["text-align"]=a.getJustifyLastLine()?"121":"010":n["text-align"]=exports.ITextFrame.toCSSHorizontalTextAlign(u)}if(!r(a.getVertical(),c.getVertical())){const u=a.getVertical();u===exports.ITextFrame.VerticalAlignment.Distributed?n["vertical-align"]="121":n["vertical-align"]=$h(u)}if(!r(a.getOverflow(),c.getOverflow())){const u=a.getOverflow();n["white-space"]=Gh(u),u===exports.ITextFrame.Overflow.Shrink&&(n["mso-text-control"]="shrinktofit")}var h;r(a.getRotation(),c.getRotation())||(n["mso-rotate"]=(h=a.getRotation(),(h%=360)<0&&(h+=360),h>180?h=360-h:h>1&&(h*=-1),h)),r(a.getIndent(),c.getIndent())||(n["mso-char-indent-count"]=a.getIndent()),r(t.getFill(),s.getFill())||Fd(n,t.getFill());const d=t.getBorder();return d.getTop().isNone()||(n["border-top"]=kn(d.getTop())),d.getLeft().isNone()||(n["border-left"]=kn(d.getLeft())),d.getRight().isNone()||(n["border-right"]=kn(d.getRight())),d.getBottom().isNone()||(n["border-bottom"]=kn(d.getBottom())),d.getDiagonalUp().isNone()||(n["border-mso-diagonal-up"]=kn(d.getDiagonalUp())),d.getDiagonalDown().isNone()||(n["border-mso-diagonal-down"]=kn(d.getDiagonalDown())),Object.keys(n).length===0?null:n}_createCSSNormalStyle(){const t=this._normalStyle,e={"padding-top":"1px","padding-left":"1px","padding-right":"1px","mso-ignore":"padding"},n=t.getFont(),r=t.getAlignment();return e.color=Ue(n.getFill()),Fd(e,t.getFill()),e["font-size"]=Vh(n.getSize()),e["font-weight"]=n.getWeight(),e["font-style"]=n.getStyle(),e["text-decoration"]=_g(n.getUnderline(),n.getStrike()),e["font-family"]=oi(n.getFamily(),n.getFallbacks()),e["mso-font-charset"]="0",e["mso-background-source"]="auto",e["mso-number-format"]=Jh(t.getNumberFormat()),e["text-align"]=exports.ITextFrame.toCSSHorizontalTextAlign(r.getHorizontal()),e["vertical-align"]=$h(r.getVertical()),e.border="none",e["mso-pattern"]="auto",e["white-space"]=Gh(r.getOverflow()),r.getOverflow()===exports.ITextFrame.Overflow.Shrink&&(e["mso-text-control"]="shrinktofit"),e["mso-rotate"]="0",r.getIndent()>0&&(e["mso-char-indent-count"]=r.getIndent()),e["mso-protection"]="locked visible",e}onCell(t,e,n){let r;const o=t.getSpans();if(o.width>1||o.height>1){if(!t.isTopLeft())return!1;o.height>1&&n.addAttribute("rowspan",o.height),o.width>1&&n.addAttribute("colspan",o.width)}let s=t.toTextUnformatted();t.getNumberFormat().repeatPlaceholder&&(s=t.getNumberFormat().repeatPlaceholder.repeat(5)),n.setPlainText(s||"");const i=t.getStyle(),a=i.getFont();if(a.getVerticalAlignment()===exports.IFont.VerticalAlignment.Super&&(s=`<sup>${s}</sup>`),a.getVerticalAlignment()===exports.IFont.VerticalAlignment.Sub&&(s=`<sub>${s}</sub>`),a.getStrike()&&(s=`<s>${s}</s>`),t.getHyperlink()&&(s=`<a href="${t.getHyperlink().getAddress()}">${s}</a>`),n.setHTMLText(s||" "),!this._wroteTD){const h=this._createCSSNormalStyle();n.addSharedStyle("td",h),this._wroteTD=!0}let c=this._visitedStyles.get(i);if(!c){const h=this._createCSSStyle(i);h&&(c="xl"+ ++this._lastStyleClassId,this._visitedStyles.set(i,c),n.addSharedStyle("."+c,h))}if(c&&n.addAttribute("class",c),this._includeSizeInCell){const h=this._sheet.getColumnHeaders().at(e.colIndex).getSize();n.addAttribute("width",h),n.addStyle("width",E.CommonUtils.roundAccurately(h/exports.IFont.getDeviceScale(),2)+"pt");const d=this._sheet.getRowHeaders().at(e.rowIndex).getSize();n.addAttribute("height",d),n.addStyle("height",E.CommonUtils.roundAccurately(d/exports.IFont.getDeviceScale(),2)+"pt")}return r}onRow(t,e,n,r){const o=t.getSize();r.addAttribute("height",o),r.addStyle("height",E.CommonUtils.roundAccurately(o/exports.IFont.getDeviceScale(),2)+"pt"),t.isCustomSize()&&r.addStyle("mso-height-source","userset")}onColumn(t,e,n,r){const o=t.getSize();r.addAttribute("width",o),r.addStyle("width",E.CommonUtils.roundAccurately(o/exports.IFont.getDeviceScale(),2)+"pt"),t.isCustomSize()&&r.addStyle("mso-width-source","userset"),n>1&&r.addAttribute("colspan",n)}}const Nd=(l,t,e)=>{const n=l.getOrientation()===E.RangeOrientation.Column,r=(n?"Column":"Row")+" Copy",o=l.getSnapshot(e);return{...o,getName:()=>r,getCoords:()=>t,copyTo:async(s,i)=>{const a=n?s.getColumnHeaders():s.getRowHeaders(),c={...e,...i};if(c.includeHeaders===!0){const h=await o.copyTo(a,c);return n?{colStart:h.min,rowStart:t.rowStart,colEnd:h.max,rowEnd:t.rowEnd}:{colStart:t.colStart,rowStart:h.min,colEnd:t.colEnd,rowEnd:h.max}}},getMarkOptions:()=>e}},AS=(l,t,e,n,r,o)=>{const s=e[0];let i,a;const c=()=>{if(a!==void 0)return;const[h,d]=((u,g)=>{const m=g.getRowHeaders(),f=g.getColumnHeaders(),_=g.getUsedRange()?.getCoords(),p=m.getUsedRange()?.getCoords(),S=f.getUsedRange()?.getCoords(),C={...E.CoordUtils.EmptyRange,..._,colEnd:Math.max(_?.colEnd??0,S?.max??0),rowEnd:Math.max(_?.rowEnd??0,p?.max??0)},y=new Map,I=[];u.onStart?.();const w={rows:[],cols:[]},b=new mS(y,I);b.setNode(w),u.onTable?.(b,C);let x=0;f.forEachSpan((U,D)=>{const z=D.getCoords();x=x+z.max-z.min+1;const k={};b.setNode(k),u.onColumn?.(D.getCellHeader(),z.min,z.max-z.min+1,b),w.cols.push(k)},{address:C,includeEmpty:!0,includeStyles:!0});let R=0;const v=[];if(m.forEachSpan((U,D)=>{const z=D.getCoords();R=R+z.max-z.min+1,v.push({min:z.min,max:z.max,value:D.getCellHeader()})},{address:C,includeEmpty:!0,includeStyles:!0,excludeHidden:!1}),x*R>5e4){if(!Id)throw Id=!0,new E.PartialError("Unable to write more than 50000 cells to system clipboard. Items can still be pasted within the application to but if you want to copy to another application select a smaller set of data.");return[null,null]}let T=0,M=-1,F=null;g.forEach((U,D)=>{const z=D.getCoords(),k=D.getCell();if(z.rowIndex!==M){z.rowIndex>v[T].max&&++T;const j=v[T];F={cells:[]},b.setNode(F),u.onRow?.(j.value,z.rowIndex,1,b),w.rows.push(F),M=z.rowIndex}const P={};b.setNode(P),u.onCell(k,z,b)!==!1&&F.cells.push(P)},{address:C,includeEmpty:!0,excludeHidden:!1}),u.onDone?.(),w.rows.length===0&&w.rows.push({cells:[]});const N=[];for(let U=0;U<I.length;U++){const D=I[U],z=y.get(D);N.push(D);let k="";const P=Object.keys(z);for(let j=0;j<P.length;j++){k+=" ",j===0&&(k+="{");const H=P[j];k+=`${H}:${z[H]};`,j===P.length-1?k+="}":k+=`
`}N.push(k)}const O=[`<div clipboard-uuid=xxx>
<html
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40"
>`];O.push(`<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 15">`),O.push(`<style>
table
{mso-displayed-decimal-separator:"\\.";
mso-displayed-thousand-separator:"\\,";}
@page
{margin:.75in .25in .75in .25in;
mso-header-margin:.3in;
mso-footer-margin:.3in;
mso-horizontal-page-align:center;}
tr
{mso-height-source:auto;}
col
{mso-width-source:auto;}
br
{mso-data-placement:same-cell;}`),N.length>0&&O.push(N.join(`
`)),O.push("</style>"),O.push("</head>"),O.push("<body>"),O.push("<table>"),O.push("<!--StartFragment-->");const L=U=>{let D=(k=>{let P="";return k&&k.attributes&&k.attributes.length!==0&&k.attributes.forEach((j,H)=>{P.length>0&&(P+=" "),P+=`${H}=${j}`}),P})(U);D.length>0&&(D=" "+D);let z=(k=>{let P="";return k&&k.styles&&k.styles.length!==0&&(k.styles.forEach((j,H)=>{P.length>0&&(P+=";"),P+=H+":"+j}),P.length>0&&(P=`style='${P}'`)),P})(U);return z.length>0&&(z=" "+z),`${D}${z}`},B=[];return w.cols?.forEach(U=>{O.push(` <col${L(U)}>`)}),w.rows.forEach(U=>{O.push(` <tr${L(U)}>`);const D=[];U.cells.forEach(z=>{O.push(` <td${L(z)}>${z.htmlText??z.plainText??""}</td>`);const k=`${E.CommonUtils.castToString(z.plainText??"")?.replace(/"/g,'""')}`;D.push(k)}),B.push(D.join(" ")),O.push(" </tr>")}),O.push("<!--EndFragment-->"),O.push("</table>"),O.push("</body>"),O.push("</html>"),O.push("</div>"),[O.join(`
`),B.join(`
`).concat(`
`)]})(new RS(t),t.getRange(s));i=h??null,a=d??null};return{copyTo(h,d){const u={...r,...d};return d.isCut,o(h,u)},getMarkOptions:()=>r,getSource:()=>l,getName:()=>n,getCoords:()=>s,toText:()=>(c(),a),toHtml:()=>(c(),i),toImage:()=>null,isISnapshot:!0}},$s=(l,t)=>Math.round(l*t),Od=(l,t,e)=>{const n=[],r=[];if(!l||l.length===0)return{sizes:n,hidden:r};if(!t||!e)return console.warn("_HeaderUtils:default size and scaleFactor should be available"),{sizes:n,hidden:r};let o=0,s=0,i=0,a=null,c=-2;for(let h=0;h<l.length;h++){const d=l[h],u=d.min,g=d.max;o=n.length===0?0:n[n.length-1].runningOffsetMax,n.length>0&&n[n.length-1].spanSize>0&&o++,s<d.min&&n.push({indexMin:s,indexMax:u-1,runningOffsetMin:o,runningOffsetMax:Math.round(o+(u-s)*t*e)-1,runningHiddenRuns:i,spanSize:Math.round(t*e)});const m=n.length,f=n[m-1];o=m===0?0:f.runningOffsetMax,m>0&&f.spanSize>0&&o++;let _=0;d.value.h||(_=$s(d.value?.sz??t,e));const p=_===0?0:-1;_===0&&(i+=g-u+1,c+1===u?a.max=g:(a={min:u,max:g,value:!0},r.push(a)),c=g),m>0&&f.spanSize===_&&f.indexMax+1===u?(f.indexMax=g,f.runningHiddenRuns=i,f.runningOffsetMax=f.runningOffsetMin+(g+1-f.indexMin)*_+p):n.push({indexMin:u,indexMax:g,runningOffsetMin:o,runningOffsetMax:Math.round(o+(g+1-u)*_)+p,runningHiddenRuns:i,spanSize:_}),s=g+1}return{sizes:n,hidden:r}};function Tl(l,t,e){e!==void 0&&(e!==null?l[t]=e:delete l[t])}const Ml=()=>{},kd=()=>0,TS=()=>!1,zg=(l,t,e,n)=>{if(n!==void 0){if(n===null)return null;if(n?.isICellHeader)return n._headerState;if(n){const r=n,o={...e};let s,i=r.hidden,a=r.size;if(r.size!==void 0){if(typeof a=="function"){const c=e?.sz===void 0?l.getDefaultSize():e?.sz*l.getScaleFactor();a=a?.(c)}if(typeof a=="string"&&(a=Er(a,t.getNormal().getFont().getSize(),"px")),typeof a=="number"){const c=l.getMinSize(),h=l.getMaxSize();a=Math.max(c,Math.min(E.CommonUtils.roundAccurately(a,c),h)),r.relativeSize!==!0&&(a/=l.getScaleFactor()),isNaN(a)&&(console.warn("headerSize can not be NaN"),a=void 0),a===0&&(i=!0,a=void 0),s=!r.autoSize}else a===null?(a=null,s=!r.autoSize):a!==void 0&&(console.warn("headerSize can not be type",a),a=void 0)}return Tl(o,"sz",a),Tl(o,"h",i),Tl(o,"csz",s),Object.keys(o).length===0?null:o}}};class La{constructor(t,e,n){this._sheetHeader=t;const r=this._sheetHeader.getSheet().getStyles();this._styles=r,this._headerState=e,this._template=n}getSize(){const t=this._headerState?.sz;return Math.round(t===void 0?this._sheetHeader.getDefaultSize():t*this._sheetHeader.getScaleFactor())}getDisplayText(){return""+this.asCell().getValue()}getOrientation(){return this._sheetHeader.getOrientation()}isHidden(){return this._headerState?.h??!1}isCustomSize(){return this._headerState?.cs??!1}getSheetHeader(){return this._sheetHeader}getStyle(){return this._headerState?.s??this._styles.getNormal()}asCell(){return this._cellTemplate||(this._cellTemplate=this._sheetHeader.getSheet().createTemporaryCell({style:this.getStyle(),...this._template})),this._cellTemplate}getSizeRelative(){return this.getSize()/this._sheetHeader.getScaleFactor()}createTemporaryCellHeader(t){const e=zg(this._sheetHeader,this._sheetHeader.getSheet().getStyles(),this._headerState,t);return new La(this._sheetHeader,e,this._template)}isEqual(t){if(!t)return!1;if(t===this)return;const e=t;if(!e.isICellHeader)return!1;const n=this._headerState,r=e._headerState;return n===r||!(n&&!r||r&&!n)&&this.getSize()===e.getSize()&&this.isCustomSize()===e.isCustomSize()&&this.isHidden()===e.isHidden()&&this.getStyle()===e.getStyle()}isEmpty(){const t=this._headerState;return!t||t.sz===void 0&&t.csz===void 0&&!t.cs&&t.h===void 0&&!(!t.s||t.s!==this._styles.getNormal()||t.cs)}get isICellHeader(){return!0}}const hs="The columns are protected. To make a change, unprotect the sheet. You might be requested to enter a password.",ds="The rows are protected. To make a change, unprotect the sheet. You might be requested to enter a password.",Bn="Rows",Dn="Columns";class Bd{constructor(t){if(this._emitter=null,this._closed=!1,this._scaleFactor=1,this._defaultSize=-1,this._defaultCustomSize=-1,this._defaultPxSize=1,this._isColumn=!0,this._indexedSizes=[],this._indexedHidden=[],this._headerRunCoords=null,this._hasCustomFormats=!1,this._hasStyles=!1,this._hasHidden=!1,this._lastHeaderRead=null,this._readCache=null,this._lastVisibleRunsRead=null,this._lastVisibleRunCoords=null,this._options={isProtected:()=>!1,getUpdateId:()=>null,scaleFactor:()=>1,defaultSize:()=>100,minSize:()=>0,maxSize:()=>500,orientation:A.IRange.Orientation.Column,createCellHeader:(s,i,a)=>new La(s,i,a),...t},!this._options.sheet)throw new Error("An ISheet must be provided");if(this._emptyHeader=this._options.createCellHeader(this,null,null),this._scaleFactor=this._options.scaleFactor(),this._defaultSize=this._options.defaultSize(),this._defaultSize<=0)throw new Error("defaultSize must be greater than 0");this._defaultPxSize=$s(this._defaultSize,this._scaleFactor);const e=this._options.orientation===A.IRange.Orientation.Column;this._isColumn=e;const n=this._options.maxSheetCoords??{colStart:0,rowStart:0,colEnd:Number.MAX_SAFE_INTEGER,rowEnd:Number.MAX_SAFE_INTEGER};this._maxSheetCoords=n;const r=e?n.colEnd:n.rowEnd;this._maxDataIndex=r,this._maxRunCoords={min:0,max:r},this._maxDataRange=this.getRange(this._maxRunCoords),this._maxRangeCoords={colStart:0,rowStart:0,colEnd:e?r:0,rowEnd:e?0:r};const o=this;this._options.setContainerShiftedCallback&&this._options.setContainerShiftedCallback((s,i)=>{i<0?o._deleteHeaders(s,-i):o._insertHeaders(s,i)}),this._options.sheet&&(this._sheetRemoveListener=this._options.sheet.addListeners({onProtectionChange(){},onSelectionChange(s){o._selection=s.getSelection().getCoords(),o._selectionRuns=null},onStyleChange:()=>{},onViewChange(){const s={runs:o._headers};o._invalidSizes(),o._emitter.notify("onSizesChange",{params:s})}},{transactional:!1}),o._selection=o._options.sheet.getSelection().getCoords()),this._transactions=this._options.transactions??new ve({transient:!0}),this._emitter=new Yt(o,this._transactions),this._transactionsRemoveListener=this._transactions.addStateListener(this,{onAfterStateChange(s){o._lastHeaders!==s.headers&&o._onHeaderChange()}}),this.fromJSON(this._options?.json)}addListeners(t,e){return this._emitter.addListeners(t,e)}_invalidSizes(){const t=this._defaultCustomSize===-1?this._options.defaultSize():this._defaultCustomSize,e=this._options.scaleFactor();if(t!==this._defaultSize||e!==this._scaleFactor){this._defaultSize=t,this._scaleFactor=e,this._defaultPxSize=$s(t,e);const n=Od(this._headers,t,e);this._indexedSizes=n.sizes,this._indexedHidden=n.hidden,this._lastVisibleRunsRead=null,this._lastVisibleRunCoords=null}}_onHeaderChange(){this._lastHeaders=null;const t=this._headers,e=this._getState();this._defaultCustomSize=e.defaultCustomSize;const n=this._defaultCustomSize===-1?this._options.defaultSize():this._defaultCustomSize;this._defaultSize=n;const r=this._scaleFactor;this._defaultPxSize=$s(n,r);const o=Od(t,n,r);this._indexedSizes=o.sizes,this._indexedHidden=o.hidden,this._lastHeaderRead=null,this._readCache=Lu(this._lastHeaders),this._lastVisibleRunsRead=null,this._lastVisibleRunCoords=null;const s=this._options.sheet.getStyles().getNormal();let i=!1,a=!1,c=!1,h=-1;for(let g=t.length-1;g>=0;g--){const m=t[g],f=m.value,_=f.s,p=f.csz||f.sz!==n;h!==-1||!p&&_===s||(h=m.max),i=i||f.cs,a=a||f.s!==s,c=c||f.h||f.sz===0}h=Math.min(h??0,this._maxDataIndex);const d=Math.min(t[0]?.min??h,h);this._headerRunCoords=Object.freeze({min:d,max:h}),this._hasCustomFormats=i,this._hasStyles=a,this._hasHidden=c;const u=e.runs;this._emitter.notify("onSizesChange",{params:u})}getSheet(){return this._options.sheet}getOrientation(){return this._isColumn?A.IRange.Orientation.Column:A.IRange.Orientation.Row}getTextAt(t){return this._options.getTextAt?.(t)??t+""}_scanHeaders(t,e,n,r,o,s){const i=o?.min??null,a=o?.max??null,c=s?.includeEmpty??!1,h=s?.includeStyles??!1,d=s?.excludeHidden??!1,u=s?.includeSizes??!1,g=this,m=this._options.sheet.getStyles().getNormal(),f=this._defaultSize,_=this._scaleFactor,p=this._emptyHeader;let S;const C={getCoords(){if(!S)throw new Error(Cr);return{min:S.min,max:S.max}},getIndex:()=>S.min,getCellHeader(){if(!S)throw new Error(Cr);return S.value?n(g,S.value):p},getA1(I){if(!S)throw new Error(Cr);return this._parseHeaderRangeAddress({min:i+I,end:i+I})??S}},y=Wc(e,I=>{const w=I.value;if(!c&&!w)return;let b=c;if(u&&!b&&w&&(w.csz||w.sz!==f)&&(b=!0),h&&!b&&w&&(w.s&&w.s!==m||w.cs)&&(b=!0),w&&w.h===!0&&(b=!d),!b)return;let x=f;I.value&&(x=I.value.h?0:I.value?.sz??f),x*=_,S=I;const R=t(x,C);return R&&R.break?R:void 0},i,a);return S=null,y}getRange(t,e){if(!t)throw new Error(yr);const n=this,r=this._parseHeaderRangeAddress(t);if(r.min<0||r.max>this._maxDataIndex)return function(a){return Object.freeze({getCoords:()=>null,getOrientation:()=>a.getOrientation(),toString:()=>Pt,getA1:()=>Pt,getCount:kd,getVisibleCount:kd,isEntireHeaders:TS,forEach:Ml,forEachSpan:Ml,forEachVisibleSpan:Ml,getUsedRange:pt,getSnapshot:pt,updateHeaders:pt,clear:pt,setHidden:pt,setSize:pt,at:pt,doBatch:pt,getSheetHeader:()=>a,isICellHeaderRange:!0})}(this);const o=(a,c,h,d=n._options.createCellHeader)=>{let u=r;if(c?.address){const m=n._parseHeaderRangeAddress(c?.address);if(m&&(u=Hc(r,m),!u))return}const g=this._scanHeaders(a,h,d,e,u,c);if(g&&g.break)return g.break},s=()=>{const a=n._isColumn?{colStart:r.min,colEnd:r.max}:{rowStart:r.min,rowEnd:r.max};return Ze(a,n._maxRangeCoords)??Pt},i={getCoords:()=>r,getA1:s,toString:s,forEach:(a,c)=>{let h=Number.MAX_SAFE_INTEGER,d=null;const u={getIndex:()=>h,getCellHeader:()=>d.getCellHeader(),getA1:g=>d.getA1(g),getCoords:()=>d.getCoords()};return o((g,m)=>{d=m;for(let f=r.min;f<r.max;f++)h=f,a(g,u)},c,this._headers,()=>this.at(void 0))},forEachSpan:(a,c)=>o(a,c,this._headers),forEachVisibleSpan:(a,c)=>{const h=r?.min??null,d=r?.max??null;let u;if(u=c?.includeHidden?a(h,d):Wc(this._indexedHidden,g=>{if(g.value)return;const m=a(g.min,g.max);return m&&m.break?m:void 0},h,d),u&&u.break)return u.break},updateHeaders:(a,c)=>(n.updateHeaderPairs([{address:r,update:a}],{description:c?.description??`Update ${n._isColumn?Dn:Bn} ${toString()}`,...c}),i),setHidden:a=>(n.setHidden(r,a),i),getUsedRange:a=>{const c=n._headerRunCoords;return!c||c.min<0||c.max>n._maxDataIndex?null:Hc(c,r)?n.getRange(c,a):null},getCount:()=>r.max-r.min+1,getVisibleCount:()=>n.getVisibleCount(r.min,r.max),isEntireHeaders:()=>{const a=n._maxRunCoords;return!(r.min>a.min||r.max<a.max)},getSnapshot:a=>this._getSnapshot(r,a),clear:()=>(n._clear(r),i),setSize:(a,c)=>(n.setSize(r,a,c),i),at:a=>n.at(r.min+a),getOrientation:()=>n.getOrientation(),doBatch:(a,c)=>this.doBatch(h=>a(h),c),getSheetHeader:()=>n,isICellHeaderRange:!0};return Object.freeze(i)}getSelectedRange(t){const e=(n=>{if(!n)return null;let r=E.CoordUtils.cellToRange(n.cell);for(let o=0;o<n.ranges.length;o++)r=E.CoordUtils.unionRanges(r,n.ranges[o]);return r})(this._options.sheet.getSelection().getCoords());return this.getRange(e,t)}getUsedRange(t){return this.getRange(this._headerRunCoords,t)}getEntireRange(t){return t?this.getRange(this._maxRangeCoords,t):this._maxDataRange}at(t){if(t<0||t>this._maxDataIndex)return this._emptyHeader;if(this._lastHeaderRead?.offset===t)return this._lastHeaderRead.header;const e=Uu(t,this._readCache);if(!e)return this._emptyHeader;const n=this._options.getTextAt?.(t)??t+"",r=this._options.createCellHeader(this,e,{value:n});return this._lastHeaderRead={offset:t,header:r},r}updateHeaderPairs(t,e){if(this.isProtected())throw new Error(this._isColumn?hs:ds);return this._updatePairsInternal(t,e)}_parseHeaderRangeAddress(t){if(t==null)throw new Error("Must specify a range.");const e=((n,r,o)=>{if(n==null)return null;let s={};if(typeof n=="number")s.colStart=n,s.colEnd=n,s.rowStart=n,s.rowEnd=n;else if(typeof n=="string"){if(r){if(n.match(/[0-9]+/))throw new Error("Invalid range address for header orientation")}else if(n.match(/[a-zA-Z]+/))throw new Error("Invalid range address for header orientation");let a=ye(n,o);if(!a){const c=ig(n.toUpperCase(),!0);c?.colIndex!==void 0&&(s.colStart=c.colIndex,s.colEnd=c.colIndex),c?.rowIndex!==void 0&&(s.rowStart=c.rowIndex,s.rowEnd=c.rowIndex)}s={...s,...a}}const i={min:void 0,max:void 0};return r?(i.min=n.min??n.colStart??s.colStart,i.max=n.max??n.colEnd??s.colEnd):(i.min=n.min??n.rowStart??s.rowStart,i.max=n.max??n.rowEnd??s.rowEnd),i.min===void 0||i.max===void 0?null:i})(t,this._isColumn,this._maxRangeCoords);if(!e)throw new Error("Invalid header range.");return e}update(t,e,n){if(!t||(Array.isArray(t)||(t=[t]),t.length===0))return;const r=[];for(let o=0;o<t.length;o++){const s=this._parseHeaderRangeAddress(t[o]);this.getRange(s).forEachSpan((i,a)=>{const c=a.getCoords();r.push({address:c,update:e})},{includeEmpty:!0})}return this.updateHeaderPairs(r,n),this}setSize(t,e=null,n){(n?.relativeSize??!1)||typeof e!="number"||(e+="px");const r={size:e,autoSize:n?.autoSize??!1},o=`Resize ${this._isColumn?Dn:Bn}`;return this.update(t,r,{description:o,...n}),this}setHidden(t,e=null){const n={hidden:e},r=`${e?"Unhide":"Hide"} ${this._isColumn?Dn:Bn}`;return this.update(t,n,{description:r}),this}_clear(t,e){const n="Clear "+(this._isColumn?"Column Headers":"Row Headers");this.updateHeaderPairs([{address:t,update:null}],{description:n,...e})}_getSnapshot(t,e){if(t.min<0)return E.CommonUtils.EmptyArray;e=Object.freeze({...e});const n=this,r=this._getState(),o=(this._isColumn?"Column":"Row")+" Headers";return{copyTo(s,i){const a={...e,...i},c=s.getCoords(),h=c.min-t.min,d=[];if(n._scanHeaders((u,g)=>{const m=g.getCoords();d.push({address:{min:m.min+h,max:m.max+h},update:g.getCellHeader()})},r.headers,n._options.createCellHeader,null,t,{includeSizes:!0,includeStyles:!0}),!a.fitDestination){let u=t.max-t.min+1,g=c.max-c.min+1,m=E.CommonUtils.roundAccurately(g/u);if(m>1&&g%u===0){const f=d.length;for(let _=0;_<m;_++)for(let p=0;p<f;p++){const S=d[p],C=S.address,y=(_+1)*u;d.push({address:{min:C.min+y,max:C.max+y},update:S.update})}}}if(s.doBatch(()=>{s.clear(),s.getSheetHeader()._updatePairsInternal(d)},o),a.isCut){const u=n._maxRunCoords;t.min<=u.min&&t.max>=u.max&&n._clear(t)}return c},getCoords:()=>t,toText:()=>null,toHtml:()=>null,toImage:()=>null,getSource:()=>n,getName:()=>o,isISnapshot:!0}}isProtected(){return this._options?.isProtected()??!1}getScaleFactor(){return this._options.scaleFactor()??1}get _headers(){return this._lastHeaders===null&&(this._lastHeaders=this._getState()?.headers),this._lastHeaders}_updatePairsInternal(t,e){if(!t||t.length===0)return null;const n=e?.skipCustomSize??!1,r=this._isColumn,o=this.getSheet().getStyles(),s=this._beginCommit({description:e?.description??`Update ${r?Dn:Bn}`});let i=[...this._getState().headers],a=!1,c=!1;const h=r?exports.IBorder.Edge.Top:exports.IBorder.Edge.Left;exports.IBorder.oppositeEdge(h);const d=r?exports.IBorder.Edge.Right:exports.IBorder.Edge.Bottom;exports.IBorder.oppositeEdge(d);const u=this,g=(y,I)=>{if(this.isProtected())throw new Error(this._isColumn?hs:ds);c=c||I===null,!c&&I&&(c=!!I.isICellHeader||I?.size!==void 0||I?.hidden!==void 0),a=a||I===null||I?.style!==void 0||I?.isICellHeader;const w={onUpdate:(b,x)=>n&&b&&b.csz?b:zg(u,o,b,x),onSplit:b=>[b.value,b.value],onMerge:(b,x,R,v)=>{if(!(b&&!x||!b&&x||!b&&!x)&&b.sz===x.sz&&b.csz===x.csz&&b.h===x.h&&b.cs===x.cs)return b},isCull:(b,x,R)=>b===void 0};i=wn(ql(i,{min:y.min,max:y.max,value:I},w))},m=t.length,f=new Array(m);for(let y=0;y<m;y++){const I=t[y],w=this._parseHeaderRangeAddress(I.address);if(w.min<0||w.max>this._maxDataIndex)throw new E.OutOfBoundsError(ni);g(w,I.update),f[y]=w}let _=!1,p=i.length;if(p>0&&i[0].min===0&&i[p-1].max===this._maxDataIndex){let y=i[0],I=!1,w=-1;for(let R=0;!I&&R<p;R++){const v=i[R],T=v.min;if(w+1!==T){I=!0;continue}const M=v.max;w=M,y.max-y.min<M-T&&(y=v)}I||(this._defaultCustomSize=y.value?.sz??-1,_=!0);const b=this._defaultCustomSize===-1?this._options.defaultSize():this._defaultCustomSize,x=[];for(let R=0;R<p;R++){const v=i[R],T=v.value;if(T===null)continue;const M=Object.keys(T);M.length!==0&&(M.length!==1||T.sz===void 0||T.sz!==null&&T.sz!==b)&&x.push(v)}i=x,p=i.length}const S=[],C=this._defaultSize;for(let y=0;y<p;y++){const I=i[y],w=I.value;if(w===null)continue;let b=!1;w.sz!==void 0&&w.sz!==C&&(b=!0),w.csz&&(b=!0),w.h&&(b=!0),w.cs&&(b=!0),b&&S.push(I)}return i=S,p=i.length,_&&u._invalidSizes(),this._updateState({headers:i,defaultCustomSize:this._defaultCustomSize,runs:f}),s.commit(),f}hasCustomFormats(){return this._hasCustomFormats}hasCustomStyles(){return this._hasStyles}hasHidden(){return this._hasHidden}getDefaultSize(){return this._defaultPxSize}getMaxSize(){return Math.ceil(this._options.maxSize()*this._options.scaleFactor())}getMinSize(){return Math.floor(this._options.minSize()*this._options.scaleFactor())}findOffset(t){return((e,n,r)=>{if(n<0)return 0;if(!e||e.length===0)return n*r;const o=e[e.length-1];if(n>o.indexMax)return o.runningOffsetMax+Math.round((n-o.indexMax-1)*r+(o.spanSize!==0?1:0));const s=e[e.length===1?0:E.CommonUtils.findEqualOrGreater(e,n,a=>a.indexMax)],i=n-s.indexMin;return s.runningOffsetMin+i*s.spanSize})(this._indexedSizes,t,this._defaultPxSize)}findIndex(t){return Math.min(Math.max(0,((e,n,r)=>{if(!e||e.length===0)return Math.floor(n/r);const o=e[e.length-1];if(n>o.runningOffsetMax)return o.indexMax+Math.ceil((n-o.runningOffsetMax)/r);const s=e[e.length===1?0:E.CommonUtils.findEqualOrGreater(e,n,a=>a.runningOffsetMax)];if(s.spanSize===0)return Math.max(0,s.indexMin-1);const i=n-s.runningOffsetMin;return s.indexMin+Math.floor(i/s.spanSize)})(this._indexedSizes,t,this._defaultPxSize)),this._maxDataIndex)}findVisibleIndex(t){return this._lastVisibleRunsRead===t||(this._lastVisibleRunCoords=((e,n,r=Number.MAX_SAFE_INTEGER)=>{if(!e||e.length===0)return{min:n,max:n};let o=e.length-1,s=e[o];if(n>s.indexMax){const a=n-s.runningHiddenRuns;return{min:a,max:a}}o=e.length===1?0:E.CommonUtils.findEqualOrGreater(e,n,a=>a.indexMax),s=e[o];const i=s.spanSize===0?Math.max(-1,s.indexMin-1-(e[o-1]?.runningHiddenRuns??1)):n-s.runningHiddenRuns;return{min:i,max:i+Math.min(r+1,s.spanSize===0?1:0)}})(this._indexedSizes,t,this._maxDataIndex),this._lastVisibleRunsRead=t),this._lastVisibleRunCoords}getSpanSize(t,e=t+1){return this.findOffset(e)-this.findOffset(t)}getVisibleCount(t,e){if(t>e)throw new Error("Invalid arguments.");if(t<0||e>this._maxDataIndex)throw new E.OutOfBoundsError;return this._hasHidden?((n,r,o)=>{let s=o-r+1;if(n.length===0)return s;let i=n.length-1,a=n[i];if(r>a.indexMax)return s;i=n.length===1?0:E.CommonUtils.findEqualOrGreater(n,r,d=>d.indexMax),a=n[i];let c=a.runningHiddenRuns;if(a.spanSize===0&&r<=a.indexMax){const d=a.indexMax-a.indexMin+1;s-=Math.min(d,a.indexMax-r+1)}o>a.indexMax&&i<n.length&&(i=E.CommonUtils.findEqualOrGreater(n,o,d=>d.indexMax),a=n[Math.min(i,n.length-1)]);let h=a.runningHiddenRuns;if(a.spanSize===0&&a.indexMin<=o){const d=a.indexMax-a.indexMin+1;s-=Math.min(d,o-a.indexMin+1),h-=d}return s-=h-c,s})(this._indexedSizes,t,e):e-t+1}isSelectedAll(t){const e=this.getSelectedRuns();if(e.length===0)return!1;const n=e[E.CommonUtils.findEqualOrGreater(e,t,r=>r.max)];return!(!n||t<n.min||t>n.max)&&n.value.isSelectedAll}isSelected(t){const e=this.getSelectedRuns();if(e.length===0)return!1;const n=e[E.CommonUtils.findEqualOrGreater(e,t,r=>r.max)];return!(!n||t<n.min||t>n.max)}getSelectedRuns(){let t=this._selectionRuns;return t||(this._selection&&(t=((e,n,r)=>{let o=[];n?.ranges&&n.ranges.length>0?o=n.ranges:n?.cell&&(o=[E.CoordUtils.cellToRange(n?.cell)]);let s=[];const i=e.getOrientation()===A.IRange.Orientation.Column;for(let a=0;o&&a<o.length;a++){const c=o[a],h=i?c.colStart:c.rowStart,d=i?c.colEnd:c.rowEnd,u=i?c.rowStart:c.colStart,g=i?c.rowEnd:c.colEnd,m=i?r.rowStart:r.colStart,f=i?r.rowEnd:r.colEnd,_=u<=m&&g>=f;s=wn(ql(s,{min:h,max:d,value:{isSelectedAll:!1}},{onUpdate:(p,S)=>{const C=Jl(p,S);return C.isSelectedAll=p?.isSelectedAll||_,C}}))}return s})(this,this._selection,this._maxSheetCoords)),t||(t=E.CommonUtils.EmptyArray)),this._selectionRuns=t,this._selectionRuns}hiddenHeadersAt(t,e=!1){if(this._indexedSizes.length===0)return 0;let n=this._indexedSizes.length===1?0:E.CommonUtils.findEqualOrGreater(this._indexedSizes,t,o=>o.indexMax),r=this._indexedSizes[n];return!r||r.spanSize!==0||r.indexMin>t||r.indexMax<t?0:e?t-r.indexMin+1:r.indexMax-t+1}_insertHeaders(t,e){if(this.isProtected())throw new Error(this._isColumn?hs:ds);if(e<=0)return;const n=this._beginCommit({description:`Insert ${this._isColumn?Dn:Bn}`}),r=this._getState();let o=[...r.headers];o=wn(((i,a,c=1)=>{const h=E.CommonUtils.findEqualOrGreater(i,a,m=>m.max),d=i.slice(0,h),u=[],g=[];if(!i[h])return{preceding:d,modified:g,trailing:u};i[h].min>=a?u.push({...i[h],min:i[h].min+c,max:i[h].max+c}):g.push({...i[h],min:i[h].min,max:i[h].max+c});for(let m=h+1;m<i.length;m++)u.push({...i[m],min:i[m].min+c,max:i[m].max+c});return{preceding:d,modified:g,trailing:u}})(o,t,e));const s=[{min:t,max:t+e}];this._updateState({headers:o,runs:wn(wo([...r?.runs??[],...s]))}),n.commit()}_deleteHeaders(t,e){if(this.isProtected())throw new Error(this._isColumn?hs:ds);const n=this._beginCommit({description:`Delete ${this._isColumn?Dn:Bn}`}),r=this._getState();let o=[...r.headers];o=wn(Kf(o,t,e));const s=[{min:t,max:t+e}];this._updateState({headers:o,runs:wn(wo([...r?.runs??[],...s]))}),n.commit()}beginCommit(t){return this._beginCommit(typeof t=="string"?{description:t}:t)}doBatch(t,e){return this._transactions.doBatch(t,typeof e=="string"?{description:e}:{description:"Update Header",...e})}isClosed(){return this._closed}close(){this._sheetRemoveListener?.(),this._emitter.close(),this._transactionsRemoveListener?.(),this._closed=!0}_getState(){return this._transactions.getState(this)}_beginCommit(t){return this._transactions.beginCommit(t)}_updateState(t){const e=this._transactions.beginCommit();try{e.updateState(this,t),this._onHeaderChange(),e.commit()}catch(n){throw e.rollback(),n}}fromJSON(t){const e=t||{};this._defaultCustomSize=e.defaultSize??-1,this._defaultCustomSize<=0&&(this._defaultCustomSize=-1),this._invalidSizes();const n=this._options.sheet.getStyles().beginPersist();try{const r=[],o=e.headers?e.headers.length:0,s=this._maxDataIndex;for(let i=0;i<o;i++){let a=e.headers[i];if(a.min>=s)continue;let c={min:a.min,max:Math.min(a.max,s)};const h={};a.sz!==void 0&&a.sz!==-1&&(h.sz=a.sz),a.h!==void 0&&(h.h=a.h),a.csz!==void 0&&(h.csz=a.csz),a.cs!==void 0&&(h.cs=a.cs),Object.keys(h).length===0&&(h.cs=!0),c.value=h,r.push(c)}this._updateState({headers:r,defaultCustomSize:this._defaultCustomSize})}finally{n.endPersist()}}toJSON(){if(this._headers.length===0&&this._defaultCustomSize===-1)return null;const t={headers:[]};if(this._defaultCustomSize!==-1&&(t.defaultSize=E.CommonUtils.roundAccurately(this._defaultCustomSize,8)),this._headers.length===0)return t;const e=this._defaultCustomSize,n=this.getSheet().getStyles().beginPersist();for(let r=0;r<this._headers.length;r++){const o=this._headers[r],s=o.value;if(!s)continue;const i={min:o.min,max:o.max};s.sz!==void 0&&s.sz!==e&&(i.sz=E.CommonUtils.roundAccurately(s.sz,8),s.csz!==void 0&&(i.csz=s.csz)),s.h===!0&&(i.h=s.h),Object.keys(i).length>2&&t.headers.push(i)}return n.endPersist(),t}}class Dd{constructor(t,e){this._c=t,this._tvTl=e}tvTl(){return this._tvTl(this._c)}getCoords(){return this._c}}const Pg=l=>{let t="";const e=Ls,n=l.length;for(let r=0;r<n;r++){const o=l[r];o.type==="cell"?t+=e(o.value):t+=o.value}return t},Hg=(l,t=0,e=0)=>{let n="";const r=hg,o=l.length;for(let s=0;s<o;s++){const i=l[s];i.type==="cell"?n+=r(i.value,t,e):n+=i.value}return n};class MS{constructor(t,e,n){this._c=t,this._tokens=e,this._references=n||E.CommonUtils.EmptyArray}getFormulaTextAt(t,e,n=!1){return n?Pg(this._tokens):Hg(this._tokens,t,e)}getTokensAt(t,e,n){let r=this._tokens;return n!==void 0&&(r=((o,s)=>{const i=o.length,a=[];if(s===void 0)return E.CommonUtils.EmptyArray;let c=-1,h=!1;for(let d=0;!h&&d<i;d++){const u=o[d],g=u.evalIndex??Number.MAX_SAFE_INTEGER;if(c===-1){if(g!==s)continue;c=d}g>s?h=!0:a.push(u)}h=!1;for(let d=c-1;!h&&d>=0;d--){const u=o[d];(u.evalIndex??Number.MAX_SAFE_INTEGER)>s?h=!0:a.unshift(u)}return a.length>1&&a[0].type==="whitespace"&&a.shift(),a.length>1&&a[a.length-1].type==="whitespace"&&a.pop(),a})(r,n)),r=((o,s=0,i=0)=>{const a=o.length,c=new Array(a);for(let h=0;h<a;h++){const d=o[h];if(d.type!=="cell"){c[h]=d;continue}const u={...d},g={...u.value};u.value=g,c[h]=u,g.colIndex===Number.MIN_SAFE_INTEGER||g.$colIndex||(g.colIndex+=i),g.rowIndex===Number.MIN_SAFE_INTEGER||g.$rowIndex||(g.rowIndex+=s)}return c})(r,t,e),r}getReferencesAt(t,e){return((n,r=0,o=0)=>{const s=n.length,i=new Array(s);for(let a=0;a<s;a++){const c=n[a];if(typeof c=="string"||c instanceof A.FormulaError.Known){i[a]=c;continue}const h={...c};i[a]=h,h.colStart===Number.MIN_SAFE_INTEGER||h.$colStart||(h.colStart+=o),h.rowStart===Number.MIN_SAFE_INTEGER||h.$rowStart||(h.rowStart+=r),h.colEnd===Number.MIN_SAFE_INTEGER||h.$colEnd||(h.colEnd+=o),h.rowEnd===Number.MIN_SAFE_INTEGER||h.$rowEnd||(h.rowEnd+=r)}return i})(this._references,t,e)}toJSON(){const t=this._c;return[sn(t),this.getFormulaTextAt(t.rowStart,t.colStart)]}getCoords(){return this._c}}class di{constructor(t,e,n){this.groupId=t,this.uuid=e,this.noShift=n}onRemove(t){}getShifted(t){if(!t.after)return null;const e=this.noShift;return e?void 0:{...t.after,value:new di(this.groupId,this.uuid,e)}}getSplit(t,e){}copyTo(t,e){return new di(this.groupId,this.uuid,this.noShift)}canTile(t,e){return!1}}class ui{constructor(t,e,n,r,o,s,i,a,c,h){this.uuid=t,this.spatialsIds=e,this.isRanges=r,this.coords=n,this.sheet=o,this.generation=s,this.handler=i,this.handlerW=a,this.removeListener=c,this.options=h}delete(){this.removeListener()}createRangeEvent(t,e){const n=this;let r;const o=()=>{if(r)return r;const i=n.sheet,a=n.isRanges,c=n.coords;return e||!c||c.length===0?tn(i,i.getEntireRange().getCoords(),null,e):a?(r=i.getRanges(n.coords),r):(r=i.getRange(n.coords[0]),r)},s=t.trigger;return{getSource:o,trigger:s,isTransactional:t.isTransactional??!0,toString:()=>`SheetRangeEvent: ('${s}', ${o().toString()})`,timeStamp:t.timeStamp??Date.now()}}notify(t,e){const n=this.createRangeEvent(t,e),r=this.handler??this.handlerW.deref();try{r?.(n)}catch(o){console.warn(o)}this.options?.once&&this.removeListener()}processRemove(t){const e=this.spatialsIds,n=e.indexOf(t.value.uuid);console.assert(n!==-1,"invalid uuid");const r=this.coords,o=r.slice(0,n).concat(r.slice(n+1)),s=e.slice(0,n).concat(e.slice(n+1));return new ui(this.uuid,s,o,this.isRanges,this.sheet,this.generation,this.handler,this.handlerW,this.removeListener,this.options)}processShift(t){const e=this.spatialsIds.indexOf(t.value.uuid);console.assert(e!==-1,"invalid uuid");const n=[...this.coords];return n[e]={...n[e],...E.CoordUtils.sanitizeRange(t)},new ui(this.uuid,this.spatialsIds,n,this.isRanges,this.sheet,this.generation,this.handler,this.handlerW,this.removeListener,this.options)}processSplit(t){}processMerge(t){}}const Wg=Object.freeze({coords:E.CoordUtils.EmptyCell,topLeft:E.TypesUtils.EmptyTopLeft}),FS=Object.freeze({cell:E.CoordUtils.EmptyCell,ranges:E.CommonUtils.EmptyArray,rangeIndex:0}),Fl=Object.freeze({selection:FS,topLeft:E.TypesUtils.EmptyTopLeft,freezePanes:Wg,showRowHeaders:!0,showColumnHeaders:!0,showRowGridlines:!0,showColumnGridlines:!0,rowHeaderStyle:exports.ISheetView.HeaderTextStyle.One,columnHeaderStyle:exports.ISheetView.HeaderTextStyle.A1,showFormulas:!1,showZeros:!0,zoomScale:100,gridLineColor:null});class Nl{constructor(t){if(this._emitter=null,!t?.sheet)throw new Error("SheetView requires a sheet.");const e=new Yt(this);this._emitter=e,this._sheet=t.sheet,this.clear(!1),t.json&&this._fromJSON(t.json)}addListeners(t,e){return this._emitter.addListeners(t,e)}setTopLeft(t){return this._state.topLeft=Object.freeze({left:t?.left??this._state.topLeft.left,top:t?.top??this._state.topLeft.top}),this._emitter.notify("onTopLeftChange"),this}getTopLeft(){return this._state.topLeft}getFreezePanes(){return this._state.freezePanes}setFreezePanes(t){return this._state.freezePanes=this._mergeFreezePanes(t),this._emitter.notify("onFreezeSplitChange"),this}_mergeFreezePanes(t){return t?{...this._state.freezePanes,coords:{colIndex:t?.coords?.colIndex??this._state.freezePanes.coords.colIndex,rowIndex:t?.coords?.rowIndex??this._state.freezePanes.coords.rowIndex},topLeft:{left:t?.topLeft?.left??this._state.topLeft.left,top:t?.topLeft?.top??this._state.topLeft.top}}:Wg}isShowRowHeaders(){return this._state.showRowHeaders}setShowRowHeaders(t){return this._state.showRowHeaders=t,this._notifyAll(),this}isShowColumnHeaders(){return this._state.showColumnHeaders}setShowColumnHeaders(t){return this._state.showColumnHeaders=t,this._notifyAll(),this}isShowRowGridlines(){return this._state.showRowGridlines}setShowRowGridlines(t){return this._state.showRowGridlines=t,this._notifyAll(),this}isShowColumnGridlines(){return this._state.showColumnGridlines}setShowColumnGridlines(t){return this._state.showColumnGridlines=t,this._notifyAll(),this}getRowHeaderStyle(){return this._state.rowHeaderStyle}setRowHeaderStyle(t){return this._state.rowHeaderStyle=t,this._notifyAll(),this}getColumnHeaderStyle(){return this._state.columnHeaderStyle}setColumnHeaderStyle(t){return this._state.columnHeaderStyle=t,this._notifyAll(),this}getZoomScale(){return this._state.zoomScale}setZoomScale(t){return this._state.zoomScale=t,this._notifyAll(),this}isShowFormulas(){return this._state.showFormulas}setShowFormulas(t){return this._state.showFormulas=t,this._notifyAll(),this}isShowZeros(){return this._state.showZeros}setShowZeros(t){return this._state.showZeros=t,this._notifyAll(),this}getGridLineColor(){return this._state.gridLineColor}setGridLineColor(t){return this._state.gridLineColor=t,this._notifyAll(),this}setRangeSelection(t){return this._state.selection=t,this._emitter.notify("onRangeSelectionChange"),this}getRangeSelection(){return this._state.selection}getMovableSelection(){return this._movableSelection}setMovableSelection(t){const e=this._movableSelection;return this._movableSelection=Object.freeze(t??[]),E.CommonUtils.isEqualArrays(e,this._movableSelection)||this._emitter.notify("onMovableSelectionChange"),this}selectMovables(t,e=!1){const n=new Set(this._sheet.getMovables().getItems());let r=null,o=!1;if(e){r=[...this._movableSelection];for(let s=t.length-1;s>=0;s--){const i=t[s];let a=r.indexOf(i);if(a!==s){if(o=!0,!n.has(i))throw new Error(`Movable ${i.getName()} not found in sheet.`);a!==-1&&r.splice(a,1),r.unshift(i)}}}else o=!E.CommonUtils.isEqualArrays(t,this._movableSelection),r=[...t];o&&(this._movableSelection=r,this._emitter.notify("onRangeSelectionChange"),this._emitter.notify("onMovableSelectionChange"))}unselectMovables(t){const e=this._movableSelection,n=[];for(let r=0;r<e.length;r++){const o=e[r];t.indexOf(o)===-1&&n.push(o)}return e.length!==n.length&&(this._movableSelection=n,this._emitter.notify("onRangeSelectionChange"),this._emitter.notify("onMovableSelectionChange")),this}_notifyAll(){const t=this._emitter;t.notify("onRangeSelectionChange"),t.notify("onTopLeftChange"),t.notify("onFreezeSplitChange"),t.notify("onAnyChange")}toJSON(){const t={},e=Object.keys(this._state);for(let r=0;r<e.length;r++){const o=this._state[e[r]];o!=null&&o!==Fl[e[r]]&&(t[e[r]]=o)}delete t.movableSelection,delete t.gridLineColor,this._state.gridLineColor instanceof kt&&(t.gridLineColor=this._state.gridLineColor.toString()),delete t.topLeft,!this._state.topLeft||this._state.topLeft.left===0&&this._state.topLeft.top===0||(t.topLeft={left:this._state.topLeft.left??0,top:this._state.topLeft.top??0}),delete t.selection;const n=this._state.selection;if(n){let r={};!n.cell||n.cell.colIndex===0&&n.cell.rowIndex===0||(r.cell=Oo(n.cell)),n.ranges&&n.ranges.length>0&&(r.ranges=Ta(n.ranges),n.rangeIndex!==void 0&&n.rangeIndex!==-1&&n.rangeIndex!==0&&(r.rangeIndex=n.rangeIndex)),Object.keys(r).length>0&&(t.selection=r)}if(delete t.freezePanes,this._state.freezePanes&&(this._state.freezePanes.coords.colIndex!==0||this._state.freezePanes.coords.rowIndex!==0)){const r={};this._state.freezePanes.coords.colIndex!==0&&(r.c=this._state.freezePanes.coords.colIndex),this._state.freezePanes.coords.rowIndex!==0&&(r.r=this._state.freezePanes.coords.rowIndex),this._state.freezePanes.topLeft.left!==0&&(r.x=this._state.freezePanes.topLeft.left),this._state.freezePanes.topLeft.top!==0&&(r.y=this._state.freezePanes.topLeft.top),t.freezePanes=r}return Object.keys(t).length===0?null:t}_fromJSON(t){let e=JSON.parse(JSON.stringify(t||{}));e?.zoomScale&&(e.zoomScale=E.CommonUtils.roundAccurately(parseFloat(t.zoomScale),2));const n=r=>{const o=this._sheet.getRange(r).getBounds(),s=(e.zoomScale??100)/100;return{x:o.x*s,y:o.y*s,width:o.width*s,height:o.height*s}};if(typeof e?.gridLineColor=="string"&&(this._sheet?.getStyles()?e.gridLineColor=this._sheet.getStyles().parseColor(t.gridLineColor):console.warn("Style was created with no styles so gridLineColor can't be parsed.")),e.topLeft)if(typeof e.topLeft=="string"){const r=n(mr(e.topLeft));e.topLeft={left:r.x,top:r.y}}else e.topLeft=Object.freeze({left:e.topLeft?.left??e?.x??0,top:e.topLeft?.top??e?.y??0});if(e.selection){let r=mr(e.selection.cell??"A1");if(e.selection.cell=r,e.selection.ranges){let o=Math.max(0,Math.min(e.selection.rangeIndex??e.selection.ranges?.length-1,e.selection.ranges?.length-1));e.selection.rangeIndex=o;let s=!1;for(let i=0;i<e.selection.ranges.length;i++){const a=he(e.selection.ranges[i]);e.selection.ranges[i]=a,i===o&&r&&!E.CoordUtils.isCellWithinRange(r,a)&&(s=!0)}if(s)for(let i=0;s&&i<e.selection.ranges.length;i++)E.CoordUtils.isCellWithinRange(r,e.selection.ranges[i])&&(s=!1,e.selection.rangeIndex=i);s&&(e.selection.ranges.push(E.CoordUtils.cellToRange(r)),e.selection.rangeIndex=e.selection.ranges.length-1)}else delete e.selection.rangeIndex}if(e.freezePanes){const r=e.freezePanes;if(typeof r.coords=="string"&&(r.coords=mr(r.coords)),typeof r.topLeft=="string"){const o=mr(r.topLeft),s=n({colIndex:o.colIndex+1,rowIndex:o.rowIndex+1}),i=n({colIndex:(r?.coords?.colIndex??-1)+1,rowIndex:(r?.coords?.rowIndex??-1)+1});r.topLeft={left:0,top:0},e.topLeft||(e.topLeft={top:0,left:0}),o.colIndex>0&&(r.topLeft.left=e.topLeft?.left??0,e.topLeft.left=s.x-i.x+r.topLeft.left),o.rowIndex>0&&(r.topLeft.top=e.topLeft?.top??0,e.topLeft.top=s.y-i.y+r.topLeft.top)}e.freezePanes={coords:{colIndex:r?.coords?.colIndex??e.freezePanes?.c??0,rowIndex:r?.coords?.rowIndex??e.freezePanes?.r??0},topLeft:{left:r?.topLeft?.left??e.freezePanes?.x??0,top:r?.topLeft?.top??e.freezePanes?.y??0}}}this.update(e)}clear(t=!0){return this._state={...Fl},this._movableSelection=Object.freeze([]),t&&this._notifyAll(),this}update(t){return this._state={...Fl,...this._state,...t},this._state.freezePanes=this._mergeFreezePanes(this._state.freezePanes),this._state.zoomScale=Math.min(400,Math.max(10,this._state.zoomScale)),this._notifyAll(),this}get isISheetView(){return!0}}async function Ld(){const{getCrypto:l}=await Promise.resolve().then(()=>require("./B1KoTcvtAGrHbRmP.cjs"));return l()}const Ud=async(l,t,...e)=>{const n=NS(...e);return l.subtle.digest(t,n)},NS=(...l)=>{const t=l.reduce((r,o)=>r+o.byteLength,0),e=new Uint8Array(t);let n=0;return l.forEach(r=>{e.set(new Uint8Array(r),n),n+=r.byteLength}),e.buffer},zd=l=>{const t=new Uint8Array(l);let e="";for(let n=0;n<t.byteLength;n++)e+=String.fromCharCode(t[n]);return btoa(e)};class Xe{static{this.DefaultAlgo="SHA-512"}static{this.DefaultSpinCount=1e5}static async generateSaltAndHash(t,e=Xe.DefaultAlgo,n=Xe.DefaultSpinCount){if(!t)return null;const r=(await Ld()).getRandomValues(new Uint8Array(16)),o=zd(r.buffer);return{salt:o,hash:await Xe._convertPasswordToHash(t,o,e,n)}}static async verifyPassword(t,e,n=Xe.DefaultAlgo,r=Xe.DefaultSpinCount){if(!t||!e)throw new E.NullNotAllowedError;return((o,s)=>{const i=o.length,a=s.length;let c=i===a?0:1;for(let h=0;h<Math.max(i,a);h++)c|=o.charCodeAt(h%i)^s.charCodeAt(h%a);return c===0})(await Xe._convertPasswordToHash(t,e.salt,n,r),e.hash)}static async _convertPasswordToHash(t,e,n,r){const o=await Ld();n=n.toUpperCase();const s=(c=>{const h=new ArrayBuffer(2*c.length),d=new DataView(h);for(let u=0;u<c.length;u++)d.setUint16(2*u,c.charCodeAt(u),!0);return new Uint8Array(h)})(t),i=(c=>{const h=atob(c),d=new Uint8Array(h.length);for(let u=0;u<h.length;u++)d[u]=h.charCodeAt(u);return d.buffer})(e);let a=await Ud(o,n,i,s.buffer);for(let c=0;c<r;c++){const h=new Uint32Array([c]).buffer;a=await Ud(o,n,a,h)}return zd(a)}}class jg{constructor(t,e=!1){this._emitter=null,this._emitter=new Yt(this),this.fromJSON(t),this._isReadOnly=e}async lock(t,e,n,r){if(this._isReadOnly)return this;if(this.isLocked()&&!this._isPaused)throw new Error("Cannot lock an already locked object. Use unlock first.");try{this._validatePassword()}catch{throw new Error("A password is already set. Unlock first to change.")}let o;if(e){const s=await Xe.generateSaltAndHash(e,n,r);o={salt:s.salt,hash:s.hash},n&&(o.algorithm=n),r&&(o.spinCount=r)}else o=null;return t=t??{},this._updateProperties(t),this._properties=t,this._password=o,this._emitter.notify("onLockChange"),this._emitter.notify("onChange"),this}async unlock(t){if(this._isReadOnly)throw new Error("Cannot unlock a readonly workbook.");return await this._validatePassword(t),this._clearProperties(),this._password=null,this._identities=null,this._password=null,this._emitter.notify("onLockChange"),this._emitter.notify("onChange"),this}checkPassword(t){return this._validatePassword(t)}hasPassword(){return this._password!==null}async pause(t){return this._emitter.notify("onLockChange"),this._emitter.notify("onChange"),await this._validatePassword(t),this._password&&(this._isPaused=!0),this}resume(){return this._isPaused=!1,this}isPaused(){return this._isPaused}isLocked(){return this._properties!==null&&!this._isPaused}isReadOnly(){return this._isReadOnly}async _validatePassword(t){const e=this._password;if(!(t&&t.length!==0||e&&e.hash))return!0;if(!t)throw new Error("Password is required.");if(!await Xe.verifyPassword(t,{salt:e.salt,hash:e.hash},e.algorithm,e.spinCount))throw new Error("Invalid password.");return!0}getProperties(){return this._properties}_isPropertyAllowed(t){if(this._isReadOnly)return!1;if(!this.isLocked())return!0;const e=this._properties[t];return typeof e=="boolean"&&e}_updateProperties(t){this._properties={...t,...this._properties??{}}}_clearProperties(){this._properties=null}addListeners(t,e){return this._emitter.addListeners(t,e)}fromJSON(t){this._password=null,this._identities=null,this._isPaused=!1,this._properties=null,this._fromJSON(t??null),t&&(t.password&&(this._password=t.password),t.identities&&(this._identities=t.identities))}_fromJSON(t){}_toJSON(t){return t}toJSON(){if(!this._properties)return null;let t={};return t=this._toJSON(t)??{},this._password&&(t.password=this._password),this._identities&&(t.identities=this._identities),t}}const OS=Object.freeze({selectLockedCells:!0,selectUnlockedCells:!0,autoFilter:!1,deleteColumns:!1,deleteRows:!1,formatCells:!1,formatColumns:!1,formatRows:!1,insertColumns:!1,insertHyperlinks:!1,insertRows:!1,objects:!1,pivotTables:!1,scenarios:!1,sheet:!1,sort:!1,verifier:null});class Pd extends jg{isAutoFilterAllowed(){return this._isPropertyAllowed("autoFilter")}isDeleteColumnsAllowed(){return this._isPropertyAllowed("deleteColumns")}isDeleteRowsAllowed(){return this._isPropertyAllowed("deleteRows")}isFormatCellsAllowed(){return this._isPropertyAllowed("formatCells")}isFormatColumnsAllowed(){return this._isPropertyAllowed("formatColumns")}isFormatRowsAllowed(){return this._isPropertyAllowed("formatRows")}isInsertColumnsAllowed(){return this._isPropertyAllowed("insertColumns")}isInsertHyperlinksAllowed(){return this._isPropertyAllowed("insertHyperlinks")}isInsertRowsAllowed(){return this._isPropertyAllowed("insertRows")}isObjectsAllowed(){return this._isPropertyAllowed("objects")}isPivotTablesAllowed(){return this._isPropertyAllowed("pivotTables")}isScenariosAllowed(){return this._isPropertyAllowed("scenarios")}isSortAllowed(){return this._isPropertyAllowed("sort")}isSelectLockedCellsAllowed(){return!1}isSelectUnlockedCellsAllowed(){return!1}_updateProperties(t){super._updateProperties(t),this._properties=t}_clearProperties(){super._clearProperties(),this._properties=null}_fromJSON(t){super._fromJSON(t),this._properties=t}_toJSON(t){let e=this._properties;if(e){t={...t,...e};const n=Object.keys(e);for(let r=0;r<n.length;r++){const o=e[n[r]];o!=null&&o!==OS[n[r]]&&(t[n[r]]=o)}}return super._toJSON(t)}}class Bo{constructor(t,e,n){this._coords=Object.freeze(t),this._sheet=e,this._readOnly=n?.readOnly??null}_createRanges(t,e){let n=this._options;return e&&(n={...this._options,getOptions:on(this._options?.getOptions,e)}),new Bo(t,this._sheet,n)}_createRange(t,e){let n=this._options;return e&&(n={...this._options,getOptions:on(this._options?.getOptions,e)}),new Do(t,this._sheet,n)}_validateWrite(){const t=this._readOnly;if(t)throw new Error(t)}getCoords(){return this._coords}[Symbol.iterator](){const t=this.entries({excludeCellDetails:!0});return{next(){const e=t.next();return e.done?Ct:{done:!1,value:e.value.value}},[Symbol.iterator](){return this}}}entries(t){const e=this.getCoords(),n=t?.reverse??!1;let r=n?e.length-1:0;const o=this;let s=o._createRange(e[r]),i=s.entries(t),a=i.next();return{next(){let c=a;do{if(a.done){if(r=n?r-1:r+1,r>=e.length||r<0)return a=Ct,c;s=o._createRange(e[r]),i=s.entries(t)}a=i.next()}while(a.done);return c},[Symbol.iterator](){return this}}}async select(t){const e=await this._sheet._autoSelect(t??!0,vt(this.getCoords()));return this._createRanges(e)}calculate(){const t=this.getCoords();return this._sheet._calculate(t),this}addListener2(t,e){return this._sheet._addRangesListeners2(this.getCoords(),t,e,!0)}addListener(t,e){return this._sheet._addRangesListeners(this.getCoords(),t,e)}find(t,e){return this._sheet._find(this.getCoords(),t,e)}getFlattened(t){const e=this.getCoords();if(e.length===1)return this._createRanges(e,t);const n=t?.orientations??A.IRange.Orientations.Both,r=n===A.IRange.Orientations.Both,o=r?Number.MAX_SAFE_INTEGER:1,s=n===A.IRange.Orientations.Row?A.IRange.Orientation.Column:A.IRange.Orientation.Row;let i=Ql(e,o,s);if(r){const a=Ql(e,o,A.IRange.Orientation.Column);a.length<i.length&&(i=a)}return this._createRanges(i,t)}getVisible(t){const e=this._sheet._getVisible(this.getCoords(),t);return e&&e.length!==0?this._createRanges(e,t):null}getFixed(t){const e=[],n=this.getCoords();for(let r=0;r<n.length;r++)e.push(Tg(n[r],t));return this._createRanges(e,t)}autoFit(t){return this._validateWrite(),this._sheet._autoFit(this.getCoords(),t),this}clear(t,e){return this._validateWrite(),this._sheet._clear(this.getCoords(),t,e),this}updateStyle(t,e){return this._validateWrite(),this._sheet._updateStyles(this.getCoords(),t,e),this}getStyleUpdater(){return this._sheet._getStyleUpdater(this.getCoords())}merge(t){return this._validateWrite(),this._sheet._merge(this.getCoords(),t),this}unmerge(t){return this._validateWrite(),this._sheet._unmerge(this.getCoords(),t),this}getMerges(){return this._sheet._getMerges(this.getCoords(),this._options?.excludeHidden??!1)}insert(t,e){return this._validateWrite(),this._sheet._insertCells(this.getCoords(),t,e),this}delete(t,e){return this._validateWrite(),this._sheet._deleteCells(this.getCoords(),t,e),this}async insertFrom(t,e){this._validateWrite();const n=await this._sheet._insertFrom(this.getCoords(),t,e);return n?this._createRanges([n]):null}async copyFrom(t,e){const n=await this._sheet._copyFrom(this.getCoords()[0],t,e);return n?this._createRanges([n]):null}isInvalidAny(){const t=this.getCoords();if(!t||t.length===0)return!0;for(let e=0;e<t.length;e++)if(t[e]===null)return!0;return!1}getSnapshot(t){return this._sheet._getSnapshot(this.getCoords(),t)}getEntireRows(t,e){return this._createRanges(ii(this.getCoords(),this._sheet._entireCoords,A.IRange.Orientation.Column,t),e)}getEntireColumns(t,e){return this._createRanges(ii(this.getCoords(),this._sheet._entireCoords,A.IRange.Orientation.Row,t),e)}getDefaultShiftOrientation(){return this._sheet._getDefaultShiftOrientation(this.getCoords()[0])}getCount(){return this.getCoords()?.length??0}getCounts(t){return this._sheet._contentCounts(this.getCoords(),t,this._options?.excludeHidden??!1)}isContentful(){return this._sheet._isContentful(this.getCoords(),this._options?.excludeHidden??!1)}getRowCount(){return nd(this.getCoords(),A.IRange.Orientation.Row)}getColumnCount(){return nd(this.getCoords(),A.IRange.Orientation.Column)}isEntireRowsAny(){return bo(this.getCoords(),this._sheet._entireCoords,!1)}isEntireColumnsAny(){return vo(this.getCoords(),this._sheet._entireCoords,!1)}isEntireRows(){return bo(this.getCoords(),this._sheet._entireCoords,!0)}isEntireColumns(){return vo(this.getCoords(),this._sheet._entireCoords,!0)}isOverlapping(){return uo(this.getCoords())}at(t){const e=this.getCoords();if(t<0||t>e.length-1)throw new E.OutOfBoundsError;return this._createRange(e[t])}isReadOnly(){return this._readOnly!==null}isInvalid(){return!1}getA1(){return lg(this.getCoords(),this._sheet._entireCoords,Ze,An)}getSheet(){return this._sheet}doBatch(t,e){return this._sheet.doBatch(n=>t(n),typeof e=="string"?e:{description:"Ranges Update",...e})}get[Symbol.toStringTag](){return"[SheetRanges]"}toString(){return this.getA1()}get isICellRanges(){return!0}}class Do{constructor(t,e,n){this._coords=Object.freeze(t),this._sheet=e,this._readOnly=n?.readOnly??null}getCoords(){return this._coords}_createRange(t,e){const n=this._sheet;if(!t)return tn(n,n._entireCoords);if(n._validateCoords(t),n._closed)return tn(null,n._entireCoords,t);let r=this._options;return e&&(r={...this._options,getOptions:on(this._options?.getOptions,e)}),new Do(t,this._sheet,r)}_createRanges(t,e){let n=this._options;return e&&(n={...this._options,getOptions:on(this._options?.getOptions,e)}),new Bo(t,this._sheet,n)}_deriveRanges(t,e){const n=this.getCoords();let r=n;return e&&(r=e(n),!r)?null:this._createRanges(r,t)}_deriveRange(t,e,n){if(!t)return this;let r=this._sheet._rangeToCoords(t);if(!r)return this;const o=this.getCoords();if(go(r,o))return this;if(n){const a=n(r,o);if(!a)return this;r={...o,...a}}var s,i;return s=r,(i=o)&&(i.$colStart===void 0?delete s.$colStart:s.$colStart=i.$colStart,i.$rowStart===void 0?delete s.$rowStart:s.$rowStart=i.$rowStart,i.$colEnd===void 0?delete s.$colEnd:s.$colEnd=i.$colEnd,i.$rowEnd===void 0?delete s.$rowEnd:s.$rowEnd=i.$rowEnd),this._createRange(r,on(this._options?.getOptions,e))}_validateMaxSize(t=5e4){const e=this.getCoords(),n=this._sheet,r=n._colHeaders.getVisibleCount(e.colStart,e.colEnd);if(n._rowHeaders.getVisibleCount(e.rowStart,e.rowEnd)*r>t)throw new Error(mg(t))}[Symbol.iterator](){const t=this.entries({excludeCellDetails:!0});return{next(){const e=t.next();return e.done?Ct:{done:!1,value:e.value.value}},[Symbol.iterator](){return this}}}entries(t){const e=this.getCoords();let n=e;const r=this._sheet;if(t?.address){const s=r._rangeToCoords(t?.address);if(!s)throw new Error(Eo(t?.address));if(n=E.CoordUtils.intersectRanges(s,e),!n)return Dt}n.colEnd<n.colStart&&(n.colStart=e.colStart,n.colEnd=e.colEnd),n.rowEnd<n.rowStart&&(n.rowStart=e.rowStart,n.rowEnd=e.rowEnd);const o=this._options?.excludeHidden??!1;return r._cellIterator({excludeHidden:o,...t,includeRangeTypes:!t?.excludeCellDetails,bounds:n})}forEach(t,e){if(!t)return;const n=this.entries(e);let r=n.next();for(;!r.done;){const o=r.value,s=t(o.value,o.context);if(s)return s.break;r=n.next()}}_validateWrite(){const t=this._readOnly;if(t)throw new Error(t)}updateCells(t,e,n){this._validateWrite();const r=this.getCoords();n||(n=r);const o=this._sheet,s=o._isDataColumn,i={majorStart:s?r.colStart:r.rowStart,majorEnd:s?r.colEnd:r.rowEnd,minorStart:s?r.rowStart:r.colStart,minorEnd:s?r.rowEnd:r.colEnd},a=(e?.orientation??A.IRange.Orientation.Row)===A.IRange.Orientation.Column!==s,c=Zs(Array.isArray(t)?t:[[t]],a,i);return o._updateTuples(c,{description:e?.description??`Set ${E.CoordUtils.isSingleCell(n)?"Cell":"Range"} ${Ze(n,o._entireCoords)}`,...e},null,{isCell:!0}),this}setValues(t,e){if(!Array.isArray(t))throw new Error("'setValues' expects a 2d array; when working with a single value use 'setValue'.");return this._setValueOrValues(t,e)}setValue(t,e){if(Array.isArray(t))throw new Error(kh);return this._setValueOrValues(t,e)}setFormula(t,e){if(Array.isArray(t))throw new Error(kh);return this._setValueOrValues(t,e)}_setValueOrValues(t,e){this._validateWrite();let n=this.getCoords(),r=this;const o=this._sheet,s=o._isDataColumn,i=(e?.orientation??A.IRange.Orientation.Row)===A.IRange.Orientation.Column,a=Array.isArray(t);if(e?.skipBoundsCheck&&a){const u=t;let g=Math.max(0,u.length-1),m=0;for(let S=0;S<u.length;S++)m=Math.max(m,u[S].length-1);const f=i?n.colStart:n.rowStart,_=i?n.rowStart:n.colStart,p={...n,colEnd:i?f+g:_+m,rowEnd:i?_+m:f+g};E.CoordUtils.isEqualRanges(p,n)||(n=p,r=this._deriveRange(p,e))}const c={majorStart:s?n.colStart:n.rowStart,majorEnd:s?n.colEnd:n.rowEnd,minorStart:s?n.rowStart:n.colStart,minorEnd:s?n.rowEnd:n.colEnd},h=i!==s;let d=null;return d=a?Zs(Array.isArray(t)?t:[[t]],h,c):Ts(t,c,s),o._updateTuples(d,{description:e?.description??`Set ${E.CoordUtils.isSingleCell(n)?"Value":"Values"} ${Ze(n,o._entireCoords)}`,...e}),r}getValues(t){this._validateMaxSize(t?.maxSize);const e=this.getCoords(),n=this._sheet;return ml(n._cellIterator.bind(this._sheet),e,!1,t)}getValue(t){const e=this.getCoords();return this._sheet._getScalar(e.rowStart,e.colStart,t?.asJSDate)}calculate(t){return this._sheet._calculate([this.getCoords()],{full:t}),this}getCells(t){this._validateMaxSize(t?.maxSize);const e=this.getCoords(),n=this._sheet;return ml(n._cellIterator.bind(this._sheet),e,!0,t)}getCell(t){const e=this.getCoords();let n=e.colStart,r=e.rowStart;const o=this._sheet;if(t){const i=o._cellToCoords(t);if(!E.CoordUtils.isCellWithinRange(i,e))throw new Error("The cell is outside of the bounds of the range.");n=i.colIndex,r=i.rowIndex}const s=ml(o._cellIterator.bind(this._sheet),{colStart:n,rowStart:r,colEnd:n,rowEnd:r},!0,null);return s.length===0?o._emptyCell:s[0][0]}async select(t){const e=this._sheet,n=await e._autoSelect(t??!0,vt([this.getCoords()]));return this._createRange(n[0])}find(t,e){return this._sheet._find([this.getCoords()],t,e)}getFixed(t){return this._createRange(Tg(this.getCoords(),t))}getSurrounding(t){const e=this._sheet;return this._createRange(e._surroundingRegion(this.getCoords(),t))}getExtended(t,e){let n=null;const r=this.getCoords();switch(t){case A.IRange.Direction.Up:n={colIndex:r.colStart,rowIndex:r.rowStart};break;case A.IRange.Direction.Down:n={colIndex:r.colStart,rowIndex:r.rowEnd};break;case A.IRange.Direction.Left:n={colIndex:r.colStart,rowIndex:r.rowStart};break;case A.IRange.Direction.Right:n={colIndex:r.colEnd,rowIndex:r.rowStart}}const o=this._sheet,s=e?o._cellToCoords(e):n;if(!E.CoordUtils.isCellWithinRange(s,r))throw new Error("Invalid cell.");let i=o._extendRange(t,s);return i=E.CoordUtils.unionRanges(r,i),this._createRange(i)}getEntireRows(t,e){const n=this._sheet;return this._createRange(ii([this.getCoords()],n._entireCoords,A.IRange.Orientation.Column,t)[0],e)}getEntireColumns(t,e){const n=this._sheet;return this._createRange(ii([this.getCoords()],n._entireCoords,A.IRange.Orientation.Row,t)[0],e)}getRowHeaders(t){const e=this.getCoords();return this._sheet._rowHeaders.getRange(e,t)}getColumnHeaders(t){const e=this.getCoords();return this._sheet._colHeaders.getRange(e,t)}getDifferences(t,e){return this._deriveRanges(e,n=>{const r=this._sheet,o=r._rangeToCoords(t),s=ta(n,o,A.IRange.Orientation.Row);return r._getVisible(s,e)})}getIntersect(t,e){return this._deriveRange(t,e,(n,r)=>E.CoordUtils.intersectRanges(n,r))}getUnion(t,e){return this._deriveRange(t,e,(n,r)=>E.CoordUtils.unionRanges(n,r))}getResizeTo(t,e,n){if(e=e??0,(t=t??0)<0||e<0)throw new Error("Invalid range. The Range must be at a size of at least 1x1'.");const r=this.getCoords();return this._deriveRange({colStart:r.colStart,rowStart:r.rowStart,colEnd:e+r.colStart-1,rowEnd:t+r.rowStart-1},n)}getResizeBy(t,e,n){t=t??0,e=e??0;const r=this.getCoords();return this._deriveRange({colStart:r.colStart,rowStart:r.rowStart,colEnd:r.colEnd+e,rowEnd:r.rowEnd+t},n)}getOffsetTo(t,e,n){const r=this.getCoords(),o=e,s=t,i={colStart:o,rowStart:s,colEnd:r.colEnd-r.colStart+o,rowEnd:r.rowEnd-r.rowStart+s};return this._deriveRange(i,n)}getOffsetBy(t,e,n){const r=this.getCoords(),o=r.colStart+t,s=r.rowStart+e,i={colStart:o,rowStart:s,colEnd:r.colEnd-r.colStart+o,rowEnd:r.rowEnd-r.rowStart+s};return this._deriveRange(i,n)}getUsedRange(t){const e=this._sheet._getUsedCoords(t);if(!e)return null;const n=E.CoordUtils.intersectRanges(e,this.getCoords());return n?this._deriveRange(n,t):null}isEmpty(){const t=this._sheet._getUsedCoords();return t?!E.CoordUtils.intersectRanges(t,this.getCoords()):!0}getColumnStart(){return this.getCoords().colStart}getRowStart(){return this.getCoords().rowStart}getColumnEnd(){return this.getCoords().colEnd}getRowEnd(){return this.getCoords().rowEnd}getColumnCount(){const t=this.getCoords();return t.colEnd-t.colStart+1}getRowCount(){const t=this.getCoords();return t.rowEnd-t.rowStart+1}getVisible(t){return this._deriveRanges(t,e=>this._sheet._getVisible([e],t))}isContentful(t){return this._sheet._isContentful([this.getCoords()],t,this._options?.excludeHidden??!1)}getCounts(t){return this._sheet._contentCounts([this.getCoords()],t,this._options?.excludeHidden??!1)}getCount(t){return this._sheet._getCount([this.getCoords()],t,this._options?.excludeHidden??!1)}isEntireRows(){const t=this._sheet;return bo([this.getCoords()],t._entireCoords,!0)}isEntireColumns(){const t=this._sheet;return vo([this.getCoords()],t._entireCoords,!0)}isEntireRange(){const t=this.getCoords(),e=this._sheet;return vo([t],e._entireCoords,!0)&&bo([t],e._entireCoords,!0)}getWidth(){const t=this._coords;return t.colEnd-t.colStart+1}getHeight(){const t=this._coords;return t.rowEnd-t.rowStart+1}get size(){const t=this._coords;return t.colEnd-t.colStart+1*(t.rowEnd-t.rowStart+1)}getBounds(){return this._sheet._getBoundsAtCoords(this.getCoords())}isInvalid(){return!1}getDefaultShiftOrientation(){return this._sheet._getDefaultShiftOrientation(this.getCoords())}getDefaultSortCriteria(t,e){return this._sheet._getDefaultSortCriteria(this.getCoords(),t,e)}getMerges(){return this._sheet._getMerges([this.getCoords()],this._options?.excludeHidden??!1)}getSnapshot(t){return this._sheet._getSnapshot([this.getCoords()],t)}isReadOnly(){return this._readOnly!==null}addListener2(t,e){return this._sheet._addRangesListeners2([this.getCoords()],t,e,!1)}addListener(t,e){return this._sheet._addRangesListeners([this.getCoords()],t,e)}getSheet(){return this._sheet}autoFill(t,e){this._validateWrite();const n=this._sheet,r=n._rangeToCoords(t,()=>[],!0);return n._autoFill(this.getCoords(),r,e)?this._createRange(r):this}autoFit(t){return this._validateWrite(),this._sheet._autoFit([this.getCoords()],t),this}clear(t,e){return this._validateWrite(),this._sheet._clear([this.getCoords()],t,e),this}setHyperlink(t,e){return this._validateWrite(),this._sheet._setHyperlinks([this.getCoords()],t,e),this}setComments(t,e){return this._validateWrite(),this._sheet._setComments([this.getCoords()],t,e),this}updateStyle(t,e){return this._validateWrite(),this._sheet._updateStyles([this.getCoords()],t,e),this}getStyleUpdater(){return this._sheet._getStyleUpdater([this.getCoords()])}merge(t){return this._validateWrite(),this._sheet._merge([this.getCoords()],t),this}unmerge(t){return this._validateWrite(),this._sheet._unmerge([this.getCoords()],t),this}insert(t,e){return this._validateWrite(),this._sheet._insertCells([this.getCoords()],t,e),this}async insertFrom(t,e){this._validateWrite();const n=this._sheet,r=await n._insertFrom([this.getCoords()],t,e);return r?this._createRange(r):null}async copyFrom(t,e){this._validateWrite();const n=this._sheet,r=await n._copyFrom(this.getCoords(),t,e);return r?this._createRange(r):null}delete(t,e){return this._validateWrite(),this._sheet._deleteCells([this.getCoords()],t,e),this}sort(t){this._validateWrite();const e=this.getCoords(),n=this._sheet._sort(e,t);return E.CoordUtils.isEqualRanges(n,e)?this:this._createRange(n)}doBatch(t,e){return this._sheet.doBatch(n=>t(n),typeof e=="string"?e:{description:"Range Update",...e})}startIncrementalUpdates(t){return this._sheet._createIncrementalUpdater(t,this)}getA1(){const t=this._sheet;return Ze(this.getCoords(),t._entireCoords)}get[Symbol.toStringTag](){return"[SheetRange]"}toString(){const t=this._sheet;return Ze(this.getCoords(),t._entireCoords)}get isICellRange(){return!0}}const kS=Math.pow(2,14),BS=Math.pow(2,20),Hd=l=>`${l}`,Wd=l=>xe(l),jd=l=>`${l+1}`;let DS=0;const Vd=()=>[];let LS=0;class Ar{constructor(t){this._lastTransactionUUID=null,this._emitter=null,this._initializing=!0,this._emitterMovables=null,this._rangesListenerSorted=null,this._lastCellDecoded={address:null,coords:null},this._lastCellSelected={coords:null,cell:null},this._lastCellRead={coords:null,cell:null},this._lastValueRead={range:null,isDateOrTime:null},this._lastGetRangeRead={},this._lastUsedCoordsRead={coords:null,range:null},this._lastActiveRead={selection:null,range:null,ranges:null},this._lastRangeRead={address:null,range:null,ranges:null},this._isDataColumn=!0,this._isDate1904=!1,this._colHeaders=null,this._colHeadersShiftCallback=null,this._colHeadersListener=null,this._colHeadersRemoveListener=null,this._rowHeaders=null,this._rowHeadersShiftCallback=null,this._rowHeadersListener=null,this._rowHeadersRemoveListener=null,this._closed=!1;const e=Object.freeze({...t});pa._validate(!0),this._transactions=e.transactions??new ve,this._ownTransactions=!e.transactions;const n=this._beginCommit({description:"New Sheet"}),r=this;try{this._entireCoords=Object.freeze({colStart:0,rowStart:0,colEnd:(e.maxColumns??kS)-1,rowEnd:(e.maxRows??BS)-1}),this._strings=e.strings??new Ei,this._ownStrings=!e.strings;const o=e.styles??new Fr;this._styles=o,this._ownStyles=!e.styles,this._names=e.names??new Lg({addressToRanges:i=>r.getRanges(i),getCurrentScope:()=>r.getName(),isReadOnly:()=>r._options.readonly??!1,transactions:r._transactions}),this._ownNames=!e.names,this._namesRemoveListener=this._names.addListeners({onCollectionChange:i=>{r._calculateFull()}},{transactional:!1}),this._calculation=e.calculation??new Da({getNamed:(i,a)=>{$d.address=i,$d.scope=a;const c=this._names.getItems({address:i,scope:a});return c&&c.length!==0?c[0].getRanges().getCoords():null},getSheetIndex:i=>i===void 0||i===r.getName()?1:0,getSheetCount:()=>1,isDate1904:()=>r.isDate1904(),strings:r._strings,transactions:r._transactions}),this._ownsCalculation=!e.calculation,this._normalStyleRanged=o.getNamed(exports.IStyle.BuiltInName.Normal).getRanged(),this._resources=e.resources??new Oa,this._ownResources=!e.resources;const s=async()=>{this._ownsCalculation&&await this._calculation.start(),this._starting=null};this._starting=s(),e.container?.setNameChangeCallback&&e.container.setNameChangeCallback(()=>{r._emitter.notify("onNameChange");const i=this._getState().rangesListenerMap,a=new Map;i.forEach((h,d)=>{a.set(d,{beforeState:h,afterState:h})});const c=this._beginCommit({description:"Set Name"});c.updateState(r,{}),c.commit({viewAfter:{ranges:[r._entireCoords],listeners:a},forceAmend:!0}),r._calculateFull()}),e.container?.setVisibilityCallback&&e.container.setVisibilityCallback(()=>{r._emitter.notify("onVisibilityChange")}),e.container?.setIndexCallback&&e.container.setIndexCallback(()=>{r._calculateFull()}),this._movables=new pS(this._addMovable.bind(this),this._searchMovables.bind(this),()=>{const i=r._getState();return i?i.movableMapModel?.size??0:0},this._updateSelectedMovables.bind(this),(i,a)=>this._emitterMovables.addListeners(i,a),this._addImage.bind(this)),this._emitterMovables=new Yt(this._movables,this._transactions),this._tables=new ES(this._addTable.bind(this),(i,a,c)=>{const h=i?this._rangeToCoords(i):this._entireCoords;return r._getRangedEntries("tableSpatial",[h],{excludeHidden:a,fullyContained:c,onEntry:d=>d.model})},i=>{const a=r._getState();return a?a.tableMapName.get(i.toLocaleLowerCase()):null}),this._conditionals=new xS(this._addConditional.bind(this),(i,a,c)=>{const h=i?this._rangeToCoords(i):this._entireCoords,d=new Set;return r._getRangedEntries("conditionalSpatial",[h],{excludeHidden:a,fullyContained:c,onEntry:u=>{d.add(u.getModel())}}),Array.from(d)}),this._isDate1904=e.date1904??!1,this._options=e,this._emitter=new Yt(this,this._transactions),this._entireRange=this.getRange(this._entireCoords),this._initState(),e?.container?.beforeFromJSON?.(this),e.json&&this._fromJSON(e.json),n.commit({forceAmend:this._ownTransactions,viewAfter:{initial:!0,skipProtectionCheck:!0}})}catch(o){throw n.rollback(),o}this._initializing=!1}_createRange(t,e,n=null){if(!t)return tn(this,this._entireCoords);if(this._validateCoords(t),this._closed)return tn(null,this._entireCoords,t);n===null&&this._options.readonly&&(n="Readonly sheet");let r=null;return(e||n)&&(r={getOptions:e,readOnly:n}),new Do((o=>{if(!o)return null;const s={colStart:o.colIndex??o.colStart??0,rowStart:o.rowIndex??o.rowStart??0,colEnd:o.colIndex??o.colEnd??0,rowEnd:o.rowIndex??o.rowEnd??0};return(o.$colStart||o.$colIndex)&&(s.$colStart=!0),(o.$colEnd||o.$colIndex)&&(s.$colEnd=!0),(o.$rowStart||o.$rowIndex)&&(s.$rowStart=!0),(o.$rowEnd||o.$rowIndex)&&(s.$rowEnd=!0),s})(t),this,r)}_createRanges(t,e,n=null){let r=null;return n===null&&this._options.readonly&&(n="Readonly sheet"),(e||n)&&(r={getOptions:e,readOnly:n}),new Bo(t,this,r)}getRange(t,e){let n=!e&&t&&(t.rowStart!==void 0||typeof t=="string");if(n){if(typeof t=="string"){if(this._lastRangeRead.address===t)return this._lastRangeRead.range}else if(t.rowStart!==void 0&&go(t,this._lastRangeRead.address))return this._lastRangeRead.range}const r=this._rangesToCoords(t);if(r.length>1)throw new Error(dg);const o=this._createRange(r[0],e);return n&&(this._lastRangeRead.address={...t},this._lastRangeRead.range=o),o}getCell(t){const e=this.getRange(t);if(e.size!==1)throw new Error(Ih);return e.getCell()}getRanges(t,e){if(!t)throw new Error(yr);const n=this._rangesToCoords(t);if(n.length===0)throw this._createRangeError(t);return this._createRanges(n,e)}getSelectedRange(t){const e=this.getSelection().getCoords();if(!t&&this._lastActiveRead.selection===e&&this._lastActiveRead.range)return this._lastActiveRead.range;const n=ur(e),r=this.getRange(n[0]);return t||(this._lastActiveRead.selection=e,this._lastActiveRead.range=r,this._lastActiveRead.ranges=this.getRanges(n)),r}getSelectedRanges(t){const e=this.getSelection().getCoords();if(!t&&this._lastActiveRead.selection===e&&this._lastActiveRead.ranges)return this._lastActiveRead.ranges;const n=ur(e),r=this.getRanges(n,t);return t||(this._lastActiveRead.selection=e,this._lastActiveRead.ranges=r,this._lastActiveRead.range=this.getRange(n[0])),r}getEntireRange(t){return t?this.getRange(this._entireCoords,t):this._entireRange}getUsedRange(t){const e=this._getUsedCoords(),n=e?this.getRange(e,t):null;return t||(this._lastUsedCoordsRead.coords=e,this._lastUsedCoordsRead.range=n),n}_cellToCoords(t){if(this._lastCellDecoded.address===t)return this._lastCellDecoded.coords;const e=this._rangeToCoords(t);if(!e||!E.CoordUtils.isSingleCell(e))throw new Error(Ih);const n={colIndex:e.colStart,rowIndex:e.rowStart};return this._lastCellDecoded.address=t,this._lastCellDecoded.coords=n,n}_validateCoords(t,e=ni){if(!E.CoordUtils.isRangeWithinRange(t,this._entireCoords))throw new E.OutOfBoundsError(e);const n=t.colStart,r=t.rowStart,o=t.colEnd,s=t.rowEnd;if(s<r||o<n)throw new Error(ug);if(!(Number.isInteger(n)&&Number.isFinite(n)&&Number.isInteger(r)&&Number.isFinite(r)&&Number.isInteger(o)&&Number.isFinite(o)&&Number.isInteger(s)&&Number.isFinite(s)))throw new Error("Invalid range. All points must be valid integers.")}_createRangeError(t){return t?new Error(yr):new Error(Eo(t))}_protectionCheck(t=null,e=null,n=null){if(t&&this._closed)return;if(!this._initializing&&this._options.readonly)throw new Error(((i="update")=>`Unable to ${i}, this sheet is readonly.`)(n));e&&!Array.isArray(e)&&(e=[e]);const r=t(e),o=this.getProtection();if(o?.getProperties()){if(r.length===0)throw new Error(Yo);if(r){const i=r.length;for(let a=0;a<i;a++)if(o[r[a]]!==!0)throw new Error(i0())}}}_rangesToCoords(t,e=null,n=!0,r=!1){if(e&&this._closed||t==null)return E.CommonUtils.EmptyArray;const o=this,s=Ma(t,this._entireCoords,r?ye:ko,a=>{if(n&&typeof a=="string"){const c=o.getNames()?.getByName(a);if(c)return c.getRanges().getCoords();const h=this._options.resolveRange?.(a);if(h&&h.getSheet()===o)return console.warn(Oh),[h.getCoords()];throw new Error(`Invalid sheet reference '${a}'.`)}}),i=s.length;for(let a=0;a<i;a++){const c=s[a];if(c){if(r){const h=c.sheetName;if(h&&h!==this.getName())throw new Error(Oh)}this._validateCoords(c)}}if(!e)return s;if(s.length===0)throw this._createRangeError(t);return this._protectionCheck(e,s),s}_rangeToCoords(t,e=null,n=!0){if(!t)throw new Error(yr);const r=e?s=>e(s):void 0,o=this._rangesToCoords(t,r,n);if(o.length===0)throw new Error(Eo(t));return o[0]}_collectRanges(t,e=[],n=!0,r=this._getState(),o=!1){if(!n||Object.keys(n).length===0)return;const s=a=>n===!0||n[a]!==void 0,i=(a,c,h)=>{if(n!==!0&&n[a]===void 0)return;const d=c.search(t,!1),u=d.length;if(u===0)return;const g=n[a];for(let m=0;m<u;m++){const f=d[m];if(g&&!E.CoordUtils.isRangeWithinRange(t,f))continue;const _=E.CoordUtils.intersectRanges(t,f);let p=f.value;p===void 0&&(p=!0),e.push({..._,value:{[h]:p}})}};if(s(Y.Type.Merge)&&r.mergeSpatial){const a=r.mergeSpatial.search(t),c=a.length;for(let h=0;h<c;h++){const d=a[h],u=o?d:E.CoordUtils.intersectRanges(t,d);e.push({...u,value:{merge:d.value}})}}if(i(Y.Type.Unlock,r.unlockSpatial,"unlock"),i(Y.Type.Contentful,r.contentfulSpatial,"contentful"),i(Y.Type.Continuous,r.continuousFillSpatial,"continuous"),i(Y.Type.Hyperlink,r.hyperlinkSpatial,"hyperlink"),i(Y.Type.Comments,r.commentsSpatial,"comments"),i(Y.Type.Style,r.directStyleSpatial,"directStyle"),i(Y.Type.Formula,r.formulaSpatial,"formula"),i(Y.Type.Pending,r.pendingSpatial,"pending"),i(Y.Type.CalcError,r.calcErrorsSpatial,"calcError"),i(Y.Type.Spill,r.spillSpatial,"spills"),s(Y.Type.Conditional)&&r.conditionalSpatial){const a=r.conditionalSpatial.search(t),c=n[Y.Type.Conditional],h=a.length;for(let d=0;d<h;d++){const u=a[d],g=E.CoordUtils.intersectRanges(t,u);c&&!g||e.push({...g,value:{conditionals:[u.value]}})}}if(s(Y.Type.Table)&&r.tableSpatial){const a=r.tableSpatial.search(t),c=n[Y.Type.Table],h=a.length;for(let d=0;d<h;d++){const u=a[d];if(c&&!E.CoordUtils.isRangeWithinRange(t,u))continue;const g=E.CoordUtils.intersectRanges(t,u);e.push({...g,value:{table:u.value.model}})}}}_cellIterator(t){const e=this._cellOptions,n=this._strings,r=this._cellStateIterator(t);return{next(o){const s=r.next(o);if(s.done)return Ct;const i=s.value,a=new fl(n,t,e),c=a.context;return{done:!1,value:{value:a.setState(i),context:c}}},[Symbol.iterator](){return this}}}_rangeStateIterator(t){const e=this._getState();if(!e||!t||!t.includeRangeTypes)return Dt;const n=t?.bounds??this._getUsedCoords()??this._entireCoords;let r=null;t.includeRangeTypes===!0?r=o0:E.CommonUtils.isObject(t.includeRangeTypes)&&(r=t.includeRangeTypes);const o=t?.excludeHidden,s=o===!0||o===A.IRange.Orientation.Row,i=o===!0||o===A.IRange.Orientation.Column,a=t?.includeMergeOverflow??!1,c=[],h=this,d={includeHidden:!i},u={min:n.colStart,max:n.colEnd},g={includeHidden:!s},m={min:n.rowStart,max:n.rowEnd};this._rowHeaders.getRange(m).forEachVisibleSpan((C,y)=>{this._colHeaders.getRange(u).forEachVisibleSpan((I,w)=>{h._collectRanges({rowStart:C,rowEnd:y,colStart:I,colEnd:w},c,r,e)},d)},g);const f=new Qs.IteratorInstance(c,t),_=t?.reverse??!1,p=t?.byCell;let S;return{next:C=>{if(S=f.next(C),S.done)return Ct;const y=S.value,I=(v=>{if(!v)return null;let T=null;const M=v.length;for(let F=0;F<M;F++){const N=v[F].value;if(!N)continue;T||(T={...T});const O=Object.keys(N),L=O.length;for(let B=0;B<L;B++){const U=O[B],D=T[U];if(D)if(Array.isArray(D)){const z=N[U];if(Array.isArray(z)){const k=z.length;for(let P=0;P<k;P++)D.push(z[P])}else D.push(z)}else T[U]=[D,N[U]];else T[U]=N[U]}}return T})(y.overlaps);let w,b=y.range;if(a){const v=I?.merge;if(v){const T=v.getCoords(),M=n.colStart,F=n.rowStart,N=T.colStart,O=T.rowStart;N<M&&F<O&&(w={colIndex:N,rowIndex:O})}}w||(w={colIndex:b.colStart,rowIndex:b.rowStart});const x={colIndex:b.colEnd,rowIndex:b.rowEnd};let R=null;return p&&(R={...y.cell}),{done:!1,value:{start:_?x:w,end:_?w:x,cell:R,intersection:I}}}}}_cellStateIterator(t){const e=this._getState();if(!e)return Dt;const n=t?.bounds??this._entireCoords,r=t?.orientation??A.IRange.Orientation.Row,o=t?.reverse??!1,s=t?.includeEmpty,i={bounds:n,orientation:r,reverse:o};let a;s&&(a={bounds:n,orientation:r,reverse:o});const c=t?.excludeHidden;if(c===!0||c===A.IRange.Orientation.Row){const M=gl(this._rowHeaders);i.processRowSkip=Pr(M),s&&(a.processRowSkip=Pr(M))}if(c===!0||c===A.IRange.Orientation.Column){const M=gl(this._colHeaders);i.processColumnSkip=Pr(M),s&&(a.processRowSkip=Pr(M))}const h=s||!t?.ignoreEmptyIntersections;let d=t.includeRangeTypes;d===!0&&(d=gg);const u=t?.includeMergeOverflow??!1,g=this._getState().contentfulSpatial,m=d?this._rangeStateIterator({bounds:n,orientation:r,reverse:o,includeRangeTypes:d,includeMergeOverflow:u,excludeHidden:t.excludeHidden,byCell:!0}):Dt,f=e?.cellValuesGrid??null;let _=f?f.entries(i):Dt,p=_.next(),S=null,C=null,y=null;p.done||(S=p.value[0],C=p.value[1]);let I=m.next(),w=null;const b=r!==A.IRange.Orientation.Row;let x;const R=E.CoordUtils.createCellComparator(r,o);let v;if(!I.done){const M=I.value;w=M.intersection,v=M.start}x=M=>{let F=null,N=null,O=null,L=!1,B=!1;if(S&&v){const H=R(S,v);H<0?(F=S,N=C,L=!0):H>0?(F=v,O=w,B=!0):(F=S,N=C,O=w,L=!0,B=!0)}else if(S)F=S,N=C,L=!0;else{if(!v||!h)return Ct;F=v,O=w,B=!0}if(L&&(p=_.next(),p.done?S=null:(S=p.value[0],C=p.value[1])),B){const H=h?void 0:S;if(I=m.next(H),I.done)v=null,w=null;else{const W=I.value;w=W.intersection,v=W.cell}}let U=!1;const D=F.rowIndex,z=F.colIndex;b||(U=D===y?.rowIndex);let k=!1;b||(k=D===S?.rowIndex);let P=null;if(U)P=y;else if(u&&!y){Et.rowStart=D,Et.rowEnd=D,Et.colStart=z-5,Et.colEnd=z-1;const H=g.search(Et,!1);if(H.length>0){H.sort(E.CoordUtils.columnFirstRangeComparator);const W=H[H.length-1];P={colIndex:W.colStart,rowIndex:W.rowStart}}}let j=null;if(k)j=S;else if(u&&!S){Et.colStart=z+1,Et.rowStart=D,Et.colEnd=z+5,Et.rowEnd=D;const H=g.search(Et,!1);if(H.length>0){H.sort(E.CoordUtils.columnFirstRangeComparator);const W=H[0];j={colIndex:W.colStart,rowIndex:W.rowStart}}}return L&&(y=F),{done:!1,value:[F,N,O,P,j]}};let T={next:x,return:M=>null,throw:M=>null};return s&&(T=new qu(T,i)),T}_indexMerges(t,e=null){if(!(t&&t.length!==0||e&&e.length!==0))return;const n=this._getState();if(!n)return;const r=this._beginCommit({description:"indexMerges"}),o=n.mergeSpatial.clone();if(e){const s=e.length;for(let i=0;i<s;i++)o.remove(e[i])}if(t){const s=c=>this._getState().cellValuesGrid.getValueAt(c.rowStart,c.colStart),i=[],a=t.length;for(let c=0;c<a;c++){const h=t[c];i.push({...h,value:new Dd(h,s)})}o.load(i)}this._updateState({mergeSpatial:o}),r.commit()}_updateStyles(t,e,n,r=!1){const o=n?.description??"Update Style";this._protectionCheck(()=>["formatCells"],t,o);const s=this._beginCommit({description:o}),i=Vr(t);try{const a=this._getState();if(!a)return E.CommonUtils.EmptyArray;const c=a.directStyleSpatial,h=s.getId(),d=c.clone(h);let u=a.continuousFillSpatial;const g=!u.isEmpty();let m=null;const f=this._styles,_=t.length;for(let p=0;p<_;p++){const S=(x,R)=>{let v=null;const T=wi(0,R,()=>{if(v)return v;const M=x.getCoords();return v=Rr(f,x,M),v});return x.cloneWithUpdate(T)},C=t[p],y=C.value,I=y!==void 0?y:e,w=S(new zt(f,C),I),b=(x,R)=>{if(r&&x.value&&x.value.getProperties()?.numberFormat)return x;const v=E.CoordUtils.sanitizeRange(x);let T=null,M=x.value;if(M||(M=new zt(f,v)),typeof I=="function")T=S(M,I);else{let N=R.value._p??null;I!==null&&(N=I),T=M.cloneWithUpdate(N)}T.isEmpty()&&(T=null);let F=!1;if(T){const N=T._p?.alignment?.horizontal;!N||N!==exports.ITextFrame.HorizontalAlignment.CenterContinuous&&N!==exports.ITextFrame.HorizontalAlignment.Fill||(F=!0)}return(F||g)&&(m||(m=[]),m.push({...x,value:F?T:null})),{...R,value:T}};d.insertNonOverlapping({...C,value:w},{onIntersect:b})}if(m){u=u.clone();const p=m.length;for(let S=0;S<p;S++){const C=m[S];u.insertNonOverlapping(C)}}if(this._lastUsedCoordsRead.coords=null,this._updateState({directStyleSpatial:d,continuousFillSpatial:u}),n?.autoFit){const p=typeof n.autoFit=="boolean"?Ol:n.autoFit;this._autoFit(t,p)}this._emitter.notify("onStyleChange"),r?this._commitAndAutoSelect(s,i,n?.autoSelect,{viewAfter:{ranges:t}}):s.commit({forceAmend:!0})}catch(a){throw s.rollback(),a}}_createIncrementalUpdater(t,e=null,n){const r=t?.orientation??A.IRange.Orientation.Row,o=t?.allowUnorderedWrites??!1,s=r===A.IRange.Orientation.Column,i=this._isDataColumn,a=s!==i,c=this;let h,d,u,g=a?new exports.Tuple.TransposedBuilder:new exports.Tuple.Builder,m=null;if(e){const C=e.getCoords(),y=C.colStart,I=C.rowStart,w=C.colEnd,b=C.rowEnd;m=(x,R)=>{if(x<I||x>b||R<y||R>w)throw new E.OutOfBoundsError}}s?(d=(C,y,I)=>(m?.(C,y),g.addValue(y,C,I),h),u=(C,y,I)=>(m?.(C,y+(I?.length??0)),g.addValues(y,C,I),h)):(d=(C,y,I)=>(m?.(C,y),g.addValue(C,y,I),h),u=(C,y,I)=>(m?.(C+(I?.length??0),y),g.addValues(C,y,I),h));const f=C=>{const y=g.build();return y&&c._updateTuples(y,C,null,n),e},_=o!==!1?E.CoordUtils.createCellComparator(t?.orientation):null,p=E.CommonUtils.isObject(o)?o:void 0;let S=null;return h=Object.freeze({push:(C,y)=>{const I=c._cellToCoords(C);return _&&(S&&_(I,S)<=0&&(f(p),g=a?new exports.Tuple.TransposedBuilder:new exports.Tuple.Builder),S=I),d(s?I.colIndex:I.rowIndex,s?I.rowIndex:I.colIndex,y)},pushAt:d,pushMultipleAt:u,apply:f}),h}_updateTuples(t,e,n=void 0,r=null){if(!t)return;const o=r?.isCell??!1,s=r?.isHyperlink??!1,i=t.tuples,a=t.bounds,c=this._beginCommit({description:e?.description??"Update Cells"});let h=null;const d=this._isDataColumn,u=d?A.IRange.Orientation.Column:A.IRange.Orientation.Row,g=this.getProtection().isLocked(),m=this.getProtection().isFormatCellsAllowed(),f=this._strings,_=a.majorStart,p=a.majorEnd,S=a.minorStart,C=a.minorEnd,y={colStart:d?_:S,rowStart:d?S:_,colEnd:d?p:C,rowEnd:d?C:p},I=this;(n=n??((tt,J)=>{I._validateCoords(tt,J??ni)}))(y);const w={[Y.Type.Style]:!1,[Y.Type.Table]:!1};let b=!1;g&&this._hasRangedEntries("unlockSpatial",y)&&(w[Y.Type.Unlock]=!1,b=!0),this._hasRangedEntries("mergeSpatial",y)&&(w[Y.Type.Merge]=!1,b=!0);const x=this._rangeStateIterator({bounds:y,orientation:u,includeRangeTypes:w,reuseIterator:{done:!1,value:null}});let R=x.next(),v=-1,T=-1,M=-1,F=-1,N=null;if(!R.done){const tt=R.value,J=tt.start,X=tt.end;v=d?J.colIndex:J.rowIndex,T=d?X.colIndex:X.rowIndex,M=d?J.rowIndex:J.colIndex,F=d?X.rowIndex:X.colIndex,N=tt.intersection}let O=(tt,J)=>{do{if(!N||tt<=M&&J<M)return null;if(tt>=v&&J>=M&&tt<=T&&J<=F)return N;if(R=x.next(),R.done)N=null,O=null,b=!1;else{const X=R.value;v=d?X.start.colIndex:X.start.rowIndex,T=d?X.end.colIndex:X.end.rowIndex,M=d?X.start.rowIndex:X.start.colIndex,F=d?X.end.rowIndex:X.end.colIndex,N=X.intersection}}while(N);return N};const L=c.getState(this),B=L.cellValuesGrid.clone(),U=L.calcGraph.clone(),D=L.formulaSpatial.clone(),z=L.spillSpatial.clone(),k=L.pendingSpatial.clone(),P=L.calcErrorsSpatial.clone(),j=L.contentfulSpatial.clone(),H=In(d),W=In(d,(tt,J)=>{if(tt===J)return J}),V=In(d,(tt,J)=>{if(tt===J)return J}),$=In(d,(tt,J)=>{if(tt===J)return J}),nt=[];let et=null,at=null;if(e?.textParser!==!1){const tt=e&&e.textParser!==!0?e.textParser:{};at={ignoreQuotePrefix:!1,date1904:this._isDate1904,dateNF:!1,parse:null,...tt},et=new fl(f,null,this._cellOptions)}const q=[],K=this._cellOptions,rt=new Map,mt=id,G=(tt,J,X)=>{const Q=O?.(J,X);if(Q?.merge){const ot=Q.merge.getCoords(),ut=d?ot.colStart:ot.rowStart,dt=d?ot.rowStart:ot.colStart;if(ut!==J||dt!==X)return}if(o&&tt&&tt.isICell){const ot=tt;if(ot.isTopLeft()){const ut=ot.getSpans();nt.push({colStart:d?J:X,rowStart:d?X:J,colEnd:(d?J:X)+ut.width-1,rowEnd:(d?X:J)+ut.height-1})}}let ct=ia(tt,K,at,rt);if(ct===void 0)return;const ft=ct.value;if(ct.stringToParse){to[0].colIndex=d?J:X,to[0].rowIndex=d?X:J,to[1]=ft,to[2]=Q,et.setState(to);const ot=at?.parse(ct.stringToParse,et.context),ut=ia(ot,K,at,rt,!0);if(et.clear(),ut===null)return ut;ut!==void 0&&(ct={...ut})}if(g){if(g&&(tt===null||ct.value!==void 0))throw new Error(Yo);if(!m&&ct.style!==void 0)throw new Error(Yo)}if(!s){const ot=ct.style;ot===void 0||ot===null&&!o||W.append(J,X,ot);const ut=ct.hyperlink;ut===void 0||ut===null&&!o||V.append(J,X,ut)}const Z=ct.formula;return Z===void 0||Z===null&&!o||$.append(J,X,Z),ft};let lt=-1,st=-1;try{const tt=i.length;for(let it=0;it<tt;it++){const St=i[it],gt=St[0];if(lt>=gt)throw new exports.Tuple.OutOfOrderError(`Duplicate or out of order major indices: {${gt}}.`);if(lt=gt,st=Number.MIN_SAFE_INTEGER,gt<_||gt>p)throw new E.OutOfBoundsError("Provided major bounds is invalid");const xt=St[1],Lt=[],Ut=xt.length;for(let Ht=0;Ht<Ut;Ht++){const Re=xt[Ht],ie=Re[1],Wt=ie.length;let Mt=Re[0],jt=Mt;if(st>jt)throw new exports.Tuple.OutOfOrderError(`Duplicate or out of order minor indices: {${jt}}.`);if(jt<S||jt+Wt>C+1)throw new E.OutOfBoundsError("Provided minor bounds is invalid");let ne=[];for(let Gn=0;Gn<Wt;Gn++){const Nr=ie[Gn];let Jn=null;if(b||typeof Nr!="number"?(b||Nr!==null||o)&&(Jn=G(Nr,gt,jt)):Jn=Nr,Jn==null){if(Jn===null&&H.append(gt,jt),ne.length>0){const Ua=mt(ne,f);Lt.push([Mt,Ua]),ne=[]}Mt=jt+1}else ne.push(Jn);jt++}if(st=jt,ne.length>0){const Gn=mt(ne,f);Lt.push([Mt,Gn]),ne=null}}Lt.length>0&&q.push([gt,Lt])}const J=H.done(),X=J.length;for(let it=0;it<X;it++){const St=J[it];B.delete(J[it]),j.insertNonOverlapping({...St,value:null});const gt=U.delete(St);this._updateFormulaSpatial(D,null,gt)}let Q;q.length>0&&(B.setValues(q),Q={tuples:q,bounds:a});let ct,ft=$.done();if(ft.length>1&&(ft=Qe(ft,A.IRange.Orientation.Column,1)),Q||ft.length>0){const it=U.setInputs(Q,ft);ct=this._updateFormulaSpatial(D,it.inserts,it.removes,L.directStyleSpatial)}const Z=ld(q,d),ot=Z.length;for(let it=0;it<ot;it++)j.insertNonOverlapping(Z[it]);const ut=W.done();ut.length>0&&this._updateStyles(ut),nt.length>0&&this._merge(nt);const dt=V.done();if(dt.length>0&&this._setHyperlinks(dt),this._updateState({cellValuesGrid:B,contentfulSpatial:j,calcGraph:U,formulaSpatial:D,spillSpatial:z,pendingSpatial:k,calcErrorsSpatial:P}),ct&&ct.length>0&&this._updateStyles(ct,void 0,{},!0),e?.autoFit){const it=typeof e.autoFit=="boolean"?Ol:e.autoFit;this._autoFit([y],it)}h={ranges:[y]},this._addEvent("data",y),this._commitAndAutoSelect(c,h,e?.autoSelect,{viewAfter:{formulas:[y],ranges:[y]}})}catch(tt){throw c.rollback(),tt}}_sort(t,e){typeof e=="boolean"&&(e={reverse:e});const n=e?.description??"Sort "+(e?.reverse?"Descending":"Ascending");this._protectionCheck(()=>["sort"],t,n);let r=1,o=1,s=!1;const i=this._getMerges([t]);if(i.length>0){s=!0;let H=i[0];if(r=H.colEnd-H.colStart+1,o=H.rowEnd-H.rowStart+1,(t.colEnd-t.colStart+1)%r!=0||(t.rowEnd-t.rowStart+1)%o!=0)throw new Error(Nh);const W=i.length;for(let V=1;V<W;V++){const $=i[V];if($.colEnd-$.colStart+1!==r||$.rowEnd-$.rowStart+1!==o)throw new Error(Nh)}}const a=e?.orientation??A.IRange.Orientation.Row,c=a===A.IRange.Orientation.Row;let h=e?.offset??0,d=t;e?.hasHeader&&(d={...d},c?d.rowStart+=o:d.colStart+=r,h=Math.max(h-1,0));const u={offset:h,reverse:e?.reverse??exports.Sort.DefaultRangeOptions.reverse,collatorOptions:e?.collatorOptions??exports.Sort.DefaultRangeOptions.collatorOptions},g=c?d.colStart:d.rowStart,m=c?d.colEnd-d.colStart:d.rowEnd-d.rowStart,f=[];if(e?.fields){const H=e?.fields.length??0;for(let W=0;W<H;W++){let V=e.fields[W];typeof V=="number"&&(V={offset:V}),f.push(V)}}else f.push(u);const _=f.length;for(let H=0;H<_;H++){const W=f[H]={...u,...f[H]};if(W.offset<0||W.offset>m)throw new E.OutOfBoundsError("The sort offset is outside of the bounds of the sort.");W.offset+=g}const p=[];let S=null,C=null,y=null,I=Number.MIN_SAFE_INTEGER;f.sort((H,W)=>H.offset-W.offset);let w=null;const b=e?.includeHidden??!1;if(!b){const H=gl(c?this._rowHeaders:this._colHeaders);w=Pr(H)}const x=this._cellIterator({bounds:d,orientation:a,excludeHidden:!b&&a,includeRangeTypes:{[Y.Type.Style]:!1,[Y.Type.Merge]:!1}}),R=c?o:r;let v=(c?d.rowStart:d.colStart)-R,T=x.next();for(;!T.done;){const H=T.value.context,W=H.getCell();if(s&&!W.isTopLeft()){T=x.next();continue}const V=H.getCoords(),$=c?V.rowIndex:V.colIndex,nt=c?V.colIndex:V.rowIndex;if(v!==$){for(v+=R,w&&(v=w(v));v<$;)p.push(null),v+=R;C=[],y=[],S={minorIndex:$,values:C,sortValues:y},p.push(S),v=$,I=f[0].offset}for(;nt>I;){const et=f[y.length];I=et?et.offset:Number.MAX_SAFE_INTEGER,nt>I&&y.push(null)}nt===I&&y.push(W),C.push(W),T=x.next()}if(!S||p.length===0)return;const M=new Map,F=new Map,N=e?.collators??exports.Sort.DefaultCollators,O=N.length;for(let H=0;H<O;H++)M.set(N[H].type,N[H].compare),F.set(N[H].type,H);let L=null,B=null,U=null;p.sort((H,W)=>{const V=f.length;for(let $=0;$<V;$++){const nt=f[$],et=H?H.sortValues[$]:null,at=W?W.sortValues[$]:null,q=et?et.getValue():null,K=at?at.getValue():null,rt=q===null,mt=K===null;if(q===K)continue;if(rt&&mt)return 0;if(!rt&&mt)return-1;if(rt&&!mt)return 1;const G=et.getType(),lt=at.getType();let st=0;if(G!==lt){let tt=F.get(G);st=F.get(lt)-tt}else{let tt=B;if(L!==G){tt=M.get(G),B=tt,L=G;let J=F.get(lt);U={...N[J].defaultOptions,...nt.collatorOptions}}st=tt(q,K,U)}return nt.reverse&&(st*=-1),st}return 0});const D=this._beginCommit({description:n});let z=[d];b||(z=this._getVisible(z,{orientations:c?A.IRange.Orientations.Row:A.IRange.Orientations.Column})),this._clear(z,void 0,void 0,!0);const k=this._createIncrementalUpdater({orientation:a});let P=c?d.rowStart:d.colStart;const j=p.length;for(let H=0;H<j;H++){const W=p[H];if(w&&(P=w(P)),W){const V=W.values,$=V.length;for(let nt=0;nt<$;nt++){const et=V[nt],at=c?P:et.getCoords().rowIndex,q=c?et.getCoords().colIndex:P;k.pushAt(at,q,et)}}P+=R}return k.apply(),D.commit(),d}_autoFill(t,e,n){const{direction:r,amount:o}=((f,_)=>{let p=A.IRange.Direction.Down,S=0;const C={...f};if(_.colStart<f.colStart?(p=A.IRange.Direction.Left,S=f.colStart-_.colStart,C.colStart=_.colStart):_.colEnd>f.colEnd?(p=A.IRange.Direction.Right,S=_.colEnd-f.colEnd,C.colEnd=_.colEnd):_.rowStart<f.rowStart?(p=A.IRange.Direction.Up,S=f.rowStart-_.rowStart,C.rowStart=_.rowStart):_.rowEnd>f.rowEnd&&(p=A.IRange.Direction.Down,S=_.rowEnd-f.rowEnd,C.rowEnd=_.rowEnd),!E.CoordUtils.isEqualRanges(C,_))throw new Error("Autofill destination must be the same as the range for 3 of the 4 edges.");return{direction:p,amount:S}})(t,e);if(o<=0)return!1;const s=r===A.IRange.Direction.Up||r===A.IRange.Direction.Down,i=this.getSelection().getCoords(),a=[],c=n?.previewOnly,h=n?.contentsOnly,d=n?.filler??exports.AutoFill.Types.Series,u={...n?.fillerOptions};let g=null,m=null;try{const f={...t};let _={...t};const p=[t],S=this._getMerges(p);if(S.length>0&&!E.CoordUtils.isRangeWithinRange(E.CoordUtils.unionRangesArrays(S),t))throw new Error(Fh);const C={..._};let y=1;if(r===A.IRange.Direction.Left)f.colStart=_.colStart=t.colStart-o,f.colEnd=t.colStart-1,y=S.length===0?y:t.colEnd+1-t.colStart,C.rowStart=C.rowEnd;else if(r===A.IRange.Direction.Right)f.colEnd=_.colEnd=t.colEnd+o,f.colStart=t.colEnd+1,y=S.length===0?y:t.colEnd+1-t.colStart,C.rowStart=C.rowEnd;else if(r===A.IRange.Direction.Up)f.rowStart=_.rowStart=t.rowStart-o,f.rowEnd=t.rowStart-1,y=S.length===0?y:t.rowEnd+1-t.rowStart,C.colStart=C.colEnd;else{if(r!==A.IRange.Direction.Down)throw new Error(E.CommonMessages.MESSAGE_ERROR_INVALID_ARG(r));f.rowEnd=_.rowEnd=t.rowEnd+o,f.rowStart=t.rowEnd+1,y=S.length===0?y:t.rowEnd+1-t.rowStart,C.colStart=C.colEnd}if(o%y!==0)throw new Error((G=>`When filling with merged cells the amount to fill must be a multiple of the input range [${G}].`)(y));const I=s?"rowIndex":"colIndex",w=s?"colIndex":"rowIndex",b=s?t.rowEnd+1-t.rowStart:t.colEnd+1-t.colStart,x=s?t.rowStart:t.colStart,R=s?t.rowEnd:t.colEnd,v=s?e.rowStart:e.colStart,T=s?e.rowEnd:e.colEnd,M=s?r===A.IRange.Direction.Down:r===A.IRange.Direction.Right;M||(u.reverse=!0);const F=M?R+1:v,N=(M?T:x-1)-F+1,O=s?t.colEnd:t.rowEnd;a.push(E.CoordUtils.unionRanges(f,t));const L=[];let B=null;c||(g=this._beginCommit({description:"Auto Fill",operation:{name:"autoFill",params:[t,e,n]}}));const U=this._cellIterator({bounds:c?C:t,reverse:!M,orientation:s?A.IRange.Orientation.Column:A.IRange.Orientation.Row,includeRangeTypes:{[Y.Type.Style]:!1}});let D=U.next();for(;!D.done;){const G=D.value.context,lt=G.getCell(),st=G.getCoords();B?.oppositeIndex!==st[w]&&(B={oppositeIndex:st[w],lastIndex:M?x-1:R+1,values:[]},L.push(B));const tt=st[I];if(M)for(let X=B.lastIndex+1;X<tt;X++)B.values.push(null);else for(let X=B.lastIndex-1;X>tt;X--)B.values.push(null);B.lastIndex=tt;const J=lt.toDate();if(J)B.values.push(J);else{let X=lt.getValue();B.values.push(X)}D=U.next()}const z=L.length;for(let G=0;G<z;G++){const lt=L[G].values;for(let st=lt.length;st<b;st++)lt.push(null)}const k=(G,lt)=>{if(G.canFill(lt[0],[])){const st=G.createFillAt(lt,u);if(st)return st}return exports.AutoFill.Types.Copy.createFillAt(lt)},P=this;if(c){const G=L[L.length-1];if(L[L.length-1]?.oppositeIndex!==O)return null;const lt=k(d,G.values);return c(st=>{const tt=P._rangeToCoords(st);let J;r===A.IRange.Direction.Down||r===A.IRange.Direction.Right?J={rowIndex:tt.rowEnd,colIndex:tt.colEnd}:r===A.IRange.Direction.Left?J={rowIndex:tt.rowEnd,colIndex:tt.colStart}:r===A.IRange.Direction.Up&&(J={rowIndex:tt.rowStart,colIndex:tt.colEnd});const X=s?J.rowIndex:J.colIndex,Q={value:lt(M?X-x:x-X+b-1)};let ct=null;return ct=h?this.createTemporaryCell(Q,J):this.createTemporaryCell(null,J).createTemporaryCell(Q),ct}),!1}const j=this._createIncrementalUpdater({orientation:s?A.IRange.Orientation.Column:A.IRange.Orientation.Row}),H=L.length;L.sort((G,lt)=>G.oppositeIndex-lt.oppositeIndex);for(let G=0;G<H;G++){const lt=G,st=k(d,L[lt].values),tt=L[lt].oppositeIndex,J=M?b:b+N-1,X=this.isDate1904();for(let Q=0;Q<N;Q++){let ct=st(J+(M?Q:-Q));Tr(ct)&&(ct=Ao(ct,X));const ft=F+Q;s?j.pushAt(ft,tt,ct):j.pushAt(tt,ft,ct)}}this._clear([f],n?.contentsOnly?exports.ICell.Content.Formats:void 0),j.apply();const W=this._getMerges([_]),V=E.CoordUtils.unionRangesArrays(W);if(W.length>0&&!E.CoordUtils.isRangeWithinRange(V,_))throw new Error(Fh);if(W.length>0){const G=[],lt=o/y;if(s){const st=t.rowEnd-t.rowStart+1,tt=r===A.IRange.Direction.Up?f.rowStart:t.rowEnd+1,J=W.length;for(let X=0;X<J;X++){const Q=W[X],ct=Q.rowStart-t.rowStart,ft=Q.rowEnd-Q.rowStart+1;for(let Z=0;Z<lt;Z++){const ot=Z*st;G.push({colStart:Q.colStart,rowStart:tt+ot+ct,colEnd:Q.colEnd,rowEnd:tt+ot+ct+ft-1})}}}else{const st=t.colEnd-t.colStart+1,tt=r===A.IRange.Direction.Left?f.colStart:t.colEnd+1,J=W.length;for(let X=0;X<J;X++){const Q=W[X],ct=Q.colStart-t.colStart,ft=Q.colEnd-Q.colStart+1;for(let Z=0;Z<lt;Z++){const ot=Z*st;G.push({colStart:tt+ot+ct,rowStart:Q.rowStart,colEnd:tt+ot+ct+ft-1,rowEnd:Q.rowEnd})}}}this._merge(G)}const $=this._getState(),nt={},et={};et.directStyleSpatial=$.directStyleSpatial,et.continuousFillSpatial=$.continuousFillSpatial;let at=t,q=f;if(!M){let G=(s?_.rowEnd+1-_.rowStart:_.colEnd+1-_.colStart)%b;const lt=s?"rowStart":"colStart",st=s?"rowEnd":"colEnd";G!==0&&(q={...f,[st]:Math.min(f[st],f[lt]+G)},at={...t,[lt]:t[st]-G+1},f[lt]=f[lt]+G)}const K=Object.keys(et),rt=K.length;for(let G=0;G<rt;G++){const lt=K[G],st=et[lt].createCopiedEntries(at,q),tt=$[lt].clone(),J=st.removes,X=J.length;for(let Q=0;Q<X;Q++)tt.remove(J[Q]);tt.load(st.inserts),nt[lt]=tt}if(M){const G=this.getTables().getItems({address:{rowIndex:t.rowEnd,colIndex:t.colEnd}});if(G.length===1){const lt=G[0],st=lt.getRange().getCoords();lt.resize({colStart:st.colStart,rowStart:st.rowStart,colEnd:s?st.colEnd:f.colEnd,rowEnd:s?f.rowEnd:st.rowEnd})}}const mt=$.calcGraph.clone();mt.autoFill(t,f),nt.calcGraph=mt,this._updateState(nt),m={...i,ranges:a},g.commit({viewBefore:{view:this.getView(),selection:vt([t]),selectOptions:n?.autoSelect},viewAfter:{view:this.getView(),selection:m,selectOptions:n?.autoSelect}}),this._autoSelect(n?.autoSelect??!1,m)}catch(f){throw g?.rollback(),f}return!0}_setHyperlinks(t,e,n){const r=n?.description??"Set Hyperlink";this._protectionCheck(()=>["insertHyperlinks","formatCells"],t,r);const o=vt(t),s=this._beginCommit({description:r});let i=null;try{const a=this._getState();if(!a)return E.CommonUtils.EmptyArray;const c=a.hyperlinkSpatial;let h=c,d=a.directStyleSpatial.clone();const u=t.length;for(let g=0;g<u;g++){const m=t[g];let f=null;const _=m.value,p=_!==void 0?_:e;let S;if(p!==null){if(p.isIHyperlink)S={...p._j},f=p.getDisplayText();else if(typeof p=="string")S={address:p},f=p;else if(p.address){const C=p,y={...C};delete y.displayText,S=y,f=C.displayText??C.address}}else S=null;if(i=E.CoordUtils.unionRanges(i,m),c===h&&(h=c.clone()),S!==null||c.size()>0){if(f&&e){const C=this._createIncrementalUpdater({orientation:A.IRange.Orientation.Column},void 0,{isHyperlink:!0});for(let y=m.colStart;y<=m.colEnd;y++)for(let I=m.rowStart;I<=m.rowEnd;I++)C.pushAt(I,y,f);C.apply()}if(S===null)this._getRangedEntries("hyperlinkSpatial",[m],{onEntry:(C,y)=>(h.insertNonOverlapping({...y,value:S}),y.value)});else{h.insertNonOverlapping({...m,value:S});const C=this._styles,y=I=>{const w=I.value??new zt(C,E.CoordUtils.sanitizeRange(I));let b={...w.getPropertiesAt(0,0,null)};if(b.named){const x=C.getNamed(b.named)?.getRanged().getPropertiesAt(0,0,null);b=E.CommonUtils.mergeContentful(x,b)}return delete b.font,b.named=exports.IStyle.BuiltInName.Hyperlink,{...I,value:w.cloneWithUpdate(b)}};d.insertNonOverlapping({...m,value:null},{onIntersect:y})}}}this._lastUsedCoordsRead.coords=null,this._updateState({hyperlinkSpatial:h,directStyleSpatial:d}),this._commitAndAutoSelect(s,o,n?.autoSelect,{viewAfter:{ranges:t}})}catch(a){throw s.rollback(),a}}_updateFormulaSpatial(t,e,n,r){if(n){const s=n.length;for(let i=0;i<s;i++){const a=n[i];t.remove(a)}}let o;if(e){const s=[],i=e.length;for(let a=0;a<i;a++){const c=e[a],h=E.CoordUtils.sanitizeRange(c),d=new MS(h,c.value.tokens,c.value.references);if(s.push({colStart:h.colStart,rowStart:h.rowStart,colEnd:h.colEnd,rowEnd:h.rowEnd,value:d}),!r)continue;const u=c.value.precedents;let g,m,f=!1;const _=u.length;for(let p=0;!f&&p<_;p++){const S=u[p],C=S.colStart;if(S.colStart===void 0)continue;const y=S.rowStart;Te.colStart=C,Te.rowStart=y,Te.colEnd=C,Te.rowEnd=y;const I=r.search(Te)[0];if(I){const w=I.value.getPropertiesAt(y,C,null),b=w?.numberFormat;if(b)if(g){m||(m=exports.NumberFormat.Styles.lookupStyle(g)?.formatType);const x=exports.NumberFormat.Styles.lookupStyle(b)?.formatType;Ef(x,m)>0?(m=x,g=b):f=!0}else g=b}}g&&(o||(o=[]),o.push({colStart:h.colStart,rowStart:h.rowStart,colEnd:h.colEnd,rowEnd:h.rowEnd,value:{numberFormat:g}}))}t.load(s)}return o}_realizeCalcedValues(t){if(!t)return;const e=this._getState();if(!e)return;const n=t.valueInserts,r=t.spillRemoves,o=t.errorRemoves,s=e.cellValuesGrid,i=this._beginCommit();t.isFull&&(e.calcErrorsSpatial.clear(),e.spillSpatial.clear(),e.pendingSpatial.clear());const a=t.valueRemoves;if(a){const m=e.contentfulSpatial,f=a.length;for(let _=0;_<f;_++){const p=a[_];s.delete(p),m.insertNonOverlapping({...p,value:null})}}if(r){const m=e.spillSpatial,f=r.length;for(let _=0;_<f;_++){const p=r[_];m.remove(p)}}if(o){const m=e.calcErrorsSpatial,f=o.length;for(let _=0;_<f;_++){const p=o[_];m.remove(p)}}this._updateFormulaSpatial(e.formulaSpatial,t.formulaInserts,t.formulaRemoves);const c=t.formatInserts;if(c){const m=c.length;for(let f=0;f<m;f++){const _=c[f],p={numberFormat:_.value};_.value=p}this._updateStyles(c,void 0,{autoFit:!0},!0)}if(n){const m=n.tuples;s.setValues(m);const f=this._isDataColumn,_=f?A.IRange.Orientation.Column:A.IRange.Orientation.Row,p=e.contentfulSpatial,S=m.length;for(let C=0;C<S;C++){const y=m[C],I=y[0],w=y[1],b=w.length;for(let x=0;x<b;x++){const R=w[x],v=R[0],T=v+R[1].length-1,M={colStart:f?I:v,rowStart:f?v:I,colEnd:f?I:T,rowEnd:f?T:I};p.insertNonOverlapping({colStart:M.colStart,rowStart:M.rowStart,colEnd:M.colEnd,rowEnd:M.rowEnd,value:new Fe(M,_)})}}}const h=t.spillInserts;if(h){const m=h.length;for(let f=0;f<m;f++){const _=h[f],p=_.value;_.value=new Pn(E.CoordUtils.sanitizeRange(_),0,p)}e.spillSpatial.load(h)}const d=t.pendingUpdates;if(d){const m=e.pendingSpatial,f=d.length;for(let _=0;_<f;_++){const p=d[_];p.value===!1&&(p.value=null),m.insertNonOverlapping(p)}}const u=t.errorInserts;u&&e.calcErrorsSpatial.load(u);const g=t.formulaInserts;if(g){const m=Qe(g);this._autoFit(m,Ol)}if(i.commit({forceAmend:!0,viewAfter:{calculationSideEffect:!0}}),(t.bounds||t.isFull)&&!this._initializing){const m=this._rangesListenerMap;if(m.size>0){const f={isDataChange:!0,isTransactional:!1,timeStamp:Date.now(),isUndo:!1,trigger:"calc"};this._notifyRangeListeners(this._rangeListenerSpatial,m,[t.bounds??this._entireCoords],f)}(h||r)&&this._emitter.notify("onSpillsChange")}}_calculate(t,e){const n=this._getState().calcGraph;n.invalidate(t),n.calculate(e)}_calculateFull(){this._initializing||E.CommonUtils.debounce(()=>{this._getState()?.calcGraph.calculate({full:!0})},100)()}_setComments(t,e,n){const r=n?.description??"Set Comments",o=vt(t),s=this._beginCommit({description:r});let i=null;try{const a=this._getState();if(!a)return E.CommonUtils.EmptyArray;const c=a.commentsSpatial;let h=c;const d=t.length;for(let u=0;u<d;u++){const g=t[u];let m=null;if(e!==null){let f=e;if(!f)continue;m=typeof f=="string"?{content:{runs:{text:f}}}:{...f}}i=E.CoordUtils.unionRanges(i,g),c===h&&(h=c.clone()),h.insertNonOverlapping({...g,value:m})}this._lastUsedCoordsRead.coords=null,this._updateState({commentsSpatial:h}),this._commitAndAutoSelect(s,o,n?.autoSelect,{viewAfter:{ranges:t}})}catch(a){throw s.rollback(),a}}_clear(t,e=null,n,r=!1,o=!1){let s=null,i="Clear",a=!1,c=!1,h=!1,d=!1;e===exports.ICell.Content.Formulas?(i=`${i} Formulas`,d=!0):e===exports.ICell.Content.Values?(i=`${i} Values`,d=!0):e===exports.ICell.Content.Formats?(i=`${i} Formats`,a=!0,s=["formatCells"]):e===exports.ICell.Content.Comments?(i=`${i} Comments`,h=!0):e===exports.ICell.Content.Hyperlinks?(i=`${i} Hyperlinks`,c=!0,s=["formatCells"]):(s=[],i=`${i} All`,d=!0,a=!0,c=!0,h=!0),s!==null&&this._protectionCheck(()=>s,t,n?.description??i);const u=vt(t),g=this._beginCommit({description:n?.description??i});let m=this._getState(),f=m.cellValuesGrid,_=m.calcGraph,p=m.contentfulSpatial,S=m.formulaSpatial,C=m.spillSpatial,y=m.pendingSpatial,I=m.calcErrorsSpatial,w=m.rangesListenerSpatial2;d&&(f=f.clone(),_=_.clone(),p=p.clone(),S=S.clone(),C=C.clone(),y=y.clone(),I=I.clone());try{if(c&&this._setHyperlinks(t,null),h&&this._setComments(t,null),a&&(this._updateStyles(t,null),r||this._unmerge(t)),a||d){js(0,t,[],p,C,f);const b=t.length;for(let x=0;x<b;x++){const R=t[x];if(d){f.delete(R);const M={...R,value:null};p.insertNonOverlapping(M);const F=_.delete(R);this._updateFormulaSpatial(S,null,F)}const v=this.getTables().getItems({address:R}),T=v.length;for(let M=0;M<T;M++){const F=v[M];E.CoordUtils.isRangeWithinRange(F.getAnchorCoords(),R)&&(e===exports.ICell.Content.Formats?F.updateStyleOptions({name:null}):F.delete())}if(a){let M=m.conditionalSpatial;M.size()>0&&(M=M.clone(g.getId()),M.insertNonOverlapping({...R,value:null},{noMerge:!0}),m=this._updateState({conditionalSpatial:M}))}if(o){const M=w.search(R),F=M.length;for(let N=0;N<F;N++){const O=M[N];E.CoordUtils.isRangeWithinRange(O,R)&&(w===m.rangesListenerSpatial2&&(w=w.clone()),console.log("cut and move listener"),w.remove(O))}}}}this._updateState({cellValuesGrid:f,calcGraph:_,contentfulSpatial:p,formulaSpatial:S,spillSpatial:C,pendingSpatial:y,calcErrorsSpatial:I,rangesListenerSpatial2:w}),this._commitAndAutoSelect(g,u,n?.autoSelect,{viewAfter:{ranges:t}})}catch(b){throw g.rollback(),b}}_merge(t,e=null){if(this._protectionCheck(Vd,t),t.length===1&&E.CoordUtils.isSingleCell(t[0]))return;let n=A.IRange.Orientations.Both;e?.orientations?n=e?.orientations:e===A.IRange.Orientations.Row?n=A.IRange.Orientations.Row:e===A.IRange.Orientations.Column&&(n=A.IRange.Orientations.Column);const r=e?.discardMultipleValues??!1;let o=vt(t);const s=this.getSelection().getCoords();let i=null;const a=this._beginCommit({description:e?.description??"Merge"});let c=t[0];try{const h=this._getMerges(t);if(uo(t)||h.length>0){const m=E.CoordUtils.unionRangesArrays(h),f=E.CoordUtils.unionRangesArrays(t);if(!(!m&&!f||m&&f&&E.CoordUtils.isRangeWithinRange(m,f)))throw console.warn(Mh,t),new Error(Mh);this._unmerge(h)}const d=this._createIncrementalUpdater({orientation:A.IRange.Orientation.Column}),u=[],g=[];try{const m=this._entireCoords,f=this._getState().contentfulSpatial,_=this._getState().directStyleSpatial;let p=!1;const S=I=>{const w={rowIndex:I.rowStart,colIndex:I.colStart};let b=null;if(p){let L=0;const B=f.search(I),U=B.length;for(let D=0;D<U;D++){const z=E.CoordUtils.intersectRanges(B[D],I);if(z&&(L+=(z.rowEnd-z.rowStart+1)*(z.colEnd-z.colStart+1)),L>1)throw new E.TypedError("Merging cells would cause some values to be discarded. Use 'discardMultipleValues' option if desired.","discardMultipleValues")}}b||(b=w);let x=null,R=null,v=null,T=null,M=null,F=null,N=null;Et.colStart=I.colStart,Et.rowStart=I.rowStart,Et.colEnd=I.colStart,Et.rowEnd=I.rowStart;let O=_.search(Et);if(O.length>0){N=O[0].value?.getPropertiesAt(I.rowStart,I.colEnd,null);const B=N?.border;x=B?.left??null,R=B?.top??null,M=B?.right??null,F=B?.bottom??null}if(Et.colStart=I.colEnd,Et.colEnd=I.colEnd,O=_.search(Et),O.length>0){const L=O[0],B=L.value?.getPropertiesAt(I.rowStart,I.colEnd,null)?.border;B&&B.right&&(v=B.right)}if(Et.colStart=I.colStart,Et.colEnd=I.colStart,Et.rowStart=I.rowEnd,Et.rowEnd=I.rowEnd,O=_.search(Et),O.length>0){const L=O[0],B=L.value?.getPropertiesAt(I.rowEnd,I.colStart,null)?.border;B&&B.bottom&&(T=B.bottom)}if(!v||!T){Et.colStart=I.colEnd,Et.colEnd=I.colEnd,Et.rowStart=I.rowEnd,Et.rowEnd=I.rowEnd,O=_.search(Et);const L=O?.[0];if(L){const B=L.value?.getPropertiesAt(I.rowEnd,I.colEnd,null)?.border;B&&(v||(v=B.right??null),T||(T=B.bottom??null))}}u.push({...I,value:null}),u.push({...I,value:{...N,border:{top:R,left:x,right:v??M,bottom:T??F,horizontal:null,vertical:null}}}),E.CoordUtils.isEqualCells(b,w)||d.pushAt(b.rowIndex,b.colIndex,null),g.push(I),c=E.CoordUtils.unionRanges(c,I)},C=[...t].sort(E.CoordUtils.createRangeComparator(A.IRange.Orientation.Column)),y=C.length;for(let I=0;I<y;I++){const w=C[I];if(!E.CoordUtils.isSingleCell(w)){if(i||!s||!E.CoordUtils.isCellWithinRange(s.cell,w)||s.cell.rowIndex===w.rowStart&&s.cell.colIndex===w.colStart||(i={...o,cell:{rowIndex:w.rowStart,colIndex:w.colStart}}),!r&&(p=f.search(w).length>0),this._validateOrRemoveOverlaps(w,"merge"),w.colStart<m.colStart||w.rowStart<m.rowStart||w.colEnd>m.colEnd||w.rowEnd>m.rowEnd)throw new Error("We can't merge outside of the maximum cell location.");if(n===A.IRange.Orientations.Column){const b=w.rowEnd!==m.rowEnd?w.rowEnd:Math.max(1,m.rowEnd);for(let x=w.rowStart;x<=b;x++)S({...w,rowStart:x,rowEnd:x})}else if(n===A.IRange.Orientations.Row){const b=w.colEnd!==m.colEnd?w.colEnd:Math.max(1,m.colEnd);for(let x=w.colStart;x<=b;x++)S({...w,colStart:x,colEnd:x})}else S(w)}}d.apply(),this._indexMerges(g),this._updateStyles(u),this._updateState({})}catch(m){throw m.type?new E.TypedError(m.message??"Unable to merge",m.type):new Error(m.message??"Unable to merge")}i&&(o=i,this.getSelection().updateCoords(i)),a.commit({viewAfter:{view:this.getView(),selection:o,merges:t,ranges:t,selectOptions:e?.autoSelect}}),this._autoSelect(e?.autoSelect??!1,o)}catch(h){throw a.rollback(),h}}_unmerge(t,e){if(this._protectionCheck(Vd,t),uo(t))throw new Error("We can't unmerge intersecting ranges.");if(!this._getState())return null;const n=E.CoordUtils.unionRangesArrays(t),r=vt(t),o=this._beginCommit({description:e?.description??"Unmerge"}),s=o.getState(this).mergeSpatial,i=[];try{const a=t.length;for(let c=0;c<a;c++){const h=t[c],d=s.search(h),u=d.length;for(let g=0;g<u;g++){const m=d[g];if(!E.CoordUtils.isSingleCell(h)&&!E.CoordUtils.isRangeWithinRange(m,n))throw new Error("We can't unmerge partial cells.");i.push(m)}}if(i.length===0)return o.rollback(),null;this._indexMerges(null,i),this._commitAndAutoSelect(o,r,e?.autoSelect,{viewAfter:{merges:t,ranges:t}})}catch(a){throw o.rollback(),a}}_getMerges(t,e=!1){return t.length===0?E.CommonUtils.EmptyArray:this._getRangedEntries("mergeSpatial",t,{excludeHidden:e,fullyContained:!1,onEntry:n=>n.getCoords()})}_clone(){const t={...this._options,container:null};this._ownStyles&&(t.styles=this._styles),this._ownStrings&&(t.strings=this._strings),this._ownResources&&(t.resources=this._resources),this._ownNames&&(t.names=this._names),this._ownsCalculation&&(t.calculation=this._calculation),t.transactions=new ve({transient:!0});const e=new Ar(t),n=this._transactions.getState(this);e._updateState(n);const r=new Nl({sheet:this,json:this.getView().toJSON()});return r.selectMovables(this.getView().getMovableSelection()),e.setView(r),e}_getSnapshot(t,e){if(t.length===0)return E.CommonUtils.EmptyArray;const n=this._getState();if(!n)return null;e=Object.freeze({...e});const r=this._clone();r.isMarked=!0;const o=this,s=o.getView(),i="Range",a=[],c=((p,S,C,y)=>{const I=[];let w=null,b=null;const x=C&&C.length>0;if(x){const v=C.length;for(let T=0;T<v;T++){const M=C[T].getSnapshot?.(y);M&&(I.push(M),w=Pl(M.getCoords(),w))}}else if(S){const v=S.length;for(let T=0;T<v;T++){const M=S[T],F=p.getMovables().getItems({excludeHidden:!1,fullyContained:!0,address:M}),N=F.length;for(let O=0;O<N;O++){const L=F[O].getSnapshot?.(y);L&&(I.push(L),w=Pl(p.getRange(M).getBounds(),w),b=E.CoordUtils.unionRanges(b,M))}}}if(I.length===0)return null;const R=()=>y.description??(I?.length===1?Ir(I[0]?.getName()):"Drawings");return{copyTo:async(v,T)=>{const M={...y,...T},F=v.getSheet(),N=F.getView(),O=N.getMovableSelection(),L=v.getCoords(),B=M?.isCut??!1,U=N.getMovableSelection();N.selectMovables([]);const D=F.beginCommit(M.description??`${B?"Cut":"Copy"} ${R()}`);try{let z=0,k=0;if(U.length>0&&I.length>0){let H=Number.MAX_SAFE_INTEGER,W=Number.MAX_SAFE_INTEGER;for(let K=0;K<O.length;K++){const rt=O[K].getBounds();H=Math.min(rt.x,H),W=Math.min(rt.y,W)}let V=Number.MAX_SAFE_INTEGER,$=Number.MAX_SAFE_INTEGER;const nt=I.length;for(let K=0;K<nt;K++){const rt=I[K].getCoords();V=Math.min(rt.x,V),$=Math.min(rt.y,$)}z=H-V,k=W-$;const et=I[0].getCoords(),at={...et,x:et.x+z,y:et.y+k},q=Md(F.getMovables(),at);z+=q.x,k+=q.y}else if(w){const H=F.getRange(L).getBounds();z=H.x-w.x,k=H.y-w.y}const P=[],j=I.length;for(let H=0;H<j;H++){const W=I[H],V=W.getCoords(),$={...V,x:V.x+z,y:V.y+k};P.push(W.copyTo({movables:F.getMovables(),bounds:$},{autoSelect:{addToSelection:!0},...M}))}await Promise.all(P),D?.updateState(F,H=>H),D.commit({viewBefore:H=>({...H,view:p.getView(),movableSelection:U})})}catch(z){throw D.rollback(),z}return null},getName:R,getCoords:()=>b,getMarkOptions:()=>y,toText:()=>x?I[0].toText?.()??null:null,toHtml:()=>x?I[0].toHtml?.()??null:null,toImage:()=>x?I[0].toImage?.()??null:null,getSource:()=>p,isISnapshot:!0}})(r,t,s.getMovableSelection(),e);if(c){if(s.getMovableSelection().length>0)return c;a.push(c)}if(t.length>1)throw new Error(Bh);const h={singleMerge:null};a.push({copyTo(p,S){const C={...e,...S};let y=null;if(!C.skipBlanks){const w=p.getSheet(),b=p.getCoords(),x=Bs(b,t[0],C?.fitDestination,C?.transpose);y=w.getRange(x);let R=!1;const v=y.getMerges();if(v.length===1&&E.CoordUtils.isEqualRanges(v[0],b))if(E.CoordUtils.isSingleCell(t[0]))R=!0;else{const T=(I=_)?{colIndex:I.colStart,rowIndex:I.rowStart}:null;r._getMerges([E.CoordUtils.cellToRange(T)]).length===1&&(R=!0)}return R?(h.singleMerge=b,y.clear(C.type??exports.ICell.Content.Values)):y.clear(C.type),x}var I}});const d=r._entireCoords,u=t.length;for(let p=0;p<u;p++){const S=t[p],C=n.rangeListenerSpatial.search(S,!1),y=n.rangesListenerMap;a.push({async copyTo(I,w){if(!w.isCut)return;const b=new Set,x=C.length;for(let R=0;R<x;R++){const v=C[R].value,T=v.id;if(b.has(T))continue;const M=y.get(T);if(b.add(T),M.ranges[v.offset]===null)return;const F={isTransactional:!0,isDataChange:!1,trigger:"moveCells",from:r.getRanges(t),to:I},N=r._createRangeEvent(M.ranges,F);r._notifyRangeListener2(M,N,F)}return null},getMarkOptions:()=>e,getCoords:()=>null,isISnapshot:!0})}const g={excludeHidden:!1,fullyContained:!0,onEntry:p=>p.model};for(let p=0;p<u;p++){const S=t[p],C=r._getRangedEntries("tableSpatial",[S],g),y=C.length;for(let I=0;I<y;I++){const w=C[I],b=w.getAnchorCoords(),x=b.colStart-S.colStart,R=b.rowStart-S.rowStart,v=w.getSnapshot(e);a.push({async copyTo(T,M){const F=T.getSheet(),N=T.getCoords();if(r.getProtection().isLocked())return;const O={colStart:N.colStart+x,rowStart:N.rowStart+R,colEnd:N.colEnd+x,rowEnd:N.rowEnd+R};return v.copyTo({tables:F.getTables(),range:O},M)}})}}for(let p=0;p<u;p++){const S=t[p];a.push(Nd(o.getColumnHeaders().getRange(S),S,Object.freeze({...e,includeHeaders:S.rowStart<=d.rowStart&&S.rowEnd>=d.rowEnd})))}for(let p=0;p<u;p++){const S=t[p];a.push(Nd(o.getRowHeaders().getRange(S),S,Object.freeze({...e,includeHeaders:S.colStart<=d.colStart&&S.colEnd>=d.colEnd})))}const m=AS(o,r,t,i,e,(p,S)=>r._copyRange(o,r,t,p,S,h));a.push(m);const f=r._getState().calcGraph.getSnapshot({range:t[0]});a.push({async copyTo(p,S){const C=p.getSheet(),y=p.getCoords();if(r.getProtection().isLocked())return;const I=C._getState().calcGraph;return f.copyTo({calcGraph:I,range:y},S)}});const _=t[0];return((p,S,C,y,I,w,b=null)=>({async copyTo(x,R){let v=null;const T={...I,...R},M=C.beginCommit(T.description??w);try{const F=p.length;for(let N=0;N<F;N++){const O=await p[N].copyTo(x,T);O&&(v=E.CoordUtils.unionRanges(v,O))}M.commit()}catch(F){throw M.rollback(),F}return v},getMarkOptions:()=>I,getName:()=>w,getSource:()=>S,getCoords:()=>y,toText(){let x=b?.toText?.()??null;const R=p.length;for(let v=0;!x&&v<R;v++)x=p?.[v].toText?.();return x??null},toHtml(){let x=b?.toHtml?.()??null;const R=p.length;for(let v=0;!x&&v<R;v++)x=p?.[v].toHtml?.();return x??null},toImage(){let x=b?.toImage?.()??null;const R=p.length;for(let v=0;!x&&v<R;v++)x=p?.[v].toImage?.();return x??null},isISnapshot:!0}))(a,o,r,_,e,i,m)}async _copyRange(t,e,n,r,o,s){if(n.length>1)throw new Error("Only a single selection is supported when using 'Insert Copy'.");if(!n||n.length===0)throw new Error("The source has no range.");const i=r.getSheet();let a=r.getCoords(),c={...n[0]};const h=(o={...o}).isCut;let d=!o.type||o.type===exports.ICell.Content.Formats,u=!o.type||o.type===exports.ICell.Content.Values,g=!o.type||o.type===exports.ICell.Content.Formats||o.type===exports.ICell.Content.Hyperlinks;const m=i.getEntireRange(),f=m.getCoords(),_=[],p=[],S=[];let C=[],y=[];const I=(o.fitDestination??!1)&&!E.CoordUtils.isSingleCell(a),w=Bs(a,c,I,o.transpose);if(I&&(c={...c,colEnd:c.colStart+Math.min(w.colEnd-w.colStart,c.colEnd-c.colStart),rowEnd:c.rowStart+Math.min(w.rowEnd-w.rowStart,c.rowEnd-c.rowStart)}),!E.CoordUtils.isRangeWithinRange(w,f))throw console.warn(w,f),new Error("We can't paste outside of the sheet bounds.");let b=null;b=o.undoRange?{view:i.getView(),selection:vt([o.undoRange.getCoords()])}:{sheet:i,selection:vt([w])};const x=i.getTransactions().beginCommit({description:o.description??"Paste"});try{if(!this._getState())return E.CommonUtils.EmptyArray;const R=new Set,v=o.transpose;let T=!((v||o.adjustCells)&&d)&&R.size===1;if(T){const W=R.values().next();T=E.CoordUtils.isRangeWithinRange(c,W.value.getCoords())&&!go(c,W.value.getCoords())}T&&(T=i.getTables().getItems({address:w}).length===0),v&&(T=!0),s.singleMerge&&(d=!1,g=!1);const M=a.colStart-c.colStart,F=a.rowStart-c.rowStart,N=o.adjustCells;let O={...s0};if(delete O[Y.Type.Style],!d){const W=this.getProtection().isLocked();O={},W&&(O[Y.Type.Unlock]=!1)}const L=A.IRange.Orientation.Column;let B;if(u){B=m.startIncrementalUpdates({orientation:o.transpose?A.IRange.Orientation.Row:A.IRange.Orientation.Column});const W={orientation:L,includeRangeTypes:O,bounds:c},V=new fl(this._strings,W,this._cellOptions),$=(q,K,rt)=>{const mt=q[0],G=V.setState(q),lt=V.context,st=lt.getCell(),tt=st.isTopLeft();let J=F,X=M;if(v){const Z=mt.colIndex-c.colStart,ot=mt.rowIndex-c.rowStart;J=Z+rt+a.rowStart,X=ot+K+a.colStart}else J=F+mt.rowIndex+K,X=M+mt.colIndex+rt;let Q=!1;const ct={value:void 0,style:void 0,hyperlink:void 0};if(u&&(ct.value=G,Q=!0),d){const Z=q[2];Z&&(Z.directStyle||Z.table)&&(ct.style=st.getStyle(!T),Q=!0)}g&&(ct.hyperlink=st.getHyperlink(),Q=!0);let ft=ct;if(N&&tt){const Z=N(G,lt,{rowIndex:J,colIndex:X},o);Z!==void 0&&(ft=Z,Q=!0)}if(Q&&(B.pushAt(J,X,ft),d)){const Z=st.getSpans();(Z.width>1||Z.height>1)&&tt&&_.push({colStart:X,rowStart:J,colEnd:X+(o.transpose?Z.height:Z.width)-1,rowEnd:J+(o.transpose?Z.width:Z.height)-1})}},nt=this._cellStateIterator(W);let et={next(){const q=nt.next();if(q.done)return Ct;const K=q.value[0];let rt;return q.value&&(rt=[K,q.value]),{done:q.done,value:rt}}};if(!s.singleMerge&&!E.CoordUtils.isEqualRanges(w,c)){const q=w.colEnd-w.colStart+1,K=w.rowEnd-w.rowStart+1;et=new Zl({delegate:et,bounds:c,orientation:L,dims:{major:o.transpose?K:q,minor:o.transpose?q:K}})}let at=et.next();for(;!at.done;){const q=at.value,K=q[1],rt=q[0],mt=K[0];$(K,rt.rowIndex-mt.rowIndex,rt.colIndex-mt.colIndex),at=et.next()}}const U=e._getState(),D={},z={transpose:v??!1};d&&(D.directStyleSpatial=U.directStyleSpatial,D.continuousFillSpatial=U.continuousFillSpatial,D.mergeSpatial=U.mergeSpatial),h&&(t._clear([c],void 0,void 0,!1,!0),C.push(c),D.rangesListenerSpatial2=U.rangesListenerSpatial2);const k=i,P=k._getState(),j=Object.keys(D),H=j.length;for(let W=0;W<H;W++){const V=j[W],$=D[V].createCopiedEntries(c,w,z),nt=P[V].clone(),et=$.removes,at=et.length;for(let q=0;q<at;q++)nt.remove(et[q]);nt.load($.inserts),P[V]=nt}k._updateState(P),C.push(w),y.push(w),p&&p.length>0&&k._colHeaders.updateHeaderPairs(p),S&&S.length>0&&k._rowHeaders.updateHeaderPairs(S),B?.apply(),_.length>0&&i.getRanges(_).merge(),x.commit({viewBefore:b,viewAfter:W=>({...W,view:i.getView(),selection:vt(y),ranges:C})})}catch(R){throw console.warn(R),x.rollback(),new Error((v=>`Unable to paste: ${v}`)(R.message),{cause:R})}return E.CoordUtils.unionRangesArrays(y)}_snapShotFromSource(t,e){if(t.isISnapshot)return t;const n=t;let r=null;if(n?.isICellRanges)throw new Error(Bh);if(r=n?.isICellRange?n:this.getRange(n),r.isICellRange){const o=r;if(o.isInvalid())throw new Error(Dh);return o.getSnapshot(e)}throw new Error(Dh)}async _copyFrom(t,e,n){if(!e)throw new Error("Both a source and a destination are required to copy.");const r=this._snapShotFromSource(e),o="Paste",s=this._beginCommit({description:n?.description??o});let i=null;try{const a=this.getRange(t);i=await r.copyTo(a,n);const c=r.getName(),h=[i];n?.isCut&&h.push(r.getCoords()),s.commit({description:c?n?.description??`${o} ${c}`:o,viewAfter:{view:this.getView(),selection:vt([i]),ranges:h}})}catch(a){throw s.rollback(),a}return i}_createFilter(t,e,n){const r=this;return new Mg({initialAnchor:t,maxRangeCoords:this._entireCoords,json:e,transactions:this._transactions,deleteFromContainer:o=>{const s=this._beginCommit({description:o?.description??"Delete Filter"});this._updateState({filter:null}),s.commit()},apply:o=>{console.log("apply Filter",o)},processUpdate:()=>{},isProtected:()=>!r._initializing&&!r.getProtection().isAutoFilterAllowed()})}insertFilter(t){const e=this._rangeToCoords(t,()=>["autoFilter"]);let n=this.getFilter();if(n)return n;n=this._createFilter(e);const r=vt([e]),o=this._beginCommit({description:"Insert Filter"});return this._updateState({filter:n}),o.commit({viewAfter:{ranges:[e],view:this.getView(),selection:r,selectOptions:void 0}}),n}getFilter(){return this._getState()?.filter??null}insertSort(t){return this._rangeToCoords(t,()=>["sort"]),null}getSort(){return null}_getDefaultShiftOrientation(t){return O_(t,this._entireCoords)}_getDefaultSortCriteria(t,e,n){return sd(this,t,n?this._cellToCoords(n):null,e)}async _insertFrom(t,e,n){if(!e)throw new E.NullNotAllowedError;const r=this._snapShotFromSource(e),o=r.getCoords();let s=Bs(t[0],o,n?.fitDestination),i=Vr([s]),a=i;const c=n?.orientation??this._getDefaultShiftOrientation(s),h=this._beginCommit({description:n?.description??"Insert Copied Cells",autoSelect:n?.autoSelect});try{if(this._insertCells([s],c),await this._copyFrom(s,r,{...n,isCut:!1}),n.isCut){const d={...o};if(i=Vr([d]),s={...s},this===r.getSource()){if(c===A.IRange.Orientation.Row){if(s.colStart<d.colStart&&s.colEnd>=d.colStart||s.colEnd>d.colEnd&&s.colStart<=d.colEnd)throw new Error(Lh);if(d.colStart===s.colStart&&d.colEnd===s.colEnd){const u=d.rowEnd-d.rowStart+1;s.rowStart<=d.rowStart?(d.rowStart+=u,d.rowEnd+=u):(s.rowStart-=u,s.rowEnd-=u)}}else{if(s.rowStart<d.rowStart&&s.rowEnd>=d.rowStart||s.rowEnd>d.rowEnd&&s.rowStart<=d.rowEnd)throw new Error(Lh);if(d.rowStart===s.rowStart&&d.rowEnd===s.rowEnd){const u=d.colEnd-d.colStart+1;s.colStart<=d.colStart?(d.colStart+=u,d.colEnd+=u):(s.colStart-=u,s.colEnd-=u)}}a=Vr([s])}r.getSource().getRanges([d]).delete(c)}h.commit({viewBefore:{ranges:t,view:this.getView(),selection:i,selectOptions:n?.autoSelect},viewAfter:{ranges:t,view:this.getView(),selection:a,selectOptions:n?.autoSelect}}),this._autoSelect(n?.autoSelect??!1,a)}catch(d){throw h.rollback(),d}return s}_insertCells(t,e,n,r=void 0){const o=this;r=r??((f,_)=>{o._validateCoords(f,_??cl)});const s=n?.description??"Insert Cells",i=(e??this._getDefaultShiftOrientation(t[0]))===A.IRange.Orientation.Column;if(this._protectionCheck(()=>[i?"insertColumns":"insertRows"],t,s),uo(t))throw new Error("We can't insert cells with overlapping selections.");const a=this._entireCoords;let c=a.colEnd,h=a.rowEnd;const d=vt(t),u=this._beginCommit({description:s,operation:{name:"insertCells"}}),g=u.getState(this),m=i?A.IRange.Direction.Right:A.IRange.Direction.Down;try{let f=g.cellValuesGrid,_=g.contentfulSpatial,p=g.unlockSpatial,S=g.mergeSpatial,C=g.directStyleSpatial,y=g.continuousFillSpatial,I=g.conditionalSpatial,w=g.hyperlinkSpatial,b=g.commentsSpatial,x=g.movableSpatial,R=g.tableSpatial,v=g.calcGraph,T=g.rangesListenerSpatial2,M=g.rangeListenerSpatial,F=g.rangesListenerMap;const N=new Map,O=pn(t.slice(),A.IRange.Direction.Left),L=O.length;for(let z=0;z<L;z++){const k=O[z];c=Math.min(c,k.colStart),h=Math.min(h,k.rowStart);const P=i?k.colEnd-k.colStart+1:k.rowEnd-k.rowStart+1,j=f.getCoords();if(j){const $={...k,colEnd:i?Math.max(k.colEnd,j?.colEnd??k.colStart)+(k.colEnd-k.colStart+1):k.colStart,rowEnd:i?k.rowStart:Math.max(k.rowEnd,j?.rowEnd??k.rowStart)+(k.rowEnd-k.rowStart+1)},nt=_.search($),et=nt.length;for(let at=0;at<et;at++){const q=nt[at],K={...k};i?K.colEnd=Math.max(K.colEnd,q.colEnd)+P:K.rowEnd=Math.max(K.rowEnd,q.rowEnd)+P,r(K)}f=f.clone(),f.shift(k,m),this._updateState({cellValuesGrid:f})}const H=k.colStart<=a.colStart&&k.colEnd>=a.colEnd,W=k.rowStart<=a.rowStart&&k.rowEnd>=a.rowEnd,V=($,nt,et,at)=>{let q=null;et>1&&(q=$.at(et-1));const K=at-et+1;nt?.(et,K),q&&$.updateHeaderPairs([{address:{min:et,max:at},update:q}])};H&&V(this._rowHeaders,this._rowHeadersShiftCallback,k.rowStart,k.rowEnd),W&&V(this._colHeaders,this._colHeadersShiftCallback,k.colStart,k.colEnd),_=_.shift({range:k,direction:m,cloneIfUpdate:_===g.contentfulSpatial,coordValidator:r}),p=p.shift({range:k,direction:m,cloneIfUpdate:p===g.unlockSpatial,coordValidator:r}),S=S.shift({range:k,direction:m,cloneIfUpdate:S===g.mergeSpatial,coordValidator:r}),C=C.shift({range:k,direction:m,cloneIfUpdate:C===g.directStyleSpatial,coordValidator:r}),y=y.shift({range:k,direction:m,cloneIfUpdate:y===g.continuousFillSpatial,coordValidator:r}),I=I.shift({range:k,direction:m,cloneIfUpdate:I===g.conditionalSpatial,coordValidator:r}),w=w.shift({range:k,direction:m,cloneIfUpdate:w===g.hyperlinkSpatial,coordValidator:r}),b=b.shift({range:k,direction:m,cloneIfUpdate:b===g.commentsSpatial,coordValidator:r}),x=x.shift({range:k,direction:m,cloneIfUpdate:x===g.movableSpatial,coordValidator:r}),R=R.shift({range:k,direction:m,cloneIfUpdate:R===g.tableSpatial,coordValidator:r}),v=v.shift({range:k,direction:m,cloneIfUpdate:v===g.calcGraph}),M=M.shift({range:k,direction:m,cloneIfUpdate:M===g.rangeListenerSpatial,onShift:$=>{F===g.rangesListenerMap&&(F=new Map(F)),this._processListenerShift(F,N,g.rangesListenerMap,$)}}),T=T.shift({range:k,direction:m,cloneIfUpdate:T===g.rangesListenerSpatial2,coordValidator:r})}let B=g.formulaSpatial,U=g.spillSpatial,D=g.pendingSpatial;v!==g.calcGraph&&(B=B.clone(),U=U.clone(),D=D.clone()),this._updateState({contentfulSpatial:_,unlockSpatial:p,mergeSpatial:S,directStyleSpatial:C,continuousFillSpatial:y,conditionalSpatial:I,hyperlinkSpatial:w,commentsSpatial:b,movableSpatial:x,tableSpatial:R,calcGraph:v,formulaSpatial:B,spillSpatial:U,pendingSpatial:D,rangesListenerSpatial2:T,rangeListenerSpatial:M,rangesListenerMap:F}),this._commitAndAutoSelect(u,d,n?.autoSelect,{viewAfter:{ranges:O,listeners:N}})}catch(f){throw console.warn(f),u.rollback(),f instanceof E.OutOfBoundsError?new Error(f.message??cl):f}}_deleteCells(t,e,n){const r=(e??this._getDefaultShiftOrientation(t[0]))===A.IRange.Orientation.Column,o=n?.description??"Delete Cells";if(this._protectionCheck(()=>[r?"deleteColumns":"deleteRows"],t,o),uo(t))throw new Error("We can't delete cells with overlapping selections.");const s=this._entireCoords;let i=s.colEnd,a=s.rowEnd;const c=r?A.IRange.Direction.Left:A.IRange.Direction.Up,h=vt(t),d=this._beginCommit({description:o,operation:{name:"deleteCells"}}),u=d.getState(this);try{let g=u.cellValuesGrid,m=u.contentfulSpatial,f=u.mergeSpatial,_=u.unlockSpatial,p=u.directStyleSpatial,S=u.continuousFillSpatial,C=u.conditionalSpatial,y=u.hyperlinkSpatial,I=u.commentsSpatial,w=u.movableSpatial,b=u.movableMapModel,x=u.tableSpatial,R=u.tableMapModel,v=u.calcGraph,T=u.rangesListenerSpatial2,M=u.rangeListenerSpatial,F=u.rangesListenerMap;const N=new Map,O=pn(t.slice(),A.IRange.Direction.Left),L=O.length;for(let B=0;B<L;B++){const U=O[B];i=Math.min(i,U.colStart),a=Math.min(a,U.rowStart),g.getCoords()&&(g=g.clone(),g.shift(U,c),this._updateState({cellValuesGrid:g}));const D=U.colStart<=s.colStart&&U.colEnd>=s.colEnd,z=U.rowStart<=s.rowStart&&U.rowEnd>=s.rowEnd;D&&this._rowHeadersShiftCallback(U.rowStart,-1*(U.rowEnd-U.rowStart+1)),z&&this._colHeadersShiftCallback(U.colStart,-1*(U.colEnd-U.colStart+1)),m=m.shift({range:U,direction:c,cloneIfUpdate:m===u.contentfulSpatial}),_=_.shift({range:U,direction:c,cloneIfUpdate:_===u.unlockSpatial}),f=f.shift({range:U,direction:c,cloneIfUpdate:f===u.mergeSpatial}),p=p.shift({range:U,direction:c,cloneIfUpdate:p===u.directStyleSpatial}),S=S.shift({range:U,direction:c,cloneIfUpdate:S===u.continuousFillSpatial}),C=C.shift({range:U,direction:c,cloneIfUpdate:C===u.conditionalSpatial}),y=y.shift({range:U,direction:c,cloneIfUpdate:y===u.hyperlinkSpatial}),I=I.shift({range:U,direction:c,cloneIfUpdate:I===u.commentsSpatial}),w=w.shift({range:U,direction:c,cloneIfUpdate:w===u.movableSpatial}),x=x.shift({range:U,direction:c,cloneIfUpdate:x===u.tableSpatial}),v=v.shift({range:U,direction:c,cloneIfUpdate:v===u.calcGraph}),M=M.shift({range:U,direction:c,cloneIfUpdate:M===u.rangeListenerSpatial,onShift:k=>{F===u.rangesListenerMap&&(F=new Map(F)),this._processListenerShift(F,N,u.rangesListenerMap,k)}}),T=T.shift({range:U,direction:c,cloneIfUpdate:T===u.rangesListenerSpatial2})}this._updateState({contentfulSpatial:m,unlockSpatial:_,mergeSpatial:f,directStyleSpatial:p,continuousFillSpatial:S,conditionalSpatial:C,hyperlinkSpatial:y,commentsSpatial:I,movableSpatial:w,movableMapModel:b,tableSpatial:x,tableMapModel:R,calcGraph:v,rangesListenerSpatial2:T,rangeListenerSpatial:M,rangesListenerMap:F}),this._commitAndAutoSelect(d,h,n?.autoSelect,{viewAfter:{ranges:O,listeners:N}})}catch(g){throw d.rollback(),g instanceof E.OutOfBoundsError?new Error(g.message??cl):g}}_autoFit(t,e){if(this._closed)throw new Error(le);e={expandOnly:!1,skipCustomSize:!1,minContent:!1,...e};const n="Autofit";let r;const o=vo(t,this._entireCoords,!0),s=bo(t,this._entireCoords,!0);!o&&s?(e.orientations=e.orientations??A.IRange.Orientations.Column,r=`${n} ${Dn}`):!s&&o?(e.orientations=e.orientations??A.IRange.Orientations.Row,r=`${n} ${Bn}`):s&&o?(e.orientations=e.orientations??A.IRange.Orientations.Both,r=`${n} All`):(e.orientations=e.orientations??A.IRange.Orientations.Both,r=`${n}`);let i=e.orientations!==A.IRange.Orientations.Row;this._colHeaders.isProtected()&&(i=!1);let a=e.orientations!==A.IRange.Orientations.Column;if(this._rowHeaders.isProtected()&&(a=!1),!a&&!i)return;const c=i&&(e.expandOnly===!1||e.expandOnly===A.IRange.Orientation.Row),h=a&&(e.expandOnly===!1||e.expandOnly===A.IRange.Orientation.Column),d=e.minContent,u=vt(t),g=this._beginCommit({description:e.description??r});try{let m=Number.MAX_SAFE_INTEGER,f=Number.MIN_SAFE_INTEGER,_=!1,p="",S=-1,C=!1,y=!1,I=!1,w=Number.MAX_SAFE_INTEGER,b=Number.MIN_SAFE_INTEGER;const x=this._styles.getNormal(),R=this._cellOptions,v=e.orientations===A.IRange.Orientations.Row,T=new Map,M=Ql(t,1);M.sort(E.CoordUtils.createRangeComparator(A.IRange.Orientation.Column));const F=M.length,N={skipCustomSize:e.skipCustomSize},O=exports.IFont.getDeviceScale(),L=this._defaultRowHeight()*O,B=(D,z=1)=>{if(D!==0&&D!==null&&!(z>1))return D=Math.max(D,L),k=>h?D:Math.max(k,D)},U=(D,z=1)=>{if(D!==0&&D!==null&&!(z>1))return k=>c?D:Math.max(k,D)};for(let D=0;D<F;D++){const z=[];let k=-1,P=!1,j=x,H=1,W=1;const V=M[D];let $=V.colStart,nt=V.rowStart,et=V.colEnd,at=V.rowEnd;const q=this._getUsedCoords();(h||c)&&q&&($=h?q.colStart:V.colStart,nt=c?q.rowStart:V.rowStart,et=h?q.colEnd:V.colEnd,at=c?q.rowEnd:V.rowEnd);const K={includeRangeTypes:{[Y.Type.Style]:!1,[Y.Type.Merge]:!1,[Y.Type.Contentful]:!1},excludeHidden:!1,bounds:{colStart:$,rowStart:nt,colEnd:et,rowEnd:at},orientation:A.IRange.Orientation.Column},rt=this._cellStateIterator({...K,includeRangeTypes:{[Y.Type.Merge]:!1,[Y.Type.Table]:!1,[Y.Type.Style]:!1},ignoreEmptyIntersections:!0});let mt,G,lt,st=rt.next(),tt=1,J=1;for(;!st.done;){const ft=st.value,Z=ft[0],ot=ft[2];let ut=x;const dt=ot?.directStyle??ot?.table.getStyle()??null;dt===mt?ut=G:(ut=dt?la(0,E.CoordUtils.cellToRange(Z,US),ot,R):x,G=ut);let it=1,St=1;const gt=ot?.merge??null;if(gt===lt)it=tt,St=J;else{if(gt){const Mt=gt.getCoords();it=Mt.colEnd-Mt.colStart+1,St=Mt.rowEnd-Mt.rowStart+1}else it=1,St=1;tt=it,J=St}const xt=Z.colIndex,Lt=Z.rowIndex,Ut=ft[1],Ht=$t(Ut),Re=E.CoordUtils.isCellWithinRange(Z,V);let ie=!1,Wt=!1;if(mt!==dt||it!==H||St!==W||Ht===A.ScalarType.String||Ht===A.ScalarType.Error||Re!==P){if(ie=!0,Ht===A.ScalarType.RichData&&(Wt=!0),!Wt&&ot){const Mt=ut.getAlignment().getHorizontal();Mt!==exports.ITextFrame.HorizontalAlignment.CenterContinuous&&Mt!==exports.ITextFrame.HorizontalAlignment.Fill||(Wt=!0)}Wt&&(ie=!1)}if(mt=dt,lt=gt,(k!==xt||ie)&&(k!==-1&&z.push({col:k,style:j,spanWidth:it,spanHeight:St,minVal:m,maxVal:f,hasZero:_,text:p,textId:S,hasFalse:y,hasTrue:C,hasEmpty:I,minRow:w,maxRow:b,colWidth:this._colHeaders.getSpanSize(k),measureWidth:-1,measureHeight:-1,isFit:P}),k=xt,j=ut,P=Re,H=it,W=St,m=Number.MAX_SAFE_INTEGER,f=Number.MIN_SAFE_INTEGER,_=!1,p="",S=-1,y=!1,C=!1,I=!1,w=Lt),b=Lt,!Wt)if(Ut===null)I=!0;else switch(Ht){case A.ScalarType.Number:Ut===0&&(_=!0),m=Math.min(m,Ut),f=Math.max(f,Ut);break;case A.ScalarType.String:p=Ut,S=Ut;break;case A.ScalarType.Error:p=Ut.toString(),S=-1;break;case A.ScalarType.Boolean:Ut?C=!0:y=!0}st=rt.next()}k!==-1&&z.push({col:k,style:j,spanWidth:H,spanHeight:W,minVal:m,maxVal:f,hasZero:_,text:p,textId:S,hasFalse:y,hasTrue:C,hasEmpty:I,minRow:w,maxRow:b,colWidth:this._colHeaders.getSpanSize(k),measureWidth:-1,measureHeight:-1,isFit:P});let X=-1,Q=-1;const ct=z.length;for(let ft=0;ft<ct;ft++){const Z=z[ft],ot=v||!Z.isFit,ut=Z.maxVal,dt=Z.style,it=Z.colWidth;if(X=0,Q=0,ut!==Number.MIN_SAFE_INTEGER){const gt=yn(A.ScalarType.Number,dt,ut,R,it,d,ot);X=gt.width,Q=gt.height;const xt=Z.minVal;if(xt*ut<0){const Lt=yn(A.ScalarType.Number,dt,xt,R,it,d,ot);X=Math.max(X,Lt.width),Q=Math.max(Q,Lt.height)}if(Z.hasZero&&xt!==0&&ut!==0){const Lt=yn(A.ScalarType.Number,dt,0,R,it,d,ot);X=Math.max(X,Lt.width),Q=Math.max(Q,Lt.height)}}const St=Z.text;if(St.length>0){const gt=yn(A.ScalarType.String,dt,St,R,it,d,ot,void 0,T);X=Math.max(X,gt.width),Q=Math.max(Q,gt.height)}if(Z.hasTrue||Z.hasFalse){const gt=yn(A.ScalarType.Boolean,dt,!Z.hasFalse,R,it,d,ot);X=Math.max(X,gt.width),Q=Math.max(Q,gt.height)}if(Z.hasEmpty){const gt=yn(A.ScalarType.Boolean,dt,null,R,it,d,ot);X=Math.max(X,gt.width),Q=Math.max(Q,gt.height)}Z.measureWidth=X,Z.measureHeight=Q}if(i){const ft=[];for(let Z=0;Z<ct;Z++){let ot=z[Z];const ut=ot.col;let dt=z[Z+1],it=ot.measureWidth??0;for(;dt&&dt.col===ut;)dt.measureWidth&&(it=Math.max(dt.measureWidth??0,it)),Z++,ot=z[Z],dt=z[Z+1];it===0&&(it=null);const St=U(it,ot.spanWidth);ft.push({address:{min:ut,max:ut},update:{size:St,autoSize:!0}})}this._colHeaders.updateHeaderPairs(ft,N)}if(a){let ft=1;const Z={onUpdate:(it,St,gt)=>{if(!(ft>1))return it===null?St:Math.max(St,it)}};let ot=[];for(let it=0;it<ct;it++){const St=z[it];ft=St.spanHeight,ot=wn(ql(ot,{min:St.minRow,max:St.maxRow,value:St.measureHeight},Z))}const ut=ot.length,dt=new Array(ut);for(let it=0;it<ut;it++){const St=ot[it],gt=B(St.value,1),xt={address:{min:St.min,max:St.max},update:{size:gt,autoSize:!0}};dt[it]=xt}this._rowHeaders.updateHeaderPairs(dt,N)}}this._commitAndAutoSelect(g,u,e?.autoSelect,{viewAfter:{ranges:t}})}catch(m){throw g.rollback(),m}}_createRangeEvent(t,e){const n=this,r=()=>{const s=n._getState();return this._closed||s.deleted?tn(null):t?Array.isArray(t)?n._createRanges(t):n._createRange(t):tn(this,this._entireCoords)},o=e.trigger;return{getSource:r,getFrom:()=>e.from??null,getTo:()=>e.to??null,trigger:o,isUndo:e.isUndo??!1,isDataChange:e.isDataChange??!1,isTransactional:e.isTransactional??!0,toString:()=>`SheetRangeEvent: ('${o}', ${r().toString()})`,timeStamp:e.timeStamp??Date.now()}}_notifyAddressListeners(t,e,n,r){const o=e.entries();let s=o.next();const i=r.trigger;for(;!s.done;){const a=s.value[0];let c=s[1];if(c||(c=t.get(a)),c&&!n.has(a)){let h=!1;const d=c.options;d&&(h=i==="address"?d.ignoreAddressChanges:d.ignoreDataChanges),h!==!0&&c.notify(r),n.add(a)}s=o.next()}}_notifyDataListeners(t,e,n=null,r,o){if(!t)return;const s=n.length;for(let i=0;i<s;i++){const a=n[i];if(!a)continue;const c=t.search(a),h=c.length;for(let d=0;d<h;d++){const u=c[d].value.groupId;if(!r.has(u)){const g=e.get(u);g.options?.ignoreDataChanges!==!0&&g.notify(o),r.add(u)}}}}_notifyRangeListeners(t,e,n=null,r){if(!t)return;const o=new Set;r.timeStamp||(r.timeStamp=Date.now());const s=n.length;for(let i=0;i<s;i++){const a=n[i];if(!a)continue;const c=t.search(a),h=c.length;for(let d=0;d<h;d++){const u=c[d].value.id;if(o.has(u))continue;const g=e.get(u);o.add(u);const m=g.ranges,f=m.length;for(let _=0;_<f;_++){const p=m[_],S=this._createRangeEvent(p,r);this._notifyRangeListener2(g,S,r)}}}}_notifyRangeListener2(t,e=null,n=null){if(t.options?.ignoreDataChanges&&n?.isDataChange)return;const o=t.handler??t.handlerW.deref();if(o)try{o?.(e)}catch(s){console.warn(s)}}_notifyUsedRangeChange(){this._lastCellRead.coords=null,this._lastUsedCoordsRead.coords=null,this._emitter.notify("onUsedRangeChange")}_notifyMergeChange(){this._emitter.notify("onMergesChange")}addListeners(t,e){let n=null;if(t.onLayoutChange){const o=t,s={onSizesChange:()=>{o.onLayoutChange(this)}};n=[],n.push(this._colHeaders.addListeners(s,e)),n.push(this._rowHeaders.addListeners(s,e))}let r=this._emitter.addListeners(t,e);if(n){const o=r;r=()=>{const s=n.length;for(let i=0;i<s;i++)n[i]();o()}}return r}_addRangesListeners(t,e,n){if(this._closed)throw new Error(le);if(!e)throw new Error(Rh);n=n?{...gs,...n}:gs;const r=n?.transactional??!1,o=this,s=DS++%Number.MAX_SAFE_INTEGER,i=()=>{let f=null,_=null;if(r){const y=o._getState();if(!y)return;f=y.rangeListenerSpatial.clone(),_=new Map(y.rangesListenerMap)}else f=o._rangeListenerSpatial,_=o._rangesListenerMap;const p=_.get(s);if(!p)return void console.log("Listener not found");const S=p.ranges,C=S.length;for(let y=0;y<C;y++){const I=E.CoordUtils.sanitizeRange(S[y]);I!==null&&f.remove(I,(w,b)=>{if(b.value.id===s)return!0})}if(_.delete(s),r){const y=this._beginCommit({description:"Remove Range Listener"});this._updateState({rangeListenerSpatial:f,rangesListenerMap:_}),y.commit({forceAmend:!0})}},a=[...t];let c={id:s,handler:null,handlerW:null,removeListener:i,options:n,ranges:a};n?.weakly?c.handlerW=new WeakRef(e):c.handler=e;let h=null,d=null,u=null;if(r){u=this._beginCommit({description:"Add Range Listener"});const f=this._getState();h=f.rangeListenerSpatial.clone(),d=new Map(f.rangesListenerMap)}else h=o._rangeListenerSpatial,d=o._rangesListenerMap;const g=[],m=t.length;for(let f=0;f<m;f++){const _={...t[f],value:{id:s,offset:f,options:n}};g.push(_)}return h.load(g),d.set(s,c),u&&(this._updateState({rangeListenerSpatial:h,rangesListenerMap:d}),u.commit({forceAmend:!0})),i}_addRangesListeners2(t,e,n,r){if(this._closed)throw new Error(le);if(!e)throw new Error(Rh);n=n?{...gs,...n}:gs;const o=n?.transactional??!1,s=this,i=E.CommonUtils.uuidV4(),a=LS++,c=()=>{let I=null,w=null;const b=s._getState();if(!b)return;I=b.rangesListenerSpatial2.clone(),w=b.rangesListenerMap2;const x=w.get(i);if(x){const v=x?.spatialsIds,T=x?.coords,M=v.length;for(let F=0;F<M;F++){const N=v[F],O=T[F];I.remove(O,(L,B)=>{if(B.value.uuid===N)return!0})}w=new Map(b.rangesListenerMap2),w.delete(i)}const R=this._beginCommit({description:"Remove Range Listener"});this._updateState({rangesListenerMap2:w}),R.commit({forceAmend:!0}),o||this._rangesListenerSorted.delete(a)};let h=null,d=this._beginCommit({description:"Add Range Listener"});const u=this._getState();h=u.rangesListenerSpatial2.clone();let g=null,m=null;n?.weakly?m=new WeakRef(e):g=e;const f=[],_=[...t];let p=[];const S=t.length;for(let I=0;I<S;I++){const w={...t[I]};_[I]=w;const b=E.CommonUtils.uuidV4(),x=new di(i,b,n?.ignoreAddressChanges??!1);p.push(b);const R={...E.CoordUtils.sanitizeRange(w),value:x};f.push(R)}h.load(f),n={...n};const C=new ui(i,p,_,r,this,a,g,m,c,n),y=new Map(u.rangesListenerMap2);return y.set(i,C),this._updateState({rangesListenerSpatial2:h,rangesListenerMap2:y}),o||this._rangesListenerSorted.set(a,C),d.commit({forceAmend:!0}),c}_getUsedCoords(t){const e=this._getState();if(!e)return null;let n=e.cellValuesGrid.getCoords();return n=E.CoordUtils.unionRanges(e.mergeSpatial.getBoundingCoords(),n),n=E.CoordUtils.unionRanges(e.directStyleSpatial.getBoundingCoords(),n),n=E.CoordUtils.unionRanges(e.formulaSpatial.getBoundingCoords(),n),n=E.CoordUtils.unionRanges(e.spillSpatial.getBoundingCoords(),n),n=E.CoordUtils.unionRanges(e.pendingSpatial.getBoundingCoords(),n),n&&(n.colStart=Math.max(n.colStart,this._entireCoords.colStart),n.rowStart=Math.max(n.rowStart,this._entireCoords.rowStart),n.colEnd=Math.min(n.colEnd,this._entireCoords.colEnd),n.rowEnd=Math.min(n.rowEnd,this._entireCoords.rowEnd)),!n||n.rowStart>n.rowEnd||n.colStart>n.colEnd?(this._lastUsedCoordsRead.coords=null,null):(this._lastUsedCoordsRead&&this._lastUsedCoordsRead.coords&&go(this._lastUsedCoordsRead.coords,n)||(this._lastUsedCoordsRead.coords=n,this._lastUsedCoordsRead.range=null),this._lastUsedCoordsRead.coords)}_isContentful(t,e){return!!this._contentCounts(t,void 0,e)}_getCount(t,e=!1){const n=this._contentCounts(t,zS,e);return n?n[exports.ICell.Content.Values]??0:0}_contentCounts(t,e,n){if(!e){const d=Object.keys(exports.ICell.Content),u=d.length;e=new Array(u);for(let g=0;g<u;g++){const m=d[g];e[g]=exports.ICell.Content[m]}}const r={},o=e.length;let s,i,a=!1;for(let d=0;d<o;d++){const u=e[d];u===exports.ICell.Content.Values?(r[Y.Type.Contentful]=!1,r[Y.Type.Table]=!1):u===exports.ICell.Content.Formulas?r[Y.Type.Formula]=!1:u===exports.ICell.Content.Formats?r[Y.Type.Style]=!1:u===exports.ICell.Content.Tables&&(r[Y.Type.Table]=!1,a=!0)}const c=()=>{s=new Set,i={};for(let d=0;d<o;d++){const u=e[d];i[u]=0}},h=t.length;for(let d=0;d<h;d++){const u=t[d],g=this._rangeStateIterator({includeRangeTypes:r,excludeHidden:n,bounds:u});let m=g.next();for(;!m.done;){i||c();const f=m.value,_=(f.end.colIndex-f.start.colIndex+1)*(f.end.rowIndex-f.start.rowIndex+1),p=f.intersection;if(p){p.contentful&&(i[exports.ICell.Content.Values]+=_),p.formula&&(i[exports.ICell.Content.Formulas]+=_);const S=p.table;S&&(a&&!s.has(S)&&(i[exports.ICell.Content.Tables]+=1,s.add(S)),p.contentful||(i[exports.ICell.Content.Values]+=_))}m=g.next()}}return i}getSelectedCell(){const t=this.getSelection().getCoords().cell,e=this._lastCellSelected;if(e?.cell&&E.CoordUtils.isEqualCells(t,e.coords))return e.cell;const n=this.getRange(t).getCell();return this._lastCellSelected={coords:t,cell:n},n}find(t,e){return this.getEntireRange().find(t,e)}_find(t,e,n){if(this._closed)throw new Error(le);if(!e)return null;const r=[...t],o=n?.orientation??A.IRange.Orientation.Row,s=n?.reverse,i=!n?.disableWrap,a=n?.from?this._cellToCoords(n?.from):null;let c=null;if(a){let b=-1;for(let N=0;b===-1&&N<r.length;N++)E.CoordUtils.isCellWithinRange(a,r[N])&&(b=N);c=E.CoordUtils.cellToRange(a);let x=ta(r[b],c,o);x.push(c);const R=E.CoordUtils.createRangeComparator(o,s);x.sort(R);let v=-1;const T=x.length;for(let N=0;N<T;N++)R(x[N],c)<=0&&(v=N);r.splice(b,1,...x);const M=b+v,F=[];for(let N=0;N<=M;N++)F.push(r.shift());if(i){const N=F.length;for(let O=0;O<N;O++)r.push(F[O])}}if(r.length===0)return Dt;const h=n?.fields?.includes(exports.ICell.Content.Formulas)??!1,d=n?.fields?.includes(exports.ICell.Content.Values)??!0,u=n?.matchEntireCell??!1,g=n?.matchCase??!1,m=n?.useRegex??!1,f=((b,x,R)=>{const v=x?"":"i";return R?new RegExp(b,v):new RegExp((T=>{let M=T.replace(/[|\\{}()[\]^$+.]/g,"\\$&");return M=M.replace(/~\?/g,"\\?"),M=M.replace(/~\*/g,"\\*"),M=M.replace(/~~/g,"~"),M})(b),v)})(e,g,m),_=e.length;let p=(b,x)=>{const R=M=>{if(!M)return!1;let F=!!M.match(f);return F&&u&&M.length!==_&&(F=!1),F},v=x.getCell();let T=!1;return!T&&h?T=R(v.getFormulaText()??v.toTextUnformatted(!0)):d&&(T=R(v.getNumberFormat().displayText)),T};if(n?.matchCustom){const b=n.matchCustom,x={matchCase:g,matchEntireCell:u,useRegex:m,fields:n?.fields??[exports.ICell.Content.Formulas]};let R,v,T=p;const M=()=>T(R,v);p=(F,N)=>(R=F,v=N,b(F,M,x,N))}let S=-1,C=null,y=Ct,I=!1;const w=()=>{if(y.done){if(S++,S>=r.length)return void(I=!0);C=this._cellIterator({reverse:s,orientation:o,includeRangeTypes:!1,bounds:r[S]})}if(y=C.next(),!y.done){const b=y.value;return p(b.value,b.context)}return!1};return{next:()=>{let b=null;for(;!I&&!b;)w()&&(b=y.value.context.getCell());return b?{value:b,done:!1}:Ct}}}isDate1904(){return this._isDate1904}_surroundingRegion(t,e){const n=this._getState(),r=e?.contentOnly??!1,o=this._entireCoords;if(!r){const a=n.tableSpatial.search(t);if(a.length>0){const c=a[0].value.model,h=c.getUsedRange().getCoords(),d=c.getRange().getCoords();return E.CoordUtils.isEqualRanges(h,t)?d:E.CoordUtils.isEqualRanges(d,t)?o:h}}const s=r?t:o;return((a,c,h=2e4)=>{if(!c||c.length===0)return null;let d,u=!1;for(let I=0;I<c.length;I++){const w=c[I];d=E.CoordUtils.unionRanges(d,w.getBoundingCoords()),u=u||w.search(a).length>0}if(!d)return null;const g={...E.CoordUtils.EmptyRange},m=a;let f=u?{...a}:null;if(!f){const I=(b=>{let x=[];const R=c.length;for(let v=0;v<R;v++){const T=c[v].search(b),M=T.length;x=M>0?new Array(M):void 0;for(let F=0;F<M;F++){const N=T[F];x[F]=N}}return x||E.CommonUtils.EmptyArray})({colStart:a.colEnd,rowStart:a.rowEnd,colEnd:a.colEnd+1,rowEnd:a.rowEnd+1}),w=I.length;if(w>0){f={...a};for(let b=0;b<w;b++){const x=I[b];f.colEnd=Math.max(f.colEnd,x.colStart),f.rowEnd=Math.max(f.rowEnd,x.rowStart)}}}const _={...E.CoordUtils.EmptyRange},p=()=>{const I=c.length;for(let w=0;w<I;w++){const b=c[w].search(g),x=b.length;for(let R=0;R<x;R++){const v=b[R];f=E.CoordUtils.unionRanges(f,v,_)}}return f};g.colStart=a.colStart,g.rowStart=a.rowStart,g.colEnd=a.colEnd,g.rowEnd=a.rowEnd,p();const S={...f},C={...E.CoordUtils.EmptyRange};let y=0;do{if(g.colStart=C.colStart=S.colStart,g.rowStart=C.rowStart=S.rowStart,g.colEnd=C.colEnd=S.colEnd,g.rowEnd=C.rowEnd=S.rowEnd,S.colStart>d.colStart&&(g.colStart=S.colStart-1,g.colEnd=S.colStart-1,g.rowStart=S.rowStart-1,g.rowEnd=S.rowEnd+1,p()),S.rowStart>d.rowStart&&(g.rowStart=S.rowStart-1,g.rowEnd=S.rowStart-1,g.colStart=S.colStart-1,g.colEnd=S.colEnd+1,p()),S.colEnd<d.colEnd&&(g.colStart=S.colEnd+1,g.colEnd=S.colEnd+1,g.rowStart=S.rowStart-1,g.rowEnd=S.rowEnd+1,p()),S.rowEnd<d.rowEnd&&(g.rowStart=S.rowEnd+1,g.rowEnd=S.rowEnd+1,g.colStart=S.colStart-1,g.colEnd=S.colEnd+1,p()),!f)return null;if(S.colStart=f.colStart,S.rowStart=f.rowStart,S.colEnd=f.colEnd,S.rowEnd=f.rowEnd,E.CoordUtils.isEqualRanges(S,C))return E.CoordUtils.isEqualRanges(m,S)?null:S;if(E.CoordUtils.isEqualRanges(S,m))return null;if(E.CoordUtils.isEqualRanges(S,C))return S;y++}while(y<h);return null})(t,[n.contentfulSpatial,n.mergeSpatial,n.formulaSpatial,n.spillSpatial,n.pendingSpatial])||s}_extendRange(t,e){if(this._closed)throw new Error(le);const n=this._entireCoords,r=this,o={excludeHidden:!0,onEntry:(h,d)=>d},s={excludeHidden:!0,onEntry:(h,d)=>h.tvTl()===void 0?null:d};let i;const a=r._getRangedEntries("mergeSpatial",[E.CoordUtils.cellToRange(e)],s);a.length>0&&(i=a[0]);const c=[h=>r._getRangedEntries("mergeSpatial",h,s),h=>r._getRangedEntries("contentfulSpatial",h,o)];return((h,d,u,g,m)=>{let f,_,p,S={...d},C=E.CoordUtils.cellToRange(S),y=g(C).length>0;if(y){let w=1,b=h===A.IRange.Direction.Up||h===A.IRange.Direction.Down;u&&(w+=b?u.rowEnd-u.rowStart:u.colEnd-u.colStart),h!==A.IRange.Direction.Left&&h!==A.IRange.Direction.Up||(w=-w),b?S.rowIndex=S.rowIndex+w:S.colIndex=S.colIndex+w,C=E.CoordUtils.cellToRange(S),y=g(C).length>0}switch(h){case A.IRange.Direction.Up:C.rowStart=Math.min(m.rowStart,C.rowStart),_=g(C).sort(E.CoordUtils.createRangeComparator(A.IRange.Orientation.Row,!0)),f=d.rowIndex,p=y?_.length===1&&f===_[0].rowStart?m.rowStart:_[0].rowStart:_.length===0?m.rowStart:_[0].rowEnd;break;case A.IRange.Direction.Down:C.rowEnd=Math.max(m.rowEnd,C.rowEnd),_=g(C).sort(E.CoordUtils.createRangeComparator(A.IRange.Orientation.Row,!1)),f=d.rowIndex,p=y?_.length===1&&f===_[0].rowEnd?m.rowEnd:_[0].rowEnd:_.length===0?m.rowEnd:_[0].rowStart;break;case A.IRange.Direction.Left:C.colStart=Math.min(m.colStart,C.colStart),_=g(C).sort(E.CoordUtils.createRangeComparator(A.IRange.Orientation.Column,!0)),f=d.colIndex,p=y?_.length===1&&f===_[0].colStart?m.colStart:_[0].colStart:_.length===0?m.colStart:_[0].colEnd;break;case A.IRange.Direction.Right:C.colEnd=Math.max(m.colEnd,C.colEnd),_=g(C).sort(E.CoordUtils.createRangeComparator(A.IRange.Orientation.Column,!1)),f=d.colIndex,p=y?_.length===1&&f===_[0].colEnd?m.colEnd:_[0].colEnd:_.length===0?m.colEnd:_[0].colStart}if(y&&_.length>1){let w=!1;for(let b=1;!w&&b<_.length;b++){const x=_[b];switch(h){case A.IRange.Direction.Up:x.rowEnd<p-1?w=!0:p=Math.min(p,x.rowStart);break;case A.IRange.Direction.Down:x.rowStart>p+1?w=!0:p=Math.max(p,x.rowEnd);break;case A.IRange.Direction.Left:x.colEnd<p-1?w=!0:p=Math.min(p,x.colStart);break;case A.IRange.Direction.Right:x.colStart>p+1?w=!0:p=Math.max(p,x.colEnd)}}}const I=E.CoordUtils.cellToRange(d);switch(h){case A.IRange.Direction.Up:I.rowStart=p;break;case A.IRange.Direction.Down:I.rowEnd=p;break;case A.IRange.Direction.Left:I.colStart=p;break;case A.IRange.Direction.Right:I.colEnd=p}return I})(t,e,i,h=>{const d=[],u=[h],g=c.length;for(let m=0;m<g;m++){const f=(0,c[m])(u),_=f.length;for(let p=0;p<_;p++){const S=f[p];d.push(S)}}return d},n)}_defaultFontDims(){if(this._defaultFontBoundsCache)return this._defaultFontBoundsCache;const t=this._styles.getNormal();let e=0,n=0;for(let r=0;r<=9;r++){const o=t.measureText(r.toString());e=Math.ceil(Math.max(o.width,e)),n=Math.max(o.lineHeight,n)}return this._defaultFontBoundsCache={width:e,height:n},this._defaultFontBoundsCache}getColumnWidthAsFontUnit(t){const e=Math.round(this._defaultFontDims().width),n=t/(this.getView().isShowFormulas()?2:1);if(!e||!t)return 0;let r=5;return n<r+e&&(r=n*(r/(r+e))),(n-r)/e}_defaultColWidth(){if(this._defaultColWidthCache)return this._defaultColWidthCache;const t=this._defaultFontDims()?.width||7,e=8*Math.round((8*t+5)/8);return this._defaultColWidthCache=e}_defaultRowHeight(){if(this._defaultRowHeightCache)return this._defaultRowHeightCache;let t=this._defaultFontDims();if(!t||t.width===0)return this._defaultRowHeightCache=20/exports.IFont.getDeviceScale(),this._defaultRowHeightCache;const e=this._styles.getNormal(),n=new Map;let r=t.height+2;return this._colHeaders.getUsedRange().forEachSpan((o,s)=>{const i=s.getCellHeader();i?.getStyle()!==e&&(r=Math.max((a=>{let c=n.get(a);return c===void 0&&(c=a.measureText("M").lineHeight+2,n.set(a,c)),c})(i.getStyle()),r))}),this._defaultRowHeightCache=Math.round(r/exports.IFont.getDeviceScale()*4)/4,this._defaultRowHeightCache}getProtection(){return this._protection??null}async _selectSheet(t,e){if(await this._options.container?.requestSelect?.()===!1)return!1;if(e===!1)return!0;const n={coords:t};e!==!0&&e!==void 0&&(n.scrollIntoView=e);const r=await this._emitter.notify("onRequestScrollIntoView",{params:n,async:!0});if(!r)return!1;const o=r.length;for(let s=0;s<o;s++)if(r[s]===!1)return!1;return!0}async scrollTo(t,e){const n={...e,coords:t},r=await this._emitter.notify("onRequestScrollIntoView",{params:n,async:!0});if(!r)return!1;const o=r.length;for(let s=0;s<o;s++)if(r[s]===!1)return!1}async _commitAndAutoSelect(t,e,n=!1,r){return r={...r,viewAfter:{view:this.getView(),selection:e,selectOptions:n,...r?.viewAfter}},t.commit(r),this._autoSelect(n,e)}async _autoSelect(t,e){if(!t)return;t===!0&&(t={autoFocus:!0,scrollIntoView:!0});const n=t?.autoFocus,r=t?.scrollIntoView,o=t?.anchor,s=this.getSelection().getCoords(),i=ur(e??s),a=this._entireCoords,c=((f,_,p)=>{if(!f||f.length===0||!_)return E.CommonUtils.EmptyArray;const S=[...f];for(let C=0;C<S.length;C++){const y={...S[C]};let I=y;const w=_.search(y),b=y.rowStart<=p.rowStart&&y.rowEnd>=p.rowEnd,x=y.colStart<=p.colStart&&y.colStart>=p.colEnd;for(let R=0;R<w.length;R++){const v=w[R];b||(I.colStart=Math.min(I.colStart,v.colStart),I.colEnd=Math.max(I.colEnd,v.colEnd)),x||(I.rowStart=Math.min(I.rowStart,v.rowStart),I.rowEnd=Math.max(I.rowEnd,v.rowEnd))}S[C]=I}return S})(i,this._getState().mergeSpatial,a);let h=-1,d=null;if(!o){const f=s?.cell;for(let _=0;h===-1&&_<c.length;_++){const p=c[_];E.CoordUtils.isCellWithinRange(f,p)&&(h=_,d=f)}}const u=Vr(c,d,h);this.getSelection().updateCoords(u);const g=u.ranges?.[u.rangeIndex]??E.CoordUtils.cellToRange(u.cell),m=await this._selectSheet(g,r);if(r!==!1&&m===!1)return c;if(n!==!1){const f=await this._emitter.notify("onRequestFocus");if(!f)return c;const _=f.length;for(let p=0;p<_;p++)if(f[p]===!1)return c}return c}getSelection(){return this._rangeSelection}getView(){return this._view}setView(t){if(this._closed)throw new Error(le);if(!t)throw new Error("View can not be empty.");this._viewRemoveListener?.(),this._view=t,this._viewRemoveListener=t.addListeners(this._viewListener,{transactional:!1});const e=this.getSelection().getCoords();return this._rangeSelection.updateCoords(e),this._emitter.notify("onMovableSelectionChange"),this._emitter.notify("onTopLeftChange"),this._emitter.notify("onFreezeSplitChange"),this._emitter.notify("onViewChange",{source:t}),this}getTabColor(){return this._tabColor}setTabColor(t){if(this._closed)throw new Error(le);return this._tabColor=typeof t=="string"?this._styles.parseColor(t):t??null,this._emitter.notify("onTabColorChange"),this}getRowHeaders(){return this._rowHeaders}getColumnHeaders(){return this._colHeaders}async toJSON(t=!1){if(this._closed)throw new Error(le);await this._emitter.notify("onBeforeSave",{async:!0}),await Promise.resolve(this._starting);let e={};const n=this._getState();if(!n)return e;try{const _=this._strings.beginPersist();try{if(!t){const I=[],w=this._cellStateIterator({includeRangeTypes:!1,orientation:A.IRange.Orientation.Column});let b=w.next(),x=Number.MIN_SAFE_INTEGER,R=Number.MIN_SAFE_INTEGER,v=null,T=null,M=null,F=null;for(;!b.done;){const N=b.value[0],O=N.colIndex,L=N.rowIndex;O!==x&&(F&&I.push(F),v=[],M=[],F=[O,M],x=O,R=L-2),L>R+1&&(v=[],T=[L,v],M.push(T));const B=b.value[1],U=$t(B);let D;if(U===A.ScalarType.Number||U===A.ScalarType.Boolean)D=B;else if(U===A.ScalarType.String)D=""+_.add(B);else if(U===A.ScalarType.Error)D={t:U,v:B.getCode()};else if(U===A.ScalarType.RichData){const z=B,k=z.type,P=z?.toJSON?.();k&&P&&(D={t:U,v:0})}else console.warn("error",D);v.push(D),R=L,b=w.next()}F&&I.push(F),I.length>0&&(e.data=I)}this._ownStrings&&(e.strings=await _.toJSONAsync())}catch(I){console.warn("error",I)}finally{_.endPersist()}const p=this._colHeaders.toJSON();p&&(p.headers&&p.headers.length>0&&(e.cols=p.headers),p.defaultSize!==void 0&&p.defaultSize!==-1&&(e.defaultColSize=p.defaultSize));const S=this._rowHeaders.toJSON();S&&(S.headers&&S.headers.length>0&&(e.rows=S.headers),S.defaultSize!==void 0&&S.defaultSize!==-1&&(e.defaultRowSize=S.defaultSize));const C=this.getProtection().toJSON();C&&(e.protection=C),this._view.setRangeSelection(this.getSelection().getCoords());const y=this._view.toJSON();y&&(e.view=y),this._tabColor&&(e.tabColor=this._tabColor.toString())}catch(_){console.warn(_)}const r=pn(n.mergeSpatial.all());r.length>0&&(e.merges=Ta(r));const o=pn(n.directStyleSpatial.all());if(o.length>0){const _=this._styles.beginPersist();try{const p=[],S=o.length;for(let C=0;C<S;C++){const y=o[C],I=_.getElementID(y.value.toJSON());p.push({r:exports.AddressUtils.rangeToString(y),v:I})}if(e.directStyles=p,this._ownStyles){const C=_.toJSON();C&&Object.keys(C).length>0&&(e.styles=C)}}catch(p){console.warn(p)}finally{_.endPersist()}}const s=pn(n.hyperlinkSpatial.all()),i=s.length;if(i>0){const _=[];for(let p=0;p<i;p++){const S=s[p];let C=S.value;_.push({r:exports.AddressUtils.rangeToString(S),v:C})}e.hyperlinks=_}const a=pn(n.commentsSpatial.all()),c=a.length;if(c>0){const _=[];for(let p=0;p<c;p++){const S=a[p],C={...S.value};C.ref=exports.AddressUtils.rangeToString(S),_.push(C)}e.comments=_}const h=this._resources.beginPersist();try{const _=this.getMovables().getItems(),p=_.length;if(p>0){const S=[];for(let C=0;C<p;C++)try{const y=_[C].toJSON(h.toResourceId.bind(h));y&&S.push(y)}catch(y){console.warn("Unable to persist movable",y)}S.length>0&&(e.movables=S)}this._ownResources&&(e.resources=await h.toJSONAsync())}catch(_){console.warn(_)}finally{h.endPersist()}const d=pn(n.tableSpatial.all()),u=d.length;if(u>0){const _=[];for(let p=0;p<u;p++){const S=d[p].value.model.toJSON();_.push(S)}e.tables=_}const g=Array.from(n.conditionalModels.values()),m=g.length;if(m>0){const _=[];for(let p=0;p<m;p++){const S=g[p].model.toJSON();_.push(S)}e.conditionals=_}const f=await n.calcGraph.toJSON(!1);if(f){const _=f.formulas;_&&(e.formulas=_);const p=f.dynamic;p&&(e.dynamicArray=p);const S=f.volatile;S&&(e.volatile=S)}return this._emitter.notify("onSave",{params:e}),e}getStyles(){return this._styles}getResources(){return this._resources}getTransactions(){return this._transactions}getStrings(){return this._strings}_searchMovables(t){const e=t?.excludeHidden??!1,n=t?.bounds,r=t?.fullyContained,o=this,s=t?.address?this._rangeToCoords(t?.address):this._entireCoords;return this._getRangedEntries("movableSpatial",[s],{excludeHidden:e,fullyContained:r,onEntry:i=>{if(t?.type&&i.model.getContent().getType()!==t.type)return null;let a=null;if(e&&(i.model.isHidden()||(a=o._getBoundsAtCoords(i.model.getAnchorCoords()),a.width===0||a.height===0)))return null;if(n){a||(a=o._getBoundsAtCoords(i.model.getAnchorCoords()));const c=a,h=n;if(c.y>h.y+h.height||c.y+c.height<h.y||c.x>h.x+h.width||c.x+c.width<h.x)return null}return i.model}}).sort((i,a)=>i.getZIndex()-a.getZIndex())}_updateSelectedMovables(t,e){const n=this.getView().getMovableSelection();if(!n||n.length===0)return;let r="Movables";if(n.length===1){const s=n[0];r=Ir(s.getContent().getType())??"Drawing"}const o=this._beginCommit({description:`${e} ${r}`});try{const s=n.length;for(let i=0;i<s;i++)t(n[i]);o.commit()}catch(s){throw o.rollback(),s}}async _addMovable(t){if(!this.getProtection().isObjectsAllowed())throw new Error(Ah);if(!t)throw new Error("No movable options provided");if(this._closed)throw new Error(le);const e={};t?.type&&(e.content={type:t.type,json:t?.json}),t?.anchorType&&(e.anchorType=t?.anchorType),t.bounds&&(e.anchor=null);const n=this._getState().movableSpatial,r=this._beginCommit({description:t?.description??"Insert Drawing"}),o=this._createMovableEntry(e,n.size(),t.fromResourceId),s=n.clone();s.insert(o);const i=this._getState().movableMapModel,a=new Map(i),c=o.value.model;a.set(c,o),this._updateState({movableSpatial:s,movableMapModel:a}),t.bounds&&o.value.model.setBounds(t.bounds,t);let h=null,d=null;if(t?.autoSelect!==!1){h={view:this.getView(),movableSelection:this.getView().getMovableSelection()};let u=t?.autoSelect??!1;u===!0&&(u={autoFocus:!0,scrollIntoView:!0,addToSelection:!1}),u&&this.getView().selectMovables([o.value.model],u.addToSelection),d=g=>({...g,view:this.getView(),movableSelection:this.getView().getMovableSelection()})}return r.commit({viewBefore:h,viewAfter:d}),this._emitterMovables.notify("onCollectionChange"),this._emitter.notify("onMovablesChange"),o.value.model}async _addImage(t,e={type:"picture"}){if(!t)throw new Error("An image must be provided as a string or a resource option.");if(!this.getProtection().isObjectsAllowed())throw new Error(Ah);const n=this._resources.add(t),r=await n.toBuffer(),o=await n.getType(),s=this._getBoundsAtCoords(ur(this.getSelection().getCoords())[0]),{naturalDimensions:i,asUrl:a}=await E.ImageUtils.loadImageDetails(r,o);URL.revokeObjectURL(a);const c={...s,...i,...e?.bounds};if(E.CommonUtils.isNullOrUndefined(e?.bounds?.x)||E.CommonUtils.isNullOrUndefined(e?.bounds?.y)){const d=Md(this.getMovables(),c,E.CommonUtils.isNullOrUndefined(e?.bounds?.x),E.CommonUtils.isNullOrUndefined(e?.bounds?.y));c.x+=d.x,c.y+=d.y}e?.bounds&&e?.json?.lockAspect!==!1&&(E.CommonUtils.isNullOrUndefined(e?.bounds.width)&&E.CommonUtils.isDefined(e?.bounds.height)&&(c.width=c.height*i.width/i.height),E.CommonUtils.isNullOrUndefined(e?.bounds.height)&&E.CommonUtils.isDefined(e?.bounds.width)&&(c.height=c.width*i.height/i.width));const h={...e?.json,resId:0};return await this._addMovable({anchorType:exports.IAnchored.Type.OneCell,description:"Insert Image",...e,bounds:c,type:"picture",json:h,fromResourceId:d=>d!==0?(console.warn("received an unexpected resourceId",d),null):n})}getTables(){return this._tables}getConditionals(){return this._conditionals}getMovables(){return this._movables}_doPerfTest(t=1e7,e=!1){const n=Array.from({length:t},(a,c)=>c);let r,o;r=performance.now(),e&&console.profile("nativeArray");const s=[t];for(let a=0;a<t;a++)s.push(a);e&&console.profileEnd("nativeArray"),window.noLoseArray=s,o=performance.now(),console.log(`NativeArray: ${t} records in ${o-r} milliseconds`),r=performance.now(),e&&console.profile("mixedType");const i=ti.fromArray(n);e&&console.profileEnd("mixedType"),window.noLoseList=i,o=performance.now(),console.log(`MixedTypedList: ${t} records in ${o-r} milliseconds`)}_validateOrRemoveOverlaps(t,e,n=null,r=!1){const o=this;e!=="merge"&&fh(this._getMerges([t]),t,(c,h)=>{if(h||!r)throw new Error(Th(e));o._unmerge([c])});const s=[],i=this.getTables().getItems({address:t}),a=i.length;for(let c=0;c<a;c++){const h=i[c];n!==h&&s.push(h.getAnchorCoords())}fh(s,t,(c,h,d)=>{if(h||!r)throw new Error(Th(e));i[d].delete()})}_addTable(t,e){let n=this._rangeToCoords(t,()=>["objects"]);const r=this._entireCoords;let o=e?.hasHeader;if(n.rowStart===n.rowEnd){if(n.rowEnd===r.rowEnd)throw new Error("A table must have a least two rows; one for the table header and one for data.");n.rowEnd=n.rowEnd+1}o===void 0&&(o=sd(this,n)?.options?.hasHeader??!1);const s=vt([n]),i={...n},a=this._beginCommit({description:"Insert Table"});let c=null;try{o||(this._isContentful([n])&&this._insertCells([{...n,rowStart:n.rowStart,rowEnd:n.rowStart}],A.IRange.Orientation.Row),n={...n,rowEnd:n.rowEnd+1});const h={...e?.json,ref:n};this._validateOrRemoveOverlaps(n,"table",null,!0),h.styleOptions=e?.json?.styleOptions??{},h.styleOptions.name===void 0&&(e?.styleName?h.styleOptions.name=e.styleName:e?.styleName===void 0&&(h.styleOptions.name=this._styles.getDefaultTableStyle().getName()));const d=e?.isLoad;d!==!0&&(h.filter===void 0&&(h.filter={}),h.sort===void 0&&(h.sort={}));const u=this._createTableEntry(h,o&&!d),g=this._getState(),m=g.tableSpatial.clone();m.insert(u);const f=g.tableMapModel,_=new Map(f),p=u.value.model;_.set(p,u);const S=g.tableMapName,C=new Map(S);C.set(p.getName().toLocaleLowerCase(),p),e?.clearFormatting&&this.getRange(n).updateStyle(null),c=u.value.model,this._updateState({tableSpatial:m,tableMapModel:_,tableMapName:C}),this._emitter.notify("onTablesChange"),d||this._autoFit([c.getHeaderRange().getCoords()],{expandOnly:!0});const y=vt([n]);a.commit({viewBefore:{view:this.getView(),selection:s,ranges:[i]},viewAfter:{view:this.getView(),selection:y,ranges:[n]}})}catch(h){throw a.rollback(),h}return c}_addConditional(t,e){const n=this._rangesToCoords(t,()=>["objects"]),r=e?.autoSelect?vt(n):null,o=[...n],s=this._beginCommit({description:e?.description??"Insert Conditional"});let i=null;try{const a={...e,ref:o},c=this._getState(),h=c.conditionalSpatial.clone(),d=new Map(c.conditionalModels),u=this._createConditionalEntries(a,h,d);this._updateState({conditionalSpatial:h,conditionalModels:d}),i=u,s.commit({viewBefore:{view:this.getView(),selection:r,ranges:o},viewAfter:{view:this.getView(),selection:r,ranges:o}}),this._autoSelect(e?.autoSelect,r)}catch(a){throw s.rollback(),a}return i}createTemporaryCell(t,e=null){return t?.createTemporaryCell?t:(e?this.getRange(e).getCell():this._emptyCell).createTemporaryCell(t)}_getBoundsAtCoords(t){const e=this._rowHeaders,n=this._colHeaders,r=n.findOffset(t.colStart),o=e.findOffset(t.rowStart);return{x:r,y:o,width:n.findOffset(t.colEnd+1)-r,height:e.findOffset(t.rowEnd+1)-o}}_getCoordsAtBounds(t){const e=this._rowHeaders,n=this._colHeaders;return{colStart:n.findIndex(t.x),rowStart:e.findIndex(t.y),colEnd:n.findIndex(t.x+t.width),rowEnd:e.findIndex(t.y+t.height)}}getRangeAtBounds(t,e){if(!t)throw new E.NullNotAllowedError;const n=this._getCoordsAtBounds(t);return this.getRange(n,e)}_getVisible(t,e){if(t.length===0)return t;const n=new wt;n.load(t);const r=e?.orientations??A.IRange.Orientations.Both,o=(i,a)=>{const c=n.search(i),h=c.length;for(let d=0;d<h;d++){const u=c[d],g=ta(u,i,a);n.remove(u),n.load(g)}},s=this._cellOptions.maxCoords;if(r===A.IRange.Orientations.Both||r===A.IRange.Orientations.Row){const i=this._rowHeaders,a=t.length;for(let c=0;c<a;c++){const h=t[c];i.getRange({min:h.rowStart,max:h.rowEnd}).forEachSpan((d,u)=>{if(d!==0)return;const g=u.getCoords();o({colStart:s.colStart,rowStart:g.min,colEnd:s.colEnd,rowEnd:g.max},A.IRange.Orientation.Row)})}}if(r===A.IRange.Orientations.Both||r===A.IRange.Orientations.Column){const i=this._colHeaders,a=t.length;for(let c=0;c<a;c++){const h=t[c];i.getRange({min:h.colStart,max:h.colEnd}).forEachSpan((d,u)=>{if(d!==0)return;const g=u.getCoords();o({colStart:g.min,rowStart:s.rowStart,colEnd:g.max,rowEnd:s.rowEnd},A.IRange.Orientation.Column)})}}return n.all()}_hasRangedEntries(t,e){const n=this._getState();if(!n)return E.CommonUtils.EmptyArray;const r=n[t];if(!r)throw new Error(`Invalid range key ${t}`);return!(!r||r.isEmpty())&&r.has(e)}_getRangedEntries(t,e,n){if(e.length===0)return E.CommonUtils.EmptyArray;const r=n?.excludeHidden??!1,o=n?.fullyContained??!1,s=n?.onEntry??null,i=this._getState();if(!i)return E.CommonUtils.EmptyArray;const a=i[t];if(!a)throw new Error(`Invalid range key ${t}`);if(!a||a.isEmpty())return E.CommonUtils.EmptyArray;const c=new Set,h=_=>{const p=_.length;for(let S=0;S<p;S++){const C=_[S];c.add(C)}},d=e.length;for(let _=0;_<d;_++){const p=e[_];if(r){if(r===!0){const S={min:p.colStart,max:p.colEnd},C={min:p.rowStart,max:p.rowEnd};this._rowHeaders.getRange(C).forEachVisibleSpan((y,I)=>{this._colHeaders.getRange(S).forEachVisibleSpan((w,b)=>{h(a.search({colStart:w,rowStart:y,colEnd:b,rowEnd:I},o))},us)},us)}else if(r===A.IRange.Orientation.Column){const S={min:p.colStart,max:p.colEnd};this._colHeaders.getRange(S).forEachVisibleSpan((C,y)=>{h(a.search({colStart:C,rowStart:p.rowStart,colEnd:y,rowEnd:p.rowEnd},o))},us)}else if(r===A.IRange.Orientation.Row){const S={min:p.rowStart,max:p.rowEnd};this._rowHeaders.getRange(S).forEachVisibleSpan((C,y)=>{h(a.search({colStart:p.colStart,rowStart:C,colEnd:p.colEnd,rowEnd:y},o))},us)}}else h(a.search(p,o))}if(c.size===0)return E.CommonUtils.EmptyArray;const u=Array.from(c.values()),g=n?.sort;g&&u.sort(E.CoordUtils.createRangeComparator(g.orientation,g.reverse));let m=[];const f=u.length;for(let _=0;_<f;_++){let p;p=void 0,s&&(p=s(u[_].value,u[_])),p===void 0&&(p=u[_].value),p!==null&&m.push(p)}return m||(m=E.CommonUtils.EmptyArray),m}_processAnchorShift(t){let e=t.after;const n=E.CoordUtils.sanitizeRange(t.after),r=E.CoordUtils.sanitizeRange(t.before);t.after&&this._validateCoords(n,"We can't insert cells because this would push items off the end of the worksheet.");const o=t.before.value.processShiftCallback?.({...t,after:n,before:r});return o&&(go(o,n)||(e||(e=t.before),e={...e,...o})),e}_processListenerShift(t,e,n,r){if(r.isSplit||r.before.value.options.ignoreShifts)return[r.before];let o=null;r.after&&(o=E.CoordUtils.intersectRanges(E.CoordUtils.sanitizeRange(r.after),this._entireCoords),r.after,o.colStart,o.rowStart,o.colEnd,o.rowEnd);const s=r.before.value,i=s.id,a=t.get(i),c={...a},h=[...a.ranges];c.ranges=h,h[s.offset]=o?{...h[s.offset],...o}:null,t.set(i,c);const d=n.get(i);e.set(i,{beforeState:d,afterState:c})}delete(){if(this._closed)return;try{this._emitter.notify("onBeforeDelete")}catch(s){throw s instanceof Error?s:new Error(s.message??"Unable to delete.")}const t=this._beginCommit({description:`Delete Sheet '${this.getName()}'`}),e=this._getState();let n=e.rangeListenerSpatial,r=e.rangesListenerMap;const o=new Map;n=n.shift({range:this._entireCoords,direction:A.IRange.Direction.Left,cloneIfUpdate:n===e.rangeListenerSpatial,onShift:s=>{r===e.rangesListenerMap&&(r=new Map(r)),this._processListenerShift(r,o,e.rangesListenerMap,s)}}),this._updateState({rangeListenerSpatial:n,rangesListenerMap:r,deleted:!0}),this._deleteCells([this._entireCoords]),this._emitter.notify("onDelete"),this._rangesListenerMap.forEach((s,i)=>{o.set(i,{beforeState:s,afterState:null})}),t.commit({viewAfter:s=>({...s,view:this.getView(),selection:this.getSelection().getCoords(),listeners:o})})}doBatch(t,e){const n=this;return e=typeof e=="string"?{description:e}:{description:"Update Sheet",...e},this._transactions.doBatch(t,e,(r,o)=>{if(r.getDepth()===0&&(n._lastTransactionUUID=r.getId(),e?.autoSelect)){const s=r.getView()?.selection;s&&n._autoSelect(!0,s)}})}isClosed(){return this._closed}close(){if(this._closed)return;this._protectionRemoveListener?.(),this._protection=new Pd(void 0,this._options.readonly);const t=this._getState().tableMapModel.keys();for(const e of t)e.close();this._searchMovables().forEach(e=>{e.close()}),this._emitter.notify("onClose"),this._ownResources,this._namesRemoveListener?.(),this._ownNames&&this._names.close(),this._ownsCalculation&&this._calculation.close(),this._ownStyles,this._colHeaders.close(),this._rowHeaders.close(),this._emitter.close(),this._transactionsRemoveListener?.(),this._closed=!0}beginCommit(t){if(this._closed)throw new Error(le);return this._beginCommit(typeof t=="string"?{description:t}:t)}_getState(){return this._closed?null:this._transactions.getState(this)}_beginCommit(t){const e=this;return this._transactions.beginCommit(t,n=>{n.getDepth()===0&&(e._lastTransactionUUID=n.getId())})}_updateState(t){if(!t)return;this._lastGetRangeRead=null;const e=this._transactions.beginCommit();let n;try{n=e.updateState(this,t),e.commit()}catch(r){throw e.rollback(),r}return n}_addEvent(t,e){const n=this.getTransactions().getPendingView();if(!n)return;let r=n.events;if(r||(r={},n.events=r),t==="address"){let o=r.address;if(o||(o=new Map,r.address=o),typeof e=="string")o.set(e,null);else{const s=e;if(s.options.ignoreAddressChanges)return;o.set(s.uuid,e)}}else if(t==="data")if(typeof e=="string"){let o=r.dataListeners;o||(o=new Map,r.dataListeners=o),o.set(e,null)}else{let o=r.data;o||(o=[],r.data=o),o.push(e)}}_getScalar(t,e,n=!1){const r=this._getState();let o;if(o===void 0&&(o=r.cellValuesGrid.getValueAt(t,e)),o===void 0)return null;let s=o;if(n&&typeof s=="number"){let i=!1;Te.colStart=e,Te.rowStart=t,Te.colEnd=e,Te.rowEnd=t;const a=this._lastValueRead,c=this._lastValueRead.range;if(c&&E.CoordUtils.isRangeWithinRange(Te,c))i=a.isDateOrTime;else{const h=r.directStyleSpatial.search(Te)[0];if(h){const d=h.value.getPropertiesAt(t,e,s),u=d?.numberFormat;u&&(i=To(u)||gi(u)),a.range=h,a.isDateOrTime=i}else a.range=null;i&&(s=Mr(s,this._isDate1904))}}return s}getStyleUpdater(t,e){return null}_initState(){const t=this,e=()=>{t._lastCellDecoded.address=null,t._lastCellSelected.coords=null,t._lastCellRead.coords=null,t._lastValueRead.range=null,t._lastGetRangeRead={},t._lastUsedCoordsRead.coords=null,t._lastActiveRead.selection=null,t._lastRangeRead.address=null};this._transactionsRemoveListener=this._transactions.addStateListener(this,{onBeforeCommitStart(f,_,p){if(!t._initializing&&!_?.skipProtectionCheck&&t.getProtection().isLocked())throw new Error(Yo)},async onBeforeCommitEnd(f,_,p){if(_?.ranges){const S={isDataChange:!0,isTransactional:!0,timeStamp:p.getTimestamp(),trigger:"setCells"},C=f.rangeListenerSpatial,y=f.rangesListenerMap;t._notifyRangeListeners(C,y,_.ranges,S)}if(_?.listeners){const S={isDataChange:!1,isTransactional:!0,timeStamp:p.getTimestamp(),trigger:"shiftCells"},C=f.rangeListenerSpatial,y=f.rangesListenerMap;t._notifyRangeListeners(C,y,_.ranges,S)}},async onRestoreOrRevert(f,_,p,S){if(e(),t._calculateFull(),_&&(_.view===t.getView()&&_.selection&&t._autoSelect(!0,_.selection),_.movableSelection&&t.getView().selectMovables(_.movableSelection)),t._emitter.notify("onInvalidated"),t._emitterMovables.notify("onInvalidated"),t._notifyUsedRangeChange(),t._rangesListenerMap.size>0){const C={isDataChange:!0,isTransactional:!1,timeStamp:p.getTimestamp(),isUndo:S,trigger:"invalidate"},y=f.rangeListenerSpatial,I=f.rangesListenerMap,w=new Set;I.forEach((b,x)=>{const R=b.id;if(w.has(R))return;const v=b.ranges;v&&(w.add(R),t._notifyRangeListeners(y,I,v,C))})}},async onAfterStateChange(f,_,p,S,C){e(),_&&p.getId()!==t._lastTransactionUUID&&_.view===t.getView()&&_.selection&&(S||C)&&t._autoSelect(!0,_.selection),t._lastTransactionUUID=p.getId(),_?.merges&&t._notifyMergeChange();const y=t._rangesListenerSorted;if(y.size>0){t._notifyUsedRangeChange();const I=new Set,w=f.rangesListenerMap2,b={isTransactional:!1,timeStamp:p.getTimestamp()};if((C||S)&&(b.trigger="restore",t._notifyAddressListeners(w,w,I,b),y.size>w.size)){const R=y.values();let v=R.next(),T=!1;for(;!T&&!v.done;){const M=v.value;T=w.has(M.uuid),T||(M.notify(b,"#N/A"),v=R.next())}}const x=_?.events;x&&(x.address&&(b.trigger="address",t._notifyAddressListeners(w,x.address,I,b)),x.dataListeners&&(b.trigger="data",t._notifyAddressListeners(w,x.dataListeners,I,b)),x.data&&(b.trigger="data",t._notifyDataListeners(f.rangesListenerSpatial2,f.rangesListenerMap2,x.data,I,b)))}if(_&&!_.calculationSideEffect&&_.ranges&&!_.initial&&f.calcGraph.calculate(),_?.ranges){t._notifyUsedRangeChange();const I=t._rangesListenerMap;if(I.size>0){const w={isDataChange:!0,isTransactional:!1,timeStamp:p.getTimestamp(),isUndo:S,trigger:"setCells"};t._notifyRangeListeners(t._rangeListenerSpatial,I,_.ranges,w)}}},onClose(){const f=t._getState();f&&f.movableSpatial.clear()}});const n=new bS({sheet:this}),r={onChange(){t._emitter.notify("onSelectionChange")}},o=n.addListeners(r,{transactional:!1});this._rangeSelection=n,this._rangeSelectionRemoveListener=o;const s=f=>{const _=t._getState();if(!_)return;const p=_.movableSpatial,S=f.length;for(let C=0;C<S;C++){const y=p.search(f[C]),I=y.length;for(let w=0;w<I;w++)y[w].value.processLayoutCallback?.()}};this._colHeadersListener={onSizesChange:(f,_)=>{const p=[];if(_){const S=_.length;for(let C=0;_&&C<S;C++){const y={colStart:_[C].min,rowStart:t._entireCoords.rowStart,colEnd:t._entireCoords.colEnd,rowEnd:t._entireCoords.rowEnd};p.push(y)}}s(p)}},this._rowHeadersListener={onSizesChange:(f,_)=>{const p=[];if(_){const S=_.length;for(let C=0;C<S;C++){const y=_[C],I={colStart:t._entireCoords.colStart,rowStart:y.min,colEnd:t._entireCoords.colEnd,rowEnd:t._entireCoords.rowEnd};p.push(I)}}s(p)}};let i=new Set;const a={onTopLeftChange(){t._emitter.notify("onTopLeftChange")},onFreezeSplitChange(){t._emitter.notify("onFreezeSplitChange")},onRangeSelectionChange(){const f=t.getSelection().getCoords();t._rangeSelection.updateCoords(f)},onMovableSelectionChange(f){const _=f.getMovableSelection(),p=new Map,S=new Set,C=t._getState().movableMapModel,y=_.length;for(let I=0;I<y;I++){const w=_[I];i.has(w)?i.delete(w):p.set(w,I),S.add(w)}i.forEach(I=>{C.get(I)?.value.processSelectionCallback(!1,!1)}),p.forEach((I,w)=>{C.get(w)?.value.processSelectionCallback(!0,I===0)}),i=S,t._emitter.notify("onMovableSelectionChange")},onAnyChange(){t._emitter.notify("onViewChange")}},c=new Nl({sheet:this});this._view=c,this._clearState(),this._viewRemoveListener=c.addListeners(a,{transactional:!1}),this._viewListener=a,this._colHeadersRemoveListener?.();const h=()=>Math.round(this._defaultFontDims().width);this._colHeaders=new Bd({sheet:t,orientation:A.IRange.Orientation.Column,maxSheetCoords:this._entireCoords,transactions:this._transactions,isProtected:()=>!t._initializing&&!t.getProtection().isFormatColumnsAllowed(),getTextAt:f=>{const _=this.getView().getColumnHeaderStyle();return _===exports.ISheetView.HeaderTextStyle.A1?Wd(f):_===exports.ISheetView.HeaderTextStyle.Zero?Hd(f):_===exports.ISheetView.HeaderTextStyle.One?jd(f):void 0},defaultSize:()=>{const f=this.getView().isShowFormulas()?2:1;return this._defaultColWidth()/h()*f},scaleFactor:h,maxSize:()=>255,setContainerShiftedCallback:f=>{this._colHeadersShiftCallback=f}}),this._colHeadersRemoveListener=this._colHeaders.addListeners(this._colHeadersListener,{transactional:!0}),this._rowHeadersRemoveListener?.();const d=exports.IFont.getDeviceScale();this._rowHeaders=new Bd({sheet:t,orientation:A.IRange.Orientation.Row,maxSheetCoords:this._entireCoords,transactions:this._transactions,isProtected:()=>!t._initializing&&!t.getProtection().isFormatRowsAllowed(),getTextAt:f=>{const _=this.getView().getRowHeaderStyle();return _===exports.ISheetView.HeaderTextStyle.One?jd(f):_===exports.ISheetView.HeaderTextStyle.Zero?Hd(f):_===exports.ISheetView.HeaderTextStyle.A1?Wd(f):void 0},defaultSize:()=>this._defaultRowHeight(),scaleFactor:()=>d,minSize:()=>0,maxSize:()=>409,setContainerShiftedCallback:f=>{this._rowHeadersShiftCallback=f}}),this._rowHeadersRemoveListener=this._rowHeaders.addListeners(this._rowHeadersListener,{transactional:!0}),this._defaultFontBoundsCache=null,this._defaultColWidthCache=null,this._defaultRowHeightCache=null;const u={colStart:0,rowStart:0,colEnd:0,rowEnd:0},g=[u],m={excludeHidden:!0,sort:{orientation:A.IRange.Orientation.Column,reverse:!1}};this._cellOptions={resolveRange:f=>{if(f===null)return this._createRange(null,void 0,"temporary cell");const _=this._rangesToCoords(f);return this._createRange(_[0],null)},date1904:this._isDate1904,sheet:this,normalStyleRanged:this._normalStyleRanged,colHeaders:this._colHeaders,styles:this._styles,maxCoords:this._entireCoords,getRange:this.getRange.bind(this),getProtection:this.getProtection.bind(this),calcGraph:()=>this._getState().calcGraph,nextContentful:(f,_,p=!1)=>{u.colStart=p?_:f.colIndex+1,u.rowStart=f.rowIndex,u.colEnd=p?f.colIndex-1:_,u.rowEnd=f.rowIndex,m.sort.reverse=p;const S=t._getRangedEntries("contentfulSpatial",g,m);if(!S||S.length===0)return _;const C=S[0],y=p?C.getState().colStart:C.getState().colEnd;return p?Math.min(y+1,f.colIndex):Math.max(y-1,f.colIndex)},opener:async(f,_,p,S)=>{if(f.startsWith("#")){f=f.substring(1);const C=this._rangesToCoords(f);return await this._autoSelect(_??!0,vt(C)),!0}return window.open(f,p??"_blank",S),!0}},this._emptyCell=new F_(this._cellOptions)}_clearState(){this._lastGetRangeRead=null,this._lastCellDecoded.address=null,this._lastCellSelected.coords=null,this._lastCellRead.coords=null,this._protectionRemoveListener?.(),this._protection=new Pd(void 0,this._options.readonly),this._protectionRemoveListener=this._protection.addListeners({onChange(){if(t._closed)throw new Error(le);t._getState().movableMapModel.forEach(i=>{i.value.processProtectionCallback?.()}),t._getState().tableMapModel.forEach(i=>{i.value.processProtectionCallback?.()}),t._emitter.notify("onProtectionChange")}}),this._stylesRemoveListener?.();const t=this;this._stylesRemoveListener=this._styles.addListeners({onAnyChange(){t._defaultColWidthCache=null,t._defaultRowHeightCache=null,t._defaultFontBoundsCache=null,t._emitter.notify("onLayoutChange"),t._emitter.notify("onStyleChange")}}),this._view.clear(!1),this._rangeListenerSpatial=new wt,this._rangesListenerMap=new Map,this._rangesListenerSorted=new _t;const e=i=>{const a=t._getState().rangesListenerSpatial2;if(a.isEmpty())return;const c=i.length;for(let h=0;h<c;h++){const d=i[h],u=a.search(d),g=u.length;for(let m=0;m<g;m++){const f=u[m].value.groupId;t._addEvent("data",f)}}},n=this._entireCoords,r=n.rowEnd,o=n.colEnd,s=this._calculation._createGraph({onCalculated(i){t._realizeCalcedValues(i)},getEntireCoords:()=>t._entireCoords,getSheetName:()=>t.getName()});s.addListeners({onStart(i){},onInvalidate:()=>{}}),this._updateState({rangesListenerSpatial2:new wt({updateEntryOptions:{onShifted:i=>{let a=t._getState().rangesListenerMap2;if(a.size===0)return;a=new Map(a);const c=i.length;for(let h=0;h<c;h++){const d=i[h],u=d.value.groupId;let g=a.get(u);g=g.processShift(d),t._addEvent("address",g),a.set(u,g)}t._updateState({rangesListenerMap2:a})},onRemoved:i=>{let a=t._getState().rangesListenerMap2;if(a.size===0)return;a=new Map(a);const c=i.length;for(let h=0;h<c;h++){const d=i[h],u=d.value.groupId;let g=a.get(u);g=g.processRemove(d),t._addEvent("address",g),a.set(u,g)}t._updateState({rangesListenerMap2:a})}}}),rangesListenerMap2:new Map,cellValuesGrid:new ze({orientation:this._isDataColumn?A.IRange.Orientation.Column:A.IRange.Orientation.Row}),formulaSpatial:new wt,spillSpatial:new wt,pendingSpatial:new wt,calcErrorsSpatial:new wt,calcGraph:s,directStyleSpatial:new wt({updateEntryOptions:{isMergeOnShift:!0,isTrailingEdge:!0,onUpdated:e,onRemoved:e}}),continuousFillSpatial:new wt({updateEntryOptions:{isMergeOnShift:!0,isTrailingEdge:!0}}),conditionalModels:new Map,conditionalSpatial:new wt({updateEntryOptions:{onGroupUpdate(i,a){let c=t._getState().conditionalModels,h=c.get(a);if(!h)return;c=new Map(c);const d=h.spatials;h={...h},h.spatials=i,c.set(a,h),t._updateState({conditionalModels:c}),h.processCoordsChange({before:d,after:h.spatials})}}}),mergeSpatial:new wt({updateEntryOptions:{getShifted:(i,a)=>a?(a.value=new Dd(E.CoordUtils.sanitizeRange(a),i.value._tvTl),a):null,getSplit(i,a){throw new Error("We can't insert through merges. Unmerge and try again.")},onUpdated:e,onRemoved:e}}),movableMapModel:new Map,movableSpatial:new wt({updateEntryOptions:{getShifted(i,a,c){const h=i.value.processShiftCallback?.(c);let d=null;const u=new Map(t._getState().movableMapModel),g=i.value.model;return h?(d={...h,value:{...i.value}},u.set(g,d)):u.delete(g),t._updateState({movableMapModel:u}),d}}}),hyperlinkSpatial:new wt({updateEntryOptions:{isSplitOnExpand:!0,isMergeOnShift:!0}}),commentsSpatial:new wt({updateEntryOptions:{isSplitOnExpand:!0,isMergeOnShift:!0,onUpdated:e,onRemoved:e}}),tableMapModel:new Map,tableMapName:new Map,tableSpatial:new wt({updateEntryOptions:{getShifted(i,a,c){const h=new Map(t._getState().tableMapModel),d=i.value.model,u=i.value.processShiftCallback?.(c);let g=null;return u?(g={...u,value:{...a.value}},h.set(d,g)):h.delete(d),t._updateState({tableMapModel:h}),g}}}),filter:null,sort:null,rangeListenerSpatial:new wt,rangesListenerMap:new Map,contentfulSpatial:new wt({updateEntryOptions:{isSplitOnExpand:!0,isMergeOnShift:!0,onShifted:i=>{const a=t._getState().rangesListenerSpatial2;if(a.size()===0)return;const c=i.length;for(let h=0;h<c;h++){const d=i[h],u=a.search({colStart:d.colStart,rowStart:d.rowStart,colEnd:o,rowEnd:r}),g=u.length;for(let m=0;m<g;m++){const f=u[m].value.groupId;t._addEvent("data",f)}}},onRemoved:e,onUpdated:e}}),unlockSpatial:new wt({updateEntryOptions:{isMergeOnShift:!0}}),deleted:!1}),this._defaultFontBoundsCache=null,this._defaultColWidthCache=null,this._defaultRowHeightCache=null}_createTableEntry(t,e=!1){const n={model:null,processShiftCallback:null,processDeleteCallback:null,processProtectionCallback:null,currentName:null,removeListener:null};let r=null;r=typeof t.ref=="string"?ye(t.ref,this._entireCoords):t.ref;const o={...r,value:n},s=this,i=()=>n.model?s._getState().tableMapModel?.get(n.model):o,a=(d,u)=>!(!E.CoordUtils.isEqualRanges(d,u)||d.value.model!==u.value.model),c={transactions:this._transactions,sheet:this,names:this._names,readSheetHeader:e,json:t,maxRangeCoords:this._entireCoords,setNameOnContainer(d){const u=i().value;if(!u.currentName||u.currentName.toLowerCase()===d.toLowerCase())return;const g="Set Table Name";s._protectionCheck(()=>["objects"],void 0,g);const m=s._beginCommit({description:g});try{const f=s._getState()?.tableMapName,_=d.toLocaleLowerCase();if(f.has(_))throw new Error((S=>`Name must be unique: '${S}' is already in use.`)(d));const p=new Map(f);p.delete(u.currentName),u.currentName=_,p.set(_,u.model),s._updateState({tableMapName:p}),m.commit()}catch(f){throw m.rollback(),f}},setContainerCoords(d,u){if(!d)return;const g=s._rangeToCoords(d,()=>["objects"]),m=i();if(!m)return;const f=m.value.model;s._validateOrRemoveOverlaps(g,"table",f);const _=s._beginCommit({description:u?.description??"Resize Table"}),p=s._getState(),S=p.tableSpatial.clone(),C=p.tableMapModel,y=new Map(C);S.remove(m,a);const I={...m,...g};return S.insert(I),y.set(I.value.model,I),s._updateState({tableSpatial:S,tableMapModel:y}),_.commit({viewAfter:{view:s.getView(),selection:vt([h.getAnchorCoords()])}}),g},deleteFromContainer(d){const u=i();if(!u)return;const g=u.value.model,m=d?.description??`Delete Table '${g.getName()}`;s._protectionCheck(()=>["objects"],void 0,m);const f=s._beginCommit({description:m}),_=s._getState(),p=_.tableSpatial.clone(),S=_.tableMapModel,C=new Map(S),y=_.tableMapName,I=new Map(y);p.remove(u,a),C.delete(g),I.delete(g.getName().toLocaleLowerCase()),u.value.processDeleteCallback?.(),s._updateState({tableSpatial:p,tableMapModel:C,tableMapName:I}),s._emitter.notify("onTablesChange"),f.commit({viewAfter:{sheet:s,view:s.getView(),selection:vt([g.getAnchorCoords()])}})},setContainerDeleteCallback(d){const u=i()?.value??n;u&&(u.processDeleteCallback=d,u.removeListener?.())},isProtected:()=>!s._initializing&&s.getProtection().isLocked(),setContainerProtectionCallback(d){(i()?.value??n).processProtectionCallback=d},setContainerShiftCallback(d){(i()?.value??n).processShiftCallback=d},processTableUpdate(){s._notifyUsedRangeChange()},initialAnchor:r},h=new Fg(c);return o.value.model=h,o.value.removeListener=h.addListeners({onStyleChange(d){s._emitter.notify("onStyleChange")},onDelete(d){s._emitter.notify("onStyleChange")}},{transactional:!1}),o.value.currentName=h.getName().toLocaleLowerCase(),o}_createConditionalEntries(t,e,n){const r="Conditional Format",o=()=>["objects"],s=t??{};let i=null;const a=this._entireCoords;if(typeof s.ref=="string"){i=[];const p=s.ref.split(","),S=p.length;for(let C=0;C<S;C++){const y=ye(p[C],a);y&&i.push(y)}}else i=Array.isArray(s.ref)?s.ref:[s.ref];const c=this,h=E.CommonUtils.uuidV4(),d={model:null,removeListener:null,processCoordsChange:null,spatials:null};n.set(h,d);const u=()=>d.model?c._getState().conditionalModels.get(h):d;let g=p=>(console.log("default createSpatialEntry",p),null);const m=(p,S,C)=>{if(!d.model)return void(i=p);let y=S.spatials;if(y){const w=y.length;for(let b=0;b<w;b++)C.remove(y[b])}let I=[];if(p){const w=p.length;for(let b=0;b<w;b++){const x=p[b];I.push({...x,value:g(x)})}I.length>0&&C.insertGroup(I,h)}S.spatials=I},f=()=>{const p=u().spatials??i;return p?c.getRanges(p):null};var _;return d.model=(_={sheet:c,transactions:c._transactions,json:t,type:"conditional",setOnContainerCoordsChange:p=>{u().processCoordsChange=p},setCreateSpatial(p){g=p},setContainerRanges:(p,S)=>{const C=c._rangesToCoords(p,o);if(!d.model)return i=C,C&&C.length>0?c.getRanges(C):null;const y=c._beginCommit({description:S?.description??`Set ${r} Ranges`});let I=vt(C);try{const w=c._getState();let b=w.conditionalSpatial;b=b.clone();let x=w.conditionalModels;x=new Map(x);let R=u();R={...R},x.set(h,R),m(C,R,b),c._updateState({conditionalSpatial:b,conditionalModels:x}),y.commit({viewBefore:{view:c.getView(),selection:vt(f()?.getCoords())},viewAfter:{view:c.getView(),selection:I}}),c._autoSelect(S?.autoSelect,I)}catch(w){throw y.rollback(),w}return C&&C.length>0?c.getRanges(C):null},getContainerRanges:f,deleteFromContainer(p){let S=u();const C=c._beginCommit({description:p?.description??`Set ${r} Ranges`}),y=p?.autoSelect?vt(S.spatials):void 0;try{const I=c._getState();let w=I.conditionalSpatial;w=w.clone();let b=I.conditionalModels;b=new Map(b),S={...S},m(null,S,w),b.delete(h),c._updateState({conditionalSpatial:w,conditionalModels:b}),this._commitAndAutoSelect(C,y,p?.autoSelect)}catch(I){throw C.rollback(),I}},isReadOnly:()=>!1,setContainerReadOnlyCallback(p){}},new vS({..._,createDescription:`New ${r}`})),d.removeListener=d.model.addListeners({onAnyChange(p){c._emitter.notify("onStyleChange")}},{transactional:!1}),m(i,d,e),d.model}_createMovableEntry(t,e,n){let r=null;if(t?.anchor)r={colStart:t.anchor.tl?.c??0,rowStart:t.anchor.tl?.r??0,colEnd:t.anchor.br?.c??0,rowEnd:t.anchor.br?.r??0},t.anchor.br?.x||(r.colEnd-=1),t.anchor.br?.y||(r.rowEnd-=1);else{const y=ur(this.getSelection().getCoords())[0];r={colStart:y.colStart,rowStart:y.rowStart,colEnd:y.colEnd,rowEnd:y.rowEnd}}const o={model:null,processShiftCallback:null,processLayoutCallback:null,processDeleteCallback:null,processZIndexCallback:null,processSelectionCallback:null,processProtectionCallback:null,zIndex:e},s={...r,value:o},i=()=>o.model?h._getState()?.movableMapModel?.get(o.model):s,a=(y,I)=>!(!E.CoordUtils.isEqualRanges(y,I)||y.value.model!==I.value.model),c=(y,I,w=!0)=>{if(u)return;const b=i();if(!b)return;const x=I??"Update Drawing";h._protectionCheck(()=>["objects"],void 0,x);const R=h._beginCommit({description:x}),v=h._getState()?.movableSpatial,T=v.clone(),M=h._getState()?.movableMapModel,F=new Map(M);y(b,T,F)!==!1&&(h._updateState({movableSpatial:T,movableMapModel:F}),w&&(h._emitterMovables.notify("onCollectionChange",{source:h,transactional:!0}),h._emitter.notify("onMovablesChange")),R.commit({viewAfter:N=>{if(s.value.model.isSelected()&&!N?.movableSelection?.includes(s.value.model)){const O=[...N?.movableSelection??[]];return O.push(s.value.model),{...N,view:this.getView(),movableSelection:O}}}}))},h=this,d=t.content.type;let u=!0;const g=(y,I,w,b)=>{const x=w.all().sort((B,U)=>B.value.zIndex-U.value.zIndex),R=I.value.zIndex;if((y=Math.max(0,Math.min(x.length-1,y)))===R)return!1;const v=[],T=[],M=[],F=R<y,N=B=>{const U=x[B];v.push(U);const D={...U,value:{...U.value,zIndex:F?B-1:B+1}};U.value.zIndex===R&&(D.value.zIndex=y),T.push(D),b.set(D.value.model,D),M.push(D)};if(F)for(let B=R;B<=y;B++)N(B);else for(let B=R;B>=y;B--)N(B);const O=v.length;for(let B=0;B<O;B++)w.remove(v[B],a);w.load(T);const L=M.length;for(let B=0;B<L;B++)M[B].value.processZIndexCallback?.()},m=()=>h._resources.beginPersist(),f=d==="picture",_={content:null,fromResourceId:n,defaultLockAspectRatio:f,beginPersistResource:m,getMaxBounds:()=>h._getBoundsAtCoords(h._entireCoords),transactions:this._transactions,getBoundsAtCoords:h._getBoundsAtCoords.bind(h),getCoordsAtBounds:h._getCoordsAtBounds.bind(h),scrollIntoView:y=>h._selectSheet(i()?.value.model.getAnchorCoords(),y),select:async y=>{const I=i()?.value.model;if(!I)return!1;try{h.getView().selectMovables([I],y?.addToSelection)}catch(b){return console.warn(b),!1}const w=await h._selectSheet(i()?.value.model.getAnchorCoords(),y?.scrollIntoView);return!y?.scrollIntoView||w!==!1},unselect:()=>{const y=i()?.value.model;return!!y&&(h.getView().unselectMovables([y]),!0)},isSelected:()=>h.getView().getMovableSelection().includes(i()?.value.model),setContainerSelectionCallback(y){(i()?.value??o).processSelectionCallback=y},moveToBackOnContainer:()=>{c((y,I,w)=>g(0,y,I,w),"Move to Back")},moveBackwardOnContainer:()=>{c((y,I,w)=>g(y.value.zIndex-1,y,I,w),"Move Backwards")},moveForwardOnContainer(){c((y,I,w)=>g(y.value.zIndex+1,y,I,w),"Move Forward")},moveToFrontOnContainer(){c((y,I,w)=>g(I.size()-1,y,I,w),"Move To Front")},getZIndex:()=>i()?.value.zIndex??0,setContainerZIndexCallback(y){(i()?.value??o).processZIndexCallback=y},setContainerCoords(y){if(!y)return;const I=h._rangeToCoords(y,()=>["objects"]);return c((w,b,x)=>{const R={...w,...I};b.remove(w,a),b.insert(R),x.set(R.value.model,R)},"Update Drawing",!1),I},deleteFromContainer(y){const I=i();I?.value&&h.getView().unselectMovables([I.value.model]);const w=[];c((x,R,v)=>{v.delete(x.value.model),R.remove(x,a),x.value.processDeleteCallback?.(),w.push(x);const T=x.value.model.getZIndex(),M=R.all().sort((B,U)=>B.value.zIndex-U.value.zIndex),F=[],N=[],O=M.length;for(let B=T+1;B<O;B++){const U=M[B];F.push(U);const D={...U,value:{...U.value,zIndex:B-1}};N.push(D),v.set(D.value.model,D)}const L=F.length;for(let B=0;B<L;B++)R.remove(F[B],a);R.load(N)},y?.description??"Delete Drawing",!0);const b=w.length;for(let x=0;x<b;x++)w[x].value.processZIndexCallback?.()},setContainerDeleteCallback(y){(i()?.value??o).processDeleteCallback=y},isProtected:()=>!h._initializing&&!h.getProtection().isObjectsAllowed(),setContainerProtectionCallback(y){(i()?.value??o).processProtectionCallback=y},setContainerShiftCallback(y){(i()?.value??o).processShiftCallback=y},setContainerLayoutCallback(y){(i()?.value??o).processLayoutCallback=y},initialAnchor:r,maxRangeCoords:this._entireCoords,json:t},p=t.content.json,S={type:d,transactions:this._transactions,beginPersistResource:m,fromResourceId:n,defaultLockAspectRatio:f,json:p};let C=null;if(d==="picture")C=new Ng(S);else if(d==="chart")C=new wS(S);else if(d==="sp"||d==="cxnSp"||d==="grpSp")C=new yS(S);else{if(d!=="graphicFrame")throw new Error((y=>`Unsupported float type: ${y}`)(d));C=new CS(S)}return o.model=new ci({..._,content:C}),u=!1,s}_fromJSON(t){this._initializing=!0,this._emitter.notify("onBeforeLoad",{params:t}),this._clearState();const e=this._beginCommit({description:"Load Sheet",viewAfter:{initial:!0,skipProtectionCheck:!0}}),n=t||{},r=this._strings,o=r.beginPersist(),s=this._resources.beginPersist(),i=this._styles.beginPersist();try{this._ownStrings&&o.fromJSON(n.strings),this._ownResources&&s.fromJSON(n.resources),this._ownStyles&&i.fromJSON(n.styles),this._colHeaders.fromJSON({headers:n.cols,defaultSize:n.defaultColSize}),this._rowHeaders.fromJSON({headers:n.rows,defaultSize:n.defaultRowSize}),this.setView(new Nl({sheet:this,json:n.view})),this._rangeSelection.updateCoords(this._view.getRangeSelection()),n.tabColor&&(this._tabColor=this._styles.parseColor(n.tabColor));let a=this._getState();const c=a.cellValuesGrid,h=a.contentfulSpatial,d=n.data,u=d?.length??0,g=id,m=[];if(u>0){for(let k=0;k<u;k++){let P=d[k];typeof P=="string"&&(P=JSON.parse(P));const j=P[1],H=j.length;let W;for(let V=0;V<H;V++){const $=j[V][1],nt=$.length;for(let et=0;et<nt;et++){let at=$[et],q=at?.t;if(q!==void 0)at=at?.v;else switch(typeof at){case"number":q=A.ScalarType.Number;break;case"boolean":q=A.ScalarType.Boolean;break;case"string":q=A.ScalarType.String,at=parseInt(at)}$[et]=[at,q]}W=g(null,r,$),j[V][1]=W}m.push(P)}c.setValues(m);const z=ld(m,this._isDataColumn);h.load(z)}const f=this._entireCoords,_=a.directStyleSpatial,p=a.continuousFillSpatial,S=this._options.styles;if(t.directStyles){const z=[],k=[],P=t.directStyles,j=(H,W)=>{const V=i.getElementJSON(W),$=new zt(S,E.CoordUtils.sanitizeRange(H),V),nt={...H,value:$};z.push(nt);const et=$._p?.alignment?.horizontal;!et||et!==exports.ITextFrame.HorizontalAlignment.CenterContinuous&&et!==exports.ITextFrame.HorizontalAlignment.Fill||k.push(nt)};if(Array.isArray(P)){const H=P.length;for(let W=0;W<H;W++){const V=P[W],$=V.r;j(typeof $=="string"?ye($,f):$,V.v)}}_.load(z),p.load(k)}a=this._updateState({cellValuesGrid:c,contentfulSpatial:h,directStyleSpatial:_,continuousFillSpatial:p});const C=n.merges;if(C){const z=[],k=C.length;for(let P=0;P<k;P++){const j=ye(C[P],f);z.push(j)}this._indexMerges(z)}const y=a.hyperlinkSpatial,I=n.hyperlinks;if(I){const z=I,k=[],P=z.length;for(let j=0;j<P;j++){const H=z[j];let W=H.r;W=typeof W=="string"?ye(W,f):E.CoordUtils.sanitizeRange(W);let V=H.v;typeof V=="string"&&(V={address:V}),k.push({...W,value:V})}y.load(k)}const w=a.commentsSpatial,b=n.comments;if(b){const z=b,k=[],P=z.length;for(let j=0;j<P;j++){const H=z[j];let W=H.ref;W=typeof W=="string"?ye(W,f):E.CoordUtils.sanitizeRange(W);const V={...H};delete V.ref,k.push({...W,value:V})}w.load(k)}const x=a.movableMapModel,R=a.movableSpatial;if(n.movables){const z=[],k=n.movables,P=k.length;for(let j=0;j<P;j++){const H=k[j];try{const W=this._createMovableEntry(H,j,s.fromResourceId.bind(s));x.set(W.value.model,W),z.push(W)}catch(W){console.warn("Unable to load movable",j,H,W)}}R.load(z)}const v=a.tableMapModel,T=a.tableMapName,M=a.tableSpatial,F=n.tables;if(F){const z=[],k=F.length;for(let P=0;P<k;P++){const j=F[P],H=this._createTableEntry(j),W=H.value.model;v.set(W,H),T.set(H.value.currentName,W),z.push(H)}M.load(z)}const N=a.conditionalSpatial,O=a.conditionalModels,L=n.conditionals;if(L){const z=L.length;for(let k=0;k<z;k++){const P=L[k];this._createConditionalEntries(P,N,O)}}const B=a.calcGraph,U=B.fromJSON({formulas:n.formulas,data:m,dynamic:n.dynamicArray,volatile:n.volatile});a=this._updateState({hyperlinkSpatial:y,commentsSpatial:w,movableSpatial:R,movableMapModel:x,tableSpatial:M,tableMapModel:v,tableMapName:T,conditionalSpatial:N,conditionalModels:O,calcGraph:B});const D=this._getUsedCoords();D&&this._autoFit([D],{orientations:A.IRange.Orientations.Row,skipCustomSize:!0}),e.commit(),U&&this._realizeCalcedValues(U),n.protection&&this._protection.fromJSON(n.protection),this._emitter.notify("onLoad")}finally{i.endPersist(),s.endPersist(),o.endPersist()}this._initializing=!1}getName(){return this._closed?Pt:this._options.container?.getName?.()??null}setName(t){if(this._closed)throw new Error(le);const e=this._options.container?.setName;if(!e)throw new Error("Unable to set name for sheet.");return e(t),this}getVisibility(){return this._closed?exports.ISheet.Visibility.VeryHidden:this._options.container?.getVisibility?.()??exports.ISheet.Visibility.Hidden}setVisibility(t=!0){if(this._closed)throw new Error(le);const e=this._options.container?.setVisibility;if(!e)throw new Error("Unable to set visibility for sheet.");let n;return n=t===!0?exports.ISheet.Visibility.Visible:t===!1?exports.ISheet.Visibility.Hidden:t,e(n),this}async select(t){return await this._options.container?.requestSelect?.(t),this}duplicate(){return this._options.container?.duplicate?.()}setPosition(t){return this._options.container?.setPosition(t),this}getNames(){return this._names}getCalculation(){return this._calculation}get[Symbol.toStringTag](){return"[Sheet]"}toString(){return this.getName()||"(untitled sheet)"}get isISheet(){return!0}}const $d={address:null,scope:null},US={colStart:0,rowStart:0,colEnd:0,rowEnd:0},us={includeHidden:!1};Object.freeze({[exports.ICell.Content.Values]:Number.MAX_SAFE_INTEGER,[exports.ICell.Content.Formulas]:Number.MAX_SAFE_INTEGER}),Object.freeze({[exports.ICell.Content.Values]:1,[exports.ICell.Content.Formulas]:1});const gs={ignoreDataChanges:!1},Te={colStart:-1,rowStart:-1,colEnd:-1,rowEnd:-1},to=[{colIndex:-1,rowIndex:-1},null,null,null,null],zS=[exports.ICell.Content.Values],Ol={skipCustomSize:!0,expandOnly:!0,minContent:!0},Et={rowStart:0,colStart:0,rowEnd:0,colEnd:0},kl={showFormulaBar:!0,showTabs:!0,tabRatio:600,showHorizontalScrollbar:!0,showVerticalScrollbar:!0,showStatusBar:!0,activeSheetId:null};class ua{constructor(t){this._emitter=null,this._emitter=new Yt(this),this._state={...kl},t?.json&&this._fromJSON(t?.json)}isShowFormulaBar(){return this._state.showFormulaBar}setShowFormulaBar(t){return this._state.showFormulaBar=t,this._emitter.notify("onViewChange"),this}isShowTabs(){return this._state.showTabs}setShowTabs(t){return this._state.showTabs=t,this._emitter.notify("onViewChange"),this}getTabRatio(){return this._state.tabRatio}setTabRatio(t){return this._state.tabRatio=t,this._emitter.notify("onViewChange"),this}isShowHorizontalScrollbar(){return this._state.showHorizontalScrollbar}setShowHorizontalScrollbar(t){return this._state.showHorizontalScrollbar=t,this._emitter.notify("onViewChange"),this}isShowVerticalScrollbar(){return this._state.showVerticalScrollbar}setShowVerticalScrollbar(t){return this._state.showVerticalScrollbar=t,this._emitter.notify("onViewChange"),this}isShowStatusBar(){return this._state.showStatusBar}setShowStatusBar(t){return this._state.showStatusBar=t,this._emitter.notify("onViewChange"),this}getActiveSheetId(){return this._state.activeSheetId}setActiveSheetId(t){return this._state.activeSheetId=t,this._emitter.notify("onViewChange"),this}addListeners(t,e){return this._emitter.addListeners(t,e)}toJSON(){let t={};const e=Object.keys(this._state);for(let n=0;n<e.length;n++){const r=this._state[e[n]];r!=null&&r!==kl[e[n]]&&(t[e[n]]=r)}return Object.keys(t).length===0&&(t=null),t}_fromJSON(t,e=!0){let n=t||{};this.update(n,e)}update(t,e=!0){this._state={...kl,...this._state,...t},e&&this._emitter.notify("onViewChange")}}class PS{constructor(t){this._emitter=null,this._closed=!1,this._options={...t};const e=this;this._transactions=this._options.transactions??new ve({transient:!0}),this._transactionsRemoveListener=this._transactions.addStateListener(this,{onAfterStateChange(n,r,o){e._emitter.notify("onCollectionChange")}}),this._emitter=new Yt(this,this._transactions),this._initState(t?.initial)}add(t,e,n){const r=this;e&&e.addListeners({onDelete:c=>{r._updateState(h=>{if(!h.modules[t])return;const d=h.modules[t];if(d){const u={...h};return r._options.onRemove?.(t,d),r._emitter.notify("onCollectionChange"),delete u.modules[t],u}return h},"Delete Module")}},{once:!0});const o=this._getState()?.modules,s=o?.[t],i=n?.replace??!1;if(s&&!i)throw new Error(`Already existing '${t}'`);const a={...o};e?(a[t]=e,r._options.onAdd?.(t,e),this._updateState({modules:a},i?"Save Scripts":"Add Script")):(delete a[t],r._options.onRemove?.(t,null),this._updateState({modules:a},"Remove Script")),r._emitter.notify("onCollectionChange")}getItems(t){const e=this._getState();if(!e)return E.CommonUtils.EmptyArray;const n=e.modules,r=Object.keys(n),o=r.length;if(o===0)return E.CommonUtils.EmptyArray;const s=[],i=t?.name?t.name.toUpperCase():null;for(let a=0;a<o;a++){const c=r[a],h=n[c];let d=!0;i&&i!==c.toUpperCase()&&(d=!1),d&&s.push(h)}return s??E.CommonUtils.EmptyArray}getByName(t){if(!t)return null;const e=this._getState();if(!e)return null;const n=t.toUpperCase(),r=e.modules,o=Object.keys(r),s=o.length;for(let i=0;i<s;i++){const a=o[i];if(n===a)return r[a]}return null}getCount(){const t=this._getState();return t?Object.keys(t.modules).length:0}beginCommit(t){return this._beginCommit(t)}_getState(){if(this._closed)throw new Error(Ce);return this._transactions.getState(this)}_beginCommit(t){return this._transactions.beginCommit(typeof t=="string"?{description:t}:t)}_updateState(t,e="Update",n){if(!t)return;const r=this._beginCommit(e);try{r.updateState(this,t),r.commit(n)}catch(o){throw r.rollback(),o}}_initState(t){let e=t??{};this._updateState({modules:e},"Initialize",{forceAmend:!0});const n=this._options.onAdd;if(n){const r=Object.keys(e),o=r.length;for(let s=0;s<o;s++){const i=r[s];n(i,e[i])}}}addListeners(t,e){return this._emitter.addListeners(t,e)}toJSON(){const t=this._getState();if(!t)return E.CommonUtils.EmptyArray;const e=t.modules,n=Object.keys(e),r=n.length,o={};for(let s=0;s<r;s++){const i=n[s];o[i]=e[i].toJSON()}return o}isClosed(){return this._closed}close(){this._closed||(this._emitter.notify("onClose"),this._closed=!0,this._transactionsRemoveListener?.())}get isFunctionCollection(){return!0}}let Bl;const ms="SheetXL",HS=Bl||(Bl=E.CommonUtils.deepFreeze({ISheet:{Visibility:exports.ISheet.Visibility},ICell:{Content:exports.ICell.Content,CalcStatus:exports.ICell.CalcStatus},IColor:{Named:exports.IColor.Named,Scheme:exports.IColor.Scheme,Type:exports.IColor.Type,AdjustmentType:exports.IColor.AdjustmentType},Direction:E.Direction}),Bl);let fs;class WS extends Ro{constructor(t,e,n,r=null,o=!1){super(t,e,n,r,o)}execute(...t){const e=t[0];if(!e||!e.isIWorkbook)throw new Error(`Macro '${this.getName()}' must be called with a valid workbook as the only argument.`);const n=this._ct;try{const r=[];switch(n){case en.Context.Workbook:r.push(e);break;case en.Context.Sheet:r.push(e.getSelectedSheet());break;case en.Context.Ranges:r.push(e.getSelectedRanges());break;case en.Context.Range:r.push(e.getSelectedRange());break;default:throw new Error(`Function '${this.getName()}' is not a valid macro function.`)}const o=async(i,a)=>{const c=await a;if(c!==void 0)if(c!==null){if(Array.isArray(c)){if($t(c[0]?.[0]))return void i.setValues(c,{skipBoundsCheck:!0})}else if($t(c))return void i.setValues([[c]]);c.isICell?i.updateCells(c):c.isICellRange&&await i.copyFrom(c)}else i.clear()};let s;return(async()=>{const i=(await this.getDescriptor()).getSummary()??`Macro '${this.getName()}'`;return await e.doBatch(async()=>{try{const a=e.getSelectedRange();let c=this._cf();c||(c=function(h){return new Proxy(h,{set:(d,u,g)=>(console.log(`Adding property "${u}" with value:`,g),d[u]=g,!0),deleteProperty:(d,u)=>(console.log(`Deleting property "${u}"`),delete d[u])})}({}));try{Ba({getPosition:()=>a.getCell().getCoords()}),fs=globalThis[ms],globalThis[ms]=HS,s=this._fn.call(c,...r),fs?(globalThis[ms]=fs,fs=void 0):delete globalThis[ms],ai()}catch(h){throw h}finally{ai()}await o(a,s)}catch(a){throw a}},i),{params:r,results:s}})()}catch(r){throw r}}}class jS{constructor(t){this._emitter=null;const e=t.json;if(this._json=e,!this._json)throw new Error("Module JSON is required.");this._emitter=new Yt(this),this._functions=new Dg({transactions:null,readonlyFunctions:t.readonlyFunctions})}getFunctions(){return this._functions}getSource(){return this._json.source}getLanguage(){return this._json.language||"typescript"}getErrors(){return null}delete(){this._emitter.notify("onDelete")}addListeners(t,e){return this._emitter.addListeners(t,e)}toJSON(){return this._json}}const VS=async(l,t)=>{let e=null;try{Ba(null)}catch(o){console.warn("Error setting global scope",o)}try{e=await new Function("modulePath","return import(modulePath)")(`data:text/javascript,${encodeURIComponent(l.compiled)}`)}catch(o){throw new Error("Invalid Javascript module.",{cause:o})}finally{ai()}if(!t)throw new Error(`No function available for '${l.name??l.commitId}'.`);const n=t.name;let r=e[n];if(!r&&t.behavior.default&&(r=e.default),!r)throw new Error(`Found the descriptor for '${n}' but not the function. The descriptor manifest must be corrupt.`);return r},Gd=async(l,t=!1)=>{const e=l?.functions,n=new Map;if(e)for(let r=0;r<e.length;r++){const o=e[r],s=o[0],i=o[1];let a,c=t?()=>{}:await VS(l,s);a=s.context&&s.context!==en.Context.Calculation?new WS(s,c,()=>null,i):new Ro(s,c,()=>null,i),n.set(s.name.toUpperCase(),a)}return new jS({json:l,readonlyFunctions:n})};class $S{constructor(t){this._options=t,this._initState()}_initState(){}getModules(){return this._modules}async createModule(t){const e=await import("@sheetxl/scripting"),n=await e.ScriptingUtils.compileTypescript(t);return n?await Gd(n,t?.declarationsOnly??!1):null}addModule(t,e,n){this._modules.add(t,e,n)}executeMacro(t,e){const n=this._modules.getItems({name:e}),r=n.length;for(let o=0;o<r;o++){const s=n[o].getFunctions().getByName(t);if(s)return s.execute(this._options.workbook)}throw new Error(`No macro ${t} found.`)}searchFunction(t){const e=t?.name,n=t?.moduleName,r=t?.type,o=this._modules;if(!o)return E.CommonUtils.EmptyArray;const s=o.getCount();if(s===0)return E.CommonUtils.EmptyArray;if(n){const a=this._modules.getItems({name:n});return a.length===0?E.CommonUtils.EmptyArray():a[0].getFunctions().getItems({name:e,type:r})}const i=this._modules.getItems();for(let a=0;a<s;a++){const c=i[a].getFunctions().getItems({name:e,type:r});if(c.length>0)return c}return E.CommonUtils.EmptyArray}async start(){if(this._modules)return Promise.resolve();const t=this._options?.workbook,e=this._options?.json;let n={};if(e){const i=Object.keys(e);for(let a=0;a<i.length;a++){const c=i[a],h=e[c],d=await Gd(h);n[c]=d}}const r=new PS({transactions:this._options?.transactions,initial:n,onRemove:this._options?.onRemove,onAdd:this._options?.onAdd});this._modules=r;const o=r.getItems();if(o.length===0)return Promise.resolve(E.CommonUtils.EmptyArray);const s=o.length;for(let i=0;i<s;i++){const a=o[i];try{const c=a.getFunctions().getItems({type:"autoRun"}),h=c.length;for(let d=0;d<h;d++)await c[d].execute(t)}catch(c){console.error("Error executing autoRun script:",c)}}}toJSON(){const t=this._modules;if(!t)throw new Error("Scripts is initializing.");return t.toJSON()}}const GS=Object.freeze({lockStructure:!1,lockWindows:!1,lockRevision:!1,workbookPassword:null,revisionsPassword:null});class Jd extends jg{isWindowsAllowed(){return this._isPropertyAllowed("windows")}isRevisionAllowed(){return this._isPropertyAllowed("revision")}isStructureAllowed(){return this._isPropertyAllowed("structure")}_fromJSON(t){this._properties=t}_toJSON(t){let e=this._properties;if(e){t={...t,...e};const n=Object.keys(e),r=n.length;for(let o=0;o<r;o++){const s=n[o],i=e[s];i!=null&&i!==GS[s]&&(t[s]=i)}}return super._toJSON(t)}}const Dl=l=>`Invalid SheetKey: ${l}`,Ll="A workbook must contain at least one visible worksheet.",qd="Internal error no visible sheetRefs",Zt="Workbook has been closed. No further operations are allowed.",Nn="This workbook structure is protected. To make a change, unprotect the workbook. You might be requested to enter a password.",Ii="A sheet name",ga=`${Ii} can not be blank.`,JS=`${Ii} can not be longer than 31 characters.`,qS=`${Ii} can not begin or end with a "'" (single quote).`;class KS{constructor(t,e){this._add=t,this._get=e}add(t){return this._add(t)}getItems(t){return this._get(t?.name,t?.visibility)}getByName(t){return this._get(t)?.[0]??null}getCount(){return this._get().length}}const ma=new RegExp(/[\\/\\*?:[\]]+/),XS=new RegExp(/\(((\d+)(?!.*\d))\)$/,"g"),YS=l=>`Sheet${l+1}`,Vg=(l,t)=>({...bn,getSheet:()=>null,toString:()=>Si(l,t)}),Kd=(l,t=!1)=>{if(!l)throw new Error(ga);if(ma.test(l)){if(!t)throw new Error((n=>`${n?`'${n}'`:Ii} can not contain any of the following characters '\\ , / , * , ? , : , [ , ]'.`)(l));l=l.replace(ma,"")}if(l.length===0)throw new Error(ga);const e=l.length;if(e>31){if(!t)throw new Error(JS);l=l.substring(0,31)}if(l.charAt(0)==="'"||l.charAt(e-1)==="'"){if(!t)throw new Error(qS);l=l.replace(/^'|'$/g,"")}return l};class bi extends Bo{constructor(t,e,n,r){super(t,e,r),this._workbook=n}getSource(){return this._workbook}_createRanges(t,e){let n=this._options;return e&&(n={...this._options,getOptions:on(this._options?.getOptions,e)}),new bi(t,this._sheet,this._workbook,n)}_createRange(t,e){const n=t?{...t}:null;if(!(n&&this._workbook._getSheetRef(n.sheetName,exports.ISheet.Visibility.VeryHidden))){const o=this._workbook.getSelectedSheet();return delete n?.sheetName,Vg(n,n?{sheetName:Pt,...o.getEntireRange().getCoords()}:null)}let r=this._options;return e&&(r={...this._options,getOptions:on(this._options.getOptions,e)}),new vi(t,this._sheet,this._workbook,r)}async select(t){const e=[];let n=null;const r=this.getCoords();for(let a=0;a<r.length;a++){const c=r[a];c&&(n||(n=c.sheetName),c&&c.sheetName===n&&e.push(c))}n||(n=this._workbook.getSelectedSheet().getName());const o=this._workbook.getSheets().getByName(n);if(!o)return;const s=await o.getRanges(e).select(t),i=this._workbook._rangesAddressToCoords(s.getCoords());return this._createRanges(i,t)}addListener(t,e){if(!this.getCoords())return()=>{};const n=this._workbook._sheetToWBEvent(t);return super.addListener(n,e)}get[Symbol.toStringTag](){return"[WorkbookRanges]"}toString(){const t=this.getCoords(),e=this._sheet,n=e.getEntireRange().getCoords(),r={sheetName:e.getName(),...n};return lg(t,r,Si,An)}}class vi extends Do{constructor(t,e,n,r){super(t,e,r),this._workbook=n}_createRanges(t,e){let n=this._options;return e&&(n={...this._options,getOptions:on(this._options?.getOptions,e)}),new bi(t,this._sheet,this._workbook,n)}_createRange(t,e){const n=this._sheet;if(!t)return tn(n,n._entireCoords);if(n._validateCoords(t),n._closed)return tn(null,n._entireCoords,t);let r=this._options;return e&&(r={...this._options,getOptions:on(this._options?.getOptions,e)}),new vi(t,this._sheet,this._workbook,r)}getSource(){return this._workbook}get[Symbol.toStringTag](){return"[WorkbookRange]"}toString(){const t=this._sheet,e=t?.getEntireRange().getCoords()??null;return Si(this.getCoords(),{...e,sheetName:t.getName()})}addListener(t,e){if(!this.getCoords())return()=>{};const n=this._workbook._sheetToWBEvent(t);return super.addListener(n,e)}}class QS{constructor(t){this._lastTransactionUUID=null,this._closed=!1,this._initializing=!0,this._emitter=null,this._names=null,this._calculation=null,this._isDate1904=!1;const e=this,n={...t},r=n.json;delete n.json,this._transactions=n.transactions??new ve,this._ownTransactions=!n.transactions,this._emitter=new Yt(this,this._transactions);const o=this._beginCommit({description:(r?"Open":"New")+" Workbook"});try{this._strings=n.strings??new Ei,this._ownStrings=!n.strings,this._resources=n.resources??new Oa,this._ownResources=!n.resources,this._createSheetName=n.createSheetNameCallback??YS;let s=n.createSheetCallback;s||(s=a=>new Ar(a)),this._sheetOnNameChange=new Map,this._sheetOnVisibilityChange=new Map,this._sheetOnIndexChange=new Map,this._createSheet=(a,c,h,d,u)=>{let g=null;const m={date1904:e.isDate1904(),readonly:e._options.readonly??!1,transactions:e._transactions,styles:e._styles,strings:e._strings,resources:e._resources,names:e._names,calculation:e._calculation,resolveRange:f=>e._options.resolveRange?.(f)??e.getRange(f),container:{beforeFromJSON:f=>{g=f,e._addSheetRef({name:c,id:a,visibility:h??exports.ISheet.Visibility.Visible,sheet:f},d)},getName:()=>{const f=e._getSheetRef(g);return f?f.name:e._createSheetName(1)},setName:f=>{e._getSheetRef(g)&&e._setSheetName(g,f)},getIndex:()=>{const f=e._getSheetRef(g);return f?e._findOffsetForId(f.id,e._getSheetRefs(exports.ISheet.Visibility.VeryHidden)):-1},setIndexCallback:f=>{e._sheetOnIndexChange.set(a,f)},setNameChangeCallback:f=>{e._sheetOnNameChange.set(a,f)},getVisibility:()=>{const f=e._getSheetRef(g);return f?f.visibility:exports.ISheet.Visibility.Visible},setVisibility:f=>{e._setSheetVisibility(g,f)},setVisibilityCallback:f=>{e._sheetOnVisibilityChange.set(a,f)},duplicate:()=>e._duplicateSheet(g),setPosition:f=>{const _=e._getSheetRef(g,exports.ISheet.Visibility.VeryHidden);return!!_&&(e._moveSheet(_,f),!0)},requestSelect:async()=>(e._setSelectedSheet(g),await this._emitter.notify("onRequestSelect",{source:e,params:g,async:!0}),e.getSelectedSheet()===g)}};return u&&(m.json=u),g=s(m,c,d,h),g},this._names=n.names??new Lg({addressToRanges:a=>e.getRanges(a),getCurrentScope:()=>e.getSelectedSheet().getName(),isReadOnly:()=>e._options.readonly??!1,transactions:e._transactions}),this._ownNames=!n.names,this._calculation=n.calculation??new Da({getNamed:(a,c)=>{try{cr.address=a,cr.scope=c;const h=this._names.getItems(cr);return h&&h.length!==0?h[0].getRanges().getCoords():null}catch{return null}},getSheetIndex:a=>{if(a===void 0)return e.getSelectedSheetIndex();const c=this._getSheetRefs(exports.ISheet.Visibility.Hidden);a=a.toLowerCase();for(let h=0;h<c.length;h++)if(c[h].name.toLowerCase()===a)return h;try{cr.address=a,cr.scope=void 0;const h=this._names.getItems(cr);if(!h||h.length===0)return-1;let u=h[0].getRanges().getCoords()?.[0]?.sheetName;if(!u)return-1;const g=this._getSheetRefs(exports.ISheet.Visibility.Hidden);u=u.toLowerCase();for(let m=0;m<g.length;m++)if(g[m].name.toLowerCase()===u)return m}catch{return-1}return-1},getSheetCount:()=>e.getSheets().getCount(),isDate1904:()=>e.isDate1904(),strings:e._strings,transactions:e._transactions}),this._ownsCalculation=!n.calculation,this._scripts=this._createScripts(),this._ownNames=!n.names,this._options={...n};const i=async()=>{this._ownsCalculation&&await this._calculation.start(),await this._scripts.start(),this._starting=null};this._starting=i(),r?this._fromJSON(r):(this._initState(),this._addSheet(!1)),this._emitter.notify("onLoad"),o.commit({forceAmend:this._ownTransactions})}catch(s){throw o.rollback(),s}this._sheets=new KS(s=>e._addSheetOptions(s),(s,i)=>s?[this.getSheet(s,i)]:this._getSheets(i)),this._initializing=!1}_initState(){let t=this._getSheetRefs();for(let r=t&&t.length-1;r>=0;r--);this._isDate1904=this._options.date1904??!1,this._theme=this._options.theme??new va().getDefaultTheme(),this._styles=this._options?.styles??new Fr(this._theme),this._ownStyles=!this._options.styles,this._styles.getTheme()||this._styles.setTheme(this.getTheme()),this._activeSheetOffset=0,this.setView(new ua),this._listenerProtection?.(),this._protection=new Jd(void 0,this._options.readonly??!1),this._listenerProtection=this._protection.addListeners({onChange:r=>{e._emitter.notify("onProtectionChange")}});const e=this;this._transactionsRemoveListener=this._transactions.addStateListener(this,{onAfterStateChange(r,o,s){if(o&&o.activeSheetId!==void 0&&o.view===e.getView()&&s.getId()===e._lastTransactionUUID&&e._getSheetRef(o.activeSheetId)?.sheet.select(),o&&s.getId()!==e._lastTransactionUUID){let i=e.getView().getActiveSheetId();o.view===e.getView()&&(i=o.activeSheetId);let a=0;try{a=e._findOffsetForId(i,r.sheetRefsVisible)}catch{}e._activeSheetOffset=a}e._lastTransactionUUID=s.getId(),e._notifyAllChange()},onRestoreOrRevert(){e._emitter.notify("onInvalidated")}});const n=this._getState();n?.listenersSheets&&(n?.listenersSheets.forEach(r=>{r()}),n?.listenersSheets.clear()),this._updateState({sheetRefsAll:[],sheetRefsVisibleAndHidden:[],sheetRefsVisible:[],refsById:new Map,sheetsById:new Map,refsByLowerCaseName:new Map,sheetsByLowerCaseName:new Map,refsByInstance:new Map,lastId:-1,sheetsCreated:new Set,listenersSheets:new Map})}getView(){return this._view}setView(t){if(this._closed)throw new Error(Zt);if(!t)throw new Error("View can not be empty.");this._listenerWorkbookView?.();const e=this;return this._listenerWorkbookView=t.addListeners({onViewChange:n=>{const r=e._getState();this._activeSheetOffset=this._findOffsetForId(this._view.getActiveSheetId(),r.sheetRefsVisible),e._emitter.notify("onViewChange")}}),this._view=t,e._emitter.notify("onViewChange"),this}isDate1904(){return this._isDate1904}setDate1904(t){if(this._closed)throw new Error(Zt);return this._isDate1904=t,this._notifyAllChange(),this}getStyles(){return this._styles}getResources(){return this._resources}getTransactions(){return this._transactions}getStrings(){return this._strings}getTheme(){return this._theme}setTheme(t){if(this._closed)throw new Error(Zt);if(!t)throw new Error("A value must be provided.");const e=this._theme;return this._theme=t,this.getStyles().setTheme(t),this._emitter.notify("onThemeChange"),e}getSelectedSheetIndex(){return this._activeSheetOffset}getSelectedSheet(){const t=this._getSheetRef(this.getSelectedSheetIndex());return t?t?.sheet:null}getSheet(t,e=exports.ISheet.Visibility.Visible){const n=this._getSheetRef(t,e);if(!n)throw new E.OutOfBoundsError(`Sheet '${t}' not found.`);return n.sheet}getSheetAt(t,e=exports.ISheet.Visibility.Visible){const n=this._getSheetRef(t,e);if(!n)throw new E.OutOfBoundsError((r=>`No sheet found at ${r}.`)(t));return n.sheet}getSheets(){return this._sheets}addSheet(t){return this.getSheets().add(t)}_getSheets(t=exports.ISheet.Visibility.Visible){const e=this._getSheetRefs(t),n=[];for(let r=0;r<e.length;r++)n.push(e[r].sheet);return n}_getSheetRefs(t=exports.ISheet.Visibility.Visible){if(this._closed)return E.CommonUtils.EmptyArray;const e=this._getState();return e?t===exports.ISheet.Visibility.Visible?e.sheetRefsVisible:t===exports.ISheet.Visibility.Hidden?e.sheetRefsVisibleAndHidden:t===exports.ISheet.Visibility.VeryHidden?e.sheetRefsAll:E.CommonUtils.EmptyArray:[]}_getSheetRef(t,e=exports.ISheet.Visibility.Visible){if(this._closed)return null;let n=null;return typeof t=="number"?this._getSheetRefs(e)[t]:(typeof t=="string"?n=this._getState().refsByLowerCaseName.get(t.toLowerCase()):t instanceof Ar?n=this._getState().refsByInstance.get(t):t?.id&&t.sheet&&(n=this._getState().refsById.get(t.id)),n)}_validateNewSheetName(t,e=!0){if(t==null)return t;if(Kd(t),e&&this._getState().sheetsByLowerCaseName.has(t.toLowerCase()))throw new Error("That name is already taken. Try a different one.");return t.substring(0,31)}findValidSheetName(t){t&&(t=Kd(t,!0));try{return((e,n)=>{try{if(n(e))return e}catch{}let r,o,s=XS.exec(e);for(s!==null?(r=e.substring(0,s.index),o=parseFloat(s[1])):(r=e+" ",o=1);o<256;){o++;const i="("+o+")",a=r.substring(0,31-i.length)+i;try{if(n(a))return a}catch{}}throw new Error(e+" is not a valid sheet name")})(t,e=>this._validateNewSheetName(e))}catch{return this._nextSheetName()}}isValidSheetNameCharacter(t){return!ma.test(t)}_addSheetOptions(t){if(this._closed)throw new Error(Zt);if(!this.getProtection().isStructureAllowed())throw new Error(Nn);let e,n=null;e=typeof t=="string"?{name:t}:typeof t=="number"?{index:t}:t,e={...e,description:e?.description??"Add Sheet"};const r=this.beginCommit(e);try{const o=e?.autoSelect;n=this._addSheet(!0,e.name,e.index??null);const s=this.getView().getActiveSheetId();let i,a;if(o!==!1){let c=this.getView().getActiveSheetId();c=this._getSheetRef(n).id,o&&(i={view:this.getView(),activeSheetId:s},a={view:this.getView(),activeSheetId:c})}if(r.commit({description:`Add Sheet '${n.getName()}'`,viewBefore:i,viewAfter:a}),o!==!1){const c=typeof o=="boolean"?void 0:o;n.select(c)}}catch(o){throw r.rollback(),o}return n}_nextSheetName(t=null){let e=t?t.toLowerCase():null;const n=this._getState(),r=n.sheetsByLowerCaseName;if(t&&r.has(e))throw new Error((s=>`The sheet name '${s}' already exist in workbook.`)(t));e=(t=this._validateNewSheetName(t))?t.toLowerCase():null;let o=n.lastId+1;for(;!t;){const s=this._createSheetName(o),i=s.toLowerCase();r.has(i)?o++:t=s}return this._updateState({lastId:o}),t}_addSheet(t,e=null,n=null){e=this._nextSheetName(e);const r=this._getState(),o=this._createSheet(r.lastId,e,exports.ISheet.Visibility.Visible,n,null);if(!o)throw new Error(ga);return t&&this._emitter.notify("onSheetsChange"),o}_updateSheetRefStates(t){if(this._closed)throw new Error(Zt);if(!this._initializing&&!this.getProtection().isStructureAllowed())throw new Error(Nn);const e=t,n=[],r=[];for(let o=0;o<e.length;o++)e[o].visibility===exports.ISheet.Visibility.Visible?(n.push(e[o]),r.push(e[o])):e[o].visibility===exports.ISheet.Visibility.Hidden&&r.push(e[o]);this._updateState({sheetRefsAll:e,sheetRefsVisible:n,sheetRefsVisibleAndHidden:r})}_addSheetRef(t,e=null){const n=this._getState(),r=n.sheetRefsAll,o=Math.max(0,Math.min(r.length,e??r.length));let s=[...r.slice(0,o),t,...r.slice(o)];this._updateSheetRefStates(s);const i=t.sheet,a=t.name.toLowerCase(),c=new Map(n.refsById);c.set(t.id,t);const h=new Map(n.refsByLowerCaseName);h.set(a,t);const d=new Map(n.refsByInstance);d.set(i,t);const u=new Map(n.sheetsById);u.set(t.id,i);const g=new Map(n.sheetsByLowerCaseName);g.set(a,i);const m=this;let f=n.listenersSheets;if(i!==void 0){const S=i.addListeners({onBeforeDelete:C=>{m._validateDeleteSheet(C)},onDelete(C){let y=m._getSheetRef(C,exports.ISheet.Visibility.VeryHidden);if(!y)return;const I=m._beginCommit({description:`Remove Sheet ${y.name}`});try{const w=m._getState(),b=w.sheetRefsAll,x=m._findOffsetForId(y.id,b);let R=[...b];R.splice(x,1),m._updateSheetRefStates(R);const v=new Map(w.refsById);v.delete(y.id);const T=new Map(w.sheetsById);T.delete(y.id);const M=y.name.toLowerCase(),F=new Map(w.refsByLowerCaseName);F.delete(M);const N=new Map(w.sheetsByLowerCaseName);N.delete(M);const O=new Map(w.refsByInstance);O.delete(C),w.listenersSheets.get(y.id)();const L=new Map(w.listenersSheets);L.delete(y.id),m._adjustRemoveSelectionIfRequired(x,y.id),m._adjustSheetNamesIfRequired(),m._emitter.notify("onSheetsChange");const B=new Set(w.sheetsCreated);B.has(i)&&B.delete(i),m._updateState({refsById:v,sheetsById:T,refsByLowerCaseName:F,sheetsByLowerCaseName:N,refsByInstance:O,sheetsCreated:B,listenersSheets:L}),I.commit()}catch(w){throw I.rollback(),w}}});f=new Map(n.listenersSheets),f.set(t.id,S)}let _=n.lastId;_!==-1&&(_=Math.max(_,t.id)),this._updateState({lastId:_}),this._updateState({refsById:c,refsByLowerCaseName:h,refsByInstance:d,sheetsById:u,sheetsByLowerCaseName:g,listenersSheets:f}),this._adjustSheetNamesIfRequired();const p=new Set(this._getState().sheetsCreated);return p.add(t.sheet),this._updateState({sheetsCreated:p}),t}_adjustRemoveSelectionIfRequired(t,e){if(this._view.getActiveSheetId()===e){let n;const r=this._getState().sheetRefsVisible;n=t<r.length?r[t].id:r[t-1].id,this._view.setActiveSheetId(n)}}_adjustSheetNamesIfRequired(){const t=this._getState(),e=t.lastId;if(e===-1)return;let n=this._view.getActiveSheetId();n==null&&(this._view.setActiveSheetId(e),n=e),t.refsById.get(n).visibility===exports.ISheet.Visibility.Visible&&(this._activeSheetOffset=this._findOffsetForId(n,t.sheetRefsVisible))}_validateDeleteSheet(t){if(this._closed)throw new Error(Zt);if(!this.getProtection().isStructureAllowed())throw new Error(Nn);let e=this._getSheetRef(t);if(!e)throw new Error((r=>`Invalid reference for delete: ${r}`)(t));const n=this._getState().sheetRefsVisible;if(n.length===1&&n[0].id===e.id)throw new Error(Ll)}_findOffsetForId(t,e){for(let n=0;n<e.length;n++)if(e[n].id===t)return n;throw new Error(qd)}find(t,e){if(this._closed)throw new Error(Zt);const n=this._getSheets();if(n.length===1)return n[0].find(t,e);const r=!e?.reverse;let o=e?.disableWrap??!1;const s=this.getSelectedSheetIndex();let i=s,a=n[i],c=!1;e={...e,disableWrap:!0};let h,d=a.find(t,e),u=d.next(),g=!1;if(e?.from){const _=this._rangesAddressToCoords(e?.from);h={colIndex:_[0].colStart,rowIndex:_[0].rowStart}}else h={colIndex:0,rowIndex:0};const m=E.CoordUtils.createCellComparator(e?.orientation,e?.reverse);delete(e={...e}).from;const f=()=>{if(!g&&u.done&&(c&&i===s?g=!0:r?(i++,i>n.length-1&&(i=0,c=!0)):(i--,i<0&&(i=n.length-1,c=!0)),o&&c&&(g=!0),!g))return a=n[i],d=a.find(t,e),u=d.next(),u;if(!g&&c&&i===s&&(u.done||!u.done&&m(u.value.getCoords(),h)>=0)&&(g=!0),g)return Ct;const _=u;return u=d.next(),_};return{next:()=>{let _=f();for(;!g&&_.done;)_=f();return _}}}replace(t,e,n){let r=0,o=null;const s=typeof e=="function",i=n?.maxCount??Number.MAX_SAFE_INTEGER;let a=n.maxCount?"":"All";const c=typeof e=="string"?` with '${bu(e)}'`:"";let h=n?.description??"Replace";const d=this._transactions.beginCommit({description:h});try{let u=null,g=null,m=t.next();for(;!m.done&&r<i;){const f=m.value,_=f.getSheet();_!==u&&(u=_,g!==null&&g.apply(),g=u.getEntireRange().startIncrementalUpdates({orientation:n?.orientation,allowUnorderedWrites:!0}));const p=s?e(f):e;p!==void 0&&p!==f&&(g.push(f,p),r++,o=f),m=t.next()}g?.apply(),r===1&&i===1&&o&&(a=o.getA1()),d.commit({description:n?.description??`Replace ${a}${c}`})}catch(u){throw d.rollback(),u}return{count:r,last:o}}_nextSheetIndex(t,e=this._getSheetRefs()){return e.length===1?0:(t===void 0&&(t=this.getSelectedSheetIndex()),(t=Math.max(0,Math.min(t,e.length-1)))>=e.length-1?0:t+1)}_prevSheetIndex(t,e=this._getSheetRefs()){return e.length===1?0:(t===void 0&&(t=this.getSelectedSheetIndex()),(t=Math.max(0,Math.min(t,e.length-1)))<=0?e.length-1:t-1)}getNextSheet(t){if(this._closed)throw new Error(Zt);const e=this._getSheetRefs();return e[this._nextSheetIndex(t,e)]?.sheet??null}getPreviousSheet(t){if(this._closed)throw new Error(Zt);const e=this._getSheetRefs();return e[this._prevSheetIndex(t,e)]?.sheet??null}async _duplicateSheet(t){if(this._closed)throw new Error(Zt);if(!this.getProtection().isStructureAllowed())throw new Error(Nn);const e=this._getSheetRefs(),n=this.getSelectedSheetIndex();let r=null;if(t){if(r=this._getSheetRef(t),!r)throw new Error(Dl(r))}else r=e[n];if(!r)return null;const o=r.sheet,s=this._strings.beginPersist(),i=this.getResources().beginPersist(),a=this.getStyles().beginPersist();let c=null;const h=this.beginCommit(`Duplicate '${o.getName()}'`);try{const d=this._getState().refsByInstance.get(o),u=await o.toJSON(),g=e.length+1,m=this.findValidSheetName(d.name),f=this._createSheet(g,m,d.visibility,n,u);this._emitter.notify("onSheetsChange"),c=f,h.commit()}catch(d){throw h.rollback(),d}finally{a.endPersist(),i.endPersist(),s.endPersist()}return c}_createRange(t,e){const n=t?{...t}:null;if(!(n&&this._getSheetRef(n.sheetName,exports.ISheet.Visibility.VeryHidden))){const s=this.getSelectedSheet();return s?(delete n?.sheetName,Vg(n,n?{sheetName:Pt,...s.getEntireRange().getCoords()}:null)):void console.warn(qd)}const r=this.getSelectedSheet();let o=null;return e&&(o={getOptions:e}),new vi(t,r,this,o)}_createRanges(t,e){const n=this.getSelectedSheet();let r=null;return e&&(r={getOptions:e}),new bi(t,n,this,r)}getRange(t,e){try{const n=this._rangesAddressToCoords(t);if(n.length!==1)throw new Error(dg);return this._createRange(n[0],e)}catch(n){throw n instanceof E.OutOfBoundsError?new E.OutOfBoundsError(n.message):new Error(n.message??Eo(t))}}getRanges(t,e){const n=this._rangesAddressToCoords(t);if(n.length===0)throw new Error(Eo(t));return this._createRanges(n,e)}_activeRangeCoords(){const t=this.getSelectedSheet(),e=ur(t.getSelection().getCoords()),n=t.getName(),r=[];for(let o=0;o<e.length;o++)r.push({sheetName:n,...e[o]});return r}getSelectedRange(t){return this.getRange(this._activeRangeCoords()[0],t)}getSelectedRanges(t){return this.getRanges(this._activeRangeCoords(),t)}getSelectedCell(){return this.getSelectedSheet().getSelectedCell()}_rangesAddressToCoords(t,e=!0,n=exports.ISheet.Visibility.Hidden){if(!t)throw new Error(yr);const r=this.getSelectedSheet(),o=r?.getEntireRange().getCoords(),s={...o},i=r?.getName();if(i&&(s.sheetName=i),typeof t=="string"){const h=t.trim().toLowerCase();if(h==="r"||h==="c"){const d=this.getSelectedCell().getCoords(),u={};h==="r"?u.rowStart=u.rowEnd=d.rowIndex:u.colStart=u.colEnd=d.colIndex,t=u}}const a=this,c=Ma(t,s,ko,h=>{if(!e)return null;if(typeof h=="string"){const d=a.getNames().getByName(h);if(d)return d.getRanges()?.getCoords()}throw new Error(`Invalid sheet reference '${h}'.`)});for(let h=0;h<c.length;h++)this._validateCoords(c[h],n);return c}_validateCoords(t,e=exports.ISheet.Visibility.Visible,n=ni){if(t===null)return;const r=this.getSheet(t.sheetName,e).getEntireRange().getCoords();if(!E.CoordUtils.isRangeWithinRange(t,r))throw new E.OutOfBoundsError(n);if(t.rowEnd<t.rowStart||t.colEnd<t.colStart)throw new Error(ug)}_updateSheetRef(t,e){const n=this._getState();let r=[...n.sheetRefsAll];r[this._findOffsetForId(t.id,n.sheetRefsAll)]=e,this._updateSheetRefStates(r);const o=new Map(n.refsById);o.set(t.id,e);const s=t.name.toLowerCase(),i=e.name.toLowerCase(),a=new Map(n.refsByLowerCaseName);a.delete(s),a.set(i,e);const c=new Map(n.sheetsByLowerCaseName);let h=c.get(s);c.delete(s),c.set(i,h);const d=new Map(n.refsByInstance);return d.set(h,e),this._updateState({refsById:o,refsByLowerCaseName:a,sheetsByLowerCaseName:c,refsByInstance:d}),e}_setSheetName(t,e){if(this._closed)throw new Error(Zt);if(!this.getProtection().isStructureAllowed())throw new Error(Nn);const n=this._getSheetRef(t);if(!n)throw new Error(Dl(t));if(e===n.name)return n.sheet;e=this._validateNewSheetName(e);const r=Object.freeze({...n,name:e});let o=null;const s=this.beginCommit("Rename Sheet");try{const i=this._updateSheetRef(n,r);this._adjustSheetNamesIfRequired(),this._sheetOnNameChange.forEach((a,c)=>{n.id===c&&a()}),this._emitter.notify("onSheetsChange"),o=i.sheet,s.commit()}catch(i){throw s.rollback(),i}return o}_setSheetVisibility(t,e=exports.ISheet.Visibility.Visible){if(this._closed)throw new Error(Zt);if(!this.getProtection().isStructureAllowed())throw new Error(Nn);const n=this._getSheetRef(t);if(!n)return null;if(e===n.visibility)return;let r=null,o="";e===exports.ISheet.Visibility.Visible?o="Unhide Sheet":e===exports.ISheet.Visibility.Hidden?o="Hide Sheet":e===exports.ISheet.Visibility.VeryHidden&&(o="Very Hide Sheet");const s=this.beginCommit(o);try{const i=this._getState().sheetRefsVisible;if(e!==exports.ISheet.Visibility.Visible&&i.length===1&&i[0].id===n.id)throw new Error(Ll);const a={...n,visibility:e};let c=-1;e!==exports.ISheet.Visibility.Visible&&(c=this._findOffsetForId(n.id,i));const h=this._updateSheetRef(n,a);e!==exports.ISheet.Visibility.Visible&&this._adjustRemoveSelectionIfRequired(c,n.id),r=h.sheet,this._adjustSheetNamesIfRequired(),s.commit()}catch(i){throw s.rollback(),i}return this._sheetOnVisibilityChange.forEach((i,a)=>{n.id===a&&i()}),this._emitter.notify("onSheetsChange"),r}_moveSheet(t,e){if(this._closed)throw new Error(Zt);if(!this.getProtection().isStructureAllowed())throw new Error(Nn);let n=null;const r=this.beginCommit(`Move Sheet '${t.name}'`);try{const o=this._getState(),s=o.sheetRefsVisible;if(e<0||e>s.length-1)throw new Error(`Invalid to index: ${e}`);const i={view:this.getView(),activeSheetId:this.getView().getActiveSheetId()},a=o.sheetRefsAll,c=this._findOffsetForId(t.id,a),h=this._findOffsetForId(s[e].id,a);if(c===h)return;const d=a[c];let u=[...a];u.splice(c,1),u.splice(h,0,d),this._updateSheetRefStates(u),this._adjustSheetNamesIfRequired(),this._sheetOnIndexChange.forEach((g,m)=>{m>=c&&m<=h&&g()}),this._emitter.notify("onSheetsChange"),n=d.sheet,r.commit({viewBefore:i,viewAfter:{view:this.getView(),activeSheetId:this.getView().getActiveSheetId()}})}catch(o){throw r.rollback(),o}return n}_setSelectedSheet(t){if(this._closed)throw new Error(Zt);const e=this._getSheetRef(t);if(!e)throw new Error(Dl(t));let n=null;return e.visibility!==exports.ISheet.Visibility.Visible&&this._setSheetVisibility(e,exports.ISheet.Visibility.Visible),this._view.setActiveSheetId(e.id),n=e.sheet,n}getProtection(){return this._protection}getNames(){return this._names}getCalculation(){return this._calculation}getScripts(){return this._scripts??null}_notifyAllChange(){this._emitter.notify("onSheetsChange"),this._emitter.notify("onViewChange")}addListeners(t,e){return this._emitter.addListeners(t,e)}_sheetToWBEvent(t){const e=this;return n=>{const r=()=>{const s=n.getSource();if(s.isICellRanges){const i=[...s.getCoords()];for(let a=0;a<i.length;a++){const c=i[a];!c.sheetName&&s.getSheet().getName()&&(i[a]={...c,sheetName:s.getSheet().getName()})}return e.getRanges(i)}if(s.isICellRange){const i=s.getCoords(),a=s.getSheet().getName();return e.getRange({...i,sheetName:a})}},o={getSource:r,trigger:n.trigger,getFrom:()=>e.getRanges(n.getFrom()),getTo:()=>e.getRange(n.getTo()),isDataChange:n.isDataChange,isTransactional:n.isTransactional,isUndo:n.isUndo,toString:()=>`WorkbookRangeEvent: ('${n.trigger}', ${r().toString()})`,timeStamp:Date.now()};t(o)}}_fromJSON(t){if(this._emitter.notify("onBeforeLoad",{params:t}),this._initState(),!t.sheets||t.sheets.length===0)throw new Error(Ll);t.theme&&(this._theme=new Ys(t.theme),this._styles.setTheme(this._theme));const e=this._strings.beginPersist(),n=this._resources.beginPersist(),r=this._styles.beginPersist();try{e.fromJSON(t.strings),n.fromJSON(t.resources),r.fromJSON(t.styles),t.date1904&&(this._isDate1904=!0),t.view||(t.view={});const o=t.sheets,s=o.length;let i=t.view.activeSheetId??null;i!==null&&(i=Math.min(Math.max(1,i),s));let a=null;for(let h=0;h<s;h++){const d=o[h],u=d.visibility||exports.ISheet.Visibility.Visible,g=h+1;u===exports.ISheet.Visibility.Visible?a=g:i!==null&&i===g&&(i=null),this._createSheet(g,d.name,u,void 0,d.sheet)}this._updateState({lastId:a}),t.names&&this._names.fromJSON(t.names),t.view.activeSheetId=i??a,this.setView(new ua({json:t.view})),this._adjustSheetNamesIfRequired(),this._listenerProtection?.();const c=this;this._protection=new Jd(t?.protection,this._options?.readonly),this._listenerProtection=this._protection.addListeners({onChange:h=>{c._emitter.notify("onProtectionChange",{source:h})}}),t.scripts&&(this._scripts=this._createScripts(t.scripts)),this._emitter.notify("onLoad")}finally{r.endPersist(),n.endPersist(),e.endPersist()}}_createScripts(t){return new $S({transactions:this._transactions,json:t,workbook:this,onAdd:(e,n)=>{const r=this._calculation;r.getStatus()!==exports.ICalculation.Status.Off&&r.start().then(()=>{const o=n.getFunctions().getItems({type:"formula"});for(let s=0;s<o.length;s++){const i=o[s];this._calculation.getFunctions().add(i)}})},onRemove:(e,n)=>{}})}async toJSON(t=!1){if(this._closed)throw new Error(Zt);await this._emitter.notify("onBeforeSave",{async:!0});const e={sheets:[]};await Promise.resolve(this._starting);const n=this._theme.toJSON();(n?Object.keys(n).length:0)>0&&(e.theme=n);const r=this._strings.beginPersist(),o=this._resources.beginPersist(),s=this._styles.beginPersist();try{const i=this._getSheetRef(this.getSelectedSheetIndex()).id;let a=i,c=null;const h=this._getState(),d=h.sheetRefsAll,u=h.sheetsById;for(let C=0;C<d.length;C++){const y=d[C],I=C+1,w=await u.get(y.id).toJSON(t),b={name:y.name,sheet:w};y.visibility===exports.ISheet.Visibility.Visible?c=I:b.visibility=y.visibility,y.id===i&&(a=I),e.sheets.push(b)}const g=s.toJSON();g&&Object.keys(g).length>0&&(e.styles=g);const m=this.getProtection().toJSON();m&&(e.protection=m);const f=await r.toJSONAsync();f&&f.length>0&&(e.strings=f);const _=await o.toJSONAsync();_&&_.length>0&&(e.resources=_);const p=this._names.toJSON();p&&p.length>0&&(e.names=p);const S=this._view.toJSON();S&&(a!==c?S.activeSheetId=a:delete S.activeSheetId,Object.keys(S).length>0&&(e.view=S))}finally{s.endPersist(),o.endPersist(),r.endPersist()}if(this._scripts){const i=this._scripts.toJSON();i&&Object.keys(i).length>0&&(e.scripts=i)}return this._isDate1904&&(e.date1904=!0),this._emitter.notify("onSave",{params:e}),e}isClosed(){return this._closed}close(){if(this._closed)return;this._emitter.notify("onClose");const t=this._getState();t.listenersSheets.forEach(n=>{n()}),t.listenersSheets.clear();const e=t.sheetRefsAll;for(let n=e.length-1;n>=0;n--)try{e[n].sheet.close()}catch(r){console.warn("error on close",r)}this._ownResources,this._ownNames&&this._names.close(),this._ownsCalculation&&this._calculation.close(),this._ownStyles,this._transactionsRemoveListener?.(),this._closed=!0}beginCommit(t){if(this._closed)throw new Error(Zt);return this._beginCommit(typeof t=="string"?{description:t}:t)}doBatch(t,e){const n=this;return e=typeof e=="string"?{description:e}:{description:"Update Workbook",...e},this._transactions.doBatch(t,e,(r,o)=>{r.getDepth()===0&&(n._lastTransactionUUID=r.getId())})}_beginCommit(t){const e=this;return this._transactions.beginCommit(typeof t=="string"?{description:t}:t,n=>{n.getDepth()===0&&(e._lastTransactionUUID=n.getId())})}_getState(){return this._transactions.getState(this)}_updateState(t,e="Update Workbook"){if(!t)return;const n=this._beginCommit(e);try{n.updateState(this,t),n.commit()}catch(r){throw n.rollback(),r}}get options(){return this._options}get[Symbol.toStringTag](){return"[Workbook]"}toString(){return""}get isIWorkbook(){return!0}}const cr={address:null,scope:null};exports.Calculation=Da,exports.Color=kt,exports.ExternalRangeClipboardItem=class{constructor(l,t,e,n){if(this._parsed=void 0,!l)throw new E.NullNotAllowedError("nativeItems are required.");this._native=l,this._markOptions=Object.freeze(t??{}),this._styles=e,this._isDate1904=n}getItemType(){return"range"}isCut(){return!1}toText(){return this._native?.text}toHtml(){return this._native?.html?.documentElement.outerHTML||null}toImage(){return this._native?.image}getItem(){const l=this._parsed;if(l===void 0)throw new Error("Must call 'parse()' before getItem().");if(l===null)return null;if(this._snapshot)return this._snapshot;const t=this;return this._snapshot={copyTo:(e,n)=>l.copyTo(e,{...t._markOptions,...n}),getMarkOptions:()=>t._markOptions,getName:()=>l?.getName()??"Clipboard Data",getCoords:()=>l?.getCoords?.()??null,toText:()=>t.toText(),toHtml:()=>t.toHtml(),toImage:()=>t.toImage(),getSource:()=>l?.getSource?.()??null,isISnapshot:!0},this._snapshot}async parse(){let l,t=this._native?.text,e=this._native.html;if(e===null&&t&&t.includes("<table"))try{const n=new DOMParser().parseFromString(t,E.MimeType.html),r=n.querySelector("parsererror");if(r)throw new Error("Unable to parse: "+r);e=n,t=null}catch{console.warn("Discovered text as html table but could could not parse.")}try{const n=new gS(this._styles,this._isDate1904,e?"HTML":"Text"),r=await Promise.resolve(t?((s,i=" ")=>new Promise((a,c)=>{Promise.resolve().then(()=>require("./CUzZS6wq23TI9nzy.cjs")).then(h=>h.papaparse_min).then(h=>{try{const d=h.parse(s,{delimiter:i}).data;d.length>1&&(d[d.length-1].length===0||d[d.length-1].length===1&&d[d.length-1][0].length===0)&&d.pop(),a(d)}catch(d){console.warn(d),c(d)}},h=>{c(h)})}))(t):[[]]);let o;if(fS(e,r,n)?(l=n.sheet(),o=l.getUsedRange()):e=null,o)return this._parsed={async copyTo(s,i){return(await s.copyFrom(o,i))?.getCoords()??null},getCoords:()=>o.getCoords(),getSource:()=>l,getName:()=>l.getName()},!0}catch(n){throw n}if(!t&&!e&&this._native.image){const n=this;return this._parsed={async copyTo(r,o){const s=r.getSheet(),i=await s.getMovables().addImage({buffer:n._native.image.arrayBuffer()},{type:"picture",description:"Copy Image from Clipboard"});return s.getView().selectMovables([i]),null},getName:()=>"Image"},!0}return!1}get isClipboardItem(){return!0}},exports.FormulaContext=kg,exports.GeomUtils=hm,exports.IFontCollection=Uf,exports.LicenseManager=pa,exports.Picture=Ng,exports.RangeClipboardItem=class{constructor(l){if(!l)throw new E.NullNotAllowedError("snapshot is required.");this._snapshot=l}getItemType(){return"range"}getItem(){return this._snapshot}editMode(){return this._snapshot?.getMarkOptions().editMode??null}isCut(){return this._snapshot?.getMarkOptions().isCut??!1}getName(){return this._snapshot.getName()}toText(){return this._snapshot.toText()}toHtml(){return this._snapshot.toHtml()}toImage(){return this._snapshot.toImage()}get isClipboardItem(){return!0}},exports.Resource=Ws,exports.ResourceCollection=Oa,exports.Sheet=Ar,exports.SimpleFontFace=Ou,exports.StringCollection=Ei,exports.StyleCollection=Fr,exports.Table=Fg,exports.TextUtils=Of,exports.Theme=Ys,exports.ThemeCollection=va,exports.TransactionStore=ve,exports.TransactionUndoManager=om,exports.TypedFunction=Ro,exports.Workbook=QS,exports.WorkbookView=ua,exports.coerceScalar=Ie,exports.colToString=xe,exports.defaultGetEntireCoords=ei,exports.getDefaultExportFromCjs=Ea,exports.gridFromArray=rg,exports.minCoerce=No,exports.rowToString=Ne,exports.toAbsoluteRange=(l,t,e,n)=>{let r=l.colStart,o=l.rowStart,s=l.colEnd,i=l.rowEnd;const a=l.$colStart??!1,c=l.$rowStart??!1,h=l.$colEnd??!1,d=l.$rowEnd??!1;if(a||r===Number.MIN_SAFE_INTEGER||(r+=e),c||o===Number.MIN_SAFE_INTEGER||(o+=t),h||s===Number.MAX_SAFE_INTEGER||(s+=e),d||i===Number.MAX_SAFE_INTEGER||(i+=t),r>s){const g=r;r=s,s=g}if(o>i){const g=o;o=i,i=g}let u;return n?(u=n,u.colStart=r,u.rowStart=o,u.colEnd=s,u.rowEnd=i,u.$colStart=a,u.$rowStart=c,u.$colEnd=h,u.$rowEnd=d):u={colStart:r,rowStart:o,colEnd:s,rowEnd:i,$colStart:a,$rowStart:c,$colEnd:h,$rowEnd:d},l.sheetName&&(u.sheetName=l.sheetName),u},exports.tokensToA1=Hg,exports.tokensToR1C1=Pg,exports.typeFromJsValue=$t;